/* ==========================================
   ATTRACTION — Custom Theme (Bootstrap Dark)
   Cosmic · Dark · Luxury · Mystical
   ========================================== */

:root {
    --att-black: #050505;
    --att-dark: #0a0a0a;
    --att-darker: #0e0e0e;
    --att-card: #111113;
    --att-elevated: #18181b;
    --att-input: #1a1a1e;
    --att-border: #222226;
    --att-border-l: #2e2e33;
    --att-gold: #c9a84c;
    --att-gold-light: #dfc06d;
    --att-gold-dim: rgba(201,168,76,0.12);
    --att-gold-glow: rgba(201,168,76,0.25);
    --att-cream: #f0ece2;
    --att-muted: #6b6772;
    --att-text: #e8e4dc;
    --att-font-display: 'Cinzel', Georgia, serif;
    --att-font-body: 'Outfit', sans-serif;
    --att-font-mono: 'JetBrains Mono', monospace;
    --att-radius: 12px;
    --att-transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* === RESET & BASE === */
body {
    font-family: var(--att-font-body);
    background: var(--att-dark);
    color: var(--att-text);
    overflow-x: hidden;
}
.att-font-display { font-family: var(--att-font-display); }
.att-font-mono { font-family: var(--att-font-mono); }
.att-gold { color: var(--att-gold) !important; }
.att-gold-dim { color: rgba(201,168,76,0.7) !important; }
.bg-accent { background: var(--att-gold) !important; color: #000 !important; }

::selection { background: var(--att-gold); color: #000; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--att-dark); }
::-webkit-scrollbar-thumb { background: var(--att-border-l); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--att-gold); }

/* === GYROPHARE INTRO === */
#page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--att-black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s, visibility 0.8s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.gyro-scene { position: relative; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; }
.gyro-beam {
    position: absolute; top: 50%; left: 50%;
    width: 200vmax; height: 6px; transform-origin: 0 50%;
    filter: blur(2px); border-radius: 0 80px 80px 0;
}
.gyro-beam-1 { background: linear-gradient(90deg, var(--att-gold) 0%, rgba(201,168,76,0.3) 40%, transparent 75%); animation: gyroSpin 2s linear infinite; opacity: 0.6; }
.gyro-beam-2 { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.2) 30%, transparent 60%); animation: gyroSpin 2s linear infinite; animation-delay: -0.66s; height: 4px; opacity: 0.35; }
.gyro-beam-3 { background: linear-gradient(90deg, var(--att-gold) 0%, rgba(201,168,76,0.15) 35%, transparent 60%); animation: gyroSpin 2s linear infinite; animation-delay: -1.33s; height: 5px; opacity: 0.3; }
@keyframes gyroSpin { to { transform: rotate(360deg); } }

.gyro-flash {
    position: absolute; top: 50%; left: 50%; width: 500px; height: 500px;
    transform: translate(-50%,-50%); border-radius: 50%;
    background: radial-gradient(circle, var(--att-gold-glow) 0%, transparent 70%);
    animation: gyroFlash 1s ease-in-out infinite;
}
.gyro-flash-2 { animation-delay: 0.5s; width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); }
@keyframes gyroFlash { 0%,100%{ opacity:.2; transform:translate(-50%,-50%) scale(.9); } 50%{ opacity:1; transform:translate(-50%,-50%) scale(1.1); } }

.gyro-ring {
    position: absolute; top: 50%; left: 50%; border: 2px solid var(--att-gold);
    border-radius: 50%; opacity: 0; transform: translate(-50%,-50%) scale(.3);
    width: 180px; height: 180px; animation: gyroRing 2.5s ease infinite;
}
.gyro-ring-2 { animation-delay: .8s; }
.gyro-ring-3 { animation-delay: 1.6s; }
@keyframes gyroRing { 0%{ opacity:.7; transform:translate(-50%,-50%) scale(.3); } 100%{ opacity:0; transform:translate(-50%,-50%) scale(4); } }

