/* ══════════════════════════════
   BETAR HERO + NAV STYLES
   Prefixed with "betar-" to avoid conflicts
══════════════════════════════ */

:root {
    --betar-panel:       #ffffff;
    --betar-ink:         #1c1008;
    --betar-ink-mid:     #5c4030;
    --betar-ink-faint:   #ffffff;
    --betar-accent:      #d94214;
    --betar-accent2:     #f07020;
    --betar-white:       #ffffff;
    --betar-cream:       #fdf8f2;
    --betar-line:        rgba(28,16,8,0.1);
    --betar-line-strong: rgba(28,16,8,0.18);
}

/* ══════════════════════════════
   NAV — DESKTOP
══════════════════════════════ */
.betar-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    height: 70px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--betar-line);
    animation: betar-fadeDown 0.7s ease both;
}

.betar-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 27px;
    letter-spacing: 0.1em;
    color: var(--betar-ink);
    text-decoration: none;
    flex-shrink: 0;
}
.betar-logo b { color: var(--betar-accent); }

/* desktop links */
.betar-nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.betar-nav-links a {
    text-decoration: none;
    color: var(--betar-ink-mid);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1.5px;
    background: var(--betar-accent);
    transition: width 0.3s ease;
}
.betar-nav-links a:hover,
.betar-nav-links a.active { color: var(--betar-ink); }
.betar-nav-links a:hover::after,
.betar-nav-links a.active::after { width: 100%; }

/* right actions */
.betar-nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.betar-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--betar-line-strong);
    background: rgba(255,255,255,0.4);
    color: var(--betar-ink-mid);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}
.betar-icon-btn:hover {
    background: rgba(217,66,20,0.1);
    color: var(--betar-accent);
    border-color: var(--betar-accent);
}

.betar-cart-wrap {
    position: relative;
}
.betar-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: var(--betar-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    line-height: 1;
    padding: 0 3px;
    box-sizing: border-box;
}

.betar-dashboard-btn {
    display: none;
}

/* ── HAMBURGER ── */
.betar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.2s;
}
.betar-hamburger:hover { background: rgba(28,16,8,0.06); }
.betar-hamburger span {
    display: block;
    height: 2px;
    background: var(--betar-ink);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}
.betar-hamburger span:nth-child(2) { width: 70%; margin-left: auto; }

/* open state */
.betar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.betar-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.betar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.betar-mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 190;
    background: rgba(245,230,208,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--betar-line);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.betar-mobile-menu.open {
    max-height: 360px;
    padding: 20px 24px 28px;
}
.betar-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}
.betar-mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--betar-line);
    text-decoration: none;
    color: var(--betar-ink-mid);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.2s;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-mobile-menu ul li:last-child a { border-bottom: none; }
.betar-mobile-menu ul li a:hover,
.betar-mobile-menu ul li a.active {
    color: var(--betar-accent);
    padding-left: 8px;
}

/* ══════════════════════════════
   HERO SHELL
══════════════════════════════ */
.betar-hero {
    height: 100vh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

/* ── LEFT ── */
.betar-hero-left {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 60px 72px;
    background: var(--betar-panel);
    overflow: hidden;
}

/* dot grid */
.betar-hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(217,66,20,0.22) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}
/* warm glow wash */
.betar-hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(240,112,32,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.betar-hero-left > * { position: relative; z-index: 1; }

.betar-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    animation: betar-fadeUp 0.7s 0.15s ease both;
}
.betar-eyebrow-dash {
    width: 28px;
    height: 2px;
    background: var(--betar-accent);
    border-radius: 2px;
}
.betar-eyebrow-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--betar-accent);
    font-family: 'DM Sans', 'Outfit', sans-serif;
}

.betar-hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 7.6vw, 116px);
    line-height: 0.91;
    letter-spacing: 0.015em;
    margin-bottom: 28px;
    color: var(--betar-ink);
    animation: betar-fadeUp 0.7s 0.28s ease both;
}
.betar-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--betar-ink);
}
.betar-accent-word { color: var(--betar-accent); }

.betar-hero-sub {
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--betar-ink-mid);
    max-width: 370px;
    margin-bottom: 36px;
    animation: betar-fadeUp 0.7s 0.42s ease both;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}

