        :root {
            --warm-white: #FAFAF8;
            --charcoal: #1A1A1A;
            --tomato: #E63946;
            --basil: #6A994E;
            --golden: #FFD166;
        }

        body {
            background-color: var(--warm-white);
            color: var(--charcoal);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .serif { font-family: 'Playfair Display', serif; }
        .cursive { font-family: 'Great Vibes', cursive; font-size: 1.8rem; color: var(--tomato); }
        .subhead { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 2px; }

        /* Animation Keyframes */
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.98) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .animate-reveal { animation: fadeInScale 1s cubic-bezier(0.19, 1, 0.22, 1) forwards; }

        /* Hero Section */
        .hero-canvas {
            height: 120vh;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(250, 250, 248, 1)), 
                        url('https://images.unsplash.com/photo-1547517023-7ca0c162f816?q=80&w=2000') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Cart Sidebar */
        #cart-sidebar {
            position: fixed;
            right: -100%;
            top: 0;
            width: 100%;
            max-width: 450px;
            height: 100vh;
            background: white;
            z-index: 200;
            transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            padding: 2rem;
        }
        #cart-sidebar.open { right: 0; }

        /* Custom UI Elements */
        .glass-panel {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .lookbook-item:hover img { transform: scale(1.05); }
        .lookbook-item img { transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1); }

        .footer-link {
            position: relative;
            transition: color 0.3s ease;
        }
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--tomato);
            transition: width 0.3s ease;
        }
        .footer-link:hover::after { width: 100%; }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #ddd, transparent);
            margin: 4rem 0;
        }
        /* Smooth transitions for mobile menu */
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
        color: #1A1A1A;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive improvements */
    @media (max-width: 640px) {
        #navbar {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }
    
    @media (max-width: 1024px) {
        /* Ensure mobile menu doesn't exceed viewport height */
        #mobile-menu {
            max-height: calc(100vh - 80px);
            overflow-y: auto;
        }
    }
        @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes textReveal {
        0% {
            clip-path: inset(0 100% 0 0);
        }
        100% {
            clip-path: inset(0 0 0 0);
        }
    }
    
    @keyframes typing {
        from {
            width: 0;
        }
        to {
            width: 100%;
        }
    }
    
    @keyframes typewriter {
        0% {
            width: 0;
        }
        100% {
            width: 100%;
        }
    }
    
    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes cardFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    .animate-fade-in-up {
        animation: fadeInUp 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .animate-scale-in {
        animation: scaleIn 0.6s ease-out forwards;
        opacity: 0;
    }
    
    .animate-slide-in-left {
        animation: slideInLeft 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .animate-slide-in-right {
        animation: slideInRight 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .animate-text-reveal {
        animation: textReveal 1.2s ease-out forwards;
        clip-path: inset(0 100% 0 0);
    }
    
    .animate-typing {
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        animation: typing 1.5s steps(40, end);
        border-right: 2px solid transparent;
    }
    
    .animate-typewriter {
        overflow: hidden;
        white-space: nowrap;
        animation: typewriter 4s steps(60, end) forwards;
        width: 0;
    }
    
    .animate-count-up {
        animation: countUp 1s ease-out forwards;
        opacity: 0;
    }
    
    .animate-card-float {
        animation: cardFloat 6s ease-in-out infinite;
    }
    
    .animate-reveal {
        animation: fadeInUp 0.6s ease-out;
    }
    
    /* Stagger delays for grid items */
    .grid > *:nth-child(1) { animation-delay: 0.1s; }
    .grid > *:nth-child(2) { animation-delay: 0.2s; }
    .grid > *:nth-child(3) { animation-delay: 0.3s; }
    .grid > *:nth-child(4) { animation-delay: 0.4s; }
    .grid > *:nth-child(5) { animation-delay: 0.5s; }
    .grid > *:nth-child(6) { animation-delay: 0.6s; }
    /* Article card hover effects */
    .group:hover .group-hover\:scale-110 {
        transform: scale(1.1);
    }
    
    .group:hover .group-hover\:bg-white {
        background-color: white;
    }
    
    .group:hover .group-hover\:text-red-500 {
        color: #EF4444;
    }
    
    .group:hover .group-hover\:border-red-500 {
        border-color: #EF4444;
    }
    
    /* Gradient text animation */
    @keyframes gradientShift {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }
    
    .gradient-text {
        background: linear-gradient(90deg, #EF4444, #DC2626, #B91C1C);
        background-size: 200% 200%;
        animation: gradientShift 3s ease infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Shimmer effect */
    @keyframes shimmer {
        0% {
            background-position: -1000px 0;
        }
        100% {
            background-position: 1000px 0;
        }
    }
    
    .animate-shimmer {
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite;
    }
    
    /* Progress bar animation */
    @keyframes progressFill {
        from {
            width: 0%;
        }
        to {
            width: var(--progress-width);
        }
    }
    
    .progress-bar {
        animation: progressFill 1s ease-out forwards;
    }


        /* Hero Section Styles */
    .hero-canvas {
        scroll-snap-align: start;
    }
    
    /* Text Slide Animations */
    @keyframes textSlideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-text-slide-up {
        animation: textSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    /* Letter Spacing Animation */
    @keyframes letterSpacing {
        0% {
            letter-spacing: -0.1em;
            opacity: 0;
        }
        100% {
            letter-spacing: normal;
            opacity: 1;
        }
    }
    
    .animate-letter-spacing {
        animation: letterSpacing 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    /* Fade In Up */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fade-in-up {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
    }
    
    /* Scale In */
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .animate-scale-in {
        animation: scaleIn 0.8s ease-out forwards;
        opacity: 0;
    }
    
    /* Bounce Animation */
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
    
    .animate-bounce {
        animation: bounce 2s infinite;
    }
    
    /* Pulse Animation */
    @keyframes pulse {
        0%, 100% {
            opacity: 0.6;
        }
        50% {
            opacity: 1;
        }
    }
    
    .animate-pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    
    /* Smooth transitions */
    .hero-canvas img {
        transition: transform 10s ease-out;
    }
    
    .hero-canvas:hover img {
        transform: scale(1.05);
    }
    
    /* Navigation button hover effects */
    .hero-nav-btn {
        transition: all 0.3s ease;
    }
    
    .hero-nav-btn.active {
        width: 1rem !important;
        height: 1rem !important;
    }
    
    /* Responsive adjustments */
    @media (max-width: 640px) {
        .hero-canvas {
            height: 85vh;
        }
        
        .hero-canvas h1 {
            font-size: 3.5rem !important;
        }
        
        .cursive {
            font-size: 2rem !important;
        }
        
        #prev-slide, #next-slide {
            padding: 0.5rem;
        }
        
        #prev-slide i, #next-slide i {
            width: 1rem;
            height: 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-canvas h1 {
            font-size: 4.5rem !important;
        }
        
        .text-slide p {
            font-size: 1.125rem !important;
        }
    }
    
    /* Hide navigation buttons on very small screens */
    @media (max-width: 480px) {
        #prev-slide, #next-slide {
            display: none;
        }
        
        .hero-nav-btn {
            width: 0.5rem !important;
            height: 0.5rem !important;
        }
        
        .hero-nav-btn.active {
            width: 0.75rem !important;
            height: 0.75rem !important;
        }
    }
    
    /* Ensure text remains readable */
    .text-slide h1 {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    }
    
    /* Gradient overlay for better text readability */
    .hero-canvas::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 20%,
            transparent 50%,
            rgba(0, 0, 0, 0.2) 80%,
            rgba(0, 0, 0, 0.4) 100%
        );
        z-index: 15;
        pointer-events: none;
    }
    
    /* Loading state */
    .hero-canvas.loading img {
        filter: blur(10px);
    }
    
    .hero-canvas.loaded img {
        filter: blur(0);
        transition: filter 0.5s ease-out;
    }    /* High Contrast Mode */
    .high-contrast {
        --contrast-bg: #000000;
        --contrast-text: #FFFFFF;
        --contrast-accent: #FF0000;
    }
    
    .high-contrast body {
        background-color: var(--contrast-bg) !important;
        color: var(--contrast-text) !important;
    }
    
    .high-contrast .bg-white {
        background-color: var(--contrast-bg) !important;
        color: var(--contrast-text) !important;
        border: 2px solid var(--contrast-text) !important;
    }
    
    .high-contrast .text-gray-600,
    .high-contrast .text-gray-500,
    .high-contrast .text-gray-400 {
        color: var(--contrast-text) !important;
        opacity: 0.9;
    }
    
    .high-contrast .bg-red-500 {
        background-color: var(--contrast-accent) !important;
    }
    
    .high-contrast button,
    .high-contrast a {
        outline: 2px solid var(--contrast-text) !important;
        outline-offset: 2px;
    }
    
    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Screen Reader Only */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }
    
    /* Focus Styles for Keyboard Navigation */
    button:focus,
    a:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid #EF4444;
        outline-offset: 2px;
    }
    
    /* Popup Animations */
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .animate-scale-in {
        animation: scaleIn 0.2s ease-out forwards;
    }
    
    /* Scrollbar Styling for Popups */
    .overflow-y-auto {
        scrollbar-width: thin;
        scrollbar-color: #EF4444 transparent;
    }
    
    .overflow-y-auto::-webkit-scrollbar {
        width: 8px;
    }
    
    .overflow-y-auto::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .overflow-y-auto::-webkit-scrollbar-thumb {
        background-color: #EF4444;
        border-radius: 4px;
    }
    
    /* Responsive Popup Adjustments */
    @media (max-width: 640px) {
        #popup-privacy,
        #popup-terms,
        #popup-accessibility {
            padding: 1rem;
            align-items: flex-end;
        }
        
        #popup-privacy .bg-white,
        #popup-terms .bg-white,
        #popup-accessibility .bg-white {
            max-height: 90vh;
            border-radius: 0.5rem 0.5rem 0 0;
        }
    }
    
    /* Print Styles */
    @media print {
        #popup-privacy,
        #popup-terms,
        #popup-accessibility {
            display: none !important;
        }
    }
    /* Form animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fade-in-up {
        animation: fadeInUp 0.3s ease-out forwards;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .animate-slide-in-left {
        animation: slideInLeft 0.6s ease-out forwards;
        opacity: 0;
    }
    
    .animate-slide-in-right {
        animation: slideInRight 0.6s ease-out forwards;
        opacity: 0;
        animation-delay: 0.2s;
    }
    
    /* Form styling */
    #newsletter-form input:focus {
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
    }
    
    /* Checkbox styling */
    input[type="checkbox"]:checked {
        background-color: #EF4444;
        border-color: #EF4444;
    }
    
    input[type="checkbox"]:checked::before {
        content: "✓";
        display: block;
        color: white;
        text-align: center;
        font-size: 10px;
        line-height: 14px;
    }
    
    /* Loading spinner */
    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    
    .animate-spin {
        animation: spin 1s linear infinite;
    }
    
    /* Success/Error message animations */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Focus styles for accessibility */
    #newsletter-form input:focus,
    #newsletter-form button:focus {
        outline: 2px solid #EF4444;
        outline-offset: 2px;
    }
    
    /* Placeholder styling */
    ::placeholder {
        color: #9CA3AF;
        opacity: 0.7;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .border-y {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
        
        .grid-cols-2 {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .text-3xl {
            font-size: 2rem;
        }
        
        .text-4xl {
            font-size: 2.25rem;
        }
        
        /* Stack checkboxes on mobile */
        #newsletter-form .grid-cols-2 {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .py-4 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        
        .px-12 {
            padding-left: 2.5rem;
            padding-right: 1rem;
        }
        
        .px-10 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
    }
    
    /* Print styles */
    @media print {
        #newsletter-form,
        #newsletter-success,
        #newsletter-error {
            display: none !important;
        }
    }
    
    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .animate-slide-in-left,
        .animate-slide-in-right,
        .animate-fade-in-up,
        .animate-spin {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .group-hover\:translate-x-1 {
            transform: none !important;
        }
    }
    /* Form animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fade-in-up {
        animation: fadeInUp 0.3s ease-out forwards;
    }
    
    /* Spinner animation */
    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    
    .animate-spin {
        animation: spin 1s linear infinite;
    }
    
    /* Custom radio button styling */
    input[type="radio"]:checked + div {
        background-color: #EF4444;
        border-color: #EF4445;
    }
    
    /* Custom checkbox styling */
    input[type="checkbox"]:checked {
        background-color: #EF4444;
        border-color: #EF4444;
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
        background-size: 10px 10px;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    /* Hide default checkboxes and radios */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }
    
    /* Smooth transitions */
    .transition {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }
    
    /* Responsive adjustments */
    @media (max-width: 640px) {
        .grid-cols-2, .grid-cols-3 {
            grid-template-columns: 1fr;
        }
        
        #newsletter-unsubscribe-form .flex {
            flex-direction: column;
        }
        
        #newsletter-unsubscribe-form .flex button {
            width: 100%;
        }
    }
    
    /* Print styles */
    @media print {
        #newsletter-subscribe-form,
        #newsletter-unsubscribe-form,
        #newsletter-success,
        #newsletter-error,
        #unsubscribe-success {
            display: none !important;
        }
    }