.gyro-particles { position: absolute; top: 50%; left: 50%; }
.gyro-particles span {
    position: absolute; width: 3px; height: 3px; background: var(--att-gold);
    border-radius: 50%; box-shadow: 0 0 8px var(--att-gold);
    animation: gyroPart 2.5s ease infinite;
}
.gyro-particles span:nth-child(1)  { --a:0deg;  --d:130px; animation-delay:0s; }
.gyro-particles span:nth-child(2)  { --a:30deg; --d:150px; animation-delay:.2s; }
.gyro-particles span:nth-child(3)  { --a:60deg; --d:115px; animation-delay:.4s; }
.gyro-particles span:nth-child(4)  { --a:90deg; --d:140px; animation-delay:.6s; }
.gyro-particles span:nth-child(5)  { --a:120deg;--d:125px; animation-delay:.8s; }
.gyro-particles span:nth-child(6)  { --a:150deg;--d:155px; animation-delay:1s; }
.gyro-particles span:nth-child(7)  { --a:180deg;--d:120px; animation-delay:1.2s; }
.gyro-particles span:nth-child(8)  { --a:210deg;--d:145px; animation-delay:1.4s; }
.gyro-particles span:nth-child(9)  { --a:240deg;--d:135px; animation-delay:1.6s; }
.gyro-particles span:nth-child(10) { --a:270deg;--d:150px; animation-delay:1.8s; }
.gyro-particles span:nth-child(11) { --a:300deg;--d:128px; animation-delay:2s; }
.gyro-particles span:nth-child(12) { --a:330deg;--d:142px; animation-delay:2.2s; }
@keyframes gyroPart { 0%{ opacity:0; transform:rotate(var(--a)) translateX(25px); } 30%{ opacity:1; } 100%{ opacity:0; transform:rotate(var(--a)) translateX(var(--d)); } }

.gyro-center { position: relative; z-index: 10; text-align: center; animation: gyroIn .8s cubic-bezier(.34,1.56,.64,1) .3s both; }
.gyro-glow {
    position: absolute; top: 50%; left: 50%; width: 400px; height: 400px;
    transform: translate(-50%,-50%); border-radius: 50%;
    background: radial-gradient(circle, var(--att-gold-glow) 0%, transparent 70%);
    animation: gyroGlow 1.5s ease infinite alternate;
}
.gyro-cover {
    width: clamp(200px, 38vw, 360px); height: auto; position: relative;
    filter: drop-shadow(0 0 50px rgba(201,168,76,0.3));
    animation: gyroCoverFloat 3s ease-in-out infinite alternate;
}
.gyro-loading {
    font-family: var(--att-font-mono); font-size: .7rem; letter-spacing: .4em;
    color: var(--att-gold); margin-top: 16px;
}
.gyro-dots::after { content: '...'; animation: gyroDots 1.5s step-end infinite; }
@keyframes gyroDots { 0%{ content:''; } 25%{ content:'.'; } 50%{ content:'..'; } 75%{ content:'...'; } }
.gyro-progress { position: absolute; bottom: 12vh; left: 50%; transform: translateX(-50%); width: 160px; height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; z-index: 10; }
.gyro-progress-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--att-gold), #fff, var(--att-gold)); background-size: 200% 100%; animation: gyroFill 2.3s ease forwards, gyroShine 1s linear infinite; }
@keyframes gyroIn { from { opacity:0; transform:scale(.5); } to { opacity:1; transform:scale(1); } }
@keyframes gyroGlow { from { opacity:.4; transform:translate(-50%,-50%) scale(.85); } to { opacity:1; transform:translate(-50%,-50%) scale(1.15); } }
@keyframes gyroCoverFloat { from { transform:translateY(3px); } to { transform:translateY(-3px) scale(1.01); } }
@keyframes gyroFill { 0%{ width:0; } 60%{ width:65%; } 100%{ width:100%; } }
@keyframes gyroShine { from { background-position:200% 0; } to { background-position:-200% 0; } }

/* === ANNOUNCEMENT === */
.announcement-bar {
    background: var(--att-gold); color: #000; text-align: center;
    padding: 8px 16px; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
    position: relative; z-index: 90;
}

