/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #FF6B00;
    --accent-color: #5C3A21;
    --cream-color: #FFF8F0;
    --text-dark: #2C1810;
    --text-light: #666;
    --border-color: #E5D5C1;
    --shadow-light: rgba(92, 58, 33, 0.1);
    --shadow-medium: rgba(92, 58, 33, 0.2);
    --shadow-heavy: rgba(92, 58, 33, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-icon, .favourites-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.cart-icon:hover, .favourites-icon:hover {
    color: var(--primary-color);
}

.cart-count, .favourites-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.floating-spices {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.spice {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.spice-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spice-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.spice-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.spice-4 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.hero-text {
    color: white;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.title-highlight {
    color: var(--secondary-color);
    font-size: 1.2em;
    display: block;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 150px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn i {
    margin-right: 8px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px var(--shadow-heavy),
        0 0 0 2px rgba(255, 107, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 25px 50px var(--shadow-heavy),
        0 0 0 3px rgba(255, 107, 0, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: 
        scale(0.8) 
        rotateY(15deg) 
        translateX(-50px);
    filter: blur(2px) brightness(0.7);
}

.carousel-slide.active {
    opacity: 1;
    transform: 
        scale(1) 
        rotateY(0deg) 
        translateX(0);
    filter: blur(0) brightness(1);
}

.carousel-slide.next {
    opacity: 0;
    transform: 
        scale(0.8) 
        rotateY(-15deg) 
        translateX(50px);
    filter: blur(2px) brightness(0.7);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.1) saturate(1.2);
}

.carousel-slide.active img {
    animation: pulseGlow 4s ease-in-out infinite;
}

.carousel-slide:hover img {
    transform: scale(1.05);
    filter: contrast(1.2) saturate(1.3) brightness(1.1);
}

@keyframes pulseGlow {
    0%, 100% { 
        filter: contrast(1.1) saturate(1.2) brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: contrast(1.15) saturate(1.3) brightness(1.05);
        transform: scale(1.02);
    }
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 2rem 1.5rem 2.5rem;
    border-radius: 0 0 20px 20px;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active .slide-overlay {
    transform: translateY(0);
    animation: slideInGlow 0.8s ease-out 0.3s both;
}

@keyframes slideInGlow {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-text {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(255, 107, 0, 0.3);
    animation: 
        slideUp 0.8s ease-out,
        textGlow 3s ease-in-out infinite 1s;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.5),
            0 0 20px rgba(255, 107, 0, 0.3);
        transform: translateY(0);
    }
    50% { 
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.5),
            0 0 30px rgba(255, 107, 0, 0.6);
        transform: translateY(-2px);
    }
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    border-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
}

.indicator.active::before {
    width: 6px;
    height: 6px;
}

.indicator:hover {
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.indicator:hover::before {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
}

.steam {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.steam-particle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: steam 4s ease-in-out infinite;
}

.steam-1 {
    left: -20px;
    animation-delay: 0s;
}

.steam-2 {
    left: 0px;
    animation-delay: 1s;
}

.steam-3 {
    left: 20px;
    animation-delay: 2s;
}

@keyframes steam {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-heart, .btn-heart-small {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 12px;
}

.btn-heart:hover, .btn-heart-small:hover {
    background: var(--primary-color);
    color: white;
}

/* Featured Product */
.featured-product {
    padding: 80px 0;
    background: white;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--cream-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px var(--shadow-light);
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.featured-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.featured-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.featured-price {
    margin-bottom: 2rem;
}

.featured-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.featured-price .unit {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 8px;
}

.featured-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
}

.quantity-btn {
    background: var(--cream-color);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-selector input {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--cream-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--cream-color);
}

.why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    scroll-behavior: smooth;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.testimonial-arrow:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow-left {
    left: 10px;
}

.testimonial-arrow-right {
    right: 10px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    min-width: 300px;
    max-width: 350px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    z-index: 0;
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
    background: rgba(255, 107, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.testimonial-author {
    display: block;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.2rem;
}

.footer-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #25D366;
    margin-right: 0.5rem;
}

.footer-whatsapp-link:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-link i {
    font-size: 0.85rem;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Mobile go-to-top button */
@media (max-width: 768px) {
    .go-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    .go-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 14px;
        z-index: 1002;
    }
}

.contact {
    padding: 80px 0;
    background: var(--cream-color);
}

.contact h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--accent-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo-icon {
    width: 50px;
    height: 50px;
}

.footer-brand .logo-text h3 {
    color: white;
    margin: 0;
}

.footer-brand .logo-text span {
    color: var(--secondary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Cart Sidebar */
.cart-sidebar,
.favourites-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px var(--shadow-heavy);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active,
.favourites-sidebar.active {
    right: 0;
}

.cart-header,
.favourites-header {
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart,
.close-favourites {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items,
.favourites-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-footer,
.favourites-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item,
.favourite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info,
.favourite-item-info {
    flex: 1;
}

.cart-item-name,
.favourite-item-name {
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-price,
.favourite-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remove-item,
.remove-favourite {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
}

.empty-cart,
.empty-favourites {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-heavy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 3000;
}

.toast.show {
    transform: translateX(0);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow-heavy);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-carousel {
        max-width: 100%;
        height: 300px;
        border-radius: 15px;
    }

    .carousel-slide img {
        border-radius: 15px;
    }

    .slide-overlay {
        padding: 1.5rem 1rem 1rem;
        border-radius: 0 0 15px 15px;
    }

    .slide-text {
        font-size: 1.2rem;
    }

    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }

    .steam {
        display: none; /* Hide steam on mobile for better performance */
    }

    .featured-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cart-sidebar,
    .favourites-sidebar {
        width: 100%;
        right: -100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .featured-actions,
    .product-actions {
        justify-content: center;
    }

    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
}

/* Mobile Performance Optimizations - REMOVED */
/* @media (max-width: 768px) - DISABLED */
/* All mobile optimizations removed to restore full functionality */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .featured-product {
        padding: 30px 0;
    }

    .products {
        padding: 30px 0;
    }

    .about {
        padding: 20px 0;
    }

    .why-choose {
        padding: 20px 0;
    }

    .testimonials {
        padding: 20px 0;
    }

    .contact {
        padding: 20px 0;
    }

    .hero-section {
        padding: 0.5rem 0;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .hero-image {
        margin-top: 1rem;
    }

    .hero-carousel {
        height: 200px;
    }

    .slide-overlay {
        padding: 1rem 0.5rem 1.5rem;
    }

    .slide-text {
        font-size: 0.9rem;
    }

    .carousel-indicators {
        bottom: 8px;
        padding: 3px 6px;
        gap: 6px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-arrow-left {
        left: 5px;
    }

    .testimonial-arrow-right {
        right: 5px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 300px;
        padding: 1.5rem;
    }

    .featured-actions {
        flex-direction: column;
        width: 100%;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}
