/**
 * RicherK - Main Stylesheet
 * Premium Streetwear eCommerce
 * Design: Luxury Light Theme
 */

/* ============================================
   CSS VARIABLES - LIGHT THEME (DEFAULT)
   ============================================ */
:root {
    /* Colors - Light Theme */
    --color-bg: #ffffff;
    --color-bg-secondary: #fafafa;
    --color-bg-tertiary: #f5f5f5;
    --color-text: #1a1a1a;
    --color-text-secondary: #4a4a4a;
    --color-text-muted: #767676;
    --color-accent: #797979;
    --color-accent-glow: rgba(0, 204, 106, 0.15);
    --color-border: #eaeaea;
    --color-border-light: #dddddd;
    --color-header-bg: rgba(255, 255, 255, 0.98);
    --color-overlay: rgba(255, 255, 255, 0.98);
    --color-card-bg: #ffffff;
    --color-input-bg: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.05);
    
    /* Typography - UPDATED */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-subheading: 'Montserrat', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px var(--color-shadow);
    --shadow-md: 0 4px 8px var(--color-shadow);
    --shadow-lg: 0 8px 16px var(--color-shadow);
    --shadow-glow: 0 0 20px var(--color-accent-glow);
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-header: 300;
    --z-modal: 400;
    --z-loader: 500;
    --z-cursor: 1000;
}
/* Add this at the end of your CSS file for all headings */
h1, h2, h3, h4, h5, h6,
.logo-text,
.hero-title,
.section-title,
.product-name,
.menu-link,
.cta-title,
.page-title,
.cart-item-name,
.footer-heading,
.about-quote,
.contact-form-title,
.admin-page-title {
    letter-spacing: 0.02em;
}

/* Special cases for very large text */
.hero-title,
.cta-title,
.menu-link {
    letter-spacing: 0.03em;
}
/* ============================================
   CSS VARIABLES - DARK THEME (OPTIONAL)
   ============================================ */
body.dark-theme {
    /* Colors - Dark Theme */
    --color-bg: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-tertiary: #111111;
    --color-text: #FFFFFF;
    --color-text-secondary: #999999;
    --color-text-muted: #666666;
    --color-accent: #00ff88;
    --color-accent-glow: rgba(0, 255, 136, 0.3);
    --color-border: #222222;
    --color-border-light: #333333;
    --color-header-bg: rgba(0, 0, 0, 0.95);
    --color-overlay: rgba(0, 0, 0, 0.9);
    --color-card-bg: #0a0a0a;
    --color-input-bg: #111111;
    --color-shadow: rgba(0, 0, 0, 0.5);
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    margin-right: var(--space-3);
    overflow: hidden;
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.theme-toggle-icon {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 2;
}

.theme-toggle-icon svg {
    width: 14px;
    height: 14px;
    transition: all var(--transition-base);
}

.theme-toggle-icon.sun {
    color: #ffaa00;
    transform: translateX(0);
}

.theme-toggle-icon.moon {
    color: #aaccff;
    transform: translateX(0);
}

.theme-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
    z-index: 1;
}

body.dark-theme .theme-toggle-slider {
    transform: translateX(30px);
}

body.dark-theme .theme-toggle-icon.sun {
    color: var(--color-text-muted);
}

body.dark-theme .theme-toggle-icon.moon {
    color: var(--color-text);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

/* Hide scrollbar but keep functionality */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

body::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-full);
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-light);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   CUSTOM CURSOR (Desktop Only)
   ============================================ */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-cursor);
    mix-blend-mode: multiply;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-full);
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

/* Cursor hover states */
.custom-cursor.hover .cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
}

.custom-cursor.hover .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
    
    * {
        cursor: auto !important;
    }
}

/* ============================================
   PAGE LOADER
   ============================================ */
/* ============================================
   PAGE LOADER - SIMPLE SPLASH IMAGE
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    max-width: 90%;
}

.loader-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0; /* Start invisible */
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Remove the pulse animation since we have fade-in/out now */
/* @keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
} */

/* For mobile */
@media (max-width: 768px) {
    .loader-image {
        max-width: 300px;
    }
}

/* For small mobile */
@media (max-width: 480px) {
    .loader-image {
        max-width: 250px;
    }
}
/* ============================================
   LOADER CONTENT VISIBILITY CONTROL
   ============================================ */
