/* ===================================
   SMARTFIGHT TIMER - MAIN STYLES
   Visual Refinements Applied:
   - .com domain styling in header
   - Darker hero overlay for better balance
   - Larger subheadline (stays ONE LINE)
   =================================== */

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

:root {
    /* Colors */
    --color-red: #DC2626;
    --color-red-light: #EF4444;
    --color-red-dark: #B91C1C;
    --color-black: #0A0A0A;
    --color-gray-dark: #1F1F1F;
    --color-gray: #6B7280;
    --color-gray-light: #F3F4F6;
    --color-white: #FFFFFF;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.5px;
    line-height: 1;
}

/* .COM DOMAIN STYLING - Smaller, muted */
.logo-domain {
    font-size: 0.625rem;
    font-weight: 400;
    color: var(--color-gray);
    margin-left: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

.nav-links a.active {
    color: var(--color-red);
    font-weight: 600;
}

.btn-download {
    padding: 10px 24px;
    background: transparent;
    color: var(--color-black) !important;
    border: 1.5px solid var(--color-black);
    border-radius: 6px;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.btn-download:hover {
    background: var(--color-black);
    color: var(--color-white) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-black);
    transition: all var(--transition-fast);
}

/* ===================================
   HERO SECTION - VISUAL REFINEMENTS
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

/* DARKER OVERLAY - Better visual balance */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    /* Increased from 0.5 to 0.6 for better contrast */
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--color-white);
    width: 30px;
    border-radius: 5px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--spacing-md);
}

.hero-title-line1,
.hero-title-line2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
}

.hero-title-line1 {
    color: var(--color-white);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-title-line2 {
    color: var(--color-red);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

/* LARGER SUBHEADLINE - Stays on ONE LINE */
.hero-subtitle {
    font-size: clamp(1.125rem, 2.2vw, 1.875rem);
    /* Increased from 1.375rem max to 1.875rem max */
    /* Uses responsive clamp() to scale smoothly */
    
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    line-height: 1.4;
    
    /* Force ONE LINE on desktop */
    white-space: nowrap;
    
    /* Better text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Entrance animation */
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    
    /* Entrance animation */
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-red);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-icon {
    font-size: 1.25rem;
}

/* ===================================
   ROTATING TEXT SECTION - APPLE STYLE
   =================================== */
.rotating-section {
    background: var(--color-white);
    padding: clamp(80px, 12vw, 160px) 0;
    text-align: center;
}

.rotating-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 1200px;
    margin: 0 auto;
}

.rotating-word {
    color: var(--color-red);
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.rotating-word::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-red);
    opacity: 0.3;
}

/* ===================================
   SECTIONS - APPLE STYLE
   =================================== */
section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--color-red);
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    text-align: center;
    color: #6B6B6B;
    margin-bottom: clamp(48px, 8vw, 80px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   TRAINING SECTION - APPLE PREMIUM
   =================================== */
.training-section {
    background: #FAFAFA;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(32px, 5vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
}

.training-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.training-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.training-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

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

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

.training-content {
    padding: clamp(28px, 4vw, 40px);
}

.training-content h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

.training-content p {
    color: #6B6B6B;
    line-height: 1.65;
    font-size: 1.0625rem;
    font-weight: 400;
}

.text-highlight {
    color: var(--color-red);
    font-weight: 600;
}

/* ===================================
   FEATURES SECTION - PHONE HERO + GRID
   =================================== */
.features-section {
    background: var(--color-white);
}

/* 3 Phone Showcase - Hero */
.phones-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(16px, 3vw, 32px);
    margin: clamp(48px, 8vw, 80px) auto;
    perspective: 1200px;
    max-width: 900px;
}

.phone-mockup {
    background: #1F1F1F;
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: phoneSlideUp 0.8s ease forwards;
}

.phone-left {
    width: clamp(160px, 22vw, 220px);
    animation-delay: 0.2s;
}

