/* ============================================
   KAMEL KROSS - E-Commerce Styles
   Clean, Minimal Streetwear Aesthetic
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Brand Colors from Logo */
    --red: #C8384A;
    --red-hover: #B02F40;
    --red-glow: rgba(200, 56, 74, 0.3);
    --charcoal: #4A4A4A;
    --charcoal-light: #666666;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #F0F0F0;
    --border: #E0E0E0;
    --text: #1A1A1A;
    --text-light: #555555;
    --text-muted: #888888;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 4px 20px rgba(200, 56, 74, 0.25);

    /* Legacy compatibility */
    --bg-card: #F5F5F5;
    --border-color: #E5E5E5;
    --radius-lg: 12px;
    --primary: #C8384A;
    --text-secondary: #666666;
    --font-size-sm: 13px;
    --font-size-xs: 11px;

    /* Functional */
    --success: #2E7D32;
    --error: #C62828;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Oswald', 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --header-height: 70px;

    /* Transitions */
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    background-image:
        radial-gradient(circle at 100% 0%, rgba(200, 56, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(74, 74, 74, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol {
    list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.5rem; }
}

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    margin-top: var(--space-md);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: var(--space-xs);
}

.nav-dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: 13px;
    color: var(--charcoal);
    transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--red);
}

/* Cart Icon */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: color var(--transition);
}

.cart-icon:hover {
    color: var(--red);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 12px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile menu backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .menu-backdrop {
        display: block;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links > li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        font-size: 18px;
        padding: var(--space-lg) 0;
        display: block;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        border: none;
        background: var(--light-gray);
        opacity: 1;
        visibility: visible;
        margin: 0;
        padding: var(--space-md) 0;
    }

    .nav-dropdown-toggle svg {
        display: none;
    }
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

body {
    opacity: 0;
    animation: pageEnter 0.4s ease 0.1s forwards;
}

body.page-leaving {
    animation: pageLeave 0.3s ease forwards;
}

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

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

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash-screen {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.splash-logo-line {
    display: flex;
    overflow: hidden;
}

.splash-letter {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(100%);
    animation: letterReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash-logo-line:first-child .splash-letter {
    color: var(--red);
}

.splash-logo-line:last-child .splash-letter {
    color: var(--charcoal);
}

/* Staggered animation delays for each letter */
.splash-letter:nth-child(1) { animation-delay: 0.1s; }
.splash-letter:nth-child(2) { animation-delay: 0.15s; }
.splash-letter:nth-child(3) { animation-delay: 0.2s; }
.splash-letter:nth-child(4) { animation-delay: 0.25s; }
.splash-letter:nth-child(5) { animation-delay: 0.3s; }

.splash-logo-line:last-child .splash-letter:nth-child(1) { animation-delay: 0.4s; }
.splash-logo-line:last-child .splash-letter:nth-child(2) { animation-delay: 0.45s; }
.splash-logo-line:last-child .splash-letter:nth-child(3) { animation-delay: 0.5s; }
.splash-logo-line:last-child .splash-letter:nth-child(4) { animation-delay: 0.55s; }
.splash-logo-line:last-child .splash-letter:nth-child(5) { animation-delay: 0.6s; }

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-tagline {
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

.splash-loader {
    margin-top: 40px;
    width: 40px;
    height: 2px;
    background: var(--border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.8s forwards;
}

.splash-loader::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--red);
    animation: loadProgress 1.5s ease 0.9s forwards;
}

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

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: #0a0a0a;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}


.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 600px;
    animation: heroFadeIn 1s ease 2.5s both;
}

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

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

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

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 56, 74, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(200, 56, 74, 0); }
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--space-lg);
    line-height: 1;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 .text-gradient {
    color: var(--red);
    position: relative;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    max-width: 450px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--red-hover);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--text);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 13px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--red);
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 16px auto 0;
    font-size: 15px;
}

.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
}

.section-header-flex h2 {
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: 16px;
}

.section-header-flex h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--red);
}

.section-header-flex p {
    color: var(--text-light);
    font-size: 15px;
}

