﻿/* LONE BREED Store â€” Bootstrap 5 + Custom CSS */
:root {
    --lb-black: #000000;
    --lb-dark: #0a0a0a;
    --lb-charcoal: #121212;
    --lb-surface: #151515;
    --lb-border: #222222;
    --lb-gold: #c5a059;
    --lb-gold-hover: #d4b06a;
    --lb-white: #ffffff;
    --lb-muted: #888888;
    --lb-text: #e8e8e8;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--lb-black);
    color: var(--lb-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease-out); }
a:hover { color: var(--lb-gold); }
img { max-width: 100%; display: block; }

/* â”€â”€â”€ Animations â”€â”€â”€ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes heroKenBurns {
    from { transform: scale(1.2); }
    to   { transform: scale(1.05); }
}

@keyframes curtainLine {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

@keyframes scrollHint {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%      { transform: translateY(8px); opacity: 1; }
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Page load curtain */
body.is-loading { overflow: hidden; }

.page-curtain {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--lb-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    will-change: transform;
}

.page-curtain.is-exiting {
    transform: translateY(-100%);
}

.page-curtain.is-gone {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.page-curtain-inner {
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.page-curtain.is-active .page-curtain-inner {
    opacity: 1;
    transform: translateY(0);
}

.page-curtain-brand {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--lb-white);
}

.page-curtain-tagline {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lb-gold);
    margin-top: 0.75rem;
}

.page-curtain-line {
    width: 80px;
    height: 1px;
    background: var(--lb-gold);
    margin: 1.5rem auto 0;
    transform: scaleX(0);
    transform-origin: center;
}

.page-curtain.is-active .page-curtain-line {
    animation: curtainLine 0.8s var(--ease-out) 0.3s forwards;
}

body.is-ready .site-header {
    animation: fadeIn 0.8s var(--ease-out) 0.2s both;
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.7s var(--ease-out) forwards;
}

.fade-up:nth-child(2) { animation-delay: 0.08s; }
.fade-up:nth-child(3) { animation-delay: 0.16s; }
.fade-up:nth-child(4) { animation-delay: 0.24s; }
.fade-up:nth-child(5) { animation-delay: 0.32s; }
.fade-up:nth-child(6) { animation-delay: 0.4s; }

/* Scroll reveals */
.reveal {
    opacity: 0;
    transform: translateY(56px);
    filter: blur(8px);
    transition:
        opacity 0.9s var(--ease-out),
        transform 0.9s var(--ease-out),
        filter 0.9s var(--ease-out);
    will-change: opacity, transform, filter;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-left {
    transform: translateX(-48px) translateY(32px);
}

.reveal-left.visible {
    transform: translateX(0) translateY(0);
}

.reveal-right {
    transform: translateX(48px) translateY(32px);
}

.reveal-right.visible {
    transform: translateX(0) translateY(0);
}

.reveal-scale {
    transform: scale(0.88) translateY(24px);
}

.reveal-scale.visible {
    transform: scale(1) translateY(0);
}

.reveal-fade {
    transform: none;
    filter: blur(12px);
}

.reveal-fade.visible {
    filter: blur(0);
}

/* â”€â”€â”€ Header â”€â”€â”€ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--header-h);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.97);
    border-bottom-color: var(--lb-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1.5rem;
    height: var(--header-h);
    padding: 0 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Icon clusters must be allowed to shrink, or they overflow their grid
   column and run under the centred wordmark. */
.header-left, .header-right, .brand-logo { min-width: 0; }

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-right { justify-content: flex-end; }

.brand-logo {
    text-align: center;
    transition: transform 0.3s var(--ease-spring);
}

.brand-logo:hover {
    color: inherit;
    transform: scale(1.02);
}

.brand-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    line-height: 1.2;
}