.phone-center {
    width: clamp(200px, 28vw, 280px);
    transform: translateY(-30px) scale(1.05);
    z-index: 2;
    animation-delay: 0.4s;
}

.phone-right {
    width: clamp(160px, 22vw, 220px);
    animation-delay: 0.6s;
}

.phone-mockup:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.phone-center:hover {
    transform: translateY(-45px) scale(1.08);
}

.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

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

/* Features Grid - 2 Rows of 3 */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item-compact {
    text-align: center;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 16px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item-compact:nth-child(1) { animation-delay: 0.8s; }
.feature-item-compact:nth-child(2) { animation-delay: 0.9s; }
.feature-item-compact:nth-child(3) { animation-delay: 1s; }
.feature-item-compact:nth-child(4) { animation-delay: 1.1s; }
.feature-item-compact:nth-child(5) { animation-delay: 1.2s; }
.feature-item-compact:nth-child(6) { animation-delay: 1.3s; }

.feature-item-compact:hover {
    background: #FAFAFA;
    transform: translateY(-5px);
}

.feature-icon-modern {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F7;
    border-radius: 16px;
    margin: 0 auto 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-black);
}

.feature-item-compact:hover .feature-icon-modern {
    background: var(--color-red);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.feature-item-compact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

.feature-item-compact p {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #6B6B6B;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .phones-showcase {
        gap: 12px;
    }
    
    .phone-left,
    .phone-right {
        width: 140px;
    }
    
    .phone-center {
        width: 180px;
        transform: translateY(-20px) scale(1.05);
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   RANDOM CUE SYSTEM SECTION
   =================================== */
.cue-section {
    background: #FAFAFA;
}

.cue-explanation {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 8vw, 80px);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.cue-text h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 32px;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

.cue-text h3:first-child {
    margin-top: 0;
}

.cue-text p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #6B6B6B;
    line-height: 1.65;
}

.cue-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.infographic-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.infographic-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Calculator Section */
.cue-calculator {
    background: var(--color-white);
    border-radius: 24px;
    padding: clamp(40px, 6vw, 60px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: var(--color-black);
}

.calculator-subtitle {
    text-align: center;
    color: #6B6B6B;
    margin-bottom: 40px;
    font-size: 1.0625rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-black);
}

.input-group input {
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    font-family: var(--font-family);
}

.input-group input:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-calculate {
    padding: 16px 32px;
    background: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 8px;
}

.btn-calculate:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.result-card {
    background: #FAFAFA;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.result-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 12px;
}

.result-secondary {
    color: var(--color-black);
}

.result-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.result-note {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin-top: 8px;
}

/* Benchmarks */
.benchmarks {
    margin-top: 60px;
}

.benchmarks h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-black);
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.benchmark-card {
    background: var(--color-white);
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.benchmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benchmark-card.beginner:hover {
    border-color: #10B981;
}

.benchmark-card.amateur:hover {
    border-color: #F59E0B;
}

.benchmark-card.pro:hover {
    border-color: var(--color-red);
}

.benchmark-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benchmark-icon-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belt-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benchmark-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-black);
}

.benchmark-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 12px;
}

.benchmark-stat span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B6B6B;
}

.benchmark-card p {
    color: #6B6B6B;
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.benchmark-settings {
    background: #FAFAFA;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
}

.benchmark-settings small {
    color: #6B6B6B;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .cue-explanation {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cue-visual {
        order: -1;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .benchmark-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRO SECTION
   =================================== */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.pro-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    border: 2px solid var(--color-gray-light);
    transition: all var(--transition-normal);
    position: relative;
}

.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pro-card-featured {
    border-color: var(--color-red);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}

.pro-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-red);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pro-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--color-gray-light);
}

.pro-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
}

.pro-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 8px;
}

.pro-tagline {
    font-size: 0.875rem;
    color: #6B6B6B;
    font-weight: 500;
}

