/* CSS Variables - Color Palette */
:root {
    /* Premium Traditional Colors */
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --dark-brown: #654321;
    --light-brown: #D2691E;
    
    --gold: #FFD700;
    --dark-gold: #DAA520;
    --light-gold: #F5DEB3;
    
    --cream: #FFF8DC;
    --light-cream: #FFFAF0;
    --beige: #F5F5DC;
    
    /* Utility Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F8F9FA;
    --gray: #6C757D;
    --gray-dark: #343A40;
    
    /* Status Colors */
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--light-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-base);
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-brown);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-brown);
    position: relative;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FFD700 20%, 
        #FFA500 50%, 
        #FFD700 80%, 
        transparent 100%);
    margin: 20px auto 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: title-underline 3s ease-in-out infinite;
}

@keyframes title-underline {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Navigation Bar - Enhanced Premium UI */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.95) 0%,
        rgba(160, 82, 45, 0.90) 50%,
        rgba(139, 69, 19, 0.95) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15),
                0 1px 0 rgba(255, 215, 0, 0.1) inset;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.98) 0%,
        rgba(160, 82, 45, 0.95) 50%,
        rgba(139, 69, 19, 0.98) 100%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25),
                0 1px 0 rgba(255, 215, 0, 0.15) inset;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Advanced Premium Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5),
                0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: logo-shine 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: logo-shimmer 3s linear infinite;
}

@keyframes logo-shine {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5),
                    0 2px 8px rgba(0, 0, 0, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7),
                    0 3px 12px rgba(255, 165, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

@keyframes logo-shimmer {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFF4DC 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: #FFEAA7;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Advanced Navigation Menu */
.nav-menu {
    display: none;
    gap: 6px;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, 
        rgba(139, 69, 19, 0.98) 0%,
        rgba(160, 82, 45, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    animation: navSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF8DC;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.15), 
        transparent);
    transition: left 0.5s ease;
}

.nav-link i {
    font-size: 1.1rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    left: 100%;
}

.nav-link:hover i {
    transform: scale(1.2) rotate(-10deg);
    color: #FFA500;
}

.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25),
                inset 0 1px 0 rgba(255, 215, 0, 0.3);
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 1001;
}

/* Advanced Premium Cart Button */
.cart-btn {
    position: relative;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 165, 0, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.35rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.4) 0%, 
        transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.cart-btn:hover::before {
    width: 200px;
    height: 200px;
}

.cart-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6),
                0 4px 15px rgba(255, 165, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 215, 0, 0.9);
}

.cart-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cart-btn:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FF3366 0%, #CC0033 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(139, 69, 19, 0.9);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.6),
                0 2px 6px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badge-pop 2.5s ease-in-out infinite;
    z-index: 3;
}

@keyframes badge-pop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.cart-badge:empty {
    display: none;
}

/* Advanced Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.2) 0%, 
        rgba(255, 165, 0, 0.25) 100%);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hamburger:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(255, 165, 0, 0.35) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hamburger.active {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.35) 0%, 
        rgba(255, 165, 0, 0.4) 100%);
    transform: rotate(90deg);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Advanced Navbar Responsive */
@media (min-width: 768px) {
    .nav-container {
        padding: 16px var(--spacing-md);
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
    }
    
    .nav-menu.active {
        position: static;
        flex-direction: row;
        width: auto;
        padding: 0;
        box-shadow: none;
        background: transparent;
        border: none;
        animation: none;
    }
    
    .nav-link {
        padding: 12px 18px;
    }
    
    .nav-link:hover {
        transform: translateY(-2px);
    }
    
    .nav-link i {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 18px 30px;
    }
    
    .logo-main {
        font-size: 1.4rem;
    }
    
    .logo-sub {
        font-size: 0.75rem;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        padding: 12px 22px;
        font-size: 0.95rem;
    }
}

@media (min-width: 1440px) {
    .nav-container {
        padding: 20px 40px;
    }
    
    .logo-icon {
        width: 52px;
        height: 52px;
        font-size: 1.65rem;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .nav-link {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.nav-overlay.active {
    display: block;
}

@media (min-width: 768px) {
    .nav-overlay {
        display: none !important;
    }
}

/* Hero Section - Premium Banner with Video */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--spacing-md) 80px;
    margin-top: 60px;
    overflow: hidden;
    background: #000;
}

/* Video Background - Optimized for 1920x1080 */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2) saturate(1.15);
}