.brand-tagline {
    display: block;
    font-size: 0.58rem;
    color: var(--lb-gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 2px;
}

.main-nav {
    gap: 1.75rem;
    align-items: center;
}

.nav-link-sm {
    white-space: nowrap;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lb-muted);
    position: relative;
    padding: 4px 0;
}

.nav-link-sm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lb-gold);
    transition: width 0.3s var(--ease-out);
}

.nav-link-sm:hover { color: var(--lb-gold); }
.nav-link-sm:hover::after { width: 100%; }

.header-icon {
    color: var(--lb-muted);
    font-size: 1.1rem;
    position: relative;
    transition: color 0.25s, transform 0.25s var(--ease-spring);
}

.header-icon:hover {
    color: var(--lb-gold);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--lb-gold);
    color: var(--lb-black);
    font-size: 0.55rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.btn-menu {
    background: none;
    border: none;
    color: var(--lb-white);
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
}

.site-offcanvas {
    background: var(--lb-black);
    border-right: 1px solid var(--lb-border);
    width: 300px !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100dvh;
}

.site-offcanvas .offcanvas-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.offcanvas-link {
    display: block;
    padding: 1rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--lb-border);
    transition: padding-left 0.3s var(--ease-out), color 0.25s;
}

.offcanvas-link:hover { padding-left: 8px; color: var(--lb-gold); }

.offcanvas-sublink {
    display: block;
    padding: 0.6rem 0 0.6rem 1.25rem;
    font-size: 0.75rem;
    color: var(--lb-muted);
    letter-spacing: 0.08em;
}

.site-main {
    padding-top: var(--header-h);
    min-height: 60vh;
}

/* â”€â”€â”€ Hero â”€â”€â”€ */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Full-slide hit target — opens the slide collection / advances welcome. */
.hero-slide-hit {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.hero-section .hero-content {
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 8s var(--ease-out);
}

.hero-bg.is-animated {
    animation: heroKenBurns 2.4s var(--ease-out) forwards;
}

.hero-section:hover .hero-bg {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 4rem 1.5rem;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lb-gold);
    margin-bottom: 1.25rem;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.hero-text {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 480px;
    opacity: 0;
}

.hero-content .btn-lb { opacity: 0; }

body.is-ready .hero-eyebrow,
body.is-ready .hero-title,
body.is-ready .hero-text,
body.is-ready .hero-content .btn-lb {
    animation: fadeUp 1s var(--ease-out) forwards;
}

body.is-ready .hero-eyebrow  { animation-delay: 0.5s; }
body.is-ready .hero-title    { animation-delay: 0.65s; }
body.is-ready .hero-text     { animation-delay: 0.8s; }
body.is-ready .hero-content .btn-lb { animation-delay: 0.95s; }

.hero-carousel { position: relative; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lb-muted);
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) 1.4s forwards;
}

.hero-carousel .carousel-indicators {
    z-index: 6;
}
.hero-carousel .hero-scroll-hint { z-index: 5; pointer-events: none; }
.hero-section .hero-scroll-hint { z-index: 5; pointer-events: none; }

.hero-scroll-hint i {
    animation: scrollHint 2s ease-in-out infinite;
    font-size: 1.25rem;
    color: var(--lb-gold);
}

[data-parallax] {
    will-change: transform;
}

/* â”€â”€â”€ Buttons â”€â”€â”€ */
.btn-lb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--lb-gold);
    background: transparent;
    color: var(--lb-white);
    border-radius: 0;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-lb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lb-gold);
    transform: translateX(-101%);
    transition: transform 0.35s var(--ease-out);
    z-index: 0;
}

.btn-lb span, .btn-lb i { position: relative; z-index: 1; }

.btn-lb:hover {
    color: var(--lb-black);
    border-color: var(--lb-gold);
}

.btn-lb:hover::before { transform: translateX(0); }

.btn-lb-filled {
    background: var(--lb-gold);
    color: var(--lb-black);
    border-color: var(--lb-gold);
}