.pro-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pro-features li {
    padding: var(--spacing-sm) 0;
    color: var(--color-black);
    font-weight: 500;
    font-size: 1rem;
}

.no-ads-feature {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--color-gray-light);
    font-weight: 600;
}

.text-highlight-strong {
    color: var(--color-red);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-gray);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-icon-svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

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

.btn-ios:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.coming-soon-msg {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #FAFAFA;
    color: var(--color-black);
    padding: clamp(60px, 8vw, 80px) 0 var(--spacing-lg);
    border-top: 1px solid #E5E7EB;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(32px, 6vw, 60px);
    margin-bottom: clamp(40px, 6vw, 60px);
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: #6B6B6B;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6B6B6B;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    font-weight: 400;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #E5E7EB;
    color: #6B6B6B;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .hero-subtitle {
        /* Still ONE LINE at 1024px */
        white-space: nowrap;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-white);
        padding: var(--spacing-lg);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero subheadline CAN wrap on tablet */
    .hero-subtitle {
        white-space: normal;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Rotating section - mobile friendly */
    .rotating-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .rotating-word {
        display: block;
        min-width: auto;
        text-align: center;
        margin-top: 8px;
    }
    
    .training-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    section {
        padding: var(--spacing-2xl) 0;
    }
}

/* ================================================
   SHOP PAGE STYLES
   ================================================ */

/* Shop Hero - Complete Banner Image */
.shop-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 500px;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Shop Section */
.shop-section {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--color-white);
}

.shop-section:nth-child(even) {
    background: #FAFAFA;
}

.shop-category-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 64px);
}

.category-icon {
    width: clamp(48px, 6vw, 72px);
    height: clamp(48px, 6vw, 72px);
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.shop-category-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    color: var(--color-black);
    line-height: 1.1;
    text-transform: uppercase;
}

.category-label-inline {
    font-weight: 800;
    color: var(--color-black);
    margin-right: clamp(8px, 1vw, 12px);
    display: inline-block;
}

.shop-category-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--color-gray-dark);
    font-weight: 400;
    margin: 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 32px);
    max-width: 1400px;
    margin: 0 auto;
}

/* Apparel Grid - 4 items per row */
.apparel-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
}

/* Product Card */
.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F5F5F5;
}

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

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

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-info {
    padding: clamp(24px, 3vw, 32px);
}

.product-name {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--color-black);
}

.product-desc {
    font-size: 15px;
    color: var(--color-gray-dark);
    font-weight: 500;
    margin: 0 0 8px 0;
}

.product-benefits {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0 0 16px 0;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

/* Newsletter CTA */
.shop-newsletter {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
    color: var(--color-white);
}

.newsletter-content p {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 32px 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-red);
    background: rgba(255, 255, 255, 0.08);
}

/* ================================================
   SUPPORT PAGE STYLES
   ================================================ */

/* Support Hero */
.support-hero {
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    text-align: center;
}

.support-hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    color: var(--color-black);
}

.support-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-gray-dark);
    font-weight: 400;
    margin: 0;
}

/* Support Form Section */
.support-form-section {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--color-white);
}

.support-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(48px, 6vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.support-form-container h2 {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
    color: var(--color-black);
}

.support-form-desc {
    font-size: 16px;
    color: var(--color-gray-dark);
    margin: 0 0 32px 0;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 0.3px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--color-black);
    background: var(--color-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Support Info */
.support-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-info-card {
    background: #FAFAFA;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.support-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-red);
}

.support-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--color-black);
}

.support-info-card p {
    font-size: 16px;
    color: var(--color-gray-dark);
    margin: 0 0 4px 0;
}

.support-time {
    font-size: 14px;
    color: var(--color-gray);
    display: block;
}

.support-quick-links {
    background: var(--color-white);
    padding: clamp(24px, 3vw, 32px);
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.1);
}

.support-quick-links h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--color-black);
}

.support-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-quick-links li {
    margin-bottom: 12px;
}

.support-quick-links li:last-child {
    margin-bottom: 0;
}