/* Mobile optimized video */
@media (max-width: 767px) {
    .hero-video {
        filter: brightness(0.5) contrast(1.15) saturate(1.1);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.75) 0%, 
        rgba(40, 20, 10, 0.65) 50%,
        rgba(20, 20, 20, 0.75) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Enhanced vignette for focus on content */
.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 25%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Background Shapes */
.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(218, 165, 32, 0.04));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 5%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* Hero Content - Centered & Optimized */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

/* Trust Badge - "100K+ Orders Delivered" */
.trust-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid var(--gold);
    padding: 14px 36px;
    border-radius: 50px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(255, 215, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.trust-badge-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    animation: badge-shimmer 3s infinite;
}

@keyframes badge-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--dark-brown);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.badge-icon:hover {
    animation: rotate-pulse 1s ease-in-out;
}

@keyframes rotate-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(180deg); }
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-count {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    animation: badge-shine 4s infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Banner Text - Product Tagline */
.hero-title-premium {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1.15;
    display: flex;
    flex-direction: row;
    gap: 12px;
    text-align: center;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.title-word {
    display: inline-block;
    color: var(--white);
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 1),
        0 8px 16px rgba(0, 0, 0, 0.9),
        0 16px 32px rgba(0, 0, 0, 0.7);
    position: relative;
    white-space: nowrap;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(
        135deg,
        #FFFF00 0%,
        #FFED4E 25%,
        #FFFACD 50%,
        #FFFF00 75%,
        #FFED4E 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s linear infinite;
    font-weight: 900;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1))
            drop-shadow(0 4px 10px rgba(0, 0, 0, 1))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.8))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.5));
    text-shadow: 0 0 40px rgba(255, 255, 0, 0.6);
}

@keyframes gradient-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hero Subtitle with Lines */
.hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.subtitle-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: line-expand 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

@keyframes line-expand {
    0%, 100% { 
        width: 80px; 
        opacity: 0.6;
    }
    50% { 
        width: 100px; 
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
}

/* Subtitle - "Traditional Taste Loved by 100,000+ Customers" */
.hero-subtitle-premium {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 1px;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 1),
        0 6px 15px rgba(0, 0, 0, 0.9);
    line-height: 1.6;
    max-width: 85%;
    margin: 0 auto;
}

.subtitle-highlight {
    color: var(--gold);
    font-weight: 700;
}

.subtitle-number {
    color: var(--gold);
    font-weight: 800;
    font-size: 1.15em;
}

/* CTA Buttons Container */
.hero-cta-premium {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
    flex-wrap: wrap;
}

/* CTA Button Styles - Buy Now, Watch Video, WhatsApp */
.cta-btn-premium {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}

.cta-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-btn-premium:hover::before {
    transform: translateX(100%);
}

.btn-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-text {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.btn-subtext {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn-premium:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* Buy Now Button */
.primary-btn-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-brown);
}

.primary-btn-premium .btn-icon {
    background: rgba(139, 69, 19, 0.3);
    color: var(--dark-brown);
}

.primary-btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.primary-btn-premium:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Watch Video Button (YouTube) */
.youtube-btn-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: var(--white);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.youtube-icon {
    background: rgba(220, 38, 38, 0.9);
    color: var(--white);
}

.youtube-btn-premium:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4),
                0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.youtube-btn-premium:hover .btn-icon {
    transform: scale(1.15);
}

/* Order on WhatsApp Button */
.whatsapp-btn-premium {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    position: relative;
}

.whatsapp-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.whatsapp-btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn-premium:hover .btn-icon {
    transform: scale(1.15) rotate(-10deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Stats - Modern Card Design */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    width: 100%;
    max-width: 900px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(20, 20, 20, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(255, 215, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 180px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.6s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 50%, #FF9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-brown);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
    position: relative;
    animation: stat-pulse 3s ease-in-out infinite;
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.5;
    animation: stat-ripple 2s infinite;
}

@keyframes stat-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5),
                    inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7),
                    0 0 40px rgba(255, 215, 0, 0.4),
                    inset 0 2px 5px rgba(255, 255, 255, 0.4);
    }
}

@keyframes stat-ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 1px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 1))
            drop-shadow(0 0 20px rgba(255, 235, 59, 0.6));
}

.stat-label {
    font-size: 0.85rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
    opacity: 0.95;
}

.stat-divider {
    display: none;
}

