/* ═══════════════════════════════════════════════════
   JASSPORT — Premium Football Store
   Green Design System
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --green-50: #e8f5e9;
    --green-100: #c8e6c9;
    --green-200: #a5d6a7;
    --green-300: #81c784;
    --green-400: #66bb6a;
    --green-500: #4CAF50;
    --green-600: #43A047;
    --green-700: #388E3C;
    --green-800: #2E7D32;
    --green-900: #1B5E20;
    --green-accent: #00C853;
    --green-neon: #76FF03;
    --green-dark: #0A1F0D;
    --green-darker: #061208;
    --dark-1: #0d0d0d;
    --dark-2: #1a1a1a;
    --dark-3: #2a2a2a;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --shadow-sm: 0 2px 8px rgba(0,200,83,0.08);
    --shadow-md: 0 8px 32px rgba(0,200,83,0.12);
    --shadow-lg: 0 16px 64px rgba(0,200,83,0.16);
    --shadow-glow: 0 0 40px rgba(0,200,83,0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-1);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ── Utility ── */
.text-green {
    color: var(--green-accent);
}

/* ══════════════════════════════
   NAVBAR
   ══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 31, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 200, 83, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(0, 200, 83, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--green-accent);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-accent);
}

.nav-phone:hover {
    background: rgba(0, 200, 83, 0.22);
    transform: translateY(-1px);
}

.nav-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.nav-social:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ══════════════════════════════
   HERO SECTION
   ══════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-darker) 0%, var(--dark-1) 40%, var(--dark-1) 60%, var(--green-dark) 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 200, 83, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(118, 255, 3, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 200, 83, 0.02) 100px, rgba(0, 200, 83, 0.02) 101px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 200, 83, 0.02) 100px, rgba(0, 200, 83, 0.02) 101px);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--dark-1), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.6s ease backwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.2s; }
.hero-title-line:nth-child(3) { animation-delay: 0.3s; }

.hero-title-line.accent {
    color: var(--green-accent);
    text-shadow: 0 0 60px rgba(0, 200, 83, 0.3);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--green-accent);
    color: var(--dark-1);
    box-shadow: 0 4px 24px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
    background: #00E676;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--green-accent);
    color: var(--green-accent);
    background: rgba(0, 200, 83, 0.06);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--green-accent);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Image */
.hero-image {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 640px;
    z-index: 1;
    animation: fadeIn 1s ease 0.3s backwards;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeIn 1s ease 1s backwards;
}

.hero-scroll span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--green-accent);
    border-radius: 4px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ══════════════════════════════
   SECTION HEADERS
   ══════════════════════════════ */
.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: 1px;
}

.section-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    max-width: 500px;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════
   ABOUT SECTION
   ══════════════════════════════ */
.about {
    padding: 120px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.overlay-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 200, 83, 0.2);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-accent);
}

.about-floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(10, 31, 13, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-accent), var(--green-600));
    border-radius: 12px;
    font-size: 20px;
    color: var(--dark-1);
}

.about-floating-card strong {
    display: block;
    font-size: 14px;
    color: var(--white);
}

.about-floating-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* About Features */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(0, 200, 83, 0.04);
    border-color: rgba(0, 200, 83, 0.12);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 14px;
    color: var(--green-accent);
    font-size: 20px;
}

.about-feature h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ══════════════════════════════
   PRODUCTS SECTION
   ══════════════════════════════ */
.products {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-1) 0%, var(--green-darker) 50%, var(--dark-1) 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    border-color: rgba(0, 200, 83, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(0, 200, 83, 0.1);
}

.product-card-large {
    grid-row: 1 / 3;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #111;
}

.product-card-large .product-image {
    height: 100%;
    min-height: 480px;
}

.product-card:not(.product-card-large) .product-image {
    height: 240px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: contrast(1.12) saturate(1.18) brightness(1.04);
    image-rendering: -webkit-optimize-contrast;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
    filter: contrast(1.18) saturate(1.25) brightness(1.08);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--green-accent);
    color: var(--dark-1);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 1;
}

.product-badge.new {
    background: linear-gradient(135deg, var(--green-neon), var(--green-accent));
}

.product-info {
    padding: 24px;
}

.product-card-large .product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.product-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.product-tags span {
    padding: 4px 12px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green-accent);
}

/* ══════════════════════════════
   JAS BOOTS — EXCLUSIVE SECTION
   ══════════════════════════════ */
.jas-boots {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-1) 0%, #0c1f08 30%, #142a0c 50%, #0c1f08 70%, var(--dark-1) 100%);
}

.jas-boots-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.jas-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--green-accent);
    opacity: 0.04;
    animation: particleFloat 20s infinite ease-in-out;
}

.jas-particle.p1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.jas-particle.p2 { width: 300px; height: 300px; bottom: -80px; left: -80px; animation-delay: -5s; }
.jas-particle.p3 { width: 200px; height: 200px; top: 40%; left: 20%; animation-delay: -10s; }
.jas-particle.p4 { width: 150px; height: 150px; top: 20%; right: 30%; animation-delay: -15s; }
.jas-particle.p5 { width: 100px; height: 100px; bottom: 30%; right: 10%; animation-delay: -8s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.jas-boots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.3), transparent);
}

.jas-boots::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.3), transparent);
}

.jas-boots-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.jas-exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(118, 255, 3, 0.1));
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green-neon);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.jas-exclusive-badge i {
    color: var(--green-neon);
    animation: boltPulse 2s infinite;
}

@keyframes boltPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.jas-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    margin-bottom: 24px;
}

