/* ===================================
   RESELL OF - Modern Luxury Resale Store
   Colors: Black, White, Amethyst Purple
   =================================== */

/* CSS Variables - Professional White Theme with Amethyst Accents */
:root {
    --primary-color: #9966CC;      /* Amethyst */
    --primary-dark: #7A4FB8;       /* Darker Amethyst */
    --primary-light: #B794E6;      /* Lighter Amethyst */
    --secondary-color: #000000;    /* Black */
    --bg-dark: #FFFFFF;            /* White Background */
    --bg-medium: #F8F9FA;          /* Light Gray Background */
    --bg-light: #F0F0F0;           /* Lighter Gray Background */
    --text-primary: #1A1A1A;       /* Dark Text */
    --text-secondary: #666666;      /* Medium Gray Text */
    --text-muted: #999999;          /* Light Gray Text */
    --accent-gradient: linear-gradient(135deg, #9966CC 0%, #CC66B3 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 2rem; /* Reducido */
    font-size: 0.95rem; /* Reducido */
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Halloween Banner */
.halloween-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF6B35 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 700;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    animation: halloweenPulse 2s ease-in-out infinite;
    min-height: 50px;
}

@keyframes halloweenPulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(255, 107, 53, 0.6);
    }
}

.halloween-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.halloween-banner-main {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}

.halloween-banner-sub {
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.9;
    line-height: 1.2;
}

.halloween-banner-sub i {
    font-size: 0.75rem;
}

.halloween-banner i {
    font-size: 1.1rem;
    color: #000000;
    animation: float 3s ease-in-out infinite;
}

.halloween-banner i:first-child {
    animation-delay: 0s;
}

.halloween-banner i:last-child {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Halloween Decorations - Floating Elements */
.halloween-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 999;
    opacity: 0.3;
    animation: floatAround 15s ease-in-out infinite;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, -60px) rotate(180deg);
    }
    75% {
        transform: translate(30px, -30px) rotate(270deg);
    }
}

/* Halloween Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: halloweenGlow 8s ease-in-out infinite;
}

@keyframes halloweenGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Spider Web Decorations */
.spider-web {
    position: fixed;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 998;
    opacity: 0.2;
    background-image: 
        radial-gradient(circle, transparent 35%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.4) 37%, transparent 37%),
        linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0.4) 52%, transparent 52%),
        linear-gradient(60deg, transparent 48%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0.4) 52%, transparent 52%),
        linear-gradient(120deg, transparent 48%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0.4) 52%, transparent 52%),
        linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0.3) 52%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0.3) 52%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0.3) 52%, transparent 52%);
    background-size: 100% 100%;
    background-position: center;
    animation: webSway 10s ease-in-out infinite;
    filter: blur(0.5px);
}

.spider-web-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.spider-web-2 {
    top: 60%;
    left: 3%;
    animation-delay: 2s;
    transform: scale(0.8);
}

.spider-web-3 {
    bottom: 15%;
    right: 8%;
    animation-delay: 4s;
    transform: scale(0.6);
}

@keyframes webSway {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: rotate(5deg) scale(1.05);
        opacity: 0.2;
    }
    50% {
        transform: rotate(-5deg) scale(1);
        opacity: 0.15;
    }
    75% {
        transform: rotate(3deg) scale(1.03);
        opacity: 0.18;
    }
}

/* Floating Halloween Elements */
.halloween-float {
    position: fixed;
    font-size: 2rem;
    pointer-events: none;
    z-index: 997;
    opacity: 0.2;
    animation: floatAround 20s ease-in-out infinite;
}

