/* =========================================================================
   LockGrip Elite V3 — main.css
   Premium dark ecommerce. Mobile-first. No frameworks.
   Brand orange: #f15a24
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
    color-scheme: dark;

    /* Backgrounds */
    --lg-bg:          #0a0a0a;
    --lg-bg-2:        #111111;
    --lg-bg-3:        #161616;
    --lg-bg-card:     #141414;
    --lg-bg-elevated: #1a1a1a;

    /* Lines */
    --lg-line:        #232323;
    --lg-line-2:      #2c2c2c;

    /* Type */
    --lg-text:        #ffffff;
    --lg-text-soft:   #e6e6e6;
    --lg-text-dim:    #b8b8b8;
    --lg-text-mute:   #7a7a7a;
    --lg-text-faint:  #545454;

    /* Brand */
    --lg-orange:      #f15a24;
    --lg-orange-2:    #ff6e3c;
    --lg-orange-dark: #d44a18;
    --lg-orange-soft: rgba(241, 90, 36, 0.12);
    --lg-menu-shop-color: #ffffff;
    --lg-menu-shop-hover-color: #f15a24;
    --lg-logo-mobile-height: 32px;
    --lg-logo-desktop-height: 32px;

    /* States */
    --lg-green:       #22c55e;
    --lg-red:         #ef4444;

    /* Radii */
    --lg-radius-sm:   4px;
    --lg-radius:      6px;
    --lg-radius-lg:   10px;
    --lg-radius-xl:   14px;

    /* Shadows */
    --lg-shadow:         0 8px 30px rgba(0, 0, 0, 0.6);
    --lg-shadow-card:    0 4px 18px rgba(0, 0, 0, 0.45);
    --lg-shadow-orange:  0 6px 20px rgba(241, 90, 36, 0.32);

    /* Layout */
    --lg-container:   1280px;
    --lg-gutter:      18px;
    --lg-header-h:    62px;

    /* Type families */
    --lg-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    --lg-font-display: "Inter", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Motion */
    --lg-trans:       180ms ease;
    --lg-trans-slow:  320ms ease;
}

/* -------------------------------------------------------------------------
   2. Reset / base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    color-scheme: dark;
    background: #0a0a0a;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--lg-font);
    background: var(--lg-bg);
    color: var(--lg-text);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

img, svg, video, picture { max-width: 100%; height: auto; display: block; }

a {
    color: var(--lg-text);
    text-decoration: none;
    transition: color var(--lg-trans);
}
a:hover { color: var(--lg-orange); }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lg-font-display);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.012em;
    margin: 0 0 0.6em;
    color: var(--lg-text);
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--lg-orange); color: #fff; }

:focus-visible { outline: 2px solid var(--lg-orange); outline-offset: 3px; }

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.lg-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--lg-orange);
    color: #fff;
    padding: 10px 16px;
    z-index: 10000;
    font-weight: 700;
    border-radius: 0 0 var(--lg-radius) 0;
}
.lg-skip-link:focus { left: 0; top: 0; color: #fff; }

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.lg-container {
    width: 100%;
    max-width: var(--lg-container);
    margin: 0 auto;
    padding: 0 var(--lg-gutter);
}

.lg-orange { color: var(--lg-orange); }

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.lg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--lg-radius);
    border: 2px solid transparent;
    background: transparent;
    color: #fff;
    transition: transform var(--lg-trans), background var(--lg-trans),
                color var(--lg-trans), box-shadow var(--lg-trans),
                border-color var(--lg-trans);
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.lg-btn:focus-visible { outline: 2px solid var(--lg-orange); outline-offset: 3px; }
.lg-btn:active { transform: translateY(1px); }

.lg-btn-primary {
    background: var(--lg-orange);
    color: #fff;
    box-shadow: var(--lg-shadow-orange);
}
.lg-btn-primary:hover {
    background: var(--lg-orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.lg-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}
.lg-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.lg-btn-lg {
    padding: 16px 26px;
    font-size: 14px;
}

.lg-btn-block {
    display: flex;
    width: 100%;
}

.lg-btn-arrow {
    font-size: 16px;
    transform: translateY(-1px);
    font-weight: 700;
}
.lg-btn-play { font-size: 11px; }
.lg-btn-ico { display: inline-flex; }

.lg-btn-header { display: none; }
.lg-btn-header:hover,
.lg-btn-header:focus {
    background: var(--lg-menu-shop-hover-color, var(--lg-orange));
    border-color: var(--lg-menu-shop-hover-color, var(--lg-orange));
    color: #fff;
}

.lg-btn-cart { background: var(--lg-orange); }
.lg-btn-buy {
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

/* -------------------------------------------------------------------------
   5. Announcement bar
   ------------------------------------------------------------------------- */
.lg-announce {
    background: #000;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
    border-bottom: 1px solid var(--lg-line);
}

/* -------------------------------------------------------------------------
   6. Header / nav
   ------------------------------------------------------------------------- */
.lg-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lg-line);
    transition: background var(--lg-trans), border-color var(--lg-trans);
}
.lg-header.is-scrolled {
    background: rgba(8, 8, 8, 0.96);
    border-bottom-color: rgba(241, 90, 36, 0.2);
}

.lg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--lg-header-h);
}

.lg-header-left,
.lg-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lg-logo { display: inline-flex; align-items: center; }
.lg-logo img { max-height: var(--lg-logo-mobile-height, 32px); width: auto; }
.custom-logo-link.lg-logo img,
.lg-logo .custom-logo { max-height: var(--lg-logo-mobile-height, 32px); width: auto; }
.lg-logo-text {
    font-family: var(--lg-font-display);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
}
.lg-logo-lock { color: #fff; }
.lg-logo-grip { color: var(--lg-orange); }

.lg-nav-desktop { display: none; }
.lg-menu {
    display: flex;
    gap: 24px;
}
.lg-menu li { position: relative; }
.lg-menu a {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 0;
}
.lg-menu a:hover { color: var(--lg-orange); }
.lg-menu .current-menu-item > a,
.lg-menu .current_page_item > a { color: var(--lg-orange); }

.lg-ship-badge { display: none; }

.lg-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 6px;
}
.lg-cart:hover { color: var(--lg-orange); }
.lg-cart-icon { width: 22px; height: 22px; }
.lg-cart-count {
    position: absolute;
    top: -2px;
    right: -6px;
    background: var(--lg-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--lg-bg);
}

