/* =============================================
    CSS CUSTOM PROPERTIES - FC PARKZICHT COLORS
    ============================================= */
:root {
    --fcp-black:        #0a0a0a;
    --fcp-dark:         #111111;
    --fcp-card-bg:      #1a1a1a;
    --fcp-card-border:  #2a2a2a;
    --fcp-pink:         #f472b6;
    --fcp-red:          #dc2626;
    --fcp-mint:         #34d399;
    --fcp-blue:         #2563eb;
    --fcp-white:        #ffffff;
    --fcp-light-gray:   #9ca3af;
    --fcp-text:         #e5e7eb;
    --stripe-height:    5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--fcp-black);
    color: var(--fcp-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

/* =============================================
    STRIPE ACCENT (Club signature stripes)
    ============================================= */
.stripe-accent {
    display: flex;
    width: 100%;
    height: var(--stripe-height);
}
.stripe-accent .s-pink  { flex: 1; background: var(--fcp-pink); }
.stripe-accent .s-red   { flex: 1; background: var(--fcp-red); }
.stripe-accent .s-mint  { flex: 1; background: var(--fcp-mint); }
.stripe-accent .s-blue  { flex: 1; background: var(--fcp-blue); }

.stripe-accent.thick {
    height: 8px;
}

/* =============================================
    NAVBAR
    ============================================= */
.main_nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fcp-card-border);
}

.main_nav-bar::after {
    content: '';
    display: flex;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--fcp-pink) 25%,
        var(--fcp-red) 25% 50%,
        var(--fcp-mint) 50% 75%,
        var(--fcp-blue) 75%
    );
}

.custom-nav {
    padding: 0.75rem 0;
}

.navbar-brand img {
    height: 42px;
}