/* Premium Scroll Indicator - Fixed Bottom Right */
.scroll-indicator-premium {
    position: fixed;
    bottom: 40px;
    right: 40px;
    left: auto;
    transform: none;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    padding: 16px 20px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(255, 215, 0, 0.2);
    animation: float-bounce 3s ease-in-out infinite;
}

.scroll-indicator-premium:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(255, 215, 0, 0.4);
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--gold);
    border-radius: 13px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s infinite;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

@keyframes wheel-scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

.scroll-text {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.scroll-arrow {
    animation: arrow-bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.6rem;
    color: var(--gold);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8))
            drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

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

/* Delay Animations */
.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}


/* Desktop Large - Optimizes for 1920x1080 */
@media (min-width: 1920px) {
    .hero {
        padding: 160px var(--spacing-2xl) 80px;
    }
    
    .hero-title-premium {
        font-size: 5.5rem;
    }
    
    .hero-subtitle-premium {
        font-size: 1.8rem;
    }
    
    .cta-btn-premium {
        padding: 20px 32px;
    }
    
    .hero-stats {
        max-width: 1000px;
        gap: var(--spacing-2xl);
    }
}

/* Desktop - Standard HD */
@media (min-width: 1024px) {
    .hero {
        padding: 140px var(--spacing-xl) 70px;
    }
    
    .hero-title-premium {
        font-size: 5rem;
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-subtitle-premium {
        font-size: 1.7rem;
    }
    
    .hero-cta-premium {
        flex-direction: row;
        justify-content: center;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        padding: 110px var(--spacing-lg) 70px;
    }
    
    .hero-title-premium {
        font-size: 3rem;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-subtitle-premium {
        font-size: 1.35rem;
    }
    
    .hero-cta-premium {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-btn-premium {
        flex: 0 1 auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
    
    .stat-item {
        padding: var(--spacing-lg);
    }
    
    .trust-badge-premium {
        padding: 12px 30px;
    }
}

/* Mobile - Primary Optimization */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        padding: 80px var(--spacing-sm) 60px;
        margin-top: 60px;
    }
    
    .hero-content {
        gap: var(--spacing-lg);
    }
    
    /* Trust Badge - Mobile */
    .trust-badge-premium {
        padding: 10px 24px;
        gap: 10px;
        border-width: 2px;
    }
    
    .badge-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .badge-count {
        font-size: 1.4rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Title - Mobile */
    .hero-title-premium {
        font-size: 1.5rem;
        gap: 5px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .title-word {
        font-size: 1em;
    }
    
    .gradient-text {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    /* Subtitle - Mobile */
    .hero-subtitle-premium {
        font-size: 1rem;
        letter-spacing: 0.5px;
        max-width: 95%;
    }
    
    /* CTA Buttons - Mobile */
    .hero-cta-premium {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .cta-btn-premium {
        width: 100%;
        max-width: 100%;
        padding: 15px 24px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .btn-subtext {
        font-size: 0.7rem;
    }
    
    /* Stats - Mobile Grid */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        padding: var(--spacing-lg);
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 1.9rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    /* Video Optimization - Mobile */
    .hero-video {
        filter: brightness(0.5) contrast(1.15) saturate(1.1);
    }
    
    /* Floating shapes - Hide on mobile */
    .floating-shape,
    .shape {
        display: none;
    }
}

/* Extra Small Mobile - Tight Optimization */
@media (max-width: 480px) {
    .hero {
        padding: 70px var(--spacing-xs) 50px;
    }
    
    .hero-title-premium {
        font-size: 1.3rem;
        gap: 4px;
        flex-wrap: nowrap;
    }
    
    .gradient-text {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }
    
    .hero-subtitle-premium {
        font-size: 0.9rem;
    }
    
    .cta-btn-premium {
        padding: 14px 20px;
    }
    
    .btn-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .trust-badge-premium {
        padding: 8px 20px;
    }
    
    .hero-stats {
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }
    
    .shape,
    .badge-glow,
    .wheel,
    .scroll-arrow,
    .gradient-text,
    .float-text {
        animation: none !important;
    }
    
    * {
        transition: none !important;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-slide-up {
    animation: slideUp 0.8s ease;
}

.animate-slide-up.delay-1 {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-slide-up.delay-2 {
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-slide-up.delay-3 {
    animation: slideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 
   Trust Section */
/* Trust & Location Section - Premium Design*/
.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        #FFF8DC 0%, 
        #FFFACD 50%, 
        #FFF8DC 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15),
                0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.trust-item:hover::before {
    left: 100%;
}

.trust-item:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.25),
                0 10px 30px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.trust-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 50%, #FF9800 100%);
    border-radius: 50%;
    color: var(--dark-brown);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.5);
    position: relative;
    animation: trust-icon-float 3s ease-in-out infinite;
}

.trust-icon::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.3);
    animation: trust-icon-pulse 2s ease-in-out infinite;
}

@keyframes trust-icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes trust-icon-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.trust-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-brown);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.map-container {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.map-container .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.map-container .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.map-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(139, 69, 19, 0.25),
                0 10px 35px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5), rgba(255, 152, 0, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(139, 69, 19, 0.3),
                0 15px 45px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.map-wrapper:hover::before {
    opacity: 1;
}

.map-wrapper iframe {
    display: block;
    border: none;
    filter: saturate(0.9) brightness(1.05);
}

.map-address {
    margin-top: 20px;
    padding: 18px 24px;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.05) 0%, 
        rgba(255, 215, 0, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.map-address:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.map-address i {
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    animation: location-pulse 2s ease-in-out infinite;
}

@keyframes location-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.map-address p {
    font-size: 1rem;
    font-weight: 600;
    color: #8B4513;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Trust Section Responsive */
@media (max-width: 767px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-grid {
        gap: var(--spacing-lg);
        margin-bottom: 50px;
    }
    
    .trust-item {
        padding: 30px 20px;
    }
    
    .trust-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .trust-item h3 {
        font-size: 1.15rem;
    }
    
    .trust-item p {
        font-size: 0.9rem;
    }
    
    .map-container .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .map-wrapper {
        border-radius: 20px;
    }
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .trust-item {
        padding: 45px 35px;
    }
}

/* Products Section - Premium Design*/
.products-section {
    padding: 120px 0;
    background: linear-gradient(180deg, 
        #FFFACD 0%, 
        #FFF8DC 30%,
        #FAEBD7 70%,
        #FFF8DC 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 235, 59, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: products-bg-shift 20s ease-in-out infinite;
}

@keyframes products-bg-shift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15),
                0 5px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 215, 0, 0.15) 50%, 
        transparent 70%);
    transform: rotate(0deg);
    transition: transform 0.8s;
    pointer-events: none;
}

.product-card:hover::before {
    transform: rotate(180deg);
}

.product-card:hover {
    transform: translateY(-20px) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(139, 69, 19, 0.25),
                0 15px 40px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 215, 0, 0.5);
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF8DC, #FFFACD);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(139, 69, 19, 0.05) 50%, 
        rgba(139, 69, 19, 0.15) 100%);
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover .product-image::after {
    opacity: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4),
                0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badge-pulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 35px rgba(139, 69, 19, 0.5), 0 5px 15px rgba(0, 0, 0, 0.25);
    }
}

.product-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-brown);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5),
                0 3px 12px rgba(255, 165, 0, 0.3);
}