.lg-burger {
    background: transparent;
    border: 0;
    padding: 8px;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 38px;
}
.lg-burger span {
    display: block;
    height: 2px;
    width: 22px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--lg-trans), opacity var(--lg-trans);
}
.lg-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lg-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lg-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lg-mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: var(--lg-bg-2);
    border-top: 1px solid var(--lg-line);
    transition: max-height var(--lg-trans-slow);
}
.lg-mobile-menu.is-open {
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.lg-mobile-menu-inner {
    padding: 18px var(--lg-gutter) 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lg-mobile-nav-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--lg-line);
}
.lg-mobile-nav-list li { border-bottom: 1px solid var(--lg-line); }
.lg-mobile-nav-list li:last-child { border-bottom: 0; }
.lg-mobile-nav-list a {
    display: block;
    padding: 14px 2px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}
.lg-mobile-nav-list a:hover { color: var(--lg-orange); }
.lg-menu > li:first-child > a,
.lg-menu a[href*="/product/lockgrip"],
.lg-menu a[href*="/shop"],
.lg-mobile-nav-list > li:first-child > a,
.lg-mobile-nav-list a[href*="/product/lockgrip"],
.lg-mobile-nav-list a[href*="/shop"] {
    color: var(--lg-menu-shop-color);
}
.lg-menu > li:first-child > a:hover,
.lg-menu a[href*="/product/lockgrip"]:hover,
.lg-menu a[href*="/shop"]:hover,
.lg-mobile-nav-list > li:first-child > a:hover,
.lg-mobile-nav-list a[href*="/product/lockgrip"]:hover,
.lg-mobile-nav-list a[href*="/shop"]:hover {
    color: var(--lg-menu-shop-hover-color, var(--lg-orange));
}
.lg-mobile-menu-brand {
    margin-top: auto;
    padding: 18px 2px 4px;
    border-top: 1px solid var(--lg-line);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.lg-mobile-menu-brand-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #f15a24;
    box-shadow: 0 0 14px rgba(241, 90, 36, 0.55);
    flex: 0 0 auto;
}
.lg-mobile-menu-brand-traction {
    color: #f15a24;
}

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.lg-hero {
    position: relative;
    background-color: #050505;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 36px 0 28px;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.lg-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 80% 60%,
        rgba(241, 90, 36, 0.18) 0%,
        rgba(0, 0, 0, 0) 60%
    );
    pointer-events: none;
    z-index: 1;
}
.lg-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    position: relative;
    z-index: 2;
}
.lg-hero-content { max-width: 540px; }

.lg-hero-title {
    font-size: clamp(46px, 13.5vw, 88px);
    line-height: 0.92;
    letter-spacing: -0.025em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.lg-hero-line { display: block; }
.lg-hero-white { color: #fff; }
.lg-hero-orange {
    color: var(--lg-orange);
    text-shadow: 0 2px 30px rgba(241, 90, 36, 0.35);
}

.lg-hero-sub {
    font-size: 15px;
    color: var(--lg-text-soft);
    line-height: 1.55;
    max-width: 460px;
    margin-bottom: 24px;
}

.lg-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}
.lg-hero-action-row {
    position: relative;
}
.lg-hero-mobile-bottle {
    display: none;
}

.lg-hero-visual {
    position: relative;
    height: 260px;
    display: block;
    pointer-events: none;
}
.lg-hero-bottle {
    display: block;
    position: absolute;
    right: 46%;
    bottom: 0;
    height: 250px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.75));
    z-index: 2;
}
.lg-hero-shoe {
    display: block;
    position: absolute;
    right: -10%;
    bottom: 4px;
    width: 70%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.75));
    z-index: 1;
    opacity: 0.92;
    border-radius: var(--lg-radius);
}

/* -------------------------------------------------------------------------
   8. Trust strip
   ------------------------------------------------------------------------- */
.lg-trust {
    background: #0d0d0d;
    border-top: 1px solid var(--lg-line);
    border-bottom: 1px solid var(--lg-line);
    padding: 18px 0;
}
.lg-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
    align-items: center;
}
.lg-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}
.lg-trust-icon {
    color: var(--lg-orange);
    flex-shrink: 0;
    display: inline-flex;
}

/* -------------------------------------------------------------------------
   9. Reviews
   ------------------------------------------------------------------------- */
.lg-reviews {
    background: var(--lg-bg);
    padding: 44px 0;
}
.lg-reviews-inner {
    display: grid;
    gap: 22px;
}

.lg-reviews-head { text-align: left; }
.lg-reviews-title {
    font-size: clamp(20px, 5.6vw, 32px);
    line-height: 1.15;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.lg-stars {
    color: var(--lg-orange);
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
    display: inline-flex;
}
.lg-stars-lg { font-size: 20px; }
.lg-reviews-meta {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--lg-text-dim);
    font-weight: 600;
}

.lg-reviews-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}
.lg-review-card {
    background: var(--lg-bg-card);
    border: 1px solid var(--lg-line);
    border-radius: var(--lg-radius);
    padding: 18px;
    transition: border-color var(--lg-trans), transform var(--lg-trans);
}
.lg-review-card:hover {
    border-color: var(--lg-line-2);
    transform: translateY(-1px);
}
.lg-review-quote {
    font-size: 14px;
    color: var(--lg-text-soft);
    margin: 10px 0;
    line-height: 1.5;
}
.lg-review-author {
    color: var(--lg-text-mute);
    font-size: 13px;
    margin: 0;
    font-weight: 600;
}

.lg-reviews-trust {
    background-size: cover;
    background-position: center;
    border-radius: var(--lg-radius);
    padding: 24px 20px;
    min-height: 110px;
    display: flex;
    align-items: center;
    border: 1px solid var(--lg-line);
}
.lg-reviews-trust-text {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}
.lg-au-flag { margin-left: 6px; }

/* -------------------------------------------------------------------------
   9A. Action video
   ------------------------------------------------------------------------- */