.custom-nav-link {
    color: var(--fcp-white) !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.custom-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(to right, var(--fcp-pink), var(--fcp-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.custom-nav-link:hover::after {
    transform: scaleX(1);
}

.custom-nav-link:hover {
    color: var(--fcp-pink) !important;
}

.navbar-toggler {
    border-color: var(--fcp-card-border);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* =============================================
    HERO SECTION
    ============================================= */
.hero-section {
    min-height: 100vh;
    background: var(--fcp-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(244, 114, 182, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(52, 211, 153, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Animated diagonal stripes background */
.hero-stripes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.04;
}

.hero-stripes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        var(--fcp-pink) 40px,
        var(--fcp-pink) 42px,
        transparent 42px,
        transparent 82px,
        var(--fcp-red) 82px,
        var(--fcp-red) 84px,
        transparent 84px,
        transparent 124px,
        var(--fcp-mint) 124px,
        var(--fcp-mint) 126px,
        transparent 126px,
        transparent 166px,
        var(--fcp-blue) 166px,
        var(--fcp-blue) 168px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fcp-pink);
    margin-bottom: 1.5rem;
    padding: 0.35rem 1.25rem;
    border: 1px solid rgba(244, 114, 182, 0.3);
    border-radius: 2rem;
    background: rgba(244, 114, 182, 0.06);
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1;
    color: var(--fcp-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.hero-title .accent-pink  { color: var(--fcp-pink); }
.hero-title .accent-red   { color: var(--fcp-red); }
.hero-title .accent-mint  { color: var(--fcp-mint); }
.hero-title .accent-blue  { color: var(--fcp-blue); }

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--fcp-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--fcp-light-gray);
    line-height: 1.7;
}

.hero-stripes-display {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 1.5rem auto;
    max-width: 300px;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.hero-stripes-display span {
    flex: 1;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--fcp-pink), var(--fcp-red));
    color: var(--fcp-white);
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(244, 114, 182, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-order::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--fcp-red), var(--fcp-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-order span {
    position: relative;
    z-index: 1;
}

.btn-order:hover {
    color: var(--fcp-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(244, 114, 182, 0.35);
}

.btn-outline-club {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--fcp-white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.9rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-club:hover {
    border-color: var(--fcp-mint);
    color: var(--fcp-mint);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--fcp-light-gray);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
    SECTION TITLES
    ============================================= */
.section-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--fcp-pink);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fcp-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--fcp-pink), var(--fcp-blue));
    margin: 1.25rem auto;
}

/* =============================================
    INTRO / INFO SECTION
    ============================================= */
.info-section {
    padding: 6rem 0;
    background: var(--fcp-dark);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.info-card {
    background: var(--fcp-card-bg);
    border: 1px solid var(--fcp-card-border);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.info-card.card-pink::before   { background: var(--fcp-pink); }
.info-card.card-red::before    { background: var(--fcp-red); }
.info-card.card-mint::before   { background: var(--fcp-mint); }
.info-card.card-blue::before   { background: var(--fcp-blue); }

.info-card:hover {
    border-color: rgba(244, 114, 182, 0.3);
    transform: translateY(-4px);
}

.info-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.icon-pink  { color: var(--fcp-pink); }
.icon-red   { color: var(--fcp-red); }
.icon-mint  { color: var(--fcp-mint); }
.icon-blue  { color: var(--fcp-blue); }

.info-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fcp-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--fcp-light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
    CLOTHING CATALOG SECTION
    ============================================= */
.catalog-section {
    padding: 7rem 0;
    background: var(--fcp-black);
    position: relative;
}

.catalog-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--fcp-card-border), transparent);
}

/* Product Card */
.product-card {
    background: var(--fcp-card-bg);
    border: 1px solid var(--fcp-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    border-color: rgba(244, 114, 182, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(244, 114, 182, 0.1);
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-new {
    background: rgba(52, 211, 153, 0.15);
    color: var(--fcp-mint);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.badge-popular {
    background: rgba(244, 114, 182, 0.15);
    color: var(--fcp-pink);
    border: 1px solid rgba(244, 114, 182, 0.3);
}

.badge-essential {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

/* Product image area */
.product-img-wrap {
    position: relative;
    background: #f8f8f8;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 1rem;
}

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

/* Product image placeholder (for missing images) */
.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #1a1a1a, #222222);
}

.product-img-placeholder i {
    font-size: 4rem;
    opacity: 0.2;
    color: var(--fcp-white);
}

.product-img-placeholder span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fcp-light-gray);
    opacity: 0.5;
}

/* Stripe bar on image bottom */
.product-img-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
}

.product-img-stripe span {
    flex: 1;
}

.product-img-stripe .s-pink  { background: var(--fcp-pink); }
.product-img-stripe .s-red   { background: var(--fcp-red); }
.product-img-stripe .s-mint  { background: var(--fcp-mint); }
.product-img-stripe .s-blue  { background: var(--fcp-blue); }

/* Product info */
.product-info {
    padding: 1.5rem;
}

.product-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fcp-pink);
    margin-bottom: 0.4rem;
    opacity: 0.7;
}

.product-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--fcp-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.product-description {
    color: var(--fcp-light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Feature tags */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    color: var(--fcp-light-gray);
    border: 1px solid var(--fcp-card-border);
}

.feature-tag i {
    font-size: 0.65rem;
}

/* Sizing chips */
.size-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}

/* Container: Push both prices to the right and align them vertically */
.price-right-small {
    display: flex;
    flex-direction: row;     /* Side by side */
    justify-content: flex-end; /* Pushes everything to the right */
    align-items: center;     /* Keeps them level with each other */
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1.5rem;
}


/* Commercial (Original) Price Styling */
.price_commercial {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--fcp-light-gray);
    text-decoration: line-through; /* Standard strikethrough */
    opacity: 0.6;
}

.price_commercial::before {
    content: "€ ";
}

/* Club Price (Highlighted Box) */
.price_eur {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--fcp-white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--fcp-card-border);
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    display: inline-flex;
    align-items: center;
}

/* Label for the Club Price */
.club_price::after {
    content: " CLUB"; /* Adds a small label inside the box */
    font-size: 0.65rem;
    margin-left: 8px;
    color: var(--fcp-pink); /* Using your pink variable for emphasis */
    letter-spacing: 0.1em;
}

.price_eur::before {
    content: "€ ";
    margin-right: 2px;
}




.size-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fcp-light-gray);
    width: 100%;
    margin-bottom: 0.4rem;
}