.btn-lb-filled::before { background: var(--lb-gold-hover); }

.btn-lb-filled:hover { color: var(--lb-black); }

/* â”€â”€â”€ Section titles â”€â”€â”€ */
.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lb-gold);
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--lb-gold), transparent);
    margin-top: 0.75rem;
    transition: width 1s var(--ease-out) 0.2s;
}

.reveal.visible .section-heading::after,
.section-heading.is-drawn::after {
    width: 64px;
}

/* â”€â”€â”€ Product cards â”€â”€â”€ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, opacity 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

.product-card:hover { transform: translateY(-8px); }

.product-card-link { display: block; }

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--lb-surface);
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out), filter 0.4s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--lb-gold);
    color: var(--lb-black);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: var(--lb-white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--ease-spring);
    z-index: 2;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: scale(1);
}

.wishlist-btn.active,
.wishlist-btn:hover {
    color: var(--lb-gold);
    background: rgba(0,0,0,0.8);
}

.wishlist-btn i {
    font-size: 1rem;
    line-height: 1;
}

.product-name {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.product-color {
    font-size: 0.68rem;
    color: var(--lb-muted);
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 0.85rem;
    color: var(--lb-gold);
    font-weight: 600;
}

.color-swatches {
    display: flex;
    gap: 6px;
    margin-top: 0.5rem;
}

.color-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #444;
}

/* â”€â”€â”€ Category cards â”€â”€â”€ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    display: block;
    transition: transform 0.4s var(--ease-out);
}

.category-card:hover {
    color: inherit;
    transform: translateY(-6px);
}

.category-card-image {
    aspect-ratio: 1;
    background: var(--lb-surface);
    overflow: hidden;
    margin-bottom: 1rem;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card h3 {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.75rem;
    color: var(--lb-muted);
    margin-bottom: 0.75rem;
}

.shop-now-link {
    font-size: 0.68rem;
    color: var(--lb-gold);
    letter-spacing: 0.12em;
    transition: letter-spacing 0.3s;
}

.category-card:hover .shop-now-link {
    letter-spacing: 0.18em;
}

/* â”€â”€â”€ Trust bar â”€â”€â”€ */
.trust-bar {
    border-top: 1px solid var(--lb-border);
    border-bottom: 1px solid var(--lb-border);
    padding: 2.25rem 0;
    background: var(--lb-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 1.5rem;
}

.trust-item--divider {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item-icon {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-gold);
    font-size: 1.65rem;
    line-height: 1;
}

.trust-item-body {
    min-width: 0;
}

.trust-title {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 0.35rem;
    color: var(--lb-gold);
    font-weight: 600;
}

.trust-desc {
    font-size: 0.78rem;
    color: var(--lb-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 0;
    }

    .trust-item {
        padding: 0 1rem;
    }

    .trust-item--divider {
        border-left: 0;
    }

    .trust-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 575.98px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item:nth-child(odd) {
        border-right: 0;
    }

    .trust-item + .trust-item {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.25rem;
    }
}

/* â”€â”€â”€ Footer â”€â”€â”€ */
.site-footer {
    padding: 3rem 0;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.3em;
}

.footer-tagline {
    color: var(--lb-gold);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

/* â”€â”€â”€ Shop layout â”€â”€â”€ */
.breadcrumbs {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lb-muted);
    padding: 1.25rem 0;
}

.breadcrumbs a:hover { color: var(--lb-gold); }

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.filter-panel {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    align-self: start;
}

.filter-title {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--lb-border);
    margin-bottom: 1.5rem;
}

.filter-group {
    margin-bottom: 1.75rem;
}

.filter-group h4 {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lb-muted);
    margin-bottom: 0.75rem;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--lb-text);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-check:hover { color: var(--lb-gold); }
.filter-check input { accent-color: var(--lb-gold); }

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--lb-border);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.shop-toolbar select {
    background: transparent;
    border: none;
    color: var(--lb-gold);
    font-size: inherit;
    cursor: pointer;
}