.lg-action-video {
    background: var(--lg-bg);
    padding: 0 0 34px;
}
.lg-action-video-card {
    display: grid;
    gap: 16px;
    background: var(--lg-bg-card);
    border: 1px solid var(--lg-line);
    border-radius: var(--lg-radius-lg);
    padding: 18px;
    box-shadow: var(--lg-shadow-card);
}
.lg-action-video-copy {
    display: grid;
    gap: 10px;
    align-content: center;
}
.lg-action-video-title {
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(22px, 5.6vw, 34px);
    line-height: 1.1;
}
.lg-action-video-details {
    margin: 0;
    color: var(--lg-text-soft);
    font-size: 14px;
    line-height: 1.6;
    max-width: 44ch;
}
.lg-action-video-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
}
.lg-action-video-trigger.is-disabled {
    cursor: default;
}
.lg-action-video-trigger:focus-visible {
    outline: 2px solid var(--lg-orange);
    outline-offset: 4px;
    border-radius: calc(var(--lg-radius) + 2px);
}
.lg-action-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--lg-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--lg-line);
    transition: transform var(--lg-trans), border-color var(--lg-trans), box-shadow var(--lg-trans);
}
.lg-action-video-trigger:hover .lg-action-video-thumb,
.lg-action-video-trigger:focus-visible .lg-action-video-thumb {
    border-color: var(--lg-orange);
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
.lg-action-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.52);
    border: 2px solid rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    transition: background var(--lg-trans), border-color var(--lg-trans), transform var(--lg-trans);
}
.lg-action-video-trigger:hover .lg-action-video-play,
.lg-action-video-trigger:focus-visible .lg-action-video-play {
    background: rgba(241, 90, 36, 0.92);
    border-color: var(--lg-orange);
    transform: translate(-50%, -50%) scale(1.04);
}
.lg-action-video-tap {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.lg-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.lg-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(3px);
}
.lg-video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1040px);
    margin: 5vh auto;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 26px 80px rgba(0,0,0,0.52);
    overflow: hidden;
}
.lg-video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    font-size: 28px;
    line-height: 1;
}
.lg-video-modal-close:hover,
.lg-video-modal-close:focus-visible {
    background: var(--lg-orange);
    outline: none;
}
.lg-video-modal-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.lg-video-modal-media iframe,
.lg-video-modal-media video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
}

/* -------------------------------------------------------------------------
   10. How it works
   ------------------------------------------------------------------------- */
.lg-how {
    background: var(--lg-bg-2);
    padding: 44px 0;
    border-top: 1px solid var(--lg-line);
    border-bottom: 1px solid var(--lg-line);
}
.lg-how-head {
    text-align: center;
    margin-bottom: 26px;
}
.lg-how-title {
    font-size: clamp(22px, 6.2vw, 32px);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.lg-how-sub {
    color: var(--lg-orange);
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}
.lg-how-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}
.lg-step {
    background-color: var(--lg-bg-card);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border: 1px solid var(--lg-line);
    border-radius: var(--lg-radius);
    min-height: 130px;
    display: flex;
    align-items: center;
    padding: 18px;
    overflow: hidden;
    transition: border-color var(--lg-trans), transform var(--lg-trans);
}
.lg-step:hover {
    border-color: var(--lg-line-2);
    transform: translateY(-1px);
}
.lg-step-body { max-width: 60%; }
.lg-step-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}
.lg-step-num {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.lg-step-label {
    color: var(--lg-orange);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.lg-step-desc {
    color: var(--lg-text-soft);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* -------------------------------------------------------------------------
   11. Product feature / buy box
   ------------------------------------------------------------------------- */
.lg-product {
    background: var(--lg-bg);
    padding: 44px 0;
}
.lg-product-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    border: 1px solid var(--lg-line);
    border-radius: var(--lg-radius-lg);
    padding: 20px;
    background: var(--lg-bg-2);
    box-shadow: var(--lg-shadow-card);
}

.lg-product-media {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--lg-bg-3);
    border-radius: var(--lg-radius);
    padding: 20px;
    min-height: 220px;
}
.lg-product-img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
}

.lg-product-title {
    font-size: clamp(22px, 5.8vw, 30px);
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 1.05;
}
.lg-product-sub {
    color: var(--lg-text-dim);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 800;
    margin-bottom: 18px;
}

.lg-product-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.lg-product-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--lg-text-soft);
    font-size: 14px;
    line-height: 1.4;
}
.lg-tick {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--lg-orange-soft);
    color: var(--lg-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.lg-product-meta {
    color: var(--lg-text-mute);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--lg-line);
}
.lg-product-meta-sep {
    margin: 0 10px;
    color: var(--lg-line-2);
}

.lg-product-buy {
    background: var(--lg-bg-3);
    border: 1px solid var(--lg-line);
    border-radius: var(--lg-radius);
    padding: 20px;
}
.lg-product-price {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1;
}
.lg-product-price .woocommerce-Price-amount {
    color: #fff;
    font-weight: 900;
}
.lg-product-price del { color: var(--lg-text-mute); font-size: 18px; margin-right: 8px; }
.lg-product-price ins { background: transparent; text-decoration: none; color: var(--lg-orange); }

.lg-product-status {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--lg-text-soft);
}
.lg-product-status li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lg-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lg-dot-green {
    background: var(--lg-green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.lg-dot-red {
    background: var(--lg-red);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}
.lg-ship-ico {
    color: var(--lg-green);
    display: inline-flex;
    flex-shrink: 0;
}

.lg-buy-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lg-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--lg-line-2);
    border-radius: var(--lg-radius);
    background: var(--lg-bg-2);
    overflow: hidden;
    width: fit-content;
    margin: 0 auto 8px;
}
.lg-qty-btn {
    background: transparent;
    border: 0;
    color: #fff;
    width: 40px;
    height: 44px;
    font-size: 20px;
    font-weight: 700;
    transition: background var(--lg-trans), color var(--lg-trans);
    line-height: 1;
}
.lg-qty-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--lg-orange);
}
.lg-qty-input {
    width: 52px;
    height: 44px;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    -moz-appearance: textfield;
    appearance: textfield;
}
.lg-qty-input::-webkit-outer-spin-button,
.lg-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.lg-qty-input:focus { outline: none; }

/* -------------------------------------------------------------------------
   12. Comparison
   ------------------------------------------------------------------------- */
.lg-compare {
    background: var(--lg-bg-2);
    padding: 44px 0;
    border-top: 1px solid var(--lg-line);
}
.lg-compare-title {
    font-size: clamp(20px, 5.4vw, 30px);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.lg-compare-table-wrap {
    border: 1px solid var(--lg-line);
    border-radius: var(--lg-radius);
    overflow: hidden;
    background: var(--lg-bg);
}
.lg-compare-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-size: 14px;
}
.lg-compare-table th,
.lg-compare-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid var(--lg-line);
    vertical-align: middle;
}
.lg-compare-table tbody tr:last-child th,
.lg-compare-table tbody tr:last-child td { border-bottom: 0; }

.lg-compare-table thead th {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lg-text-dim);
    background: var(--lg-bg-3);
    font-weight: 800;
}
.lg-compare-table thead .lg-compare-us { color: var(--lg-orange); }

.lg-compare-table tbody th.lg-compare-feature {
    text-align: left;
    font-weight: 600;
    color: var(--lg-text-soft);
    font-size: 13px;
}

.lg-tick-circle,
.lg-cross-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
.lg-tick-circle { color: var(--lg-orange); }
.lg-cross-circle { color: var(--lg-text-faint); }

/* -------------------------------------------------------------------------
   13. Proof videos
   ------------------------------------------------------------------------- */