#main-content,
.main-header {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body:not(.loader-complete) #main-content,
body:not(.loader-complete) .main-header {
    opacity: 0;
    visibility: hidden;
}

.page-loader {
    display: none;
}

.page-loader[style*="display: flex"] {
    display: flex !important;
}
/* ============================================
   VIDEO INTRO  
   ============================================ */
.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-loader);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-intro.active {
    opacity: 1;
    visibility: visible;
}

.video-intro.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.video-intro video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: var(--space-4) 0;
    transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.main-header.scrolled {
    background: var(--color-header-bg);
    backdrop-filter: blur(10px);
    padding: var(--space-3) 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    max-height: 100px;
    justify-content: space-between;
}

/* Logo */
.logo {
    position: relative;
    z-index: calc(var(--z-header) + 1);
    display: flex;
    align-items: center;
}

.logo-image {
    width: 180px;
    height: auto; 
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.logo:hover .logo-image {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .logo-image {
        width: 100px; /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 100px; /* Even smaller on small mobile */
    }
}
/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    padding: var(--space-2);
    color: var(--color-text);
    transition: color var(--transition-base), transform var(--transition-base);
}

.cart-icon:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.cart-icon.active {
    color: var(--color-accent);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    width: 32px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: calc(var(--z-header) + 1);
}

.menu-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition-base), opacity var(--transition-base), background var(--transition-base);
}

.menu-toggle:hover .menu-line {
    background: var(--color-accent);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ============================================
   FULLSCREEN MENU
   ============================================ */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--z-header) - 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fullscreen-menu.active .menu-backdrop {
    opacity: 1;
}

.menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-8);
    overflow-y: auto;
}

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

.menu-item {
    margin-bottom: var(--space-4);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fullscreen-menu.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .menu-item:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-menu.active .menu-item:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-menu.active .menu-item:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-menu.active .menu-item:nth-child(5) { transition-delay: 0.5s; }

.menu-link {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400; /* Changed from 600 */
    color: var(--color-text);
    display: inline-block;
    position: relative;
    transition: color var(--transition-base), transform var(--transition-base);
    text-transform: uppercase;
}
.menu-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    color: var(--color-accent);
    transition: width 0.4s ease;
    white-space: nowrap;
}

.menu-link:hover {
    color: var(--color-text);
    transform: translateX(10px);
}

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

.menu-cart-count {
    font-size: var(--text-lg);
    color: var(--color-accent);
    margin-left: var(--space-2);
}

.menu-footer {
    margin-top: auto;
    padding-top: var(--space-8);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
}

.fullscreen-menu.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.menu-social .social-link {
    color: var(--color-text-secondary);
    transition: color var(--transition-base), transform var(--transition-base);
}

.menu-social .social-link:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

.menu-copyright {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-message {
    position: fixed;
    top: 100px;
    right: var(--space-6);
    z-index: var(--z-modal);
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.flash-content {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    border-left: 4px solid;
    box-shadow: var(--shadow-lg);
}

.flash-success .flash-content {
    border-color: var(--color-accent);
}

.flash-error .flash-content {
    border-color: #ff4444;
}

.flash-warning .flash-content {
    border-color: #ffaa00;
}

.flash-info .flash-content {
    border-color: #4488ff;
}

.flash-text {
    flex: 1;
    font-size: var(--text-sm);
}

.flash-close {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.flash-close:hover {
    color: var(--color-text);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    background: var(--color-bg);
}

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

.btn-accent:hover {
    background: var(--color-text);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-base);
}

.btn-small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-20) var(--space-6);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-subtitle {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 400; /* Anton only has 400 weight */
    line-height: 1.1;
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
    text-transform: uppercase; /* Anton looks great in uppercase */
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.2s;
}

.scroll-text {
    font-size: var(--text-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--space-24) var(--space-6);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

/* .section-label {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
    display: block;
} */

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400; /* Changed from 700 */
    margin-bottom: var(--space-4);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-label {
    font-family: var(--font-subheading);
    font-size: var(--text-sm);
    font-weight: 600; /* Montserrat semi-bold */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
    display: block;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURED COLLECTIONS - 2 CARDS PER ROW
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) ; /* Always 2 columns on mobile/tablet */
    gap: var(--space-3); /* Small gap for mobile */
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

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

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-quick-view {
    padding: var(--space-2) var(--space-4);
    background: var(--color-text);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.product-card:hover .product-quick-view {
    transform: translateY(0);
    opacity: 1;
}

.product-quick-view:hover {
    background: var(--color-accent);
}

.product-badge {
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    padding: var(--space-1) var(--space-2);
    background: var(--color-accent);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.product-info {
    padding: var(--space-3);
}

.product-category {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-1);
}

.product-name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 400; /* Changed from 600 */
    margin-bottom: var(--space-1);
    transition: color var(--transition-base);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase; /* Optional: makes product names bold */
    letter-spacing: 0.02em;
}

.product-card:hover .product-name {
    color: var(--color-accent);
}

.product-price {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-accent);
}

.product-price .original {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-left: var(--space-1);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-accent);
    transition: color var(--transition-base);
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.feature-description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-24) var(--space-6);
    position: relative;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 204, 106, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 204, 106, 0.05) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 400; /* Changed from 700 */
    margin-bottom: var(--space-6);
    line-height: 1.1;
    color: var(--color-text);
    text-transform: uppercase;
}