.size-chip {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--fcp-card-border);
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fcp-light-gray);
    transition: all 0.2s ease;
}

.size-chip:hover {
    border-color: var(--fcp-pink);
    color: var(--fcp-pink);
}

/* =============================================
    ORDER CTA SECTION
    ============================================= */
.order-section {
    padding: 7rem 0;
    background: var(--fcp-dark);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(244, 114, 182, 0.07) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(37, 99, 235, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.order-box {
    background: var(--fcp-card-bg);
    border: 1px solid var(--fcp-card-border);
    border-radius: 16px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.order-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right,
        var(--fcp-pink) 0% 25%,
        var(--fcp-red) 25% 50%,
        var(--fcp-mint) 50% 75%,
        var(--fcp-blue) 75% 100%
    );
}

.order-box-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.01) 40px,
        rgba(255,255,255,0.01) 41px
    );
    pointer-events: none;
}

.order-icon {
    font-size: 3.5rem;
    color: var(--fcp-pink);
    margin-bottom: 1.5rem;
    display: block;
}

.order-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--fcp-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.order-description {
    color: var(--fcp-light-gray);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.order-deadline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 2rem;
    color: #fca5a5;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.btn-form {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--fcp-pink), var(--fcp-red));
    color: var(--fcp-white);
    border: none;
    padding: 1.1rem 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(244, 114, 182, 0.3);
}

.btn-form:hover {
    color: var(--fcp-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 114, 182, 0.45);
}

.btn-form i {
    font-size: 1rem;
}

/* =============================================
    SIZE GUIDE SECTION
    ============================================= */
.sizeguide-section {
    padding: 6rem 0;
    background: var(--fcp-black);
}

.table-dark-custom {
    background: var(--fcp-card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--fcp-card-border);
}

.table-dark-custom table {
    margin: 0;
    color: var(--fcp-text);
}

.table-dark-custom thead tr {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(37, 99, 235, 0.15));
}

.table-dark-custom thead th {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fcp-white);
    border-color: var(--fcp-card-border);
    padding: 1rem 1.25rem;
}

.table-dark-custom tbody td {
    border-color: var(--fcp-card-border);
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    color: var(--fcp-light-gray);
}

.table-dark-custom tbody tr:hover td {
    background: rgba(244, 114, 182, 0.04);
    color: var(--fcp-white);
}

.size-highlight {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fcp-white);
}

/* =============================================
    COLOR PALETTE DISPLAY
    ============================================= */
.colors-section {
    padding: 5rem 0;
    background: var(--fcp-dark);
}

.color-swatch {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--fcp-card-border);
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.03);
}

.color-swatch-block {
    height: 120px;
}

.color-swatch-info {
    padding: 1rem;
    background: var(--fcp-card-bg);
}

.color-swatch-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fcp-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.color-swatch-hex {
    font-size: 0.8rem;
    color: var(--fcp-light-gray);
    font-family: monospace;
}

/* =============================================
    FOOTER
    ============================================= */
footer {
    background: var(--fcp-dark);
    border-top: 1px solid var(--fcp-card-border);
    padding: 2.5rem 0;
}

.footer-stripe {
    height: 4px;
    background: linear-gradient(to right,
        var(--fcp-pink) 0% 25%,
        var(--fcp-red) 25% 50%,
        var(--fcp-mint) 50% 75%,
        var(--fcp-blue) 75% 100%
    );
}

.footer-logo {
    height: 36px;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.footer-text {
    color: var(--fcp-light-gray);
    font-size: 0.875rem;
}

.footer-link {
    color: var(--fcp-light-gray);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--fcp-pink);
}

.footer-divider {
    color: var(--fcp-card-border);
    margin: 0 0.5rem;
}

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

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

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* Intersection Observer trigger */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
    RESPONSIVE
    ============================================= */
@media (max-width: 768px) {
    .order-box {
        padding: 3rem 1.5rem;
    }
    .product-img-wrap {
        height: 260px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1rem;
    }
    .btn-order,
    .btn-outline-club {
        width: 100%;
        justify-content: center;
    }
}