.jas-pre {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--green-accent);
    margin-bottom: 8px;
}

.jas-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.jas-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.jas-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.jas-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 16px;
    color: var(--green-accent);
    font-size: 22px;
    transition: var(--transition);
}

.jas-feature:hover .jas-feature-icon {
    background: rgba(0, 200, 83, 0.15);
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.15);
}

.jas-feature span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.btn-jas {
    background: linear-gradient(135deg, var(--green-accent), var(--green-neon));
    color: var(--dark-1);
    font-weight: 700;
    padding: 16px 36px;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-jas:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 200, 83, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Jas Boots Visual */
.jas-boots-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.jas-boots-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 200, 83, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 200, 83, 0.08);
}

.jas-boots-video {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}

.jas-boots-image-wrapper {
    position: relative;
}

.jas-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.2) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
}

.jas-boots-hero {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 200, 83, 0.1);
    max-height: 500px;
    object-fit: cover;
}

.jas-owner-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.jas-owner-card img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--green-accent);
}

.jas-owner-info strong {
    display: block;
    font-size: 13px;
    color: var(--white);
}

.jas-owner-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════
   LOCATIONS
   ══════════════════════════════ */
.locations {
    padding: 120px 0;
    position: relative;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.location-card:hover {
    border-color: rgba(0, 200, 83, 0.15);
    transform: translateY(-6px);
    background: rgba(0, 200, 83, 0.03);
    box-shadow: var(--shadow-md);
}

.location-card:hover::before {
    opacity: 1;
}

.location-card.flagship {
    border-color: rgba(0, 200, 83, 0.2);
    background: linear-gradient(180deg, rgba(0, 200, 83, 0.06) 0%, rgba(0, 200, 83, 0.01) 100%);
}

.location-card.flagship::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--green-accent), var(--green-neon), var(--green-accent));
}

.location-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--green-accent);
}

.location-flag.usa {
    background: rgba(118, 255, 3, 0.1);
    border-color: rgba(118, 255, 3, 0.2);
    color: var(--green-neon);
}

.location-icon {
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--green-accent);
}

.location-icon .usa-flag {
    font-size: 40px;
}

.location-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.location-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-accent);
    transition: var(--transition);
}

.location-phone:hover {
    background: rgba(0, 200, 83, 0.15);
}

.location-card.coming-soon {
    border-style: dashed;
    border-color: rgba(118, 255, 3, 0.15);
}

.location-card.coming-soon h3 {
    color: var(--green-neon);
}

/* ══════════════════════════════
   INSTAGRAM CTA
   ══════════════════════════════ */
.instagram-cta {
    padding: 40px 0;
}

.insta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(0, 200, 83, 0.03));
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: var(--radius-lg);
}

.insta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.insta-icon {
    font-size: 36px;
    color: var(--green-accent);
}

.insta-content h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.insta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.btn-insta {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    font-weight: 700;
    padding: 12px 28px;
}

.btn-insta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 200, 83, 0.15);
    transform: translateY(-4px);
    background: rgba(0, 200, 83, 0.03);
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 20px;
    color: var(--green-accent);
    font-size: 24px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card a,
.contact-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-card a:hover {
    color: var(--green-accent);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
    padding: 80px 0 0;
    background: var(--green-darker);
    border-top: 1px solid rgba(0, 200, 83, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-accent);
    margin-bottom: 8px;
}

.footer-links a,
.footer-links span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links a:hover {
    color: var(--green-accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--green-accent);
    color: var(--dark-1);
    transform: translateY(-2px);
}

/* ══════════════════════════════
   ANIMATIONS
   ══════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-feature.animate-in:nth-child(1) { transition-delay: 0.1s; }
.about-feature.animate-in:nth-child(2) { transition-delay: 0.2s; }
.about-feature.animate-in:nth-child(3) { transition-delay: 0.3s; }
.about-feature.animate-in:nth-child(4) { transition-delay: 0.4s; }

.product-card.animate-in:nth-child(1) { transition-delay: 0.1s; }
.product-card.animate-in:nth-child(2) { transition-delay: 0.2s; }
.product-card.animate-in:nth-child(3) { transition-delay: 0.3s; }

.location-card.animate-in:nth-child(1) { transition-delay: 0.05s; }
.location-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.location-card.animate-in:nth-child(3) { transition-delay: 0.15s; }
.location-card.animate-in:nth-child(4) { transition-delay: 0.2s; }
.location-card.animate-in:nth-child(5) { transition-delay: 0.25s; }
.location-card.animate-in:nth-child(6) { transition-delay: 0.3s; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
    .hero-image {
        width: 45%;
        right: -20px;
    }

    .about-grid {
        gap: 48px;
    }

    .jas-boots-wrapper {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    /* Navbar mobile */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 31, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 20px;
        padding: 12px 24px;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero mobile */
    .hero {
        flex-direction: column;
        justify-content: center;
        padding: 120px 24px 60px;
        min-height: auto;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* Grids mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-showcase {
        grid-template-columns: 1fr;
    }

    .product-card-large {
        grid-row: auto;
    }

    .product-card-large .product-image {
        min-height: 280px;
    }

    .jas-boots-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .jas-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .insta-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .insta-content {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .jas-title {
        font-size: 48px;
    }

    .about-floating-card {
        right: 0;
        bottom: -20px;
    }

    .jas-owner-card {
        left: 0;
        bottom: -20px;
    }
}

/* ── Selection ── */
::selection {
    background: rgba(0, 200, 83, 0.3);
    color: var(--white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 200, 83, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 200, 83, 0.5);
}