.lg-proof {
    background: var(--lg-bg);
    padding: 44px 0;
}
.lg-proof-head {
    text-align: center;
    margin-bottom: 22px;
}
.lg-proof-title {
    font-size: clamp(20px, 5.4vw, 30px);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.lg-proof-sub {
    color: var(--lg-text-dim);
    font-size: 14px;
    max-width: 580px;
    margin: 0 auto;
}

.lg-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.lg-proof-card {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--lg-line);
    border-radius: var(--lg-radius);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--lg-trans), border-color var(--lg-trans);
    display: block;
    text-decoration: none;
}
.lg-proof-card:hover {
    transform: scale(1.02);
    border-color: var(--lg-orange);
}
.lg-proof-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lg-trans);
}
.lg-proof-card:hover .lg-proof-play {
    background: var(--lg-orange);
    border-color: var(--lg-orange);
}

/* -------------------------------------------------------------------------
   14. Final CTA
   ------------------------------------------------------------------------- */
.lg-final {
    background-color: #050505;
    background-size: cover;
    background-position: center;
    padding: 56px 0;
    text-align: center;
}
.lg-final-title {
    font-size: clamp(28px, 7.2vw, 48px);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1;
}
.lg-final-sub {
    color: var(--lg-text-soft);
    max-width: 560px;
    margin: 0 auto 26px;
    font-size: 15px;
}
.lg-final-ctas {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}
.lg-final-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    color: var(--lg-text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* -------------------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------------------- */
.lg-footer {
    background: #050505;
    color: var(--lg-text-dim);
    border-top: 1px solid var(--lg-line);
}

.lg-footer-cta {
    background: var(--lg-bg-2);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--lg-line);
}
.lg-footer-cta-title {
    font-size: clamp(24px, 6.2vw, 36px);
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #fff;
}
.lg-footer-cta-sub {
    color: var(--lg-text-dim);
    margin-bottom: 22px;
}

.lg-footer-main { padding: 38px 0 28px; }
.lg-footer-brand { max-width: 380px; }
.lg-footer-tag {
    color: var(--lg-text-dim);
    font-size: 14px;
    margin-top: 14px;
    line-height: 1.6;
}
.lg-footer-heading {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 800;
}
.lg-footer-links a,
.lg-footer-trust li {
    display: block;
    padding: 5px 0;
    color: var(--lg-text-dim);
    font-size: 14px;
}
.lg-footer-links a:hover { color: var(--lg-orange); }
.lg-footer-trust li { color: var(--lg-text-dim); }

.lg-footer-bar {
    border-top: 1px solid var(--lg-line);
    padding: 18px 0;
    font-size: 12px;
    color: var(--lg-text-mute);
}
.lg-footer-bar-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}
.lg-copy, .lg-footer-mini { margin: 0; }

/* -------------------------------------------------------------------------
   16. Pages / single posts
   ------------------------------------------------------------------------- */
.lg-page, .lg-single, .lg-wc-main {
    padding: 44px 0;
    min-height: 60vh;
}
.lg-page-container {
    max-width: 1280px;
}
.lg-page-header { margin-bottom: 26px; }
.lg-page-title {
    font-size: clamp(28px, 6.4vw, 44px);
    text-transform: uppercase;
}
.lg-post-meta {
    color: var(--lg-text-mute);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 700;
}
.lg-post-meta span + span::before {
    content: " · ";
    margin: 0 6px;
    color: var(--lg-line-2);
}

.lg-page-thumb {
    margin: 0 0 26px;
    border-radius: var(--lg-radius);
    overflow: hidden;
}

.lg-page-content {
    color: var(--lg-text-soft);
    line-height: 1.7;
    font-size: 16px;
}
.lg-page-content a { color: var(--lg-orange); text-decoration: underline; }
.lg-page-content h2, .lg-page-content h3 { color: #fff; margin-top: 1.4em; }
.lg-page-content blockquote {
    border-left: 3px solid var(--lg-orange);
    padding: 6px 18px;
    margin: 24px 0;
    color: var(--lg-text-dim);
    font-style: italic;
}
.lg-page-content code {
    background: var(--lg-bg-2);
    padding: 2px 6px;
    border-radius: var(--lg-radius-sm);
    font-size: 0.9em;
}

.lg-post-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--lg-line);
    font-size: 13px;
    color: var(--lg-text-mute);
}
.lg-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--lg-line);
    font-size: 14px;
}
.lg-nav-label { display: block; color: var(--lg-text-mute); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.lg-nav-title { color: #fff; font-weight: 700; }

body.wp-admin { background: initial; color: initial; }

/* =========================================================================
   18. Breakpoints
   ========================================================================= */

@media (min-width: 400px) {
    :root { --lg-gutter: 20px; }
    .lg-hero-title { font-size: clamp(52px, 14vw, 88px); }
}

@media (min-width: 560px) {
    .lg-trust-inner { grid-template-columns: repeat(4, 1fr); }
    .lg-trust-item { font-size: 12px; }
    .lg-hero-ctas {
        flex-direction: row;
        max-width: none;
    }
    .lg-hero-ctas .lg-btn { flex: 0 0 auto; }
    .lg-proof-grid { grid-template-columns: repeat(2, 1fr); }
    .lg-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    :root {
        --lg-gutter: 20px;
        --lg-header-h: 72px;
    }

    .lg-announce { font-size: 11px; }

    .lg-hero {
        padding: 70px 0 50px;
        min-height: 620px;
    }
    .lg-hero-inner {
        grid-template-columns: 1.05fr 1fr;
        align-items: center;
        gap: 30px;
    }
    .lg-hero-visual {
        display: block;
        height: 460px;
        position: relative;
    }
    .lg-hero-bottle {
        display: block;
        position: absolute;
        right: 14%;
        top: 4%;
        bottom: auto;
        height: 92%;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.75));
        z-index: 2;
    }
    .lg-hero-shoe {
        display: block;
        position: absolute;
        right: -2%;
        bottom: 0;
        width: 62%;
        max-width: none;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.75));
        z-index: 1;
        border-radius: var(--lg-radius);
    }

    .lg-reviews { padding: 60px 0; }
    .lg-reviews-inner { grid-template-columns: 280px 1fr; }
    .lg-reviews-grid { grid-template-columns: repeat(3, 1fr); grid-column: 1 / -1; }
    .lg-reviews-trust { grid-column: 1 / -1; }

    .lg-action-video { padding: 0 0 48px; }
    .lg-action-video-card {
        grid-template-columns: 0.95fr 1.25fr;
        gap: 24px;
        padding: 24px;
        align-items: center;
    }

    .lg-how { padding: 60px 0; }
    .lg-how-grid { grid-template-columns: repeat(3, 1fr); }
    .lg-step { min-height: 150px; }
    .lg-step-body { max-width: 50%; }

    .lg-product { padding: 60px 0; }
    .lg-product-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 30px;
    }
    .lg-product-buy { grid-column: 1 / -1; }
    .lg-product-media { min-height: 320px; }
    .lg-product-img { max-height: 320px; }

    .lg-compare { padding: 60px 0; }
    .lg-compare-table th,
    .lg-compare-table td { padding: 16px 18px; font-size: 15px; }

    .lg-proof { padding: 60px 0; }
    .lg-proof-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

    .lg-final { padding: 80px 0; }
    .lg-footer-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .lg-logo img,
    .custom-logo-link.lg-logo img,
    .lg-logo .custom-logo { max-height: var(--lg-logo-desktop-height, 32px); }
    .lg-header-inner { gap: 24px; }
    .lg-header-left {
        flex: 1 1 auto;
        min-width: 0;
    }
    .lg-header-right {
        flex: 0 0 auto;
        gap: 18px;
    }
    .lg-nav-desktop {
        display: block;
        margin-left: auto;
        margin-right: 26px;
    }
    .lg-menu { gap: 26px; }
    .lg-btn-header { display: inline-flex; padding: 11px 18px; font-size: 12px; }
    .lg-burger { display: none; }
    .lg-mobile-menu { display: none; }

    .lg-hero {
        padding: 100px 0 80px;
        min-height: 700px;
    }
    .lg-hero-title { font-size: clamp(68px, 8.2vw, 112px); }
    .lg-hero-sub { font-size: 17px; }
    .lg-hero-visual { height: 520px; }

    .lg-reviews-inner {
        grid-template-columns: 280px 1fr 220px;
        align-items: start;
        gap: 30px;
    }
    .lg-reviews-grid {
        grid-column: 2 / 3;
        grid-template-columns: repeat(3, 1fr);
    }
    .lg-reviews-trust {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        min-height: 100%;
    }
    .lg-reviews-head { grid-column: 1 / 2; }

    .lg-action-video-card {
        grid-template-columns: 0.9fr 1.4fr;
        gap: 28px;
        padding: 26px;
    }

    .lg-how-inner {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 36px;
        align-items: center;
    }
    .lg-how-head {
        text-align: left;
        margin-bottom: 0;
    }
    .lg-how-grid { grid-template-columns: repeat(3, 1fr); }

    .lg-product-inner {
        grid-template-columns: 1fr 1.1fr 0.9fr;
        gap: 36px;
    }
    .lg-product-buy { grid-column: auto; }

    .lg-compare-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        align-items: start;
    }
    .lg-compare-title { grid-column: 1 / -1; }
}