.halloween-float-1 {
    content: '👻';
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.halloween-float-2 {
    content: '🦇';
    top: 50%;
    right: 5%;
    animation-delay: 3s;
}

.halloween-float-3 {
    content: '🎃';
    bottom: 20%;
    left: 8%;
    animation-delay: 6s;
}

.halloween-float-4 {
    content: '🕷️';
    top: 30%;
    right: 10%;
    animation-delay: 9s;
}

.halloween-float-5 {
    content: '🕸️';
    bottom: 30%;
    right: 5%;
    animation-delay: 12s;
}

/* Halloween Product Cards */
.product-card {
    position: relative;
    overflow: visible;
}

.product-card::after {
    content: '🎃';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.product-card:hover::after {
    opacity: 0.6;
    transform: scale(1) rotate(15deg);
    animation: pumpkinWiggle 0.5s ease-in-out;
}

@keyframes pumpkinWiggle {
    0%, 100% {
        transform: scale(1) rotate(15deg);
    }
    25% {
        transform: scale(1.1) rotate(20deg);
    }
    75% {
        transform: scale(1.1) rotate(10deg);
    }
}

/* Halloween Button Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    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.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Halloween Section Titles */
.section-title::after {
    content: '🦇';
    display: inline-block;
    margin-left: 0.5rem;
    animation: batFly 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes batFly {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(-10deg);
    }
    50% {
        transform: translateX(-10px) rotate(10deg);
    }
    75% {
        transform: translateX(5px) rotate(-5deg);
    }
}

/* Halloween Footer */
.footer {
    position: relative;
}

.footer::before {
    content: '👻';
    position: absolute;
    top: -20px;
    left: 5%;
    font-size: 2rem;
    opacity: 0.2;
    animation: ghostFloat 4s ease-in-out infinite;
}

.footer::after {
    content: '🕷️';
    position: absolute;
    top: -20px;
    right: 5%;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: spiderCrawl 5s ease-in-out infinite;
}

@keyframes ghostFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.4;
    }
}

@keyframes spiderCrawl {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(10px) translateY(-5px);
    }
    50% {
        transform: translateX(-10px) translateY(-10px);
    }
    75% {
        transform: translateX(5px) translateY(-5px);
    }
}

/* Header & Navigation - Minimalist Centered Design */
.header {
    position: fixed;
    top: 50px; /* Adjusted for smaller Halloween banner */
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(153, 102, 204, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(153, 102, 204, 0.25);
}

.navbar {
    padding: 1rem 0;
    position: relative;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

/* Navbar Sections */
.navbar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Logo - Centered Minimalist */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    display: inline-block;
}

.logo .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 1.25rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icon Buttons */
.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: rgba(153, 102, 204, 0.1);
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(153, 102, 204, 0.4);
}

/* Menu Toggle Button */
.nav-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    position: relative;
    z-index: 1004;
}

.nav-toggle:hover {
    background: rgba(153, 102, 204, 0.08);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    pointer-events: none;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Menu Overlay - Professional & Minimalist */
.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 8px 0 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(153, 102, 204, 0.1);
    transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1003;
    overflow-y: auto;
    overflow-x: hidden;
    will-change: left;
}

.nav-menu-overlay.active {
    left: 0;
}

.nav-menu-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Menu Header */
.nav-menu-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(153, 102, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(153, 102, 204, 0.03);
}

.nav-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu-logo i {
    font-size: 1.125rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu-logo .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 102, 204, 0.1);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(153, 102, 204, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.nav-menu-close:hover::before {
    width: 100%;
    height: 100%;
}

.nav-menu-close:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
    transform: rotate(90deg);
}

.nav-menu-close i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Menu Items */
.nav-menu {
    list-style: none;
    padding: 2rem 1.5rem;
    margin: 0;
    flex: 1;
}

