@import "tailwindcss";

@theme {
  --color-brand-red: #C8102E;
  --color-brand-darkRed: #8A0B20;
  --color-brand-gold: #D4AF37;
  --color-brand-dark: #0F172A;
  --color-brand-light: #FCFBF7;
  --color-brand-muted: #64748B;
  
  --font-sans: var(--font-inter), sans-serif;
  --font-serif: var(--font-playfair), serif;
  
  --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 20px 40px -15px rgba(200, 16, 46, 0.12);
}

body {
  background-color: #FCFBF7;
  color: #0F172A;
  -webkit-font-smoothing: antialiased;
}

        .glass-nav {
            background: rgba(252, 251, 247, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
        }

        .hero-overlay {
            background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 20%, rgba(15, 23, 42, 0.5) 80%);
        }

        /* Custom scrollbar for horizontal product list */
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: #FCFBF7; }
        ::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }

        .fade-in-up {
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .input-premium:focus {
            border-color: #C8102E;
            box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
            outline: none;
        }

        /* Tab switching styles */
        .tab-btn {
            transition: all 0.3s ease;
        }
        .tab-active {
            background-color: #C8102E;
            color: white;
            border-color: #C8102E;
            box-shadow: 0 10px 20px -5px rgba(200, 16, 46, 0.3);
        }
        .tab-inactive {
            background-color: white;
            color: #64748B;
            border-color: #E2E8F0;
        }
        .tab-inactive:hover {
            border-color: #CBD5E1;
            color: #0F172A;
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 8px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,0.3);
        }

        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #0F172A;
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            z-index: 1000;
            transform: translateX(120%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-left: 4px solid #C8102E;
            max-width: 350px;
        }
        .toast.show {
            transform: translateX(0);
        }
    