.cta-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.footer-logo .logo-text {
    font-size: var(--text-3xl);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.footer-social .social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 400; /* Changed from 600 */
    margin-bottom: var(--space-5);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-list li {
    margin-bottom: var(--space-3);
}

.footer-list a {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.footer-list a:hover {
    color: var(--color-accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer-contact svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact span {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.copyright {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
}

.payment-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.payment-icons {
    display: flex;
    gap: var(--space-2);
}

.payment-icon {
    padding: var(--space-1) var(--space-3);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   PAGE HEADER (For inner pages)
   ============================================ */
.page-header {
    padding: calc(var(--space-24) + 80px) var(--space-6) var(--space-12);
    text-align: center;
    background: var(--color-bg-secondary);
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 204, 106, 0.03) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400; /* Changed from 700 */
    margin-bottom: var(--space-4);
    color: var(--color-text);
    text-transform: uppercase;
}
.page-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs .separator {
    color: var(--color-text-muted);
}

.breadcrumbs .current {
    color: var(--color-accent);
}

/* ============================================
   COLLECTIONS PAGE
   ============================================ */
.collections-section {
    padding: var(--space-12) var(--space-6) var(--space-24);
}

.collections-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-12);
}

.filter-btn {
    padding: var(--space-3) var(--space-6);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
    background: var(--color-bg);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-section {
    padding: calc(var(--space-12) + 80px) var(--space-6) var(--space-24);
}

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

.product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-main-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: var(--color-accent);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.product-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-6);
}

.product-title-large {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.product-category-tag {
    font-size: var(--text-xs);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-sku {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.product-price-large {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-accent);
}

.product-short-desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Size Selector */
.product-size-section {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-6);
}

.size-label {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-3);
    display: block;
    color: var(--color-text);
}

.size-options {
    display: flex;
    gap: var(--space-3);
}

.size-option {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-base);
}

.size-option:hover {
    border-color: var(--color-border-light);
    background: var(--color-bg-secondary);
}

.size-option.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.size-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Quantity Selector */
.product-quantity-section {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-6);
}

.quantity-label {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-3);
    display: block;
    color: var(--color-text);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg);
}

.quantity-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    color: var(--color-text);
    font-size: var(--text-lg);
    transition: all var(--transition-base);
}

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

.quantity-input {
    width: 60px;
    height: 44px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: var(--text-base);
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-add-cart {
    flex: 1;
    min-width: 200px;
}

.btn-wishlist {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text);
    transition: all var(--transition-base);
}

.btn-wishlist:hover {
    border-color: #ff4444;
    color: #ff4444;
    background: var(--color-bg);
}

/* Product Info Tabs */
.product-info-section {
    margin-top: var(--space-8);
}

.product-tabs {
    display: flex;
    gap: var(--space-6);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-6);
}

.product-tab {
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    position: relative;
    transition: color var(--transition-base);
}

.product-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.product-tab:hover,
.product-tab.active {
    color: var(--color-text);
}

.product-tab.active::after {
    width: 100%;
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

.product-info-list {
    display: grid;
    gap: var(--space-3);
}

.product-info-item {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-sm);
}

.product-info-label {
    color: var(--color-text-muted);
    min-width: 120px;
}

.product-info-value {
    color: var(--color-text);
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-section {
    padding: calc(var(--space-12) + 80px) var(--space-6) var(--space-24);
    min-height: 60vh;
}

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

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

/* Cart Items */
.cart-items {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-4);
    padding: var(--space-5);
    border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 120px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 400; /* Changed from 600 */
    color: var(--color-text);
    text-transform: uppercase;
}