.betar-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: betar-fadeUp 0.7s 0.55s ease both;
}

.betar-btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--betar-accent);
    color: #fff;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.25s, transform 0.2s;
    box-shadow: 0 6px 24px rgba(217,66,20,0.32);
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-btn-fill:hover { background: #bf3510; transform: translateY(-2px); color: #fff; }

.betar-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--betar-ink);
    color: var(--betar-ink);
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.25s, color 0.25s, transform 0.2s;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-btn-outline:hover { background: var(--betar-ink); color: #fff; transform: translateY(-2px); }
.betar-btn-outline svg,
.betar-btn-fill svg { transition: transform 0.2s; }
.betar-btn-outline:hover svg,
.betar-btn-fill:hover svg { transform: translateX(4px); }

/* stats */
.betar-stats {
    display: flex;
    gap: 0;
    border-top: 1.5px solid var(--betar-line-strong);
    padding-top: 24px;
    animation: betar-fadeUp 0.7s 0.7s ease both;
}
.betar-stat {
    flex: 1;
    padding-right: 24px;
    border-right: 1.5px solid var(--betar-line-strong);
    margin-right: 24px;
}
.betar-stat:last-child { border: none; margin: 0; padding: 0; }
.betar-stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 0.05em;
    color: var(--betar-ink);
    line-height: 1;
}
.betar-stat-n em {
    font-style: normal;
    color: var(--betar-accent);
}
.betar-stat-l {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--betar-ink-mid);
    margin-top: 5px;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}

/* ── RIGHT — photo ── */
.betar-hero-right {
    position: relative;
    overflow: hidden;
    animation: betar-fadeIn 1s 0.2s ease both;
}
.betar-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1.05) brightness(0.96);
    transition: transform 10s ease;
}
.betar-hero-right:hover .betar-hero-photo { transform: scale(1.04); }

.betar-photo-blend-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--betar-panel) 0%, rgba(245,230,208,0.25) 14%, transparent 30%);
    pointer-events: none;
    z-index: 2;
}
.betar-photo-blend-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,16,8,0.55) 0%, transparent 45%);
    pointer-events: none;
    z-index: 2;
}
.betar-photo-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    pointer-events: none;
    z-index: 3;
}

/* floating product card */
.betar-float-card {
    position: absolute;
    bottom: 64px;
    left: 32px;
    z-index: 10;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(217,66,20,0.18);
    padding: 20px 22px;
    width: 230px;
    box-shadow: 0 16px 48px rgba(28,16,8,0.18);
    animation: betar-slideUp 0.8s 0.9s ease both;
}
.betar-float-card-label {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--betar-accent);
    margin-bottom: 8px;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-float-card-title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--betar-ink);
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-float-card-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.06em;
    color: var(--betar-ink);
}
.betar-float-card-price span {
    font-size: 13px;
    font-family: 'DM Sans', 'Outfit', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--betar-ink-mid);
    margin-left: 3px;
}
.betar-float-divider {
    width: 100%;
    height: 1px;
    background: var(--betar-line-strong);
    margin: 12px 0;
}
.betar-float-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--betar-accent);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    padding: 0;
    transition: color 0.2s;
    text-decoration: none;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-float-card-cta:hover { color: var(--betar-ink); }

/* badge */
.betar-badge {
    position: absolute;
    top: 112px;
    right: 28px;
    z-index: 10;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--betar-accent);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(217,66,20,0.42);
    animation: betar-spinBadge 1s 1s ease both;
}
.betar-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    line-height: 1;
}
.betar-badge-txt {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 2px;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}

/* marquee */
.betar-marquee-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 46px;
    background: var(--betar-ink);
    overflow: hidden;
    z-index: 20;
    display: flex;
    align-items: center;
}
.betar-marquee-track {
    display: flex;
    animation: betar-marquee 24s linear infinite;
    white-space: nowrap;
}
.betar-marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
}
.betar-dot {
    color: var(--betar-accent2);
    font-size: 10px;
}

