/* Ultra-Premium Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@500&display=swap');

/* Luxury intro styles */
.intro-welcome {
    text-align: center;
}

.intro-text {
    font-family: 'Bebas Neue', serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 7px;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(6px);
    animation: introFade 3s ease-in-out infinite;
}

/* Fade in & out keyframes */
@keyframes introFade {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

.intro-logo img {
    width: min(50px, 22vw);
    height: auto;
    filter: invert(1) brightness(2);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    animation: introFade 1800ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards,
        introGlow 2400ms ease-in-out 200ms forwards;
}

@keyframes introFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introGlow {
    0% {
        filter: invert(1) brightness(1.2) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }

    100% {
        filter: invert(1) brightness(2) drop-shadow(0 10px 30px rgba(255, 255, 255, 0.15));
    }
}

/* Subtle vignette + sheen for premium feel */
#introScreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 10%, rgba(255, 255, 255, 0.08), transparent 60%),
        radial-gradient(120% 120% at 50% 90%, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75));
    pointer-events: none;
}

.loading-content img {
    width: 36px !important;
    height: auto !important;
    margin-bottom: 20px;
    animation: logoFloat 2.2s ease-in-out infinite alternate;
}

/* Standardize alternative loader markup used on some pages */
.loading-logo img {
    width: 36px !important;
    height: auto !important;
    margin-bottom: 20px;
    animation: logoFloat 2.2s ease-in-out infinite alternate;
}

.loading-bar {
    width: 120px;
    height: 2px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: loadingProgress 1.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes loadingProgress {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Smaller loader on mobile */
@media (max-width: 768px) {
    .loading-content img {
        width: 28px !important;
        margin-bottom: 16px;
    }

    .loading-logo img {
        width: 28px !important;
        margin-bottom: 16px;
    }

    .loading-bar {
        width: 100px;
    }
}

/* Subtle site version (cheeky, bottom-right) */
body::after {
    content: 'v1.19';
    position: fixed;
    right: 10px;
    bottom: 8px;
    z-index: 9999;
    pointer-events: none;
    user-select: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    /* 60% opacity */
    opacity: 0.25;
    transition: opacity 0.25s ease;
}

body:hover::after {
    opacity: 0.4;
}



/* Transparent Navigation with Scroll Effects */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
}

/* Safe area support on iOS (mobile only applied below) */

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

.nav-left,
.nav-right {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(0, 0, 0, .25);
    margin-left: 12px;
    text-decoration: none;
    color: #fff
}

.cart-icon-link:hover {
    background: rgba(255, 255, 255, .1)
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-link {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.nav-link:hover {
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    filter: invert(1) brightness(2);
}

.navbar.scrolled .logo {
    filter: invert(1) brightness(1.8);
}

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

.logo:hover {
    transform: scale(1.05);
}

/* Hero Section - Rhode Skin Style */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.75);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    max-width: 800px;
    padding: 0 40px;
}

.hero-text-wrapper {
    position: relative;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 50px;
    opacity: 0;
    line-height: 1.5;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.hero-button {
    position: relative;
    padding: 18px 35px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.primary-btn {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    pointer-events: none;
}

.primary-btn:hover .btn-bg {
    left: 0;
}

.primary-btn:hover {
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.secondary-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.play-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.secondary-btn:hover .play-icon {
    transform: translateX(3px);
}

/* Animation States */
.animate-in.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Brand Identity Section */
.brand-identity {
    padding: 100px 0 0 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.brand-header {
    text-align: center;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
}

.brand-section-subtitle {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666666;
    margin: 0;
}

/* Split Layout */
.brand-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 80vh;
    margin-bottom: 150px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-image {
    position: relative;
    overflow: hidden;
}

.editorial-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-editorial {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.1) brightness(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-image:hover .hero-editorial {
    filter: grayscale(80%) contrast(1.15) brightness(0.85);
    transform: scale(1.02);
}

.editorial-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.brand-image:hover .editorial-image::after {
    opacity: 0.5;
}

.brand-story {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f8f8;
}

.story-content {
    max-width: 400px;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.signature {
    text-align: left;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}

/* Pull Quote Section */
.brand-quote {
    text-align: center;
    padding: 120px 40px;
    background: #000000;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quote-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    font-style: italic;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -1px;
}

/* Values Strip */
.brand-values-strip {
    background: #f0f0f0;
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.values-scroll {
    display: inline-block;
    animation: scrollValues 30s linear infinite;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #333333;
}

.values-scroll span {
    margin-right: 60px;
    position: relative;
}

.values-scroll span::after {
    content: '·';
    position: absolute;
    right: -35px;
    color: #999999;
}

@keyframes scrollValues {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.shop-button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 20px 60px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

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

.shop-button:hover::before {
    left: 100%;
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Call to Action */
.cta-section {
    padding: 150px 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

.cta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: lowercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 20px 60px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #000000;
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    text-align: center;
}

/* Product Preview (First Drop) */
.product-preview {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.product-preview .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    letter-spacing: 2px;
    font-weight: 400;
    margin: 0 0 8px 0;
}

.launch-timeline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.product-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 18px;
    transition: transform .4s cubic-bezier(0.25, 0.8, 0.25, 1), background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-card {
    position: relative;
}

.product-card .card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
}

.product-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0a;
}

.product-image.square {
    aspect-ratio: 1/1;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.05) brightness(.95);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.product-image img.layer {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-image img.layer.current {
    opacity: 1;
}

.product-image:hover img.layer.current {
    transform: scale(1.02);
}

.image-toggle {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    z-index: 2;
}

.image-toggle .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease
}

.image-toggle .dot.active {
    background: #fff;
    transform: scale(1.15);
}

.image-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    pointer-events: none;
    z-index: 2
}

.image-arrows .arrow {
    pointer-events: auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease
}

.image-arrows .arrow:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, .5);
    border-color: rgba(255, 255, 255, .35)
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 12px 6px 6px 6px;
    color: #fff;
    font-weight: 700;
}

.product-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 6px 6px 6px;
}

.price-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}

.sale-price {
    color: #ffffff;
    font-weight: 700;
}

.exclusivity-notes {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 28px 0;
}

.note-pill {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    padding: 6px 10px;
    border-radius: 999px
}

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

.preview-cta .cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, .65);
    margin-top: 10px;
}

/* Premium In Stock Badge */
.status-instock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 5px 10px 5px 8px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
    }
}

