/* ============================================================
   STYLE.CSS — Desktop & Tablet baseline
   Mobile overrides live in mobile_style.css
   ============================================================ */

:root {
    --p-text: #FFFFFF;
    --s-text: rgba(255, 255, 255, 0.7);
    --accent-glow: rgba(255, 255, 255, 0.4);
    --radius: 310px;
    --easing-premium: cubic-bezier(0.1, 0.9, 0.2, 1);
    --nav-height: 80px;
    --nav-glass: rgba(255, 255, 255, 0.03);
    --nav-border: rgba(255, 255, 255, 0.08);
    --bg-light: #f5f5f7;
    --text-dark: #1d1d1f;
    --accent: #0071e3;
    --easing: cubic-bezier(0.1, 0.9, 0.2, 1);
    --peach-bg: #FEE4D6;
    --coral-accent: #F9B49E;
    --deep-clay: #E88D72;
    --glass-white: rgba(255, 255, 255, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Hanken Grotesk', 'Inter', system-ui, sans-serif;
    background: #111;
    overflow-x: hidden;
}

/* ============================================================
   HERO / ORBIT
   ============================================================ */
.main-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    overflow: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

.orbit-pivot {
    position: absolute;
    top: 50%;
    left: -60px;
    z-index: 10;
    transform: translateY(-50%) rotate(0deg);
    transition: none;
    will-change: transform;
}

.product-item {
    position: absolute;
    top: 50%;
    left: var(--radius);
    width: 360px;
    height: 580px;
    margin-top: -290px;
    transform: rotate(var(--deg, calc(var(--i) * 60deg)));
    transform-origin: calc(var(--radius) * -1) center;
    will-change: transform;
}

.item-inner {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    transition: transform 1.8s var(--easing-premium);
}

.product-visual {
    width: 100%; height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.floating-img {
    max-width: 165%;
    max-height: 165%;
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(255,255,255,0.28));
    transition: transform 0.5s var(--easing-premium), filter 0.5s ease;
    will-change: transform;
    cursor: pointer;
}

/* Hover reaction — product lifts & grows when pointed at */
.product-visual:hover .floating-img {
    transform: scale(1.14) translateY(-14px);
    filter: drop-shadow(0 45px 90px rgba(255,255,255,0.45));
}

.product-data {
    color: var(--p-text);
    text-align: center;
    margin-top: auto;
    z-index: 1;
}

.category-chip {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--s-text);
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
}

.product-data h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.8px; line-height: 1.1; }
.product-data p { font-size: 16px; font-weight: 400; color: var(--s-text); line-height: 1.5; max-width: 90%; margin: 0 auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--nav-border);
    background: var(--nav-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: height 0.4s var(--easing-premium), background 0.4s ease;
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 130px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--s-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #FFF; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-primary {
    background: #FFF; color: #000; border: none;
    padding: 12px 28px; border-radius: 50px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: transform 0.3s var(--easing-premium), box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 25px rgba(255,255,255,0.2); }

/* ============================================================
   DROPDOWN
   ============================================================ */
.nav-has-dropdown { position: relative; list-style: none; }

.nav-products-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--s-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-products-trigger:hover { color: #fff; }

.dropdown-chevron {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    opacity: 0.6;
}
.nav-has-dropdown:hover .dropdown-chevron,
.nav-has-dropdown.dropdown-open .dropdown-chevron { transform: rotate(180deg); opacity: 1; }

.products-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.96);
    width: 280px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1), visibility 0.3s;
    z-index: 9999;
}
.products-dropdown::before { content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }

.nav-has-dropdown:hover .products-dropdown,
.nav-has-dropdown.dropdown-open .products-dropdown {
    opacity: 1; pointer-events: all; visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-shimmer { display: none; }
.dropdown-header { padding: 10px 14px 6px; }
.dropdown-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.3); }
.dropdown-inner { display: flex; flex-direction: column; gap: 2px; padding: 4px; }