.cart-item-variant {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.cart-item-price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-accent);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.cart-qty-btn:hover {
    background: var(--color-border);
}

.cart-qty-value {
    font-size: var(--text-sm);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    color: var(--color-text);
}

.cart-item-remove {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
    color: #ff4444;
    transition: color var(--transition-base);
}

.cart-item-remove:hover {
    color: #ff6666;
}

/* Empty Cart */
.cart-empty {
    text-align: center;
    padding: var(--space-16) var(--space-6);
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
}

.cart-empty-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.cart-empty-text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

/* Cart Summary */
.cart-summary {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.summary-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
}

.summary-row span:first-child {
    color: var(--color-text-secondary);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--color-text);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-4);
    margin-top: var(--space-4);
    border-top: 1px solid var(--color-border);
    font-size: var(--text-lg);
    font-weight: 700;
}

.summary-total span:last-child {
    color: var(--color-accent);
}

.summary-actions {
    margin-top: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-section {
    padding: calc(var(--space-12) + 80px) var(--space-6) var(--space-24);
    min-height: 60vh;
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

/* Checkout Form */
.checkout-form {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.form-section {
    margin-bottom: var(--space-8);
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-text);
}

.form-section-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
}

.form-label .required {
    color: #ff4444;
    margin-left: var(--space-1);
}

.form-input,
.form-textarea,
.form-select {
    padding: var(--space-3) var(--space-4);
    background: var(--color-input-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-select option {
    background: var(--color-bg);
    color: var(--color-text);
}

/* Payment Methods */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.payment-option:hover {
    border-color: var(--color-border-light);
    background: var(--color-bg-secondary);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-accent);
}

.payment-option-label {
    flex: 1;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text);
}

.payment-option-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Order Summary */
.checkout-summary {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.checkout-items {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.checkout-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.checkout-item:last-child {
    margin-bottom: 0;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-name {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--color-text);
}

.checkout-item-variant {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.checkout-item-price {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-12) + 80px) var(--space-6) var(--space-24);
}

.thankyou-content {
    text-align: center;
    max-width: 600px;
}

.thankyou-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thankyou-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.thankyou-message {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.order-number-box {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    border: 1px solid var(--color-border);
}

.order-number-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.order-number-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-accent);
}

.thankyou-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    padding: calc(var(--space-12) + 80px) var(--space-6) var(--space-24);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-quote {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400; /* Changed from 600 */
    line-height: 1.4;
    margin-bottom: var(--space-8);
    color: var(--color-text);
    text-transform: uppercase;
}

.about-quote .accent {
    color: var(--color-accent);
}

.about-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.about-mission {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-top: var(--space-12);
    border-left: 4px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.about-mission-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.about-mission-text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: calc(var(--space-12) + 80px) var(--space-6) var(--space-24);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

.contact-info {
    display: grid;
    gap: var(--space-6);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.contact-info-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.contact-form-wrapper {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400; /* Changed from 600 */
    margin-bottom: var(--space-6);
    color: var(--color-text);
    text-transform: uppercase;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
    padding: calc(var(--space-12) + 80px) var(--space-6) var(--space-24);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin: var(--space-8) 0 var(--space-4);
    color: var(--color-text);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    margin: var(--space-6) 0 var(--space-3);
    color: var(--color-text);
}

.legal-content p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.legal-content ul {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
    list-style: disc;
}

.legal-content li {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2);
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */
.admin-body {
    background: var(--color-bg-secondary);
}

.admin-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4) var(--space-6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    box-shadow: var(--shadow-sm);
}

.admin-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-logo {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
}

.admin-logo span {
    color: var(--color-accent);
}

.admin-nav {
    display: flex;
    gap: var(--space-6);
}

.admin-nav-link {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.admin-nav-link:hover,
.admin-nav-link.active {
    color: var(--color-accent);
}

.admin-main {
    padding: calc(80px + var(--space-8)) var(--space-6) var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
}

.admin-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400; /* Changed from 700 */
    margin-bottom: var(--space-8);
    color: var(--color-text);
    text-transform: uppercase;
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.stat-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400; /* Changed from 700 */
    color: var(--color-accent);
    text-transform: uppercase;
}

/* Admin Table */
.admin-table-wrapper {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: var(--space-4) var(--space-5);
    text-align: left;
    font-size: var(--text-sm);
}

.admin-table th {
    background: var(--color-bg-tertiary);
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--text-xs);
}

.admin-table td {
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: var(--color-bg-secondary);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 170, 0, 0.1);
    color: #b37400;
}