@media (min-width: 1200px) {
    .lg-hero-title { font-size: 120px; }
}


/* -------------------------------------------------------------------------
   Optimised mobile hero CTA bottle layout
   Consolidates the old v3.0.5/v3.0.6/v3.0.7 overrides into one final rule set.
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .lg-hero {
        min-height: auto;
        padding: 34px 0 30px;
    }

    .lg-hero-inner {
        display: block;
    }

    .lg-hero-title {
        margin-bottom: 18px;
    }

    .lg-hero-sub {
        max-width: 100%;
        margin-bottom: 22px;
    }

    .lg-hero-action-row {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 128px;
        align-items: center;
        gap: 2px;
        max-width: 100%;
        overflow: visible;
    }

    .lg-hero-ctas {
        flex-direction: column;
        max-width: none;
        width: 100%;
    }

    .lg-hero-ctas .lg-btn {
        width: 100%;
        min-height: 58px;
    }

    .lg-hero-mobile-bottle {
        display: block;
        height: 238px;
        width: auto;
        max-width: none;
        max-height: none;
        min-width: 0;
        object-fit: contain;
        justify-self: center;
        align-self: center;
        transform: translate(-34px, 10px) scale(1.08);
        transform-origin: center center;
        filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.75));
        z-index: 3;
        pointer-events: none;
    }

    .lg-hero-visual,
    .lg-hero-shoe {
        display: none !important;
    }
}

@media (max-width: 390px) {
    .lg-hero-action-row {
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 8px;
    }

    .lg-hero-mobile-bottle {
        height: 220px;
        transform: translate(-28px, 8px) scale(1.05);
    }

    .lg-hero-ctas .lg-btn {
        font-size: 12px;
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* -------------------------------------------------------------------------
   Minor update — v3.0.10
   - How It Works image ratio controls.
   - WooCommerce Cart / Checkout / Account white system page styling.
   ------------------------------------------------------------------------- */
.lg-how-ratio-16-9 .lg-step { aspect-ratio: 16 / 9; min-height: auto; }
.lg-how-ratio-4-3 .lg-step { aspect-ratio: 4 / 3; min-height: auto; }
.lg-how-ratio-3-2 .lg-step { aspect-ratio: 3 / 2; min-height: auto; }
.lg-how-ratio-1-1 .lg-step { aspect-ratio: 1 / 1; min-height: auto; }
.lg-how-ratio-5-6 .lg-step { aspect-ratio: 5 / 6; min-height: auto; }
.lg-how-ratio-4-5 .lg-step { aspect-ratio: 4 / 5; min-height: auto; }
.lg-how-ratio-9-16 .lg-step { aspect-ratio: 9 / 16; min-height: auto; }

.lg-how-ratio-5-6 .lg-step,
.lg-how-ratio-4-5 .lg-step,
.lg-how-ratio-9-16 .lg-step {
    align-items: flex-end;
}

.lg-how-ratio-5-6 .lg-step-body,
.lg-how-ratio-4-5 .lg-step-body,
.lg-how-ratio-9-16 .lg-step-body {
    max-width: 78%;
}


/* -------------------------------------------------------------------------
   19. Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* -------------------------------------------------------------------------
   20. Print
   ------------------------------------------------------------------------- */
@media print {
    .lg-header, .lg-footer, .lg-announce, .lg-mobile-menu,
    .lg-hero-ctas, .lg-btn { display: none !important; }
    body { background: #fff !important; color: #000 !important; }
}


/* -------------------------------------------------------------------------
   Optimised tablet/desktop hero cleanup
   Removes the old spray/shoe hero card and features the bottle only.
   ------------------------------------------------------------------------- */
@media (min-width: 768px) {
    .lg-hero-mobile-bottle {
        display: none !important;
    }

    .lg-hero-visual {
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 500px;
        position: relative;
        background: transparent !important;
        border: 0 !important;
        overflow: visible;
        pointer-events: none;
    }

    .lg-hero-shoe {
        display: none !important;
    }

    .lg-hero-bottle {
        display: block !important;
        position: relative !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        height: 92%;
        max-height: 500px;
        width: auto;
        max-width: min(360px, 100%);
        object-fit: contain;
        z-index: 2;
        filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.85));
    }
}