/* === NAVBAR === */
.att-navbar {
    background: rgba(5,5,5,0.8) !important; backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--att-border); z-index: 1050;
    transition: all var(--att-transition);
}
.nav-cover-logo { height: 42px; width: auto; filter: drop-shadow(0 0 8px rgba(201,168,76,0.15)); transition: transform .3s; }
.nav-cover-logo:hover { transform: scale(1.05); }
.brand-text { font-family: var(--att-font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: .18em; color: var(--att-cream); }
.att-navbar .nav-link {
    font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    color: var(--att-muted) !important; position: relative; padding: 8px 14px !important;
    transition: color var(--att-transition);
}
.att-navbar .nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
    height: 1.5px; background: var(--att-gold); transform: scaleX(0);
    transition: transform var(--att-transition);
}
.att-navbar .nav-link:hover, .att-navbar .nav-link.active { color: var(--att-cream) !important; }
.att-navbar .nav-link:hover::after, .att-navbar .nav-link.active::after { transform: scaleX(1); }
.att-icon-btn {
    color: var(--att-muted) !important; border: none; padding: 6px 10px;
    transition: color .2s; font-size: 1.1rem;
}
.att-icon-btn:hover { color: var(--att-cream) !important; }
.att-cart-badge {
    position: absolute !important; top: -2px; right: -2px;
    font-size: .6rem; padding: 2px 6px;
}

/* === SEARCH === */
.att-search-overlay {
    position: fixed; inset: 0; z-index: 9999; background: rgba(5,5,5,0.96);
    backdrop-filter: blur(30px); display: none;
}
.att-search-overlay.open { display: block; animation: fadeIn .3s ease; }
.att-search-input {
    background: transparent !important; border: none !important; border-bottom: 2px solid var(--att-border-l) !important;
    border-radius: 0 !important; font-family: var(--att-font-display); font-size: 1.8rem !important;
    color: var(--att-cream) !important;
}
.att-search-input:focus { border-color: var(--att-gold) !important; box-shadow: none !important; }
.att-search-result {
    display: flex; align-items: center; gap: 14px; padding: 12px;
    background: var(--att-card); border-radius: var(--att-radius); cursor: pointer;
    transition: background .2s, transform .2s; margin-bottom: 6px;
}
.att-search-result:hover { background: var(--att-elevated); transform: translateX(4px); }
.att-search-result img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }

/* === HERO === */
.att-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 120px 0 80px;
}
.att-hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at 50% 70%, rgba(201,168,76,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 30%, rgba(201,168,76,0.03) 0%, transparent 50%),
        var(--att-dark);
}
.att-hero-cover {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-52%);
    z-index: 2; width: clamp(280px, 42vw, 520px); opacity: 0;
    pointer-events: none; animation: heroCoverIn 1.8s ease 2.5s forwards;
}
.att-hero-cover img {
    width: 100%; height: auto;
    filter: drop-shadow(0 0 80px rgba(201,168,76,0.2));
}
@keyframes heroCoverIn {
    from { opacity: 0; transform: translate(-50%,-48%) scale(.88); }
    to { opacity: 1; transform: translate(-50%,-52%) scale(1); }
}
.att-hero-grain {
    position: absolute; inset: 0; z-index: 3; opacity: .03; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 150px;
}
.att-hero-content { animation: heroContentIn 1s ease 3s both; }
@keyframes heroContentIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.att-hero-tagline {
    font-family: var(--att-font-mono); font-size: .7rem; letter-spacing: .3em;
    color: var(--att-gold); text-transform: uppercase; margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.att-hero-title {
    font-family: var(--att-font-display); font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900; letter-spacing: .12em; line-height: .95; margin-bottom: 20px;
    background: linear-gradient(135deg, var(--att-cream) 0%, var(--att-gold) 50%, var(--att-cream) 100%);
    background-size: 200% auto;
    color: var(--att-cream);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 28px rgba(201,168,76,0.45));
    animation: heroTitleShine 4s linear infinite;
}
@keyframes heroTitleShine { to { background-position: 200% center; } }
.att-hero-subtitle {
    font-size: 1.1rem; color: var(--att-muted); margin-bottom: 36px;
    text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.att-scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    animation: heroContentIn 1s ease 3.5s both;
}
.att-scroll-hint span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--att-muted); }
.att-scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--att-gold), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:.3; } 50%{ opacity:1; } }