.product-badge.value {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.product-badge.healthy {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
}

.product-badge.gift {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    box-shadow: 0 8px 30px rgba(244, 67, 54, 0.4);
}

.product-info {
    padding: 30px;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(255, 255, 255, 0.3) 100%);
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-brown);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.product-card:hover .product-name {
    color: #8B4513;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
    letter-spacing: -0.5px;
}

.weight {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 215, 0, 0.25) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 500;
}

.buy-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-brown);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4),
                0 3px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.buy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5),
                0 8px 20px rgba(255, 165, 0, 0.3);
    background: linear-gradient(135deg, #FFEB3B 0%, #FF9800 100%);
}

.buy-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.buy-btn i {
    margin-right: 8px;
    transition: transform 0.3s;
}

.buy-btn:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Products Section Responsive */
@media (max-width: 767px) {
    .products-section {
        padding: 80px 0;
    }
    
    .products-grid {
        gap: 30px;
    }
    
    .product-card {
        border-radius: 24px;
    }
    
    .product-info {
        padding: 24px;
    }
    
    .product-name {
        font-size: 1.25rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .buy-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
    
    .product-card:hover {
        transform: translateY(-25px) rotateX(3deg) rotateY(2deg);
    }
}

/* Video Section*/
.video-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Marketplace Section */
.marketplace-section {
    padding: 120px 0;
    background: linear-gradient(180deg, 
        #FFF8DC 0%, 
        #FFFACD 50%, 
        #FFF8DC 100%);
    position: relative;
    overflow: hidden;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    position: relative;
    z-index: 1;
}

.marketplace-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15),
                0 5px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.marketplace-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 215, 0, 0.1) 50%, 
        transparent 70%);
    transform: rotate(0deg);
    transition: transform 0.8s;
    pointer-events: none;
}