.status-processing {
    background: rgba(68, 136, 255, 0.1);
    color: #2b5bb3;
}

.status-completed {
    background: rgba(0, 204, 106, 0.1);
    color: var(--color-accent);
}

.status-cancelled {
    background: rgba(255, 68, 68, 0.1);
    color: #b32b2b;
}

/* Admin Actions */
.admin-actions {
    display: flex;
    gap: var(--space-3);
}

.btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: all var(--transition-base);
}

.btn-icon:hover {
    background: var(--color-accent);
    color: white;
}

.btn-icon.delete:hover {
    background: #ff4444;
    color: white;
}

/* Admin Form */
.admin-form {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--color-border);
    max-width: 800px;
    box-shadow: var(--shadow-sm);
}

.admin-form-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-8);
    color: var(--color-text);
}

/* Login Page */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    background: var(--color-bg-secondary);
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.login-logo {
    text-align: center;
    margin-bottom: var(--space-8);
}

.login-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400; /* Changed from 700 */
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.login-logo-text span {
    color: var(--color-accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ============================================
   RESPONSIVE DESIGN - 2 CARDS UNTIL DESKTOP
   ============================================ */

/* Mobile & Tablet (up to 991px) - 2 columns with responsive sizing */
@media (min-width: 480px) {
    .products-grid {
        gap: var(--space-4); /* Slightly larger gap on bigger mobile */
    }
    
    .product-info {
        padding: var(--space-4);
    }
    
    .product-name {
        font-size: var(--text-base);
    }
    
    .product-price {
        font-size: var(--text-lg);
    }
}

@media (min-width: 640px) {
    .products-grid {
        gap: var(--space-5); /* Even larger gap on tablets */
    }
    
    .product-info {
        padding: var(--space-5);
    }
    
    .product-name {
        font-size: var(--text-lg);
        -webkit-line-clamp: 2; /* Keep at 2 lines */
    }
    
    .product-category {
        font-size: var(--text-xs);
    }
    
    .product-price {
        font-size: var(--text-xl);
    }
    
    .product-badge {
        top: var(--space-3);
        left: var(--space-3);
        padding: var(--space-1) var(--space-3);
    }
    
    .product-quick-view {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
}

/* Tablet (768px and up) - Still 2 columns */
@media (min-width: 768px) {
    :root {
        --text-5xl: 4rem;
        --text-4xl: 3rem;
    }
    
    .header-container {
        padding: 0 var(--space-8);
    }
    
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    /* Products grid remains 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) ;
        gap: var(--space-6);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) ;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .menu-link {
        font-size: var(--text-5xl);
    }
    
    .product-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .cart-layout {
        grid-template-columns: 1fr 350px;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (992px and up) - Switch to more columns */
@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
        gap: var(--space-6);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 300px 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .admin-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Restore full desktop styles */
    .product-info {
        padding: var(--space-5);
    }
    
    .product-name {
        font-size: var(--text-lg);
        -webkit-line-clamp: none; /* Remove line clamp on desktop */
    }
    
    .product-price {
        font-size: var(--text-xl);
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on large desktop */
    }
    
    .section {
        padding: var(--space-24) var(--space-8);
    }
}

/* Extra Large Desktop (1400px and up) - Maintain 4 columns */
@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */
/* ============================================
   VIDEO SHOWCASE SECTION - CLEAN VERSION
   ============================================ */
.video-showcase {
    width: 100%;
    height: 70vh; /* 70% of viewport height - adjust as needed */
    min-height: 500px; /* Minimum height for smaller screens */
    max-height: 800px; /* Maximum height for very large screens */
    position: relative;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the container without distortion */
    display: block;
}

/* Video Overlay - Removed text, kept only for positioning context */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* No background gradient, no text styling */
}

/* Mute Button Styles */
.video-mute-btn {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
}

.video-mute-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.video-mute-btn.muted svg {
    opacity: 0.5;
}

/* Optional: Add a very subtle shadow to make button stand out from video */
.video-mute-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   VIDEO SECTION RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .video-showcase {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-mute-btn {
        width: 40px;
        height: 40px;
        bottom: var(--space-3);
        right: var(--space-3);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .video-showcase {
        height: 50vh;
        min-height: 350px;
    }
    
    .video-mute-btn {
        width: 36px;
        height: 36px;
        bottom: var(--space-2);
        right: var(--space-2);
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .video-showcase {
        height: 100vh;
        min-height: 300px;
    }
}