@media (max-width: 768px) {
    .product-preview {
        padding: 72px 0;
    }

    .product-preview .container {
        padding: 0 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.newsletter-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: #000000;
}

.newsletter-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 25px;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    background: #ffffff;
}

.newsletter-button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #333333;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: #999999;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-section p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 12px;
    color: #999999;
    font-weight: 300;
}

/* Minimal, premium footer (dark, centered icon tiles) */
.footer-min {
    position: relative;
    background: #0b0b0b;
    color: #e6e6e6;
    padding: 72px 0 64px;
    min-height: 260px;
    /* allow room for visible wordmark */
    overflow: hidden;
}

.footer-min::before {
    content: 'ANGRY ROOSTER';
    position: absolute;
    left: 50%;
    bottom: -40%;
    /* CHANGE: back to bottom positioning, but less negative */
    transform: translateX(-50%);
    /* CHANGE: only center horizontally */
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 18vw, 20rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: -200% 0;
    }

    50% {
        background-position: 200% 0;
    }
}

/* keep rooster icon overlay removed */
.footer-min::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top,
            rgba(11, 11, 11, 0.9) 0%,
            rgba(11, 11, 11, 0.6) 30%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
    display: block;
}

.footer-min .icons {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 0;
}

.footer-min .tile {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px) saturate(140%);
    color: #dcdcdc;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.footer-min .tile:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.footer-min .tile svg {
    width: 18px;
    height: 18px;
}

.footer-min .copy {
    display: none;
}