@media (min-width: 1024px) {
    .lg-hero-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    }

    .lg-hero-visual {
        height: 560px;
        justify-content: flex-end;
        padding-right: 6vw;
    }

    .lg-hero-bottle {
        height: 96%;
        max-height: 540px;
        max-width: min(400px, 100%);
    }
}

/* -------------------------------------------------------------------------
   v3.0.11 Footer cleanup + separate proof image placeholders
   ------------------------------------------------------------------------- */
.lg-footer-clean {
    display: grid;
    gap: 28px;
}

.lg-footer-brand-row {
    max-width: 620px;
}

.lg-footer-logo {
    margin-bottom: 10px;
}

.lg-footer-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.lg-footer-menu-col {
    min-width: 0;
}

.lg-footer-menu-col .lg-footer-links {
    display: grid;
    gap: 3px;
}

.lg-footer-menu-col .lg-footer-links a {
    line-height: 1.35;
    padding: 6px 0;
}

.lg-footer-bottom-trust {
    display: grid;
    gap: 14px;
    padding-top: 20px;
    margin-top: 2px;
    border-top: 1px solid var(--lg-line);
}

.lg-footer-trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.lg-footer-trust-row li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lg-radius);
    background: rgba(255,255,255,0.03);
    color: #f2f2f2;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

.lg-footer-payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.lg-payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    color: var(--lg-text-dim);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .lg-footer-clean {
        grid-template-columns: minmax(280px, 1.15fr) minmax(360px, 0.85fr);
        gap: 40px;
        align-items: start;
    }

    .lg-footer-brand-row {
        max-width: 460px;
    }

    .lg-footer-bottom-trust {
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .lg-footer-trust-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg-footer-payment-row {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .lg-footer-clean {
        grid-template-columns: 1.3fr 1fr;
    }
}


/* -------------------------------------------------------------------------
   Footer payment Customizer controls — v3.0.12
   ------------------------------------------------------------------------- */
.lg-payment-pill-has-image {
    min-width: 68px;
    min-height: 34px;
    padding: 7px 12px;
}

.lg-payment-pill img {
    display: block;
    width: auto;
    max-width: 96px;
    max-height: 22px;
    object-fit: contain;
}

.lg-footer-payment-row[class*="lg-footer-payments-per-row-"]:not(.lg-footer-payments-per-row-auto) {
    display: grid;
    justify-content: stretch;
    align-items: center;
}

.lg-footer-payments-per-row-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.lg-footer-payments-per-row-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lg-footer-payments-per-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lg-footer-payments-per-row-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lg-footer-payments-per-row-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.lg-footer-payments-per-row-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.lg-footer-payment-row[class*="lg-footer-payments-per-row-"]:not(.lg-footer-payments-per-row-auto) .lg-payment-pill {
    width: 100%;
}


/* -------------------------------------------------------------------------
   Footer menu/logo + premium payment icon tiles — v3.0.14
   ------------------------------------------------------------------------- */
.lg-footer-logo-img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
}

.lg-footer-menu-grid .lg-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lg-footer-payment-row {
    gap: 10px;
}

.lg-payment-pill {
    min-height: 38px;
    min-width: 74px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #eeeeee 100%);
    color: #161616;
    box-shadow: 0 6px 18px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.9);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.lg-payment-pill-has-image {
    min-height: 40px;
    min-width: 82px;
    padding: 7px 12px;
}

.lg-payment-pill img {
    max-width: 94px;
    max-height: 24px;
    object-fit: contain;
    filter: none;
}

@media (max-width: 480px) {
    .lg-payment-pill {
        min-height: 36px;
        min-width: 0;
        padding: 7px 10px;
        border-radius: 9px;
    }

    .lg-payment-pill img {
        max-width: 82px;
        max-height: 22px;
    }
}


/* -------------------------------------------------------------------------
   Footer payment pills per-row mobile fix — v3.0.15
   Keeps the selected Customizer row count on mobile instead of forcing 2.
   ------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .lg-footer-payment-row.lg-footer-payments-per-row-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
    .lg-footer-payment-row.lg-footer-payments-per-row-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .lg-footer-payment-row.lg-footer-payments-per-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .lg-footer-payment-row.lg-footer-payments-per-row-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .lg-footer-payment-row.lg-footer-payments-per-row-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
    .lg-footer-payment-row.lg-footer-payments-per-row-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }

    .lg-footer-payment-row.lg-footer-payments-per-row-4,
    .lg-footer-payment-row.lg-footer-payments-per-row-5,
    .lg-footer-payment-row.lg-footer-payments-per-row-6 {
        gap: 6px;
    }

    .lg-footer-payment-row.lg-footer-payments-per-row-4 .lg-payment-pill,
    .lg-footer-payment-row.lg-footer-payments-per-row-5 .lg-payment-pill,
    .lg-footer-payment-row.lg-footer-payments-per-row-6 .lg-payment-pill {
        min-width: 0;
        width: 100%;
        min-height: 32px;
        padding: 6px 4px;
        border-radius: 7px;
        font-size: 7.5px;
        letter-spacing: 0.035em;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lg-footer-payment-row.lg-footer-payments-per-row-4 .lg-payment-pill img,
    .lg-footer-payment-row.lg-footer-payments-per-row-5 .lg-payment-pill img,
    .lg-footer-payment-row.lg-footer-payments-per-row-6 .lg-payment-pill img {
        max-width: 100%;
        max-height: 18px;
        object-fit: contain;
    }
}


/* =========================================================================
   v3.0.19 — Product buy box centering + desktop header cleanup
   ========================================================================= */
.lg-ship-badge {
    display: none !important;
}

.lg-product-buy {
    text-align: center;
}

.lg-product-buy .lg-product-price {
    text-align: center;
    width: 100%;
}

.lg-product-buy .lg-product-status {
    align-items: center;
    text-align: center;
}

.lg-product-buy .lg-product-status li {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.lg-product-buy .lg-qty {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .lg-product-buy {
        text-align: center;
    }

    .lg-product-buy .lg-product-status {
        align-items: center;
    }

    .lg-product-buy .lg-product-status li {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .lg-product-inner .lg-product-buy {
        text-align: center;
    }

    .lg-product-inner .lg-product-buy .lg-product-status {
        align-items: center;
    }

    .lg-product-inner .lg-product-buy .lg-product-status li {
        justify-content: center;
    }
}

/* v3.0.26 — homepage product View Product button */
.lg-product .lg-btn-view {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.55);
}
.lg-product .lg-btn-view:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--lg-orange);
}