/* scroll hint */
.betar-scroll-hint {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--betar-ink-mid);
    opacity: 0;
    animation: betar-fadeIn 1s 1.4s ease forwards;
}
.betar-scroll-hint span {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}
.betar-scroll-bar {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--betar-ink-mid), transparent);
    animation: betar-scrollPulse 2s 1.4s ease-in-out infinite;
}

/* ══════════════════════════════
   DESKTOP — show dashboard btn above 1024px
══════════════════════════════ */
@media (min-width: 1025px) {
    .betar-dashboard-btn {
        display: grid;
    }
}

/* ══════════════════════════════
   MOBILE RESPONSIVE — <= 768px
══════════════════════════════ */
@media (max-width: 768px) {
    /* nav */
    .betar-nav { padding: 0 20px; }
    .betar-nav-links { display: none !important; }
    .betar-hamburger { display: flex; }
    .betar-mobile-menu { display: block; }

    /* hero: stack vertically */
    .betar-hero {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        height: 100vh;
        height: 100svh;
        max-height: 100vh;
        max-height: 100svh;
    }

    .betar-hero-left {
        padding: 90px 28px 24px 28px;
        justify-content: center;
        overflow: hidden;
    }

    .betar-hero-headline {
        font-size: clamp(58px, 16vw, 80px);
    }

    .betar-hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 28px; }

    .betar-eyebrow { margin-bottom: 16px; }
    .betar-hero-headline { margin-bottom: 16px; }

    .betar-cta-row { gap: 12px; margin-bottom: 32px; }
    .betar-btn-fill,
    .betar-btn-outline { padding: 12px 20px; font-size: 11px; }

    .betar-stats { gap: 0; padding-top: 20px; }
    .betar-stat-n { font-size: 26px; }
    .betar-stat-l { font-size: 9px; }

    .betar-hero-right {
        height: 45vw;
        min-height: 240px;
        max-height: 340px;
    }

    .betar-badge { display: none; }
    .betar-scroll-hint { display: none; }

    .betar-float-card {
        bottom: 56px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 10px 14px;
    }
    .betar-float-card-label { font-size: 8px; margin-bottom: 4px; }
    .betar-float-card-title { font-size: 12px; margin-bottom: 6px; }
    .betar-float-card-price { font-size: 20px; }
    .betar-float-divider { margin: 6px 0; }
    .betar-float-card-cta { font-size: 10px; }

    .betar-photo-blend-left {
        background: linear-gradient(to bottom, var(--betar-panel) 0%, transparent 20%);
    }
}

/* <= 480px — tiny phones */
@media (max-width: 480px) {
    .betar-nav { height: 62px; }
    .betar-mobile-menu { top: 62px; }
    .betar-logo { font-size: 23px; }

    .betar-hero-left { padding: 80px 20px 20px 20px; }
    .betar-hero-headline { font-size: clamp(44px, 14vw, 64px); margin-bottom: 12px; }
    .betar-hero-sub { font-size: 13px; margin-bottom: 20px; }
    .betar-eyebrow { margin-bottom: 12px; }

    .betar-cta-row { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 24px; }
    .betar-btn-fill,
    .betar-btn-outline { width: 100%; justify-content: center; padding: 11px 18px; }

    .betar-stats { gap: 0; padding-top: 16px; }
    .betar-stat { padding-right: 14px; margin-right: 14px; }
    .betar-stat-n { font-size: 22px; }
    .betar-stat-l { font-size: 8.5px; }

    .betar-hero-right {
        height: 40vw;
        min-height: 220px;
        max-height: 300px;
    }

    .betar-float-card {
        bottom: 52px;
        left: 10px;
        width: calc(100% - 20px);
        padding: 8px 12px;
    }
    .betar-float-card-label { font-size: 7.5px; margin-bottom: 3px; }
    .betar-float-card-title { font-size: 11px; margin-bottom: 4px; }
    .betar-float-card-price { font-size: 18px; }
    .betar-float-divider { margin: 5px 0; }
    .betar-float-card-cta { font-size: 9px; }
}

/* ══════════════════════════════
   KEYFRAMES
══════════════════════════════ */
@keyframes betar-fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes betar-fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes betar-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes betar-slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes betar-spinBadge {
    from { opacity: 0; transform: scale(0.5) rotate(-30deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes betar-scrollPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.35; }
}
@keyframes betar-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}