@media (max-width: 768px) {
    .section-header-flex {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.category-card:hover .category-content {
    transform: translateY(-8px);
}

.category-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.category-content span {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-content span::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.category-card:hover .category-content span::after {
    transform: translateX(4px);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    background: var(--white);
    padding-bottom: var(--space-sm);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: var(--space-md);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 4px 10px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-actions {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-actions .btn {
    width: 100%;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px;
}

.product-actions .btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.product-info {
    text-align: center;
    padding: var(--space-sm) 0;
}

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

.product-name {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-xs);
    text-transform: none;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

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

.features-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--red);
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.feature-item {
    padding: var(--space-xl);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
    box-shadow: var(--shadow-red);
}

.feature-item:hover .feature-icon::after {
    border-color: var(--red-glow);
}

.feature-item:hover .feature-icon svg {
    stroke: white;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    transition: stroke 0.3s ease;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
    padding-top: calc(var(--header-height) + var(--space-2xl));
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.product-main-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: var(--space-md);
}

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

.product-thumbnails {
    display: flex;
    gap: var(--space-sm);
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}

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

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

.product-details h1 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.product-details .product-category {
    text-align: left;
    margin-bottom: var(--space-sm);
}

.product-details .product-price {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.product-description {
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.product-options {
    margin-bottom: var(--space-2xl);
}

.option-group {
    margin-bottom: var(--space-lg);
}

.option-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.option-values {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.option-btn {
    min-width: 48px;
    height: 48px;
    padding: 0 var(--space-md);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}

.option-btn:hover {
    border-color: var(--charcoal);
}

.option-btn.selected {
    border-color: var(--red);
    color: var(--red);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.quantity-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 18px;
    transition: all var(--transition);
}

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

.quantity-value {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.product-actions-detail {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.product-actions-detail .btn {
    flex: 1;
}

.product-meta {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: var(--space-sm);
}

.product-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--red);
}

/* ============================================
   CART
   ============================================ */
.cart-page {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    min-height: 100vh;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 968px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
}

.cart-items {
    border: 1px solid var(--border);
}

.cart-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 1rem;
}

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

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

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.cart-item-details h3 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    margin-bottom: var(--space-xs);
}

.cart-item-variant {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.cart-item-price {
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-md);
}

.cart-item-remove {
    color: var(--text-muted);
    font-size: 13px;
    transition: color var(--transition);
}

.cart-item-remove:hover {
    color: var(--error);
}

.cart-empty {
    padding: var(--space-3xl);
    text-align: center;
}

.cart-empty svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.cart-empty h3 {
    margin-bottom: var(--space-sm);
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* Cart Summary */
.cart-summary {
    border: 1px solid var(--border);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.cart-summary h3 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    color: var(--text-light);
    font-size: 14px;
}

.summary-row.total {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.cart-summary .btn {
    width: 100%;
    margin-top: var(--space-lg);
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-page {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    min-height: 100vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 968px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-form {
    border: 1px solid var(--border);
    padding: var(--space-xl);
}

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

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

.form-section h3 {
    font-size: 14px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

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

.form-group.error input {
    border-color: var(--error);
}

.form-error {
    font-size: 12px;
    color: var(--error);
    margin-top: var(--space-xs);
}

/* Order Summary */
.order-summary {
    border: 1px solid var(--border);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.order-summary h3 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.order-items {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

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

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

.order-item-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
}

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

.order-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 2px;
}

.order-item-info p {
    font-size: 12px;
    color: var(--text-light);
}

.order-item-price {
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    text-align: center;
}

.success-content {
    max-width: 450px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--success);
}

.success-content h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.success-content p {
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
}

.order-reference {
    background: var(--light-gray);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.order-reference span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.order-reference strong {
    font-size: 18px;
    color: var(--red);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-4xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--charcoal) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo img {
    height: 35px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 12px;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--red);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.social-link:hover::before {
    transform: scale(1);
}

.social-link svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--red);
}

/* ============================================
   FILTERS
   ============================================ */
.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.filter-group label {
    font-size: 13px;
    color: var(--text-light);
}

.filter-group select {
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
}

.filter-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-tag {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 12px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-tag:hover,
.filter-tag.active {
    border-color: var(--red);
    color: var(--red);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-2xl);
    text-align: center;
    background: var(--off-white);
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--text-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.breadcrumb a {
    color: var(--text-light);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

/* ============================================
   UTILITIES
   ============================================ */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--border) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

/* Toast */
.toast-container {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 2000;
}

.toast {
    padding: var(--space-md) var(--space-lg);
    background: var(--text);
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: slideIn 0.3s ease;
    max-width: 320px;
}

.toast.success {
    border-left: 3px solid var(--success);
}

.toast.error {
    border-left: 3px solid var(--error);
}

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

/* Grid helpers */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

.text-center { text-align: center; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   DARK SECTION (Featured Products)
   ============================================ */
.section-dark {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.section-dark .section-header-flex h2 {
    color: var(--white);
}

.section-dark .section-header-flex h2::before {
    background: var(--red);
}

.section-dark .section-header-flex p {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .product-card {
    background: #1f1f1f;
    border-color: #333;
}

.section-dark .product-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.section-dark .product-info {
    background: #1f1f1f;
}

.section-dark .product-name {
    color: var(--white);
}

.section-dark .product-price {
    color: var(--white);
}

.section-dark .product-category {
    color: rgba(255, 255, 255, 0.5);
}

.section-dark .product-actions .btn {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

.section-dark .product-actions .btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    /* Increase base font for readability */
    body {
        font-size: 16px;
    }

    /* Larger touch targets for filter tags */
    .filter-tag {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Larger form inputs */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .form-group label {
        font-size: 14px;
    }

    /* Larger product category text */
    .product-category {
        font-size: 12px;
    }

    /* Better cart item styling */
    .cart-item-details h3 {
        font-size: 15px;
    }

    .cart-item-variant {
        font-size: 14px;
    }

    /* Disable heavy animations on mobile */
    .hero-bg img {
        animation: none;
        transform: scale(1.05);
    }

    .hero-badge::before {
        animation: none;
    }

    /* Faster splash for mobile */
    .splash-letter {
        animation-duration: 0.4s;
    }

    .splash-loader::after {
        animation-duration: 1s;
    }

    /* Better option buttons */
    .option-btn {
        min-width: 52px;
        height: 52px;
        font-size: 14px;
    }

    /* Responsive sidebar widths */
    .cart-summary,
    .order-summary {
        position: static;
    }
}

/* ============================================
   CONTENT PAGES (Shipping, Returns, etc.)
   ============================================ */
.content-page {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: var(--space-3xl);
}

.content-section h2 {
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.content-section a {
    color: var(--red);
    text-decoration: underline;
}

.content-section a:hover {
    color: var(--red-hover);
}

.content-list {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.content-list li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    position: relative;
}

.content-list:not(.numbered) li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.content-list.numbered {
    list-style: decimal;
}

.content-list.numbered li {
    padding-left: var(--space-sm);
}

.content-list.numbered li::marker {
    color: var(--red);
    font-weight: 600;
}

.note {
    background: var(--off-white);
    padding: var(--space-md);
    border-left: 3px solid var(--red);
    font-size: 14px;
    margin-top: var(--space-lg);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.info-card {
    background: var(--off-white);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--border);
}

.info-card h4 {
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.info-card .highlight {
    color: var(--red);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: var(--space-xs);
}

.info-card p:last-child {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 0;
}

/* Measure Tips */
.measure-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.measure-tip {
    padding: var(--space-lg);
    background: var(--off-white);
    border: 1px solid var(--border);
}

.measure-tip h4 {
    color: var(--red);
    margin-bottom: var(--space-sm);
}

.measure-tip p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Size Table */
.table-wrapper {
    overflow-x: auto;
    margin: var(--space-xl) 0;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.size-table th,
.size-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.size-table th {
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
}

.size-table td {
    background: var(--white);
    color: var(--text-light);
}

.size-table tr:nth-child(even) td {
    background: var(--off-white);
}

.size-table td strong {
    color: var(--charcoal);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info .content-section {
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method h4 {
    color: var(--charcoal);
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-method p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.social-section h4 {
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    font-size: 14px;
}

.social-section .social-links {
    margin-top: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    padding: var(--space-2xl);
    border: 1px solid var(--border);
}

.contact-form h3 {
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
}

.contact-form .form-group {
    margin-bottom: var(--space-lg);
}

.contact-form label {
    display: block;
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 15px;
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

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

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234A4A4A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: var(--space-md);
}

/* Focus states */
*:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .splash-screen {
        display: none !important;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .toast-container {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }
}

.toast {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: toastIn 0.3s ease;
    max-width: 350px;
}

.toast.toast-success {
    background: var(--success);
}

.toast.toast-error {
    background: var(--error);
}

.toast.hiding {
    animation: toastOut 0.3s ease forwards;
}

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

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

.toast-icon {
    flex-shrink: 0;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast-message {
    flex: 1;
    font-size: 14px;
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .footer,
    .nav,
    .cart-icon,
    .menu-toggle,
    .btn,
    .splash-screen,
    .toast-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    .hero {
        min-height: auto;
        padding: 20pt 0;
    }

    .hero-bg {
        display: none;
    }

    .hero h1,
    .hero p {
        color: black;
    }
}