/* v3.0.27 — mobile tap-to-expand homepage product image */
@media (max-width: 767px) {
    .lg-product-media-zoomable {
        cursor: zoom-in;
        -webkit-tap-highlight-color: transparent;
        transition: border-color var(--lg-trans), box-shadow var(--lg-trans), background var(--lg-trans);
    }

    .lg-product-media-zoomable:focus-visible {
        outline: 2px solid var(--lg-orange);
        outline-offset: 4px;
    }

    body.lg-product-image-zoom-open {
        overflow: hidden;
        touch-action: none;
    }

    .lg-product-media-zoomable.is-zoomed {
        position: fixed !important;
        inset: 0 !important;
        z-index: 999999 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 28px 22px 62px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: rgba(0, 0, 0, 0.92) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        box-shadow: none !important;
        cursor: zoom-out;
    }

    .lg-product-media-zoomable.is-zoomed .lg-product-img,
    .lg-product-media-zoomable.is-zoomed img {
        width: auto !important;
        height: auto !important;
        max-width: 90vw !important;
        max-height: 78vh !important;
        max-height: 78dvh !important;
        object-fit: contain !important;
        transform: scale(1.04);
        transition: transform 220ms ease;
        filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.85));
    }

    .lg-product-media-zoomable.is-zoomed::after {
        content: "Tap image to close";
        position: fixed;
        left: 50%;
        bottom: max(22px, env(safe-area-inset-bottom));
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.82);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        pointer-events: none;
    }
}

@media (min-width: 768px) {
    .lg-product-media-zoomable {
        cursor: default;
    }
}


/* -------------------------------------------------------------------------
   Footer payment icons — match Product Layout plugin pill/icon style v3.0.28
   Uses the same 110x30 rounded payment badge assets and grid behaviour.
   ------------------------------------------------------------------------- */
.lg-footer-payment-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px !important;
    align-items: center;
    justify-content: stretch !important;
    margin: 10px auto 18px;
    width: 100%;
    max-width: 480px;
}

.lg-footer-payment-row.lg-footer-payments-per-row-auto {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.lg-footer-payment-row.lg-footer-payments-per-row-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; max-width: 110px; }
.lg-footer-payment-row.lg-footer-payments-per-row-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; max-width: 228px; }
.lg-footer-payment-row.lg-footer-payments-per-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; max-width: 346px; }
.lg-footer-payment-row.lg-footer-payments-per-row-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; max-width: 464px; }
.lg-footer-payment-row.lg-footer-payments-per-row-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; max-width: 582px; }
.lg-footer-payment-row.lg-footer-payments-per-row-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; max-width: 700px; }

.lg-payment-pill,
.lg-footer-payment-row[class*="lg-footer-payments-per-row-"] .lg-payment-pill {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #111111 !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.lg-payment-pill-has-image,
.lg-footer-payment-row[class*="lg-footer-payments-per-row-"] .lg-payment-pill-has-image {
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

.lg-payment-pill img,
.lg-footer-payment-row[class*="lg-footer-payments-per-row-"] .lg-payment-pill img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    filter: none !important;
}

/* Text fallback only, when no uploaded/default icon exists. */
.lg-payment-pill:not(.lg-payment-pill-has-image) {
    min-height: 30px !important;
    padding: 0 10px !important;
    border: 1px solid #DAD9DC !important;
    border-radius: 6px !important;
    background: #F4F4F5 !important;
    color: #111111 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    white-space: nowrap !important;
}

@media (max-width: 480px) {
    .lg-footer-payment-row {
        gap: 6px !important;
        max-width: 100%;
    }

    .lg-footer-payment-row.lg-footer-payments-per-row-5,
    .lg-footer-payment-row.lg-footer-payments-per-row-6 {
        gap: 5px !important;
    }

    .lg-payment-pill:not(.lg-payment-pill-has-image) {
        min-height: 28px !important;
        padding: 0 5px !important;
        font-size: 7.5px !important;
        letter-spacing: 0.02em !important;
    }
}

/* -------------------------------------------------------------------------
   v3.0.30 — Center comparison section on tablet/desktop
   ------------------------------------------------------------------------- */
@media (min-width: 768px) {
    .lg-compare-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .lg-compare-title {
        width: 100% !important;
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        grid-column: auto !important;
    }

    .lg-compare-table-wrap {
        width: min(100%, 760px) !important;
        max-width: 760px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        justify-self: center !important;
        align-self: center !important;
    }
}


/* -------------------------------------------------------------------------
   v3.1.1 — LockGrip Premium Motion Polish Pack
   Fade up • 16px movement • 500ms duration • 80ms stagger • ease-out
   ------------------------------------------------------------------------- */
body.lg-motion-enabled .lg-reveal {
    opacity: 0;
    transform: translate3d(0, var(--lg-motion-distance, 16px), 0);
    transition:
        opacity var(--lg-motion-duration, 500ms) ease-out,
        transform var(--lg-motion-duration, 500ms) ease-out;
    transition-delay: var(--lg-reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.lg-motion-enabled .lg-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.lg-motion-enabled .lg-reveal-card {
    transition-property: opacity, transform, border-color, box-shadow;
}

body.lg-motion-enabled .lg-reveal-image.is-visible {
    transition-duration: calc(var(--lg-motion-duration, 500ms) + 120ms);
}

@media (prefers-reduced-motion: reduce) {
    body.lg-motion-enabled .lg-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        transition-delay: 0ms !important;
    }
}


/* -------------------------------------------------------------------------
   v3.1.2 — Footer visibility safety after Motion Polish Pack
   Keep footer CTA, placeholder/default text, menus, payment icons and copyright
   visible at all times. Footer is intentionally excluded from scroll reveals.
   ------------------------------------------------------------------------- */
.lg-footer,
.lg-footer * {
    visibility: visible;
}

.lg-footer .lg-reveal,
body.lg-motion-enabled .lg-footer .lg-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
}

.lg-footer-cta,
.lg-footer-main,
.lg-footer-bar {
    display: block;
}

.lg-footer-cta-title,
.lg-footer-cta-sub,
.lg-footer-tag,
.lg-footer-heading,
.lg-footer-links a,
.lg-copy,
.lg-footer-mini {
    opacity: 1 !important;
}

.lg-footer-bar {
    background: #050505;
    border-top: 1px solid var(--lg-line);
}

.lg-footer-bar-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lg-copy,
.lg-footer-mini {
    color: var(--lg-text-mute);
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .lg-footer-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}


/* v3.2.23 — product bullet default wording update */
.lg-reviews-sub {
    color: var(--lg-text-soft);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.5;
    margin: -4px 0 18px;
}

.lg-product-secure-line {
    color: var(--lg-text-dim);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.45;
    margin: 14px 0 0;
    text-align: center;
}


/* -------------------------------------------------------------------------
   v3.2.24 — Homepage hero final polish
   - Slightly smaller bottle, moved lower/right
   - Tighter hero text spacing and shorter subcopy width
   ------------------------------------------------------------------------- */
.lg-hero-content {
    max-width: 505px;
}

.lg-hero-title {
    margin-bottom: 12px;
}

.lg-hero-sub {
    max-width: 420px;
    margin-bottom: 18px;
}

@media (max-width: 767px) {
    .lg-hero-title {
        margin-bottom: 10px;
    }

    .lg-hero-sub {
        max-width: 430px;
        margin-bottom: 18px;
    }

    .lg-hero-mobile-bottle {
        height: 222px;
        transform: translate(-22px, 18px) scale(1.0);
        filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.78));
    }
}