/* â”€â”€â”€ Category hero â”€â”€â”€ */
.category-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
    align-items: center;
}

.category-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    color: var(--lb-muted);
    line-height: 1.5;
}

.feature-item i {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--lb-gold);
}

.promise-box {
    border: 1px solid var(--lb-gold);
    padding: 2rem;
    background: rgba(197, 160, 89, 0.04);
}

.promise-box h3 {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--lb-gold);
    margin-bottom: 1.25rem;
}

.promise-box li {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promise-box li .bi-check-lg {
    color: var(--lb-gold);
    flex-shrink: 0;
}

/* â”€â”€â”€ Forms â”€â”€â”€ */
.form-lb {
    background: var(--lb-surface);
    border: 1px solid var(--lb-border);
    padding: 2.5rem;
}

.form-lb .form-control, .form-lb .form-select {
    background: var(--lb-charcoal);
    border-color: var(--lb-border);
    color: var(--lb-white);
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-lb .form-control:focus, .form-lb .form-select:focus {
    background: var(--lb-charcoal);
    border-color: var(--lb-gold);
    color: var(--lb-white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.form-lb label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lb-muted);
    margin-bottom: 0.5rem;
}

/* â”€â”€â”€ Page hero â”€â”€â”€ */
.page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    color: #aaa;
    line-height: 1.85;
}

/* â”€â”€â”€ Carousel â”€â”€â”€ */
.hero-carousel .carousel-item {
    min-height: calc(100vh - var(--header-h));
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lb-muted);
    border: none;
    opacity: 0.5;
    transition: all 0.3s;
}

.hero-carousel .carousel-indicators .active {
    background: var(--lb-gold);
    opacity: 1;
    transform: scale(1.3);
}

/* â”€â”€â”€ Cart qty â”€â”€â”€ */
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--lb-border);
}

.qty-control button {
    background: none;
    border: none;
    color: var(--lb-white);
    width: 32px;
    height: 32px;
    transition: color 0.2s;
}

.qty-control button:hover { color: var(--lb-gold); }

.qty-control input {
    width: 40px;
    text-align: center;
    background: none;
    border: none;
    border-left: 1px solid var(--lb-border);
    border-right: 1px solid var(--lb-border);
    color: var(--lb-white);
    font-size: 0.85rem;
}

/* â”€â”€â”€ Loading skeleton â”€â”€â”€ */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 1199px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-layout { grid-template-columns: 1fr; }
    .filter-panel { display: none; }
    .category-hero { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .product-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Bootstrap overrides */
.table { --bs-table-bg: transparent; --bs-table-color: var(--lb-text); --bs-table-border-color: var(--lb-border); }
.offcanvas-backdrop { backdrop-filter: blur(4px); }

/* â”€â”€â”€ Scroll progress â”€â”€â”€ */
.scroll-progress {
    position: fixed;
    top: var(--header-h);
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--lb-gold), var(--lb-gold-hover));
    z-index: 1040;
    transition: width 0.1s linear;
    pointer-events: none;
}

.site-main { opacity: 0; }
body.is-ready .site-main {
    animation: fadeIn 0.6s var(--ease-out) 0.3s forwards;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--lb-gold);
    color: var(--lb-black);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.skip-link:focus { top: 1rem; }

/* Category card icon fallback */
.category-card-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lb-surface);
    font-size: 2.5rem;
    color: var(--lb-gold);
    transition: transform 0.5s var(--ease-out);
}

.category-card:hover .category-card-icon { transform: scale(1.1); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover .category-card-overlay { opacity: 1; }

.category-card-image { position: relative; }

/* Brand marquee */
.brand-marquee {
    overflow: hidden;
    border-top: 1px solid var(--lb-border);
    border-bottom: 1px solid var(--lb-border);
    padding: 2rem 0;
    background: var(--lb-charcoal);
}

.brand-marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brand-marquee-track a,
.brand-marquee-track span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lb-muted);
    white-space: nowrap;
    transition: color 0.3s;
    text-decoration: none;
}

