/* ============================================
   STICK & SPICE - CUSTOM CUPS & JARS
   Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Gradient colors matching logo - 20% darker */
    --primary-gradient: linear-gradient(135deg, #cc567e 0%, #9a566a 100%);
    --secondary-gradient: linear-gradient(135deg, #cc849c 0%, #cc567e 100%);
    --accent-gradient: linear-gradient(135deg, #cc929d 0%, #cc849c 100%);
    --hero-gradient: linear-gradient(135deg, #cc567e 0%, #9a566a 50%, #6e485d 100%);
    
    /* Background gradients - pinks 20% darker, greys 15% darker */
    --body-gradient: linear-gradient(135deg, #ccb8c0 0%, #cc9dad 35%, #cc8a9f 70%, #c5c5c5 100%);
    --card-gradient: linear-gradient(135deg, #ccc0c5 0%, #ccb8c0 35%, #cca9b8 70%, #d0d0d0 100%);
    --light-gradient: linear-gradient(135deg, #ccc4c7 0%, #ccbcc2 70%, #cccccc 100%);
    --nav-gradient: linear-gradient(90deg, #ccc0c5 0%, #ccb8c0 70%, #d3d3d3 100%);
    
    /* Solid colors for text/borders - 20% darker */
    --primary-color: #cc567e;
    --secondary-color: #9a566a;
    --accent-color: #cc849c;
    --dark-color: #6e485d;
    --light-bg: #ccc0c5;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(204, 86, 126, 0.2);
    --shadow-lg: 0 10px 25px rgba(204, 86, 126, 0.3);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--body-gradient);
    background-attachment: fixed;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.header {
    background: var(--nav-gradient);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.logo img {
    height: 50px;
    width: auto;
    -webkit-text-fill-color: initial;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--card-gradient);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-gradient);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--card-gradient);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section - Original (kept for other pages) */
.hero {
    background: var(--hero-gradient);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-slide:hover .hero-slide-bg {
    transform: scale(1.05);
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    animation: slideContentIn 0.8s ease-out;
}

.hero-slide .hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9),
        4px 4px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.hero-slide .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 0.95),
        3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 2px solid white;
}

.hero-slide:hover .hero-cta {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
    color: white;
}

/* Slide Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slide-prev {
    left: 2rem;
}

.slide-next {
    right: 2rem;
}

/* Slide Pause/Play Button */
.slide-pause {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.slide-pause:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slide-pause.playing {
    background: rgba(255, 255, 255, 0.4);
}

.slide-pause.paused {
    background: rgba(204, 86, 126, 0.7);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: var(--transition);
}

.slide-dot.active,
.slide-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Animation */
@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--light-gradient);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid rgba(204, 86, 126, 0.3);
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.product-card {
    background: var(--card-gradient);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid rgba(204, 86, 126, 0.2);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Hover effect - pop out the hovered card */
.product-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
    border: 3px solid gold;
    z-index: 100;
}

/* Dim other cards when one is hovered */
.product-grid:hover .product-card:not(:hover) {
    opacity: 0.5;
    filter: grayscale(30%);
    transform: scale(0.95);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Perfect square for 800x800 images */
    object-fit: cover;
    object-position: center;
    background: var(--light-bg);
    border-radius: 15px 15px 0 0;
    transition: transform 0.4s ease;
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: auto;
    line-height: 1.5;
    padding-bottom: 1rem;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.add-to-cart-btn:hover {
    background: var(--secondary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 86, 126, 0.35);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    color: var(--white);
}

.category-overlay h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.category-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gradient);
    border: 2px solid rgba(204, 86, 126, 0.3);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(204, 86, 126, 0.3);
    background: var(--card-gradient);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.feature-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gradient);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(204, 86, 126, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(204, 86, 126, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(204, 86, 126, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 2rem;
    color: var(--white);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Custom Order Form */
.custom-order-section {
    background: transparent;
    padding: 3rem 2rem;
}

.order-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gradient);
    border-radius: 15px;
    border: 2px solid rgba(204, 86, 126, 0.2);
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--nav-gradient);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--card-gradient);
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Hero Slideshow Mobile */
    .hero-slideshow {
        height: 500px;
    }
    
    .hero-slide .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-slide .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-prev {
        left: 1rem;
    }
    
    .slide-next {
        right: 1rem;
    }
    
    .slide-indicators {
        bottom: 1rem;
    }
    
    .slide-dot {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reset card effects on mobile */
    .product-grid:hover .product-card:not(:hover) {
        opacity: 1;
        filter: none;
        transform: none;
    }
    
    .feature-icon img {
        height: 180px;
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Gold sparkle animation */
@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.5;
        transform: scale(1.2) rotate(10deg);
    }
    50% {
        opacity: 1;
        transform: scale(0.9) rotate(-10deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.1) rotate(5deg);
    }
}

/* Filter Buttons for Spice Catalog */
.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow);
}

/* Bundle Builder Styles */
.bundle-progress {
    background: var(--light-gradient);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.bundle-slots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.bundle-slot {
    width: 100px;
    height: 120px;
    background: white;
    border: 3px dashed #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.bundle-slot:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.bundle-slot.filled {
    border: 3px solid var(--primary-color);
    background: var(--primary-gradient);
}

.bundle-slot .slot-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.bundle-slot.filled .slot-number {
    color: white;
}

.bundle-slot .slot-label {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    padding: 0 0.5rem;
}

.bundle-slot.filled .slot-label {
    color: white;
    font-weight: 600;
}

.bundle-slot .remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid white;
    opacity: 0;
    transition: var(--transition);
    pointer-events: auto;
}

.bundle-slot.filled:hover .remove-btn {
    opacity: 1;
}

.bundle-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(204, 86, 126, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.bundle-count {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.bundle-price {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.bundle-price strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.bundle-savings {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.bundle-spice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.bundle-spice-item {
    background: white;
    padding: 1rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.bundle-spice-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.bundle-spice-item.selected {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.bundle-spice-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bundle-spice-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.bundle-spice-item .spice-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bundle-spice-item .spice-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.bundle-spice-item .spice-price {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

/* Bundle Modal */
.bundle-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.bundle-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bundle-modal-header {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bundle-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.bundle-modal-close {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.bundle-modal-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.bundle-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.bundle-modal-progress {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gradient);
    border-radius: 10px;
    color: var(--text-dark);
}

.bundle-modal-progress strong {
    color: var(--primary-color);
}

.bundle-modal-footer {
    padding: 1.5rem 2rem;
    background: var(--light-bg);
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .bundle-slots {
        gap: 0.5rem;
    }
    
    .bundle-slot {
        width: 80px;
        height: 100px;
    }
    
    .bundle-spice-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        max-height: 300px;
    }
    
    .bundle-info {
        flex-direction: column;
        text-align: center;
    }
    
    .bundle-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .bundle-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .bundle-modal-body {
        padding: 1rem;
    }
}