@media (max-width: 768px) {
    .footer-min {
        padding: 56px 0;
        min-height: 200px;
    }

    .footer-min::before {
        font-size: 58vw;
        bottom: -26%;
        letter-spacing: 3px;
    }

    .footer-min .icons {
        gap: 12px;
    }

    .footer-min .tile {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ultra-Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 16px;
        flex-direction: row;
        gap: 0;
        position: relative;
    }

    .navbar {
        padding-top: calc(25px + env(safe-area-inset-top));
    }

    /* Keep cart visible on mobile, hide only nav-left links */
    .nav-left {
        display: none;
    }

    .nav-right {
        display: flex;
    }

    .logo {
        height: 56px;
    }

    /* Center logo absolutely so it remains dead center */
    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
    }

    /* Hide text links from top bar on mobile; keep cart icon visible */
    .nav-right .nav-link {
        display: none;
    }

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

    /* Extra guard for specific routes */
    .nav-left a[href*='help-shape'],
    .nav-left a[href*='shape'],
    .nav-right a[href*='account'] {
        display: none;
    }

    /* Mobile menu toggle on LEFT */
    .mobile-menu-toggle {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1100;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .mobile-menu-toggle {
        background: rgba(255, 255, 255, 0.85);
        border-color: rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-toggle .bar,
    .mobile-menu-toggle .bar::before,
    .mobile-menu-toggle .bar::after {
        content: '';
        display: block;
        width: 20px;
        /* Slightly wider */
        height: 1.5px;
        /* Thinner for elegance */
        background: #ffffff;
        transition: all 0.3s ease;
        position: relative;
    }

    .navbar.scrolled .mobile-menu-toggle .bar,
    .navbar.scrolled .mobile-menu-toggle .bar::before,
    .navbar.scrolled .mobile-menu-toggle .bar::after {
        background: #000000;
    }

    .mobile-menu-toggle .bar::before {
        top: -6px;
        position: absolute;
    }

    .mobile-menu-toggle .bar::after {
        top: 6px;
        position: absolute;
    }

    .mobile-menu-toggle.active .bar {
        background: transparent;
    }

    .mobile-menu-toggle.active .bar::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-toggle.active .bar::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Slide-in menu */
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1090;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(80%, 320px);
        height: 100vh;
        background: #0a0a0a;
        color: #fff;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1105;
        padding: calc(80px + env(safe-area-inset-top)) 20px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-menu-panel a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-size: 12px;
        padding: 12px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .mobile-menu-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.mobile-menu-open .mobile-menu-panel {
        transform: translateX(0);
    }

    .hero {
        /* Fill the full safe viewport height on mobile so the white section below isn't visible on first load */
        height: 100svh;
        min-height: 100vh;
        /* fallback */
        padding-top: 60px;
        /* ensure content clears navbar */
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-subtitle {
        margin-bottom: 12px;
    }

    .hero-description {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .hero-button {
        width: min(420px, 92%);
        text-align: center;
        padding: 16px 20px;
        margin: 0 auto;
    }

    .brand-split {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 80px;
    }

    .brand-story {
        padding: 60px 24px;
    }

    .story-content {
        max-width: 100%;
    }

    .brand-quote {
        padding: 80px 20px;
    }

    .values-scroll {
        font-size: 20px;
        letter-spacing: 6px;
    }

    .about-image {
        height: 50vh;
        margin-bottom: 80px;
    }

    .about-content {
        padding: 0 20px;
    }

    .about-section {
        margin-bottom: 60px;
    }

    .opening-statement {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        border-radius: 0;
    }

    .newsletter-input,
    .newsletter-button {
        border-radius: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    body {
        cursor: auto;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        height: 78vh;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .logo {
        height: 48px;
    }
}

/* High-end Performance Optimizations */
/* Remove global will-change; scope to specific animated elements only */
.hero-video {
    will-change: transform;
}

.hero-title,
.hero-subtitle,
.hero-description,
.hero-buttons {
    will-change: transform, opacity;
}

/* Ultra-smooth scrolling for Safari */
@supports (-webkit-touch-callout: none) {
    .brand-identity {
        transform: translate3d(0, 0, 0);
    }
}

/* Site-wide Beta Modal (classy, minimal) */
.site-beta-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
}

.site-beta-modal.active {
    display: flex;
}

.site-beta-modal .beta-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.site-beta-modal .beta-card {
    position: relative;
    z-index: 1;
    width: min(92vw, 520px);
    border-radius: 16px;
    padding: 28px 24px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.beta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.6rem, 5vw, 2rem);
    letter-spacing: 2px;
    margin: 0 0 8px 0;
}

.beta-description {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}

.beta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.beta-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s ease;
}

.beta-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.beta-btn.primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.beta-btn.primary.take-me {
    position: relative;
    overflow: hidden;
    color: #000;
    background: linear-gradient(90deg, #ffffff 0%, #f1f1f1 50%, #ffffff 100%);
    background-size: 200% 100%;
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.15);
    animation: btnSweep 3.2s ease-in-out infinite;
}

.beta-btn.primary.take-me::after {
    content: '';
    position: absolute;
    inset: -30% -60% -30% -60%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .35) 50%, transparent 60%);
    transform: translateX(-60%);
    animation: btnSheen 2.6s ease-in-out infinite;
    pointer-events: none;
}