.support-quick-links a {
    color: var(--color-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.support-quick-links a:hover {
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: clamp(80px, 10vw, 120px) 0;
    background: #FAFAFA;
}

.faq-title {
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 clamp(48px, 6vw, 64px) 0;
    text-align: center;
    color: var(--color-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(24px, 3vw, 32px);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    padding: clamp(24px, 3vw, 32px);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--color-black);
}

.faq-item p {
    font-size: 15px;
    color: var(--color-gray-dark);
    margin: 0;
    line-height: 1.6;
}

/* Responsive for Shop & Support */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* Adjust diagonal for tablets */
    .hero-diagonal::before {
        background: linear-gradient(115deg, #DC2626 0%, #B91C1C 45%, #FAFAFA 45%, #FAFAFA 100%);
    }
    
    .hero-hand-wrap {
        right: 30px;
        bottom: 60px;
    }
    
    .hand-wrap-overlay {
        width: clamp(300px, 40vw, 400px);
    }
    
    .sf-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        min-height: 550px;
    }
    
    /* Stack on mobile - remove diagonal */
    .hero-diagonal {
        min-height: 550px;
        padding: 50px 30px 50px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-diagonal::before {
        background: linear-gradient(180deg, #DC2626 0%, #B91C1C 100%);
    }
    
    .hero-icon {
        top: 30px;
    }
    
    .sf-icon {
        width: 48px;
        height: 48px;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .title-black {
        color: var(--color-white);
        margin-left: 0;
    }
    
    .hero-hand-wrap {
        position: relative;
        right: auto;
        bottom: auto;
    }
    
    .hand-wrap-overlay {
        width: 280px;
        max-width: 90%;
    }

    .product-grid,
    .apparel-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet breakpoint for product grids */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-grid,
    .apparel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Medium desktop breakpoint for product grids */
@media (max-width: 1280px) and (min-width: 1025px) {
    .product-grid,
    .apparel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* ===========================================
   ADMIN PANEL STYLES
   =========================================== */

/* Admin Hero */
.admin-hero {
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    text-align: center;
}

.admin-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    color: var(--color-white);
}

.admin-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
}

/* Admin Section */
.admin-section {
    padding: clamp(80px, 10vw, 120px) 0;
    background: #FAFAFA;
    min-height: 60vh;
}

/* Tabs */
.admin-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 0;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-bottom: -2px;
}

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

.tab-btn.active {
    color: var(--color-red);
    border-bottom-color: var(--color-red);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Admin Card */
.admin-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: clamp(32px, 4vw, 48px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.card-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--color-black);
}

.card-subtitle {
    font-size: 16px;
    color: var(--color-gray-dark);
    margin: 0;
}

/* Admin Form */
.admin-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--color-black);
    background: var(--color-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--color-gray);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: #E5E7EB;
    color: var(--color-black);
}

.btn-secondary:hover {
    background: #D1D5DB;
}

.btn-icon {
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-gray-dark);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-icon:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-red);
}

/* Form Status */
.form-status {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    display: none;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* Products List */
.products-list {
    margin-top: 32px;
}

.products-category {
    margin-bottom: 48px;
}

.products-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.products-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-card-admin {
    background: #FAFAFA;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.product-card-admin:hover {
    border-color: var(--color-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image-admin {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--color-white);
}

.product-info-admin {
    padding: 16px;
}

.product-info-admin h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 8px 0;
}

.product-price-admin {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-red);
    margin: 0 0 12px 0;
}

.badge-coming-soon {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-red);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-gray-dark);
    font-size: 16px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--color-gray-dark);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-red);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions button {
    flex: 1;
}

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-hero {
        padding: 120px 0 60px 0;
    }
    
    .admin-section {
        padding: 60px 0;
    }
    
    .card-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .card-header .btn-primary {
        width: 100%;
    }
    
    .products-grid-admin {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        padding: 24px;
    }
}