/* === BUTTONS === */
.att-btn-primary {
    background: var(--att-gold) !important; color: #000 !important; border: none !important;
    font-weight: 700; letter-spacing: .06em; border-radius: 8px;
    transition: all .25s; position: relative; overflow: hidden;
}
.att-btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,.15), transparent);
    transform: translateX(-100%); transition: transform .5s;
}
.att-btn-primary:hover { background: var(--att-gold-light) !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
.att-btn-primary:hover::before { transform: translateX(100%); }

/* === INPUTS === */
.att-input {
    background: var(--att-input) !important; border: 1px solid var(--att-border) !important;
    color: var(--att-cream) !important; border-radius: 8px !important;
    transition: border-color .2s !important;
}
.att-input:focus { border-color: var(--att-gold) !important; box-shadow: 0 0 0 2px var(--att-gold-dim) !important; }

/* === SECTIONS === */
.att-section { padding: 80px 0; }
.att-section-tag {
    font-family: var(--att-font-mono); font-size: .7rem; letter-spacing: .2em;
    color: var(--att-gold); text-transform: uppercase; display: block;
}
.att-section-title {
    font-family: var(--att-font-display); font-size: 2rem; font-weight: 700;
    margin-top: 6px;
}

/* === CATEGORY CARDS === */
.att-category-card {
    position: relative; height: 260px; border-radius: var(--att-radius);
    overflow: hidden; cursor: pointer; background: var(--att-card);
    transition: transform var(--att-transition), box-shadow var(--att-transition);
}
.att-category-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.att-category-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s; }
.att-category-card:hover .att-category-card-bg { transform: scale(1.08); }
.att-category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%); }
.att-category-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.att-category-card-info h5 { font-family: var(--att-font-display); font-weight: 600; margin-bottom: 2px; }
.att-category-card-info small { color: var(--att-muted); }