.beta-btn.primary.take-me:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(255, 255, 255, 0.22);
}

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

@keyframes btnSweep {
    0% {
        background-position: 0% 0
    }

    100% {
        background-position: 200% 0
    }
}

@keyframes btnSheen {
    0% {
        transform: translateX(-60%)
    }

    100% {
        transform: translateX(60%)
    }
}

.beta-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s ease;
}

.beta-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 480px) {
    .site-beta-modal .beta-card {
        padding: 24px 18px;
        border-radius: 14px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .loading-screen {
        background: #0a0a0a;
    }

    .navbar {
        background: transparent;
    }

    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar.scrolled .logo {
        filter: invert(1) brightness(1.8);
    }

    .navbar.scrolled .nav-link {
        color: #fff;
    }

    .nav-link {
        color: #ffffff;
    }
}

/* Motion sensitivity */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}

/* About Us Section */
.about-us {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    /* Prevent horizontal scrollbars from parallax */
}

/* About Page Specific Styling */
.about-page {
    padding-top: 180px;
}

/* Opening Statement */
.about-opening {
    text-align: center;
    margin-bottom: 150px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.opening-statement {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.25;
    color: #000000;
    font-style: italic;
    letter-spacing: -1.5px;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Editorial Image */
.about-image {
    position: relative;
    height: 85vh;
    margin-bottom: 150px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-editorial {
    width: 100%;
    height: 130%;
    /* Make image taller for parallax effect */
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.2) brightness(0.7);
    transform: translateY(-15%);
    /* Initial position */
}

.image-overlay-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%);
}

/* About Content - Editorial Grid Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 40px 60px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-section {
    display: contents;
    /* Allows children to be direct grid items */
}

.about-section .section-header {
    grid-column: 1;
    text-align: right;
    position: sticky;
    top: 140px;
    /* Stick below the navbar */
    align-self: start;
}

.about-section .section-text {
    grid-column: 2;
    padding-bottom: 120px;
    /* Create space between text blocks */
}

.section-header {
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
}

.section-header::after {
    display: none;
    /* Removed underline for cleaner grid layout */
}

.section-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #333333;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* About CTA */
.about-cta {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.join-button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 20px 60px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

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

.join-button:hover::before {
    left: 100%;
}

.join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.75);
}

/* Announcement Bar (classy, thin) */
.announce-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 64px;
    /* sits just below navbar on desktop */
    z-index: 1200;
    width: min(96%, 1200px);
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .045);
    color: rgba(255, 255, 255, .9);
    border-radius: 999px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px) saturate(140%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.announce-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    opacity: .28;
    pointer-events: none;
}

@media (max-width: 768px) {
    .announce-bar {
        top: calc(56px + env(safe-area-inset-top) + 10px);
        font-size: 10px;
        letter-spacing: 1.5px;
        width: min(94%, 640px);
    }
}

/* White Top Announcement Bar - REPLACED WITH CHRISTMAS SALE STYLE */
.top-announce {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .top-announce {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding: 8px 0;
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-item {
    padding: 0 30px;
    font-weight: 700;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }

    /* Moves by one segment (1/4 if 4 segments) */
}

.hero-timer {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.timer-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timer-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-variant-numeric: tabular-nums;
}


/* Offset navbar below top announce */
.navbar {
    top: 28px;
}

/* Site-wide minimalist notice */
.site-note {
    background: #000000;
    color: rgba(255, 255, 255, 0.78);
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-note .text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}