.brand-marquee-track a:hover,
.brand-marquee-track span:hover { color: var(--lb-gold); }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Editorial strip */
.editorial-strip {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    min-height: 420px;
    border: 1px solid var(--lb-border);
    overflow: hidden;
}

.editorial-strip-image {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    transition: transform 8s var(--ease-out);
}

.editorial-strip:hover .editorial-strip-image { transform: scale(1.05); }

.editorial-strip-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: var(--lb-surface);
}

/* Collections spotlight */
.collection-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.collection-spotlight-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--lb-border);
    display: block;
}

.collection-spotlight-card img,
.collection-spotlight-card .collection-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.collection-spotlight-card:hover img,
.collection-spotlight-card:hover .collection-bg { transform: scale(1.06); }

.collection-spotlight-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

/* Newsletter */
.newsletter-block {
    background:
        radial-gradient(circle at 80% 20%, rgba(197,160,89,0.15), transparent 40%),
        var(--lb-surface);
    border: 1px solid var(--lb-border);
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 440px;
    margin: 1.5rem auto 0;
    gap: 0;
    border: 1px solid var(--lb-gold);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--lb-white);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form button {
    background: var(--lb-gold);
    border: none;
    color: var(--lb-black);
    padding: 0 1.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--lb-gold-hover); }

/* Search modal */
.search-modal .modal-content {
    background: var(--lb-black);
    border: 1px solid var(--lb-border);
    border-radius: 0;
}

.search-modal .modal-body { padding: 2rem; }

.search-modal-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--lb-gold);
    color: var(--lb-white);
    font-family: var(--font-serif);
    font-size: 1.75rem;
    padding: 0.5rem 0;
    outline: none;
}

/* Product gallery */
.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 64px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--lb-border);
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.25s;
}

.gallery-thumb.active,
.gallery-thumb:hover { opacity: 1; border-color: var(--lb-gold); }

.product-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--lb-border);
    padding: 0.75rem 1rem;
}

@media (max-width: 991px) {
    .product-sticky-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .editorial-strip { grid-template-columns: 1fr; }
    .collection-spotlight { grid-template-columns: 1fr; }
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--lb-surface);
    border-top: 1px solid var(--lb-border);
    padding: 1rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.cookie-consent.show { transform: translateY(0); }

/* Footer legal */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links a { color: var(--lb-muted); }
.footer-links a:hover { color: var(--lb-gold); }

/* Motion is opt-OUT, not automatic.
   This used to be gated on prefers-reduced-motion, which meant any visitor
   whose OS had "reduce animations" switched on got a completely static site —
   the design read as broken rather than restrained. It now keys off
   html[data-motion="reduced"], set by the visitor via the footer toggle or
   ?motion=reduced. See the head script in partials/header.php. */