.marketplace-card:hover::before {
    transform: rotate(180deg);
}

.marketplace-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 70px rgba(139, 69, 19, 0.25),
                0 15px 40px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 215, 0, 0.5);
}

.marketplace-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.marketplace-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: marketplace-float 3s ease-in-out infinite;
}

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

.marketplace-card:hover .marketplace-logo {
    transform: scale(1.15) rotate(10deg);
    animation-play-state: paused;
}

.marketplace-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    filter: blur(20px);
}

.marketplace-card:hover .marketplace-glow {
    opacity: 0.6;
    animation: marketplace-pulse 2s ease-in-out infinite;
}

@keyframes marketplace-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.marketplace-logo.amazon {
    background: linear-gradient(135deg, #FF9900 0%, #FF7700 100%);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(255, 153, 0, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.marketplace-logo.amazon + .marketplace-glow {
    background: #FF9900;
}

.marketplace-logo.flipkart {
    background: linear-gradient(135deg, #2874F0 0%, #1557B0 100%);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(40, 116, 240, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.marketplace-logo.flipkart + .marketplace-glow {
    background: #2874F0;
}

.marketplace-logo.vendorkart {
    background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(99, 102, 241, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.marketplace-logo.vendorkart + .marketplace-glow {
    background: #6366F1;
}

.marketplace-logo.meesho {
    background: linear-gradient(135deg, #F43397 0%, #D41F7C 100%);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(244, 51, 151, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.marketplace-logo.meesho + .marketplace-glow {
    background: #F43397;
}

.marketplace-logo.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.marketplace-logo.whatsapp + .whatsapp-glow {
    background: #25D366;
    animation: whatsapp-pulse-glow 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.marketplace-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-brown);
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.marketplace-card:hover h3 {
    color: #8B4513;
}

.marketplace-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.marketplace-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-brown);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    transform: translateX(-20px);
}

.marketplace-card:hover .marketplace-arrow {
    opacity: 1;
    transform: translateX(0);
}

.marketplace-arrow i {
    transition: transform 0.3s;
}

.marketplace-card:hover .marketplace-arrow i {
    transform: translateX(5px);
}

.whatsapp-card {
    border: 2px solid rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.05) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 25px 70px rgba(37, 211, 102, 0.25),
                0 15px 40px rgba(37, 211, 102, 0.2);
}

/* Marketplace Section Responsive */
@media (max-width: 767px) {
    .marketplace-section {
        padding: 80px 0;
    }
    
    .marketplace-grid {
        gap: 25px;
    }
    
    .marketplace-card {
        padding: 35px 25px;
    }
    
    .marketplace-logo {
        width: 85px;
        height: 85px;
        font-size: 2.5rem;
    }
    
    .marketplace-card h3 {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .marketplace-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 45px;
    }
    
    .marketplace-card:hover {
        transform: translateY(-20px) rotateX(8deg) rotateY(2deg);
    }
}

/* 3D Product Section*/
.product-3d-section {
    padding: var(--spacing-2xl) 0;
    background: var(--beige);
}

.product-3d-container {
    max-width: 600px;
    margin: 0 auto;
}

.product-3d-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
    padding: var(--spacing-xl);
    cursor: grab;
}

.product-3d-wrapper:active {
    cursor: grabbing;
}

.product-3d-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-3d-image {
    max-width: 100%;
    transition: var(--transition-slow);
}

.product-3d-wrapper:hover .product-3d-image {
    transform: rotate(15deg) scale(1.05);
}

.rotation-hint {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--gray);
}

.rotation-hint i {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--gold);
    display: block;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Reviews Section*/
.reviews-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.review-card {
    background: var(--light-cream);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-sm);
}

.reviewer-info {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.reviewer-name {
    font-size: 1.1rem;
    color: var(--primary-brown);
    margin-bottom: 2px;
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--gray);
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--gold);
    font-size: 1rem;
}

.review-text {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

.reviews-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-brown);
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Sticky Bottom Bar (Mobile Only)*/
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: block;
}

.bottom-bar-content {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
}

.bottom-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition-base);
}

.buy-now-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-brown);
}

.buy-now-btn:hover {
    transform: scale(1.02);
}

