
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gold-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --transition: all 0.3s ease;
}

/* Gradient Text */
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    height: 70vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/3965545/pexels-photo-3965545.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

/* Hover Effects */
.hover-scale {
    transition: var(--transition);
}

    .hover-scale:hover {
        transform: scale(1.05);
    }

/* Category Cards */
.category-card {
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
}

    .category-card:hover {
        transform: translateY(-5px);
    }

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

/* Product Cards */
.product-card {
    transition: var(--transition);
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.product-overlay {
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }

    .category-card {
        height: 200px;
    }

    .product-img {
        height: 250px;
    }
}

/* Product Card Hover Effect */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

/* Image Wrapper: maintain aspect ratio */
.product-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

    .product-image-wrapper img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

/* Optional: zoom effect on image */
.product-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr;
    }

    body {
        padding: 10px;
    }

    header {
        font-size: 18px;
    }