.nav-menu li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.nav-menu-overlay.active .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu-overlay.active .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu-overlay.active .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu-overlay.active .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu-overlay.active .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
.nav-menu-overlay.active .nav-menu li:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(153, 102, 204, 0.1) 0%, rgba(153, 102, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    transform: scaleY(1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    opacity: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
    padding-left: 1.5rem;
    transform: translateX(4px);
}

.nav-menu a i {
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-menu a:hover i,
.nav-menu a.active i {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-menu a span {
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Menu Footer (optional) */
.nav-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(153, 102, 204, 0.1);
    background: rgba(153, 102, 204, 0.02);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 102, 204, 0.1);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.search-close:hover {
    background: rgba(153, 102, 204, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg) scale(1.05);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: #FFFFFF;
    border: 2px solid rgba(153, 102, 204, 0.2);
    border-radius: 16px;
    margin-top: 4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(153, 102, 204, 0.2);
    transform: translateY(-2px);
}

.search-box i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    outline: none;
    min-width: 0;
}

.search-box input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.search-clear {
    background: rgba(153, 102, 204, 0.1);
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-box:focus-within .search-clear {
    opacity: 1;
}

.search-clear:hover {
    background: rgba(153, 102, 204, 0.2);
    color: var(--primary-color);
    transform: scale(1.1);
}

.search-results {
    margin-top: 2rem;
    padding: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: var(--bg-medium);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(153, 102, 204, 0.3);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 102, 204, 0.5);
}

/* Search Results Styles */
.search-results-count {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 0.25rem;
}

.search-results-grid {
    display: grid;
    gap: 1rem;
}

.search-result-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #FFFFFF;
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-result-item:hover {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(153, 102, 204, 0.2);
    transform: translateY(-2px);
}

.search-result-image {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(153, 102, 204, 0.15);
    flex-shrink: 0;
    background: var(--bg-medium);
}

.search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.search-result-brand {
    font-size: 0.813rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.search-result-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
}

.search-result-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.search-no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.search-no-results-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.search-no-results-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.search-no-results-query {
    color: var(--text-primary);
    font-weight: 600;
}

/* Mobile Toggle - REMOVED (using main nav-toggle styles above) */

/* Language Selector - Minimalist */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
}

.language-btn:hover {
    border-color: var(--primary-color);
    background: rgba(153, 102, 204, 0.15);
}

.lang-flag {
    font-size: 1.125rem;
    line-height: 1;
}

.lang-name {
    font-weight: 500;
    display: none;
}

.language-btn i {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.language-dropdown.show .language-btn i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(153, 102, 204, 0.2);
    border-top: 1px solid rgba(153, 102, 204, 0.2);
    transform: rotate(45deg);
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.language-option:hover {
    background: rgba(153, 102, 204, 0.15);
    color: var(--text-primary);
}

.language-option.active {
    background: rgba(153, 102, 204, 0.2);
    color: var(--text-primary);
}

.language-option .lang-name {
    flex: 1;
    font-weight: 500;
    display: block;
}

.language-option .fa-check {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Hero Section - Con Imágenes de Fondo */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 130px; /* Adjusted for smaller Halloween banner + header */
    background: var(--bg-medium); /* Fondo claro por si las imágenes no cargan */
}

/* Halloween decorations in hero */
.hero::after {
    content: '🎃👻🦇';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 3rem;
    opacity: 0.1;
    animation: halloweenFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes halloweenFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
}

/* Contenedor de las 3 imágenes de fondo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('../images/1.jpg') left center / 33.333% 100% no-repeat,
        url('../images/2.jpg') center center / 33.333% 100% no-repeat,
        url('../images/3.jpg') right center / 33.333% 100% no-repeat;
    background-color: var(--bg-medium);
    z-index: 0;
}

/* En móviles, usar una sola imagen centrada */
@media (max-width: 768px) {
    .hero::before {
        background: url('../images/2.jpg') center center / cover no-repeat;
        background-color: var(--bg-medium);
    }
}

/* Overlay para que el texto se vea bien */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Reducido */
    margin-bottom: 1rem; /* Reducido */
    font-weight: 900;
    letter-spacing: -1.5px; /* Reducido */
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem); /* Reducido */
    color: #FFFFFF;
    margin-bottom: 1.75rem; /* Reducido */
    line-height: 1.6; /* Reducido */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem; /* Reducido */
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem; /* Reducido */
}

.hero-buttons .btn-primary {
    color: #FFFFFF;
}