html[data-motion="reduced"] *,
html[data-motion="reduced"] *::before,
html[data-motion="reduced"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

html[data-motion="reduced"] .brand-marquee-track { animation: none; }
html[data-motion="reduced"] { scroll-behavior: auto; }
html[data-motion="reduced"] .page-curtain { display: none !important; }

html[data-motion="reduced"] .reveal,
html[data-motion="reduced"] .reveal-left,
html[data-motion="reduced"] .reveal-right,
html[data-motion="reduced"] .reveal-scale,
html[data-motion="reduced"] .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

html[data-motion="reduced"] body.is-ready .site-main { opacity: 1; }

/* Hero copy stages itself from opacity:0 and is revealed by an entrance
   animation. With motion off that animation never carries it home, so state
   it outright — !important because the carousel writes inline opacity. */
html[data-motion="reduced"] .hero-eyebrow,
html[data-motion="reduced"] .hero-title,
html[data-motion="reduced"] .hero-text,
html[data-motion="reduced"] .hero-content .btn-lb,
html[data-motion="reduced"] .hero-scroll-hint {
    opacity: 1 !important;
    transform: none !important;
}

/* â”€â”€â”€ Push notifications â”€â”€â”€ */
.header-right .lb-notif-wrap {
    display: inline-flex;
    align-items: center;
}
.lb-notif-wrap { position: relative; }
.lb-notif-btn.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lb-notif-btn {
    color: var(--lb-muted);
    font-size: 1.1rem;
    position: relative;
    border: 0;
    background: transparent;
    padding: 0;
    line-height: 1;
    transition: color 0.25s, transform 0.25s var(--ease-spring);
}
.lb-notif-btn:hover { color: var(--lb-gold); transform: translateY(-2px); }
.lb-notif-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}
.lb-notif-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: min(360px, calc(100vw - 24px));
    background: linear-gradient(180deg, #141414, #0a0a0a);
    border: 1px solid var(--lb-border);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    z-index: 1200;
    overflow: hidden;
}
.lb-notif-head, .lb-notif-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--lb-border);
}
.lb-notif-foot { border-bottom: 0; border-top: 1px solid var(--lb-border); }
.lb-notif-head span {
    display: block;
    color: var(--lb-gold);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.lb-notif-head strong { display: block; color: var(--lb-text); font-size: 0.95rem; }
.lb-notif-head button, .lb-notif-foot button {
    border: 1px solid var(--lb-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--lb-muted);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.68rem;
    font-weight: 700;
}
.lb-notif-foot a { color: var(--lb-gold); font-size: 0.72rem; font-weight: 700; text-decoration: none; }
.lb-notif-body { max-height: 320px; overflow-y: auto; padding: 8px; }
.lb-notif-empty { padding: 24px; color: var(--lb-muted); text-align: center; font-size: 0.78rem; }
.lb-notif-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: background 0.16s, transform 0.16s;
}
.lb-notif-item:hover { background: rgba(255, 255, 255, 0.04); transform: translateY(-1px); }
.lb-notif-item.is-unread { background: rgba(201, 169, 98, 0.08); }
.lb-notif-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.lb-notif-ico.success { background: rgba(34, 197, 94, 0.12); color: #4ade80; }
.lb-notif-ico.danger { background: rgba(239, 68, 68, 0.12); color: #fca5a5; }
.lb-notif-ico.warning { background: rgba(245, 158, 11, 0.13); color: #fbbf24; }
.lb-notif-ico.info { background: rgba(59, 130, 246, 0.13); color: #93c5fd; }
.lb-notif-copy { min-width: 0; }
.lb-notif-copy strong {
    display: block;
    color: var(--lb-text);
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lb-notif-copy p { color: var(--lb-muted); font-size: 0.68rem; margin: 3px 0 0; line-height: 1.35; }
.lb-notif-copy span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--lb-muted);
    font-size: 0.62rem;
    margin-top: 5px;
}
.lb-notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--lb-gold);
    display: inline-block;
}
.lb-notif-list-page .lb-notif-item {
    border: 1px solid var(--lb-border);
    margin-bottom: 10px;
}
@media (max-width: 640px) {
    .lb-notif-panel {
        position: fixed;
        right: 12px;
        left: 12px;
        top: 72px;
        width: auto;
    }
    .lb-notif-body { max-height: 65vh; }
}

/* â”€â”€â”€ Language translator (GTranslate) â”€â”€â”€ */
.pw-lang-switcher { position: relative; z-index: 1200; display: inline-flex; align-items: center; }
.pw-lang-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(201, 169, 98, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.pw-lang-trigger.header-icon { font-size: inherit; }
.pw-lang-trigger:hover,
.pw-lang-trigger[aria-expanded="true"] {
    border-color: var(--lb-gold);
    background: rgba(201, 169, 98, 0.1);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.18);
    transform: translateY(-2px);
    color: var(--lb-gold);
}
.pw-lang-flag { display: block; width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }
.pw-lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 168px;
    margin: 0;
    padding: 6px;
    border: 1px solid var(--lb-border);
    border-radius: 14px;
    background: linear-gradient(180deg, #141414, #0a0a0a);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
    list-style: none;
    z-index: 1300;
}
.pw-lang-menu[hidden] { display: none !important; }
.pw-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--lb-muted);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.16s, color 0.16s;
}
.pw-lang-option:hover,
.pw-lang-option.is-active {
    background: rgba(201, 169, 98, 0.12);
    color: var(--lb-gold);
}
.pw-lang-option img { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }

/* Currency switcher */
.pw-currency-switcher { position: relative; z-index: 1200; display: inline-flex; align-items: center; }
.pw-currency-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 0.55rem;
    border: 1px solid rgba(201, 169, 98, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    color: var(--lb-gold);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.pw-currency-trigger:hover,
.pw-currency-trigger[aria-expanded="true"] {
    border-color: var(--lb-gold);
    background: rgba(201, 169, 98, 0.1);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.18);
    transform: translateY(-2px);
}
.pw-currency-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    min-width: 220px;
    max-width: min(260px, calc(100vw - 1.5rem));
    margin: 0;
    padding: 6px;
    border: 1px solid var(--lb-border);
    border-radius: 14px;
    background: linear-gradient(180deg, #141414, #0a0a0a);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
    list-style: none;
    z-index: 1300;
}
.pw-currency-menu[hidden] { display: none !important; }
.pw-currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--lb-muted);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.16s, color 0.16s;
}
.pw-currency-option:hover,
.pw-currency-option.is-active {
    background: rgba(201, 169, 98, 0.12);
    color: var(--lb-gold);
}
.pw-currency-sym {
    flex: 0 0 2.75rem;
    min-width: 2.75rem;
    color: var(--lb-gold);
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Welcome hero — brand first */
.hero-section--welcome .hero-bg {
    filter: brightness(0.35) saturate(0.7);
}
.hero-overlay--welcome {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201,169,98,0.12), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.92) 100%) !important;
}
.hero-content--welcome {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}
.hero-title--brand {
    font-family: var(--font-sans) !important;
    font-weight: 700 !important;
    letter-spacing: 0.28em !important;
    text-transform: uppercase;
    font-size: clamp(2rem, 7vw, 3.6rem) !important;
    color: #fff !important;
}
.hero-monogram {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.1rem 0 1.25rem;
    width: min(280px, 70vw);
}
.hero-monogram-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,98,0.7), transparent);
}
.hero-monogram-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--lb-gold);
    color: var(--lb-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.hero-tagline {
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin: 0 0 1.75rem;
}
.btn-lb-outline-gold {
    border: 1px solid var(--lb-gold) !important;
    background: transparent !important;
    color: #fff !important;
}
.btn-lb-outline-gold:hover {
    background: var(--lb-gold) !important;
    color: #000 !important;
}
.gtranslate_wrapper,
#gt_float_wrapper,
.gt_float_switcher,
.gt-current-lang,
.lb-gtranslate-host {
    display: none !important;
}
/* Google Translate host â€” hidden only after widget is ready. */
body.lb-gtranslate-ready .lb-gtranslate-host,
body.lb-gtranslate-ready .lb-gtranslate-host .skiptranslate,
body.lb-gtranslate-ready .lb-gtranslate-host .goog-te-gadget,
body.lb-gtranslate-ready .goog-te-gadget-simple {
    display: block !important;
    position: absolute !important;
    left: -9999px !important;
    top: 0 !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
body { top: 0 !important; }
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
iframe.goog-te-banner-frame,
.goog-te-menu-frame {
    display: none !important;
}