@media (max-width: 390px) {
    .lg-hero-mobile-bottle {
        height: 206px;
        transform: translate(-18px, 16px) scale(1.0);
    }
}

@media (min-width: 768px) {
    .lg-hero-bottle {
        height: 86%;
        max-height: 455px;
        transform: translate(14px, 18px);
    }
}

@media (min-width: 1024px) {
    .lg-hero-visual {
        padding-right: 3vw;
    }

    .lg-hero-bottle {
        height: 88%;
        max-height: 490px;
        max-width: min(370px, 100%);
        transform: translate(18px, 22px);
    }
}

body.lg-video-modal-open { overflow: hidden; }


/* -------------------------------------------------------------------------
   v3.2.29 — Footer social links and CTA control polish
   ------------------------------------------------------------------------- */
.lg-footer-social-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0;
}

.lg-footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f4f4f4;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-decoration: none;
    opacity: 0.92;
    transition: color var(--lg-trans), opacity var(--lg-trans), transform var(--lg-trans);
}

.lg-footer-social-link:hover {
    color: var(--lg-orange);
    opacity: 1;
    transform: translateY(-1px);
}

.lg-footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: currentColor;
    flex: 0 0 auto;
}

.lg-footer-social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lg-footer-social-instagram svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lg-footer-social-tiktok svg,
.lg-footer-social-facebook svg {
    fill: currentColor;
}

@media (max-width: 767px) {
    .lg-footer-social-links {
        width: 100%;
        gap: 22px 26px;
    }

    .lg-footer-social-link {
        font-size: 17px;
    }

    .lg-footer-social-icon {
        width: 24px;
        height: 24px;
    }
}

/* -------------------------------------------------------------------------
   30. Hero Customizer Controls
   ------------------------------------------------------------------------- */
.lg-hero--no-orange-highlight::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* -------------------------------------------------------------------------
   31. Homepage FAQ Accordion
   ------------------------------------------------------------------------- */
.lg-home-faq {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #050505 0%, #070707 50%, #050505 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: clamp(62px, 9vw, 112px) 0;
}

.lg-home-faq-inner {
    max-width: 1040px;
}

.lg-home-faq-head {
    text-align: center;
    margin: 0 auto clamp(26px, 4vw, 48px);
    max-width: 820px;
}

.lg-home-faq-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4.8vw, 58px);
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    font-weight: 920;
}

.lg-home-faq-head p {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(255,255,255,0.72);
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.6;
}

.lg-home-faq-list {
    display: grid;
    gap: 18px;
}

.lg-home-faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
        #0b0b0b;
    box-shadow: 0 18px 55px rgba(0,0,0,0.30);
}

.lg-home-faq-item[open] {
    border-color: rgba(255,255,255,0.18);
    background:
        radial-gradient(circle at 92% 18%, rgba(var(--lg-orange-rgb), 0.10), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.020)),
        #0c0c0c;
}

.lg-home-faq-item summary {
    cursor: pointer;
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 18px;
    align-items: center;
    min-height: 92px;
    padding: 22px clamp(20px, 3.4vw, 34px);
    color: #fff;
}

.lg-home-faq-item summary::-webkit-details-marker {
    display: none;
}

.lg-home-faq-question {
    color: #fff;
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.22;
    font-weight: 720;
    letter-spacing: -0.015em;
}

.lg-home-faq-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 999px;
    background: rgba(var(--lg-orange-rgb), 0.92);
    color: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 24px rgba(var(--lg-orange-rgb), 0.14);
    flex: 0 0 auto;
}

.lg-home-faq-toggle::before {
    content: "+";
    display: block;
    color: #090909;
    font-size: 22px;
    line-height: 1;
    font-weight: 860;
    transform: translateY(-1px);
}

.lg-home-faq-item[open] .lg-home-faq-toggle::before {
    content: "–";
    transform: translateY(-2px);
}

.lg-home-faq-answer {
    max-width: 800px;
    padding: 0 clamp(20px, 3.4vw, 34px) clamp(28px, 4vw, 42px);
    color: rgba(255,255,255,0.72);
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.72;
}

.lg-home-faq-answer p {
    margin: 0 0 1.15em;
}

.lg-home-faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .lg-home-faq {
        padding: 54px 0 64px;
    }

    .lg-home-faq-inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .lg-home-faq-head h2 {
        font-size: 30px;
        line-height: 1;
    }

    .lg-home-faq-head p {
        font-size: 17px;
        line-height: 1.65;
        margin-top: 16px;
    }

    .lg-home-faq-list {
        gap: 14px;
    }

    .lg-home-faq-item {
        border-radius: 20px;
    }

    .lg-home-faq-item summary {
        min-height: 76px;
        grid-template-columns: minmax(0, 1fr) 46px;
        gap: 14px;
        padding: 18px 18px;
    }

    .lg-home-faq-question {
        font-size: 18px;
        line-height: 1.28;
        font-weight: 700;
    }

    .lg-home-faq-toggle {
        width: 40px;
        height: 40px;
    }

    .lg-home-faq-toggle::before {
        font-size: 20px;
    }

    .lg-home-faq-answer {
        padding: 0 18px 24px;
        font-size: 16px;
        line-height: 1.68;
    }
}


/* =========================================================================
   v3.2.36 — Samsung / browser appearance lock
   Keeps the main LockGrip site rendering as its designed dark theme.
   Cart and checkout are locked to light mode in woo-system.css.
   ========================================================================= */
:root,
html,
body {
    color-scheme: dark !important;
}

html,
body,
.lg-body,
.lg-site-main {
    background-color: var(--lg-bg, #0a0a0a) !important;
}