.hero-buttons .btn-outline {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.hero-buttons .btn-outline:hover {
    background: #FFFFFF;
    color: var(--primary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Reducido */
    gap: 1.5rem; /* Reducido */
    margin-top: 2.5rem; /* Reducido */
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem; /* Reducido */
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.35rem; /* Reducido */
}

.stat-label {
    font-size: 0.75rem; /* Reducido */
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reducido */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #FFFFFF;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Brands Section */
.brands-section {
    background: var(--bg-medium);
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(153, 102, 204, 0.1);
    border-bottom: 1px solid rgba(153, 102, 204, 0.1);
}

.section-title-small {
    text-align: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.brands-marquee {
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
    white-space: nowrap;
    transition: var(--transition);
}

.brand-item:hover {
    color: var(--primary-color);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-medium);
    padding: 4rem 0 !important;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '🕷️';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2rem;
    opacity: 0.1;
    animation: spiderCrawl 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.how-it-works .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.how-it-works .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.step-card {
    position: relative;
    background: #FFFFFF;
    padding: 1.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(153, 102, 204, 0.15);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(153, 102, 204, 0.1);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Featured Products Section */
.featured-products {
    background: #F5F5F5;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '🕸️';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 2rem;
    opacity: 0.15;
    animation: spiderWeb 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.featured-products::after {
    content: '🎃';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    opacity: 0.15;
    animation: pumpkinBounce 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    margin-top: 2rem;
}

.products-carousel {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    padding: 1rem 0;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.products-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: productsScroll 40s linear infinite;
    will-change: transform;
}

.products-carousel:hover .products-carousel-track {
    animation-play-state: paused;
}

@keyframes productsScroll {
    0% { transform: translateX(-33.333%); }
    100% { transform: translateX(0); }
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Carousel Product Card (New Design - Larger Square) */
.carousel-product-card {
    flex: 0 0 380px;
    min-width: 380px;
    max-width: 380px;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.carousel-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #F5F5F5;
    overflow: hidden;
}

.carousel-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.carousel-product-card:hover .carousel-product-image img {
    transform: scale(1.05);
}

.carousel-product-info {
    padding: 1.5rem;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.carousel-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}

.shop-now-btn {
    background: #E8E8E8;
    color: #1A1A1A;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.shop-now-btn:hover {
    background: #D0D0D0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shop-now-btn:active {
    transform: translateY(0);
}

/* Legacy support for old product cards in carousel */
.products-carousel .product-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000000;
    border: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    font-size: 1.25rem;
}

.carousel-prev {
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

.carousel-next {
    background: #000000;
    color: #FFFFFF;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.carousel-prev:hover {
    background: #000000;
    color: #FFFFFF;
}

.carousel-next:hover {
    background: #333333;
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .carousel-product-card {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
    }
    
    .products-carousel .product-card {
        flex: 0 0 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .carousel-prev {
        left: -22px;
    }
    
    .carousel-next {
        right: -22px;
    }
    
    .featured-products {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .carousel-product-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .products-carousel .product-card {
        flex: 0 0 200px;
        min-width: 200px;
        max-width: 200px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .featured-products {
        padding: 2rem 0;
    }
    
    .carousel-product-name {
        font-size: 0.875rem;
    }
    
    .shop-now-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
}

.product-card {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(153, 102, 204, 0.15);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 125%;
    background: var(--bg-medium);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #000000;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.6);
    }
}

.product-info {
    padding: 1.5rem;
    background: #FFFFFF;
}

.product-brand {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.product-price-original {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-discount {
    background: rgba(153, 102, 204, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Why Choose Us - Smaller Section */
.why-choose-us {
    padding: 4rem 0 !important;
}

.why-choose-us .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.why-choose-us .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(153, 102, 204, 0.15);
    box-shadow: var(--shadow-sm);
}

.why-choose-us .feature-card {
    padding: 1.75rem 1.5rem;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-choose-us .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-choose-us .feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.why-choose-us .feature-card p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Testimonials Section - Exact Clone from Image */
.testimonials-section {
    padding: 4rem 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '👻';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    opacity: 0.1;
    animation: ghostAppear 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.testimonials-section::after {
    content: '🦇';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: batHover 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.testimonials-main-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.testimonials-rating {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-rating-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-bottom: 0.625rem;
    flex-wrap: wrap;
}

.rating-label {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.2;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.rating-max {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000000;
}

.testimonials-rating-text .testimonials-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.1875rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.testimonials-stars .fa-star {
    background-color: #00B67A;
    color: #FFFFFF;
    font-size: 0.75rem;
    line-height: 1;
    width: 1.125rem;
    height: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 0;
}

.testimonials-stars .star-partial {
    position: relative;
    display: inline-block;
    width: 1.125rem;
    height: 1.125rem;
    overflow: hidden;
    border-radius: 2px;
}

.testimonials-stars .star-partial::before {
    content: '\f005';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E5E7EB;
    color: #FFFFFF;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    z-index: 1;
}

.testimonials-stars .star-partial::after {
    content: '\f005';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #00B67A;
    color: #FFFFFF;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px 0 0 2px;
    overflow: hidden;
    z-index: 2;
}

.testimonials-count {
    font-size: 0.75rem;
    color: #000000;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: underline;
}

.testimonials-count strong {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
}

.testimonials-carousel-wrapper {
    position: relative;
}

.testimonials-carousel {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    padding: 0.5rem 0;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.testimonials-carousel-track {
    display: flex;
    gap: 1rem;
    animation: testimonialsScroll 50s linear infinite;
    will-change: transform;
}

.testimonials-carousel:hover .testimonials-carousel-track {
    animation-play-state: paused;
}

@keyframes testimonialsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card-new {
    flex: 0 0 400px;
    min-width: 400px;
    max-width: 400px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card-new:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.testimonial-card-new .testimonial-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.testimonial-card-new .testimonial-stars .fa-star {
    background-color: #00B67A;
    color: #FFFFFF;
    font-size: 0.6875rem;
    line-height: 1;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 0;
}

.testimonial-headline {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 0.75rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 400;
}

.testimonial-name {
    font-size: 0.75rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    line-height: 1.3;
}

.testimonials-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    font-size: 0.6875rem;
}

.testimonials-carousel-nav:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.05);
}

.testimonials-carousel-prev {
    left: -18px;
}

.testimonials-carousel-next {
    right: -18px;
}

.testimonials-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-card-new {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
        padding: 1.75rem;
    }
    
    .testimonials-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .testimonials-carousel-prev {
        left: -20px;
    }
    
    .testimonials-carousel-next {
        right: -20px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-main-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.25rem;
    }
    
    .testimonial-card-new {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .testimonial-headline {
        font-size: 0.95rem;
    }
    
    .testimonial-text {
        font-size: 0.813rem;
    }
    
    .testimonials-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    
    .testimonials-carousel-prev {
        left: -18px;
    }
    
    .testimonials-carousel-next {
        right: -18px;
    }
}

/* Old testimonials section - remove later */
.testimonials-section-old {
    background: var(--bg-medium);
    overflow: hidden;
    border-top: 1px solid rgba(153, 102, 204, 0.1);
    border-bottom: 1px solid rgba(153, 102, 204, 0.1);
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.track-left {
    animation: scroll-left 40s linear infinite;
}

.track-right {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 350px;
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(153, 102, 204, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.instagram-mockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ig-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ig-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ig-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.ig-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.ig-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ig-message p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.ig-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0 !important;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '🦇';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    opacity: 0.1;
    animation: batHover 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.faq-section::after {
    content: '🎃';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.1;
    animation: pumpkinBounce 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.faq-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.faq-section .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(153, 102, 204, 0.15);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--accent-gradient);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-content .btn {
    background: white;
    color: var(--primary-color);
}

.cta-content .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-medium);
    border-top: 1px solid rgba(153, 102, 204, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.875rem 1.25rem;
    background: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(153, 102, 204, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo i {
        font-size: 1.125rem;
    }

    .logo-text {
        letter-spacing: 1px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .search-content {
        padding: 1.5rem;
    }

    .search-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .search-box {
        padding: 1rem 1.5rem;
        margin-top: 3rem;
        border-radius: 12px;
    }

    .search-box input {
        font-size: 1rem;
    }

    .search-box i {
        font-size: 1.125rem;
    }

    .hero {
        min-height: 70vh;
        padding-top: 110px; /* Adjusted for banner + header */
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: clamp(0.875rem, 2vw, 1rem);
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .faq-section {
        padding: 3.5rem 0 !important;
    }

    .faq-section .section-title {
        font-size: clamp(1.625rem, 4vw, 2rem);
    }

    .faq-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2.25rem;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        max-width: 1000px;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 1rem 0.875rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .how-it-works {
        padding: 3.5rem 0 !important;
    }

    .how-it-works .section-title {
        font-size: clamp(1.625rem, 4vw, 2rem);
    }

    .how-it-works .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2.25rem;
    }

    .why-choose-us {
        padding: 3.5rem 0 !important;
    }

    .why-choose-us .section-title {
        font-size: clamp(1.625rem, 4vw, 2rem);
    }

    .why-choose-us .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
    }

    .why-choose-us .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .why-choose-us .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }

    .why-choose-us .feature-card h3 {
        font-size: 1.063rem;
        margin-bottom: 0.625rem;
    }

    .why-choose-us .feature-card p {
        font-size: 0.85rem;
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
    }

    .step-card {
        padding: 1.5rem 1.25rem;
    }

    .step-number {
        font-size: 1.75rem;
        top: 0.625rem;
        right: 0.625rem;
    }

    .step-icon {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }

    .step-card h3 {
        font-size: 1.063rem;
        margin-bottom: 0.625rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .product-image {
        padding-top: 120%;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Filters Bar Responsive */
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-left,
    .filters-right {
        flex-direction: column;
        width: 100%;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }

    /* Product Detail Responsive */
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-info {
        position: static;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-actions-detail {
        flex-direction: column;
    }

    .security-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Cart Responsive */
    .cart-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-summary {
        position: static;
        order: -1;
    }

    .cart-item {
        grid-template-columns: 120px 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .cart-item-image {
        width: 120px;
        height: 150px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(153, 102, 204, 0.1);
    }

    .cart-item-price {
        margin-top: 0;
        padding-top: 0;
    }

    /* Newsletter CTA Responsive */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form-inline {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.875rem;
    }

    section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: clamp(0.813rem, 3vw, 0.875rem);
        margin-bottom: 1.5rem;
    }

    .navbar-container {
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1rem;
    }

    .logo i {
        font-size: 0.938rem;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
    }

    .nav-toggle span {
        width: 18px;
    }

    .nav-menu-overlay {
        max-width: 100%;
    }

    .nav-menu-header {
        padding: 1.25rem 1.5rem;
    }

    .nav-menu-logo {
        font-size: 1.125rem;
    }

    .nav-menu-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .nav-menu {
        padding: 1.5rem 1.25rem;
    }

    .nav-menu a {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .hero {
        min-height: 70vh;
        padding-top: 110px; /* Adjusted for banner + header */
    }

    .hero-content {
        padding: 0.875rem;
    }

    .hero-title {
        font-size: clamp(1.375rem, 6vw, 1.75rem);
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.813rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .stat-number {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.625rem;
        letter-spacing: 0.3px;
    }

    .hero-scroll {
        bottom: 1rem;
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        padding-top: 120%;
    }

    .product-info {
        padding: 0.625rem;
    }

    .product-brand {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }

    .product-name {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
        line-height: 1.3;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-price-original {
        font-size: 0.7rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .product-actions .btn {
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .product-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .how-it-works {
        padding: 2rem 0 !important;
    }

    .how-it-works .section-title {
        font-size: clamp(1.375rem, 5vw, 1.625rem);
        margin-bottom: 0.5rem;
    }

    .how-it-works .section-subtitle {
        font-size: 0.813rem;
        margin-bottom: 1.5rem;
    }

    .why-choose-us {
        padding: 2rem 0 !important;
    }

    .why-choose-us .section-title {
        font-size: clamp(1.375rem, 5vw, 1.625rem);
        margin-bottom: 0.5rem;
    }

    .why-choose-us .features-grid {
        gap: 1rem;
    }

    .why-choose-us .feature-card {
        padding: 1.25rem 1rem;
    }

    .why-choose-us .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .why-choose-us .feature-card h3 {
        font-size: 0.938rem;
        margin-bottom: 0.5rem;
    }

    .why-choose-us .feature-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card,
    .feature-card {
        padding: 1.25rem 1rem;
    }

    .step-number {
        font-size: 1.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .step-icon,
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .step-card h3,
    .feature-card h3 {
        font-size: 0.938rem;
        margin-bottom: 0.5rem;
    }

    .step-card p,
    .feature-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .testimonial-card {
        flex: 0 0 260px;
        padding: 1rem;
    }

    .testimonials-track {
        gap: 1.5rem;
    }

    .ig-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .ig-name {
        font-size: 0.875rem;
    }

    .ig-message p {
        font-size: 0.875rem;
    }

    .faq-section {
        padding: 2rem 0 !important;
    }

    .faq-section .section-title {
        font-size: clamp(1.375rem, 5vw, 1.625rem);
        margin-bottom: 0.5rem;
    }

    .faq-section .section-subtitle {
        font-size: 0.813rem;
        margin-bottom: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .faq-question {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .faq-answer p {
        padding: 0 0.875rem 0.75rem;
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 0.938rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.813rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        font-size: 0.813rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .newsletter-form button {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .payment-methods {
        font-size: 1.25rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .cta-content p {
        font-size: 0.938rem;
        margin-bottom: 1.5rem;
    }

    .cta-content .btn {
        padding: 0.875rem 2rem;
        font-size: 0.938rem;
    }

    .brands-section {
        padding: 2rem 0;
    }

    .brand-item {
        font-size: 1.25rem;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(153, 102, 204, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Filters Bar */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-medium);
    border-radius: var(--border-radius);
    flex-wrap: wrap;
}

.filters-left,
.filters-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    min-width: 180px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(153, 102, 204, 0.1);
}

.results-count {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.results-count span {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 700;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Newsletter CTA */
.newsletter-cta {
    background: var(--bg-medium);
    padding: 4rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form-inline input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Product Detail Page */
/* All product detail styles moved to css/product-detail-styles.css */

/* Cart Page */
.cart-section {
    padding: 8rem 0 4rem;
    min-height: 70vh;
}

.cart-section .page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(153, 102, 204, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(153, 102, 204, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(153, 102, 204, 0.15);
}

.cart-item:hover::before {
    opacity: 1;
}

.cart-item-image {
    width: 140px;
    height: 170px;
    background: var(--bg-medium);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.cart-item-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
}

.cart-item-brand {
    font-size: 0.813rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-size {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(153, 102, 204, 0.1);
    border-radius: 6px;
    width: fit-content;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
    padding-top: 1rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-medium);
    border: 1px solid rgba(153, 102, 204, 0.2);
    border-radius: 10px;
    padding: 0.375rem;
}

.quantity-selector button {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.quantity-selector button:hover {
    background: rgba(153, 102, 204, 0.2);
    color: var(--primary-color);
    transform: scale(1.1);
}

.quantity-selector button:active {
    transform: scale(0.95);
}

.quantity-selector span {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.remove-item {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
    color: #ff4444;
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: #ff4444;
    transform: scale(1.05);
}

.remove-item:active {
    transform: scale(0.95);
}

.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(153, 102, 204, 0.2);
    box-shadow: var(--shadow-md);
}

.cart-summary h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.summary-row.total {
    padding-top: 1rem;
    border-top: 2px solid rgba(153, 102, 204, 0.2);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 8rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(153, 102, 204, 0.15) 0%, rgba(153, 102, 204, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(153, 102, 204, 0.2);
    position: relative;
}

.empty-cart-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0.1;
    z-index: -1;
}

.empty-cart-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.empty-cart h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.empty-cart p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.empty-cart .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Policies Page */
.policy-section {
    padding: 8rem 0 4rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-medium);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.policy-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-block h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-block ul,
.policy-block ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-block li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.hidden { display: none; }

/* ===================================
   Cart Drawer Styles
   =================================== */

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.cart-drawer.active {
    transform: translateX(0);
    pointer-events: all;
}

.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.cart-drawer-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
}

.cart-drawer-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-drawer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.cart-drawer-count {
    background: #F0F0F0;
    color: #666666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666666;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cart-drawer-close:hover {
    color: #1A1A1A;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    height: 100%;
}

.cart-drawer-empty h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.cart-drawer-empty p {
    color: #666666;
    font-size: 0.875rem;
}

.cart-drawer-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-drawer-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cart-drawer-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-drawer-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-drawer-item-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.4;
}

.cart-drawer-item-variant {
    font-size: 0.75rem;
    color: #666666;
}

.cart-drawer-item-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-drawer-item-price-current {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1A1A;
}

.cart-drawer-item-price-original {
    font-size: 0.75rem;
    color: #999999;
    text-decoration: line-through;
}

.cart-drawer-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cart-drawer-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    overflow: hidden;
}

.cart-drawer-quantity-btn {
    background: #FFFFFF;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666666;
    font-size: 1rem;
    transition: background 0.2s;
}

.cart-drawer-quantity-btn:hover {
    background: #F8F9FA;
}

.cart-drawer-quantity-value {
    min-width: 40px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
}

.cart-drawer-remove {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.cart-drawer-remove:hover {
    color: #1A1A1A;
}

.cart-drawer-item-total {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1A1A;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.cart-drawer-divider {
    height: 1px;
    background: #E5E5E5;
    margin: 0 -1.5rem;
}

.cart-drawer-coupon {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-drawer-coupon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-coupon-header span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
}

.cart-drawer-coupon-toggle {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.875rem;
}

.cart-drawer-coupon-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.cart-drawer-coupon-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 0.875rem;
    outline: none;
}

.cart-drawer-coupon-input:focus {
    border-color: var(--primary-color);
}

.cart-drawer-coupon-apply {
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-drawer-coupon-apply:hover {
    background: var(--primary-dark);
}

.cart-drawer-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #F8F9FA;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
}

.cart-drawer-coupon-applied button {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.cart-drawer-shipping-protection {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cart-drawer-shipping-protection-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FA;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
}

.cart-drawer-shipping-protection-icon i:first-child {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.cart-drawer-shipping-protection-icon i:last-child {
    font-size: 0.7rem;
    color: var(--primary-color);
    position: absolute;
    bottom: 2px;
    right: 2px;
    opacity: 0.7;
}

.cart-drawer-shipping-protection-content {
    flex: 1;
}

.cart-drawer-shipping-protection-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}

.cart-drawer-shipping-protection-text {
    font-size: 0.75rem;
    color: #666666;
    line-height: 1.4;
}

.cart-drawer-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cart-drawer-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cart-drawer-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E5E5E5;
    transition: 0.3s;
    border-radius: 24px;
}

.cart-drawer-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cart-drawer-toggle input:checked + .cart-drawer-toggle-slider {
    background-color: #22C55E;
}

.cart-drawer-toggle input:checked + .cart-drawer-toggle-slider:before {
    transform: translateX(20px);
}

.cart-drawer-free-shipping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    color: #22C55E;
    font-size: 0.875rem;
    font-weight: 600;
}

.cart-drawer-free-shipping i {
    font-size: 1rem;
}

.cart-drawer-summary {
    padding: 1rem 0;
    border-top: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-drawer-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #666666;
}

.cart-drawer-summary-row span:last-child {
    font-weight: 500;
    color: #1A1A1A;
}

.cart-drawer-summary-row.cart-drawer-discount {
    color: #22C55E;
}

.cart-drawer-summary-row.cart-drawer-discount span:last-child {
    color: #22C55E;
    font-weight: 600;
}

.cart-drawer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #E5E5E5;
}

.cart-drawer-total span:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
}

.cart-drawer-total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
}

.cart-drawer-tax-note {
    font-size: 0.75rem;
    color: #666666;
    line-height: 1.4;
}

.cart-drawer-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #22C55E;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1rem;
}

.cart-drawer-checkout-btn:hover {
    background: #16A34A;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .halloween-banner {
        padding: 0.4rem 0.75rem;
        gap: 0.4rem;
        min-height: 45px;
    }
    
    .halloween-banner-main {
        font-size: 0.65rem;
    }
    
    .halloween-banner-sub {
        font-size: 0.6rem;
    }
    
    .halloween-banner i {
        font-size: 0.8rem;
    }
    
    .spider-web {
        width: 120px;
        height: 120px;
        opacity: 0.1;
    }
    
    .halloween-float {
        font-size: 1.5rem;
        opacity: 0.15;
    }
    
    .header {
        top: 45px; /* Adjusted for smaller Halloween banner */
    }
    
    .navbar-container {
        padding: 0.5rem 1rem !important;
        min-height: 50px;
    }
    
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .logo {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }
    
    .logo i {
        font-size: 0.875rem !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .navbar-right {
        gap: 0.5rem !important;
    }
    
    .icon-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }
    
    .language-btn {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .cart-btn {
        font-size: 0.7rem !important;
    }
    
    .hero {
        padding-top: 110px; /* Adjusted for banner + header */
    }
    
    .hero::after {
        font-size: 1.5rem;
        right: 2%;
    }
    
    .cart-drawer {
        max-width: 100%;
    }
}

