/* Klasik Product Card with Image Styling */
.product-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-image:hover img {
    transform: scale(1.05);
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price {
    font-weight: 600;
    font-size: 16px;
}

.product-card-btn {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.product-card-btn:hover {
    background: #c0392b;
}