/* === PRODUCT CARDS === */
.att-product-card {
    background: var(--att-card); border: 1px solid transparent; border-radius: var(--att-radius);
    overflow: hidden; cursor: pointer;
    transition: all var(--att-transition);
}
.att-product-card:hover { border-color: var(--att-border-l); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.35); }
.att-product-img {
    position: relative; padding-top: 115%; overflow: hidden; background: var(--att-darker);
}
.att-product-img img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
    transition: transform .5s ease; padding: 8px;
}
.att-product-card:hover .att-product-img img { transform: scale(1.07); }
.att-product-img .att-placeholder {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; opacity: .2;
}
.att-product-badge {
    position: absolute; top: 10px; left: 10px; font-size: .68rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
}
.att-badge-new { background: var(--att-gold); color: #000; }
.att-badge-sale { background: #ef4444; color: #fff; }
.att-badge-hot { background: #f59e0b; color: #000; }
.att-quick-add {
    position: absolute; bottom: 10px; left: 10px; right: 10px;
    opacity: 0; transform: translateY(8px);
    transition: all .3s ease;
}
.att-product-card:hover .att-quick-add { opacity: 1; transform: translateY(0); }
.att-quick-add-btn {
    width: 100%; padding: 9px; background: rgba(5,5,5,.88); backdrop-filter: blur(10px);
    border: 1px solid var(--att-border-l); color: var(--att-cream); font-size: .8rem;
    font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    border-radius: 8px; cursor: pointer; transition: all .2s;
}
.att-quick-add-btn:hover { background: var(--att-gold); color: #000; border-color: var(--att-gold); }
.att-product-info { padding: 14px 16px 18px; }
.att-product-cat { font-size: .68rem; color: var(--att-muted); text-transform: uppercase; letter-spacing: .08em; }
.att-product-name { font-size: .95rem; font-weight: 500; margin: 4px 0 8px; line-height: 1.3; }
.att-product-price .current { font-family: var(--att-font-mono); font-size: 1rem; font-weight: 700; color: var(--att-gold); }
.att-product-price .original { font-size: .82rem; color: var(--att-muted); text-decoration: line-through; margin-left: 6px; }

/* Filters */
.att-filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.att-sort-select {
    background: var(--att-card) !important; border: 1px solid var(--att-border) !important;
    color: var(--att-cream) !important; border-radius: 8px !important; font-size: .85rem;
}

/* === NEWSLETTER === */
.att-newsletter-card {
    background: var(--att-card); border: 1px solid var(--att-border);
    border-radius: 20px; padding: 50px;
    position: relative; overflow: hidden;
}
.att-newsletter-card::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
    background: radial-gradient(circle, var(--att-gold-dim) 0%, transparent 70%);
    pointer-events: none;
}

/* === FOOTER === */
.att-footer { background: var(--att-black); padding-top: 60px; border-top: 1px solid var(--att-border); }
.footer-logo { height: 50px; width: auto; filter: drop-shadow(0 0 6px rgba(201,168,76,.15)); }
.att-footer-links li { margin-bottom: 6px; }
.att-footer-links a { color: var(--att-muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.att-footer-links a:hover { color: var(--att-gold); }
.att-social-link {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--att-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--att-muted); text-decoration: none; transition: all .2s;
}
.att-social-link:hover { border-color: var(--att-gold); color: var(--att-gold); background: var(--att-gold-dim); }
.att-payment-badge {
    background: var(--att-card) !important; border: 1px solid var(--att-border);
    color: var(--att-muted) !important; font-weight: 600; font-size: .68rem; letter-spacing: .03em;
}

/* === CART DRAWER === */
.att-cart-drawer { background: var(--att-darker) !important; border-left: 1px solid var(--att-border); max-width: 420px; }
.att-cart-item {
    display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--att-border);
    animation: cartItemSlide .3s ease;
}
@keyframes cartItemSlide { from { opacity: 0; transform: translateX(20px); } }
.att-cart-item-img { width: 68px; height: 68px; border-radius: 8px; overflow: hidden; background: var(--att-card); flex-shrink: 0; }
.att-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

/* === MODALS === */
.att-modal-content {
    background: var(--att-darker) !important; border: 1px solid var(--att-border) !important;
    border-radius: 16px !important; overflow: hidden;
}
.att-modal-close { position: absolute; top: 12px; right: 12px; z-index: 10; opacity: .7; }
.att-modal-gallery { height: 100%; min-height: 450px; background: var(--att-card); display: flex; flex-direction: column; }
.att-modal-main-img { flex: 1; display: flex; align-items: center; justify-content: center; overflow: auto; position: relative; min-height: 400px; cursor: grab; }
.att-modal-main-img:active { cursor: grabbing; }
.att-modal-main-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .2s ease; transform-origin: center center; }
.att-img-controls { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 4px; background: rgba(0,0,0,.7); backdrop-filter: blur(10px); border-radius: 10px; padding: 4px 8px; z-index: 5; }
.att-img-ctrl-btn { background: none; border: none; color: var(--att-cream); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; cursor: pointer; font-size: .9rem; transition: background .2s; }
.att-img-ctrl-btn:hover { background: rgba(255,255,255,.15); }
.att-zoom-level { color: var(--att-muted); font-size: .72rem; font-family: var(--att-font-mono); min-width: 40px; text-align: center; }
.att-modal-thumbs { display: flex; gap: 6px; padding: 8px 12px; overflow-x: auto; background: var(--att-darker); }
.att-modal-thumbs img { width: 56px; height: 56px; object-fit: contain; border-radius: 6px; border: 2px solid transparent; cursor: pointer; opacity: .5; transition: all .2s; background: var(--att-card); padding: 2px; }
.att-modal-thumbs img:hover { opacity: .8; }
.att-modal-thumbs img.active { border-color: var(--att-gold); opacity: 1; }
/* Fullscreen overlay */
.att-fullscreen-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.95); display: flex; align-items: center; justify-content: center; cursor: grab; overflow: auto; }
.att-fullscreen-overlay:active { cursor: grabbing; }
.att-fullscreen-overlay img { max-width: none; max-height: none; transition: transform .2s ease; }
.att-fullscreen-close { position: fixed; top: 16px; right: 16px; z-index: 10000; background: rgba(255,255,255,.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.att-fullscreen-close:hover { background: rgba(255,255,255,.25); }
.att-fullscreen-controls { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10000; display: flex; align-items: center; gap: 4px; background: rgba(0,0,0,.7); backdrop-filter: blur(10px); border-radius: 10px; padding: 6px 12px; }
@media (max-width: 991.98px) { .att-modal-main-img { min-height: 300px; } }

/* === CHECKOUT === */
.checkout-step { display: none; }
.checkout-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.att-step {
    flex: 1; display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--att-muted);
}
.att-step-num {
    width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--att-border);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700;
}
.att-step.active { color: var(--att-cream); }
.att-step.active .att-step-num { background: var(--att-gold); color: #000; border-color: var(--att-gold); }
.att-step.done .att-step-num { background: #22c55e; color: #fff; border-color: #22c55e; }
.att-radio-card {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px;
    background: var(--att-card); border: 1px solid var(--att-border);
    border-radius: var(--att-radius); cursor: pointer; transition: border-color .2s;
}
.att-radio-card:has(input:checked) { border-color: var(--att-gold); }
.att-order-totals { padding: 12px 0; }

/* === VARIANT BUTTONS === */
.att-variant-btn {
    padding: 6px 14px; border: 1px solid var(--att-border); background: transparent;
    color: var(--att-muted); border-radius: 6px; font-size: .82rem; cursor: pointer;
    transition: all .2s;
}
.att-variant-btn:hover, .att-variant-btn.active { border-color: var(--att-gold); color: var(--att-gold); background: var(--att-gold-dim); }

/* === QTY GROUP === */
.att-qty-group .form-control { background: var(--att-input) !important; border-color: var(--att-border) !important; color: var(--att-cream) !important; }
.att-qty-group .btn { border-color: var(--att-border) !important; color: var(--att-muted) !important; }
.att-qty-group .btn:hover { color: var(--att-gold) !important; }

/* === TOAST === */
.att-toast {
    background: var(--att-elevated) !important; border: 1px solid var(--att-border);
    border-radius: var(--att-radius); color: var(--att-cream);
}
.att-toast.success { border-color: #22c55e; }
.att-toast.error { border-color: #ef4444; }

/* === COMING SOON / COUNTDOWN === */
.att-coming-soon .att-product-img img { opacity: 0.35; filter: grayscale(30%); }
.att-countdown-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: rgba(5,5,5,0.55); backdrop-filter: blur(2px);
}
.att-countdown-badge {
    font-family: var(--att-font-mono); font-size: .6rem; letter-spacing: .15em;
    text-transform: uppercase; color: var(--att-gold);
    background: var(--att-gold-dim); border: 1px solid var(--att-gold);
    padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.att-countdown { text-align: center; }
.att-cdown-label { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(240,236,226,.55); margin-bottom: 4px; }
.att-cdown-units { display: flex; align-items: center; justify-content: center; gap: 3px; }
.att-cdown-unit { display: flex; flex-direction: column; align-items: center; }
.att-cdown-unit span {
    font-family: var(--att-font-mono); font-size: .88rem; font-weight: 700;
    color: var(--att-cream); background: rgba(0,0,0,.5);
    padding: 1px 5px; border-radius: 4px; min-width: 28px; text-align: center;
    border: 1px solid var(--att-border);
}
.att-cdown-unit small { font-size: .5rem; color: var(--att-muted); margin-top: 1px; letter-spacing: .08em; }
.att-cdown-sep { font-family: var(--att-font-mono); color: var(--att-gold); font-size: .82rem; font-weight: 700; margin-bottom: 8px; }

/* Modal countdown */
.att-countdown-modal { padding: 6px 0; }
.att-countdown-modal .att-cdown-unit span { font-size: 1.1rem; min-width: 38px; padding: 3px 8px; }
.att-countdown-modal .att-cdown-sep { font-size: 1rem; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .brand-text { display: none; }
    .att-hero-cover { width: clamp(220px, 65vw, 380px); }
    .att-hero-tagline { font-size: .6rem; }
    .att-newsletter-card { padding: 30px; }
    .gyro-cover { width: clamp(160px, 55vw, 260px); }
}
@media (max-width: 575px) {
    .att-hero-title { letter-spacing: .06em; }
    .att-hero-cover { width: 75vw; }
    .att-product-info { padding: 10px 12px 14px; }
    .att-product-name { font-size: .88rem; }
    .att-newsletter-card { padding: 24px; }
}