.dropdown-category {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 12px; cursor: pointer;
    background: transparent;
    transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.dropdown-category:hover { background: rgba(0,0,0,0.05); transform: translateX(2px); }
.dropdown-category.active-cat { background: rgba(0,0,0,0.04); }

.cat-icon-wrap {
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.2s ease;
}
.dropdown-category:hover .cat-icon-wrap { transform: scale(1.08); }
.cat-emoji { font-size: 15px; line-height: 1; }
.cat-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.cat-name { font-size: 13px; font-weight: 600; color: #1a1a1a; letter-spacing: 0.2px; transition: color 0.2s ease; }
.cat-sub { font-size: 10px; color: rgba(0,0,0,0.4); letter-spacing: 0.3px; }
.cat-arrow { color: rgba(0,0,0,0.25); flex-shrink: 0; opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; }
.dropdown-category:hover .cat-arrow { opacity: 1; transform: translateX(2px); color: rgba(0,0,0,0.5); }
.dropdown-category.active-cat .cat-name { color: #1a1a1a; }
.dropdown-category.active-cat .cat-arrow { opacity: 1; }
.dropdown-footer-strip { padding: 8px 14px 10px; border-top: 1px solid rgba(0,0,0,0.06); margin-top: 4px; }
.dropdown-footer-strip span { font-size: 9px; letter-spacing: 0.5px; color: rgba(0,0,0,0.3); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-investor {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
    padding: 10px 22px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-investor:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.32); transform: translateY(-1px); }

.btn-bulk {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
    padding: 10px 22px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
    white-space: nowrap;
}
.btn-bulk:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.32); transform: translateY(-1px); }

/* ============================================================
   CATEGORY INDICATOR
   ============================================================ */
.category-indicator {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 8px 20px 8px 14px;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    animation: badgeEntry 0.6s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
@keyframes badgeEntry {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.ci-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; flex-shrink: 0; animation: ciPulse 2s ease-in-out infinite; }
@keyframes ciPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); }

.orbit-wheel { transition: opacity 0.15s ease; }
.orbit-wheel.is-switching { opacity: 0; pointer-events: none; }

/* ============================================================
   MOBILE NAV HAMBURGER
   ============================================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 10001;
    padding: 72px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.22,1,0.36,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
}
.mobile-nav-drawer.open { right: 0; }

.mobile-nav-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 8px;
}
.mobile-nav-links > li > a {
    display: block;
    padding: 16px 4px;
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s, padding-left 0.2s;
    line-height: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > a.active { color: #fff; padding-left: 8px; }

.mobile-nav-has-sub { list-style: none; }

.mobile-nav-cat-head {
    display: block;
    color: rgba(255,255,255,0.3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 4px 8px;
}

.mobile-nav-sub {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-cat-link {
    display: flex !important;
    align-items: center;
    color: rgba(255,255,255,0.65) !important;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px !important;
    font-weight: 500;
    padding: 10px 14px !important;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    letter-spacing: 0.3px;
    border-bottom: none !important;
    min-height: 44px;
}
.mobile-cat-link:hover { background: rgba(255,255,255,0.1); color: #fff !important; padding-left: 20px !important; }

.mobile-nav-bottom-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.mobile-bulk-btn {
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 0 24px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.mobile-bulk-btn:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.35); }

.mobile-investor-btn {
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 0 24px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.mobile-investor-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }

.mobile-shop-btn {
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px; font-weight: 700;
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    transition: transform 0.25s, box-shadow 0.25s;
    letter-spacing: 0.3px;
}
.mobile-shop-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

.mobile-nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   TABLET BREAKPOINTS (769px–1300px) — desktop orbit preserved
   ============================================================ */
@media (max-width: 1300px) {
    .nav-container { padding: 0 40px; }
    .nav-links { gap: 24px; }
    .logo-img { height: 100px; }
}

@media (max-width: 1100px) {
    :root { --radius: 270px; }
    .product-item { width: 320px; height: 520px; margin-top: -260px; }
    .nav-container { padding: 0 30px; }
    .nav-links { gap: 18px; }
    .logo-img { height: 90px; }
    .btn-investor { display: none; }
}

@media (max-width: 992px) {
    :root { --radius: 230px; }
    .product-item { width: 280px; height: 460px; margin-top: -230px; }
    .nav-links { gap: 14px; }
    .btn-bulk { display: none; }
}

/* 768px and below → mobile_style.css takes over */
@media (max-width: 768px) {
    .nav-links  { display: none; }
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
    .nav-container { padding: 0 18px; }
    .logo-img { height: 52px; }
}