.whatsapp-order-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-order-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .sticky-bottom-bar {
        display: none;
    }
}

/* Footer*/
.footer {
    background: var(--primary-brown);
    color: var(--cream);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    color: var(--gold);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-brown);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--cream);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: var(--spacing-xs);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact a {
    color: var(--cream);
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: var(--spacing-md);
}

.footer-bottom-content {
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--cream);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--gold);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-legal {
        margin-top: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: var(--spacing-md);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 998;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
    .back-to-top {
        bottom: var(--spacing-md);
    }
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-brown {
    color: var(--primary-brown);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.text-center {
    text-align: center;
}

.text-gold {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.cart-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
    position: relative;
    z-index: 2;
}

/* Custom Scrollbar */
.cart-modal-body::-webkit-scrollbar {
    width: 8px;
}

.cart-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.cart-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
    transition: background 0.3s;
}

.cart-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFEB3B 0%, #FF9800 100%);
}

.cart-empty {
    text-align: center;
    padding: 80px 25px;
    animation: empty-fade-in 0.5s ease;
}

@keyframes empty-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-empty-icon {
    font-size: 6rem;
    color: #D2B48C;
    margin-bottom: 25px;
    opacity: 0.4;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.cart-empty h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.cart-empty p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-brown);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cart-empty-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cart-empty-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cart-empty-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.cart-empty-btn i {
    position: relative;
    z-index: 1;
}

.cart-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 10px 35px rgba(139, 69, 19, 0.15),
                0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cartItemSlideIn 0.5s ease;
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.15) 50%, 
        transparent 100%);
    transition: left 0.6s;
}

.cart-item:hover::before {
    left: 100%;
}

@keyframes cartItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.cart-item:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 45px rgba(139, 69, 19, 0.2),
                0 8px 25px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-3px);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.cart-item-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #A0522D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
}

.cart-item-remove {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4757 0%, #e84118 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.cart-item-remove::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.cart-item-remove:hover::after {
    width: 80px;
    height: 80px;
}

.cart-item-remove:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

.cart-item-remove i {
    position: relative;
    z-index: 1;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 215, 0, 0.25) 100%);
    padding: 10px 15px;
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.quantity-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-brown);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.quantity-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.quantity-btn:hover::after {
    width: 70px;
    height: 70px;
}

.quantity-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 22px rgba(255, 215, 0, 0.5);
}

.quantity-btn:active {
    transform: scale(0.9);
}

.quantity-btn i {
    position: relative;
    z-index: 1;
}

.quantity-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-brown);
    min-width: 30px;
    text-align: center;
}

.cart-item-subtotal {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.cart-item-subtotal-label {
    margin-right: 8px;
}

.cart-item-subtotal-value {
    color: var(--dark-brown);
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-modal-footer {
    padding: 28px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 5;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding: 22px 24px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 215, 0, 0.35) 100%);
    border-radius: 18px;
    border: 2.5px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.cart-total::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: total-shine 3s ease-in-out infinite;
}

@keyframes total-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.cart-total-label {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark-brown);
    letter-spacing: 0.5px;
}

.cart-total-amount {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #8B4513 0%, 
        #D2691E 50%, 
        #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 10px rgba(139, 69, 19, 0.2);
    letter-spacing: -0.5px;
}

.cart-actions {
    display: flex;
    gap: 12px;
}

.cart-btn-secondary,
.cart-btn-primary {
    flex: 1;
    padding: 17px 22px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

.cart-btn-secondary::after,
.cart-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.cart-btn-secondary:hover::after,
.cart-btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.cart-btn-secondary {
    background: linear-gradient(135deg, #ff4757 0%, #e84118 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
}

.cart-btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.45);
}

.cart-btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    flex: 1.5;
}

.cart-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.cart-btn-secondary:active,
.cart-btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.cart-btn-secondary i,
.cart-btn-primary i {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
}

/* Cart Modal Responsive */
@media (max-width: 767px) {
    .cart-modal-content {
        max-width: 100%;
    }
    
    .cart-modal-header {
        padding: 20px 20px;
    }
    
    .cart-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .cart-modal-body {
        padding: 20px;
    }
    
    .cart-item {
        padding: 16px;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-brown {
    color: var(--primary-brown);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Loading Animation*/
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Print Styles*/
@media print {
    .navbar,
    .sticky-bottom-bar,
    .back-to-top,
    .scroll-indicator,
    .hero-cta {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg);
    }
}
