@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --gate-black: #000000;
    --gate-bg: #000000;
    /* Flutter GatePalette.glassPanelColor — black @ 0.22 */
    --gate-panel: rgba(0, 0, 0, 0.22);
    --gate-panel-solid: #0a1510;
    --gate-border: rgba(61, 122, 40, 0.4);
    --gate-border-dim: rgba(26, 61, 26, 0.7);
    --gate-accent: #7aa77a;
    --gate-accent-dim: #2e8b2a;
    --gate-glow: rgba(42, 107, 20, 0.2);
    --gate-text: #e8f5e8;
    --gate-muted: #7aa77a;
    --gate-font: 'Orbitron', 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
    --catalog-bg: var(--gate-bg);
    --catalog-panel: var(--gate-panel-solid);
    --catalog-border: #1f3d2e;
    --catalog-accent: #3d7a28;
    --catalog-text: var(--gate-text);
    --catalog-muted: var(--gate-muted);

    --gate-brand-muted: #7aa77a;
    --gate-logo-muted: #2a6b14;
    --gate-logo-muted-soft: #3d7a28;
    --gate-text-soft: #b8cdb8;
    --gate-button-border: #2a4d2a;
    --gate-input-fill: #0f1a0f;
    --gate-glass-panel: rgba(0, 0, 0, 0.22);
    --gate-glass-border: rgba(61, 122, 40, 0.4);
    /* Flutter productCardDecoration: panel #0A1510 @ 0.82 — but home/PDP glass is 0.22;
       sitewide boxes use glass so cosmic bg shows through like Flutter */
    --gate-card-panel: rgba(0, 0, 0, 0.22);
    --gate-catalog-border: rgba(61, 122, 40, 0.4);
    /* Flutter primaryButtonGradient */
    --gate-cta-1: #2a6b14;
    --gate-cta-2: #1e5210;
    --gate-cta-3: #12380a;
    --gate-cta-border: #3c9018;
    --gate-cta-border-alpha: rgba(60, 144, 24, 0.28);
    --gate-cta-text: #e8f5e8;
    --gate-cta-gradient: linear-gradient(180deg, #2a6b14 0%, #1e5210 50%, #12380a 100%);
}

/* --- Global page: nebula mesh + typography (Orbitron = section-title / Explore What Matters Most) --- */
body.gate-recycling-theme {
    font-family: var(--gate-font) !important;
    color: var(--gate-text) !important;
    -webkit-font-smoothing: antialiased;
    /* Match custom.css tokens so Lexend / Open Sans call sites inherit Orbitron */
    --font-lexend: var(--gate-font);
    --font-open-sans: var(--gate-font);
    --font-family: var(--gate-font);
    /* Force theme tokens away from selected pink/purple palettes */
    --primary-color: #3d7a28 !important;
    --primary-color-onhover: #2a6b14 !important;
    --primary-soft: rgba(122, 167, 122, 0.2) !important;
    --bs-primary: #2a6b14 !important;
    --bs-primary-rgb: 42, 107, 20 !important;
    --bs-link-color: #b8cdb8 !important;
    --bs-link-hover-color: #e8f5e8 !important;
}

body.gate-recycling-theme h1,
body.gate-recycling-theme h2,
body.gate-recycling-theme h3,
body.gate-recycling-theme h4,
body.gate-recycling-theme h5,
body.gate-recycling-theme h6,
body.gate-recycling-theme .section-title,
body.gate-recycling-theme .product-title,
body.gate-recycling-theme p,
body.gate-recycling-theme a:not(.bi):not([class*="fa-"]),
body.gate-recycling-theme li,
body.gate-recycling-theme label,
body.gate-recycling-theme button,
body.gate-recycling-theme input,
body.gate-recycling-theme select,
body.gate-recycling-theme textarea,
body.gate-recycling-theme .btn,
body.gate-recycling-theme .nav-link,
body.gate-recycling-theme .dropdown-item,
body.gate-recycling-theme .form-control,
body.gate-recycling-theme .form-select,
body.gate-recycling-theme .card,
body.gate-recycling-theme .table {
    font-family: var(--gate-font) !important;
}

/* Global dark form controls — kills white Bootstrap-default inputs/selects sitewide
   (checkout, address, filters, reviews, sort). Auth pages use their own more
   specific rules below and continue to win on specificity. */
body.gate-recycling-theme .form-control,
body.gate-recycling-theme .form-select,
body.gate-recycling-theme textarea.form-control,
body.gate-recycling-theme select.form-control {
    background-color: var(--gate-input-fill) !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .form-control::placeholder,
body.gate-recycling-theme .form-select::placeholder {
    color: var(--gate-brand-muted) !important;
    opacity: 0.85;
}

body.gate-recycling-theme .form-control:focus,
body.gate-recycling-theme .form-select:focus {
    background-color: var(--gate-input-fill) !important;
    border-color: rgba(42, 107, 20, 0.45) !important;
    color: var(--gate-text) !important;
    box-shadow: 0 0 0 0.15rem rgba(42, 107, 20, 0.14) !important;
}

body.gate-recycling-theme .form-select option {
    background: var(--gate-panel-solid);
    color: var(--gate-text);
}

body.gate-recycling-theme .form-check-input {
    background-color: var(--gate-input-fill) !important;
    border: 1px solid var(--gate-button-border) !important;
}

body.gate-recycling-theme .form-check-input:checked {
    background-color: var(--gate-logo-muted) !important;
    border-color: var(--gate-cta-border) !important;
}

body.gate-recycling-theme .form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(42, 107, 20, 0.14) !important;
}

body.gate-recycling-theme input:-webkit-autofill,
body.gate-recycling-theme input:-webkit-autofill:hover,
body.gate-recycling-theme input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--gate-input-fill) inset !important;
    -webkit-text-fill-color: var(--gate-text) !important;
    caret-color: var(--gate-text) !important;
}

/* Keep icon fonts intact */
body.gate-recycling-theme i,
body.gate-recycling-theme .bi,
body.gate-recycling-theme [class^="fa-"],
body.gate-recycling-theme [class*=" fa-"],
body.gate-recycling-theme .bootstrap-icons {
    font-family: inherit;
}

body.gate-recycling-theme .bi,
body.gate-recycling-theme [class^="bi-"] {
    font-family: "bootstrap-icons" !important;
}

body.gate-recycling-theme .fa,
body.gate-recycling-theme .fas,
body.gate-recycling-theme .far,
body.gate-recycling-theme .fal,
body.gate-recycling-theme .fab,
body.gate-recycling-theme [class^="fa-"],
body.gate-recycling-theme [class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
}

body.gate-recycling-theme h1,
body.gate-recycling-theme h2,
body.gate-recycling-theme h3,
body.gate-recycling-theme .section-title,
body.gate-recycling-theme .product-title {
    letter-spacing: 0.02em;
}

/* --- Headers: kill white / light navbar --- */
body.gate-recycling-theme .top-nav,
body.gate-recycling-theme .top-nav.bg-white,
body.gate-recycling-theme header,
body.gate-recycling-theme header.search-nav,
body.gate-recycling-theme .search-nav .nav-outer,
body.gate-recycling-theme header .bg-nav,
body.gate-recycling-theme .bg-nav,
body.gate-recycling-theme .nav-outer {
    background: linear-gradient(180deg, var(--gate-panel) 0%, rgba(5, 12, 8, 0.97) 100%) !important;
    border-bottom: 1px solid var(--gate-border-dim) !important;
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(42, 107, 20, 0.12) !important;
}

/* Free delivery strip / section (classic and shared classes) */
body.gate-recycling-theme .freedel-sec {
    background: linear-gradient(90deg, rgba(9, 28, 16, 0.95), rgba(16, 45, 25, 0.9), rgba(9, 28, 16, 0.95)) !important;
    border-top: 1px solid var(--gate-border-dim) !important;
    border-bottom: 1px solid var(--gate-border-dim) !important;
    box-shadow: inset 0 0 20px rgba(42, 107, 20, 0.08);
}

body.gate-recycling-theme .freedel-sec p,
body.gate-recycling-theme .freedel-sec span,
body.gate-recycling-theme .freedel-sec a {
    color: var(--gate-accent) !important;
    text-shadow: 0 0 10px rgba(42, 107, 20, 0.28);
}

body.gate-recycling-theme .navbar,
body.gate-recycling-theme .navbar-light,
body.gate-recycling-theme .navbar.bg-white {
    background: transparent !important;
}

body.gate-recycling-theme .navbar-light .navbar-nav .nav-link,
body.gate-recycling-theme .navbar-light .navbar-brand,
body.gate-recycling-theme .nav-link.font-color,
body.gate-recycling-theme .font-color {
    color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme .navbar-light .nav-link:hover,
body.gate-recycling-theme .nav-link.font-color:hover {
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .navbar-toggler {
    border-color: var(--gate-border) !important;
    box-shadow: 0 0 10px rgba(42, 107, 20, 0.2);
}

body.gate-recycling-theme .navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(60deg) brightness(1.1);
}

body.gate-recycling-theme .brand-logo-link,
body.gate-recycling-theme .company-logo img,
body.gate-recycling-theme .footer-logo img {
    filter: drop-shadow(0 0 8px var(--gate-glow)) drop-shadow(0 0 2px rgba(42, 107, 20, 0.8));
}

/* Main category pills */
body.gate-recycling-theme .nav-category {
    background: rgba(8, 24, 14, 0.6) !important;
    border: 1px solid var(--gate-border-dim) !important;
    border-radius: 10px !important;
}

body.gate-recycling-theme .nav-category a,
body.gate-recycling-theme .nav-category span {
    color: var(--gate-text-soft) !important; /* Gate mist #B8CDB8 */
}

body.gate-recycling-theme .nav-category:hover {
    background: rgba(20, 60, 35, 0.5) !important;
    border-color: var(--gate-border) !important;
    box-shadow: 0 0 18px rgba(42, 107, 20, 0.15);
}

body.gate-recycling-theme .nav-category:hover a,
body.gate-recycling-theme .nav-category:hover span {
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .active-nav {
    background: linear-gradient(135deg, rgba(45, 120, 55, 0.55), rgba(20, 50, 28, 0.9)) !important;
    color: var(--gate-accent) !important;
    border: 1px solid var(--gate-accent) !important;
    box-shadow:
        0 0 20px var(--gate-glow),
        inset 0 0 20px rgba(42, 107, 20, 0.08) !important;
}

body.gate-recycling-theme .active-nav a,
body.gate-recycling-theme .active-nav span {
    color: var(--gate-accent) !important;
    text-shadow: 0 0 10px var(--gate-glow);
}

/* Top icons (favorites / profile circles) */
body.gate-recycling-theme .shopingicon {
    background: rgba(8, 22, 14, 0.85) !important;
    border: 1px solid var(--gate-border-dim) !important;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

body.gate-recycling-theme .shopingicon:hover {
    border-color: var(--gate-accent) !important;
    box-shadow: 0 0 16px var(--gate-glow);
}

/* Force masked ionicons to gate accent (custom.css uses var(--primary-color)) */
body.gate-recycling-theme .ionicon-bag-handle-outline,
body.gate-recycling-theme .ionicon-heart,
body.gate-recycling-theme .ionicon-heart-outline,
body.gate-recycling-theme .ionicon-eye-outline,
body.gate-recycling-theme .ionicon-person,
body.gate-recycling-theme .ionicon-compare-outline,
body.gate-recycling-theme .ionicon-search-outline {
    color: var(--gate-accent) !important;
}

/* Cart / wishlist count badges — custom.css .count-box used theme primary (purple) */
body.gate-recycling-theme .count-box.badge,
body.gate-recycling-theme .count-box.badge-danger,
body.gate-recycling-theme span.count-box {
    background: linear-gradient(145deg, rgba(8, 32, 18, 0.98), rgba(18, 55, 32, 0.92)) !important;
    color: var(--gate-accent) !important;
    border: 1px solid var(--gate-border) !important;
    box-shadow:
        0 0 12px rgba(42, 107, 20, 0.35),
        inset 0 0 10px rgba(42, 107, 20, 0.06) !important;
    font-weight: 700 !important;
    min-width: 1.1rem;
    text-align: center;
}

body.gate-recycling-theme .count-box.badge:empty,
body.gate-recycling-theme span.count-box:empty {
    display: none !important;
}

body.gate-recycling-theme .price-view-credits-count {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

body.gate-recycling-theme .price-view-credits-count ion-icon {
    font-size: 13px !important;
    color: var(--gate-accent) !important;
    line-height: 1;
    display: inline-block;
}

body.gate-recycling-theme .price-view-credits-count i.fa {
    font-size: 11px !important;
    color: var(--gate-accent) !important;
    line-height: 1;
}

body.gate-recycling-theme .views-eye-icon {
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px !important;
    text-align: center;
    font-size: 12px !important;
    color: var(--gate-accent) !important;
}

/* Product card favorite — Flutter GatePalette.muted hearts */
body.gate-recycling-theme .product-card .add-to-fav-btn .heart-outline,
body.gate-recycling-theme .product-card .add-to-fav-btn .heart,
body.gate-recycling-theme .add-to-fav-btn ion-icon.heart-outline,
body.gate-recycling-theme .add-to-fav-btn ion-icon.heart,
body.gate-recycling-theme .add-to-fav-btn .add-to-fav-visual-svg,
body.gate-recycling-theme .add-to-fav-visual-svg,
body.gate-recycling-theme .wishlist-product-container .add-to-fav-visual-svg {
    color: var(--gate-brand-muted) !important;
    fill: currentColor;
    opacity: 0.95;
    filter: none !important;
}

body.gate-recycling-theme .product-card .add-to-fav-btn .heart,
body.gate-recycling-theme .add-to-fav-btn ion-icon.heart,
body.gate-recycling-theme .add-to-fav-visual-svg.text-danger {
    color: var(--gate-brand-muted) !important;
    opacity: 1;
}

body.gate-recycling-theme .add-to-fav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

body.gate-recycling-theme .add-to-fav-btn:hover .add-to-fav-visual-svg,
body.gate-recycling-theme .wishlist-product-container .add-to-fav-btn:hover .add-to-fav-visual-svg {
    transform: scale(1.06);
    filter: none !important;
}

body.gate-recycling-theme .add-to-fav-btn i.add-to-fav-visual.text-secondary {
    color: var(--gate-brand-muted) !important;
}

/* Hover icon stack — dark glass, not white Bootstrap pill */
body.gate-recycling-theme .product-icon-onhover {
    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid var(--gate-glass-border) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

body.gate-recycling-theme .product-icon-onhover ion-icon,
body.gate-recycling-theme .product-icon-onhover .ion-icon-hover {
    color: var(--gate-brand-muted) !important;
}

@media (max-width: 1199px) {
    body.gate-recycling-theme .count-box.badge,
    body.gate-recycling-theme span.count-box {
        font-size: 8px !important;
        top: -8px !important;
    }
}

body.gate-recycling-theme .bghover:hover {
    color: var(--gate-accent) !important;
}

body.gate-recycling-theme .dropdown-menu {
    background: var(--gate-panel-solid) !important;
    border: 1px solid var(--gate-border) !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(42, 107, 20, 0.12);
}

body.gate-recycling-theme .dropdown-menu a,
body.gate-recycling-theme .dropdown-item {
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .deshboard-onhover,
body.gate-recycling-theme .deshboard-onhover ul li {
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .deshboard-onhover ul li:hover {
    color: var(--gate-accent) !important;
}

body.gate-recycling-theme .dropdown-item:hover,
body.gate-recycling-theme .dropdown-menu li:hover {
    background: rgba(42, 107, 20, 0.12) !important;
    color: var(--gate-accent) !important;
}

body.gate-recycling-theme .dropdown-toggle,
body.gate-recycling-theme .font-weight-bold {
    color: var(--gate-accent) !important;
}

/* Search bars */
body.gate-recycling-theme .searchcontainer {
    background: rgba(6, 18, 12, 0.85) !important;
    border: 1px solid var(--gate-border-dim) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
}

body.gate-recycling-theme .searchbar,
body.gate-recycling-theme .searchcontainer .form-control,
body.gate-recycling-theme .searchcontainer select {
    background: rgba(4, 12, 8, 0.6) !important;
    color: var(--gate-text) !important;
    border: 1px solid var(--gate-border-dim) !important;
}

body.gate-recycling-theme .searchbar::placeholder {
    color: var(--gate-muted);
}

/* Select2 search field in header (generated DOM) */
body.gate-recycling-theme .searchcontainer .select2-container,
body.gate-recycling-theme .searchcontainer .select2-selection,
body.gate-recycling-theme .searchcontainer .select2-selection--single,
body.gate-recycling-theme .searchcontainer .select2-selection--multiple,
body.gate-recycling-theme .searchcontainer .select2-search__field {
    background: rgba(4, 12, 8, 0.6) !important;
    color: var(--gate-text) !important;
    border-color: var(--gate-border-dim) !important;
}

/* Select2 can render outside .searchcontainer (dropdown parent is body). */
body.gate-recycling-theme .select2-container--default .select2-selection--single,
body.gate-recycling-theme .select2-container--default .select2-selection--multiple,
body.gate-recycling-theme .select2-container--default.select2-container--focus .select2-selection--single,
body.gate-recycling-theme .select2-container--default.select2-container--focus .select2-selection--multiple {
    background: rgba(4, 12, 8, 0.86) !important;
    border: 1px solid var(--gate-border) !important;
    color: var(--gate-text) !important;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 0 8px rgba(42, 107, 20, 0.15);
}

body.gate-recycling-theme .select2-container--default .select2-selection--single .select2-selection__rendered,
body.gate-recycling-theme .select2-container--default .select2-selection--multiple .select2-selection__rendered,
body.gate-recycling-theme .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--gate-accent) transparent transparent transparent !important;
}

body.gate-recycling-theme .select2-container--open .select2-dropdown {
    background: var(--gate-panel-solid) !important;
    color: var(--gate-text) !important;
    border: 1px solid var(--gate-border) !important;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.45), 0 0 18px rgba(42, 107, 20, 0.12);
}

/* Search dropdown must stack above sticky category nav (nav-outer) */
body.gate-recycling-theme .top-nav {
    position: relative;
    z-index: 1200;
    overflow: visible !important;
}

body.gate-recycling-theme header.search-nav.d-none.d-xl-block,
body.gate-recycling-theme header.search-nav.d-none.d-xl-block .nav-outer {
    z-index: 1000 !important;
}

body.gate-recycling-theme .searchcontainer {
    position: relative;
    z-index: 1201;
    overflow: visible !important;
}

body.gate-recycling-theme .searchcontainer .select2-container {
    z-index: 1202;
}

body.gate-recycling-theme .searchcontainer .search-dropdown,
body.gate-recycling-theme .select2-dropdown.search-dropdown {
    z-index: 1300 !important;
}

/* Body-mounted Select2 dropdown — let library set top/left; only theme the panel */
body.gate-recycling-theme .select2-dropdown.search-dropdown {
    position: fixed !important;
    margin-top: 0.25rem;
    border-radius: 12px !important;
    overflow: hidden;
}

body.gate-recycling-theme .searchcontainer .search-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 0.35rem;
}

body.gate-recycling-theme .select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(4, 12, 8, 0.92) !important;
    border: 1px solid var(--gate-border-dim) !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .select2-results__option {
    color: var(--gate-text) !important;
    background: transparent !important;
}

body.gate-recycling-theme .select2-results__option--highlighted[aria-selected] {
    background: rgba(42, 107, 20, 0.2) !important;
    color: var(--gate-accent) !important;
}

body.gate-recycling-theme .searchicon {
    background: linear-gradient(135deg, #2a7a32, var(--gate-accent)) !important;
    border-color: var(--gate-accent) !important;
    color: #041208 !important;
    box-shadow: 0 0 14px var(--gate-glow);
}

/* Promo strip */
body.gate-recycling-theme .promo-nav {
    margin-top: 27px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.gate-recycling-theme .promo-nav-text {
    color: var(--gate-brand-muted) !important;
    font-family: var(--gate-font) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Mobile sticky search row */
body.gate-recycling-theme .container-fluid.p-3.d-flex.d-xl-none {
    border-bottom: 1px solid var(--gate-border-dim) !important;
}

/* --- Footer (luxury Gate cosmic) --- */
body.gate-recycling-theme footer.gate-site-footer,
body.gate-recycling-theme footer.gate-site-footer .container-fluid {
    background: linear-gradient(180deg, rgba(4, 12, 8, 0.55) 0%, rgba(2, 8, 5, 0.92) 100%) !important;
    border-top: 1px solid var(--gate-border) !important;
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.5);
}

body.gate-recycling-theme footer.gate-site-footer .gate-footer-inner {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
}

body.gate-recycling-theme footer.gate-site-footer h5 {
    color: var(--gate-text-soft) !important;
    font-family: var(--gate-font) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

body.gate-recycling-theme footer.gate-site-footer p,
body.gate-recycling-theme footer.gate-site-footer a,
body.gate-recycling-theme footer.gate-site-footer .text-reset,
body.gate-recycling-theme footer.gate-site-footer .footer-text-section p {
    color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme footer.gate-site-footer a:hover,
body.gate-recycling-theme footer.gate-site-footer .footer-text-section a:hover p,
body.gate-recycling-theme footer.gate-site-footer .footer-text-section p:hover {
    color: var(--gate-accent) !important;
}

/* Contact strip */
body.gate-recycling-theme .gate-footer-contact {
    padding-bottom: 2rem;
    margin-bottom: 2.25rem;
    border-bottom: 1px solid var(--gate-border-dim);
}

body.gate-recycling-theme .gate-footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.gate-recycling-theme .gate-footer-contact-item,
body.gate-recycling-theme .gate-footer-contact-link {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-decoration: none !important;
    max-width: 22rem;
}

body.gate-recycling-theme .gate-footer-contact-item > i,
body.gate-recycling-theme .gate-footer-contact-link > i {
    flex-shrink: 0;
    width: 1.35rem;
    margin-top: 0.15rem;
    font-size: 1.15rem !important;
    color: var(--gate-brand-muted) !important;
    text-align: center;
}

body.gate-recycling-theme .gate-footer-contact-item h5,
body.gate-recycling-theme .gate-footer-contact-link h5 {
    margin-bottom: 0.35rem;
}

body.gate-recycling-theme .gate-footer-contact-item p,
body.gate-recycling-theme .gate-footer-contact-link p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme .gate-footer-contact-link:hover > i,
body.gate-recycling-theme .gate-footer-contact-link:hover p {
    color: var(--gate-accent) !important;
}

/* Main: brand left + nav columns right */
body.gate-recycling-theme .gate-footer-main {
    align-items: center;
    overflow: visible;
}

body.gate-recycling-theme .footer-icons-section {
    border-right: 1px solid var(--gate-border-dim) !important;
    display: flex;
    align-items: center;
    padding-right: 2rem;
    padding-bottom: 0 !important;
}

body.gate-recycling-theme .gate-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
    width: 100%;
    max-width: 280px;
}

body.gate-recycling-theme .footer-logo {
    width: auto !important;
    height: auto !important;
    max-width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

body.gate-recycling-theme .footer-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 168px;
    object-fit: contain;
}

/* Social cluster: equal hit targets, even spacing, under brand */
body.gate-recycling-theme .footer-social-links {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start !important;
    gap: 0.65rem !important;
    width: auto !important;
    max-width: 100%;
    margin: 0 !important;
    padding: 0;
    row-gap: 0.65rem;
}

body.gate-recycling-theme footer.gate-site-footer .footer-social-link {
    box-sizing: border-box;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    margin: 0;
    padding: 0;
    border: 1px solid var(--gate-border-dim);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    color: var(--gate-text-soft) !important;
    text-decoration: none !important;
    line-height: 1;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body.gate-recycling-theme footer.gate-site-footer .footer-social-link:hover {
    color: var(--gate-accent) !important;
    border-color: var(--gate-accent);
    background: rgba(42, 107, 20, 0.18);
    filter: none;
    transform: translateY(-1px);
}

body.gate-recycling-theme .footer-social-icon {
    font-size: 0.95rem !important;
    line-height: 1 !important;
    width: 1em;
    text-align: center;
}

body.gate-recycling-theme .footer-text-section {
    padding-top: 0 !important;
}

body.gate-recycling-theme .footer-text-section .gate-footer-nav h5 {
    margin-bottom: 1rem;
}

body.gate-recycling-theme .footer-text-section p {
    font-size: 0.9rem !important;
    line-height: 2 !important;
    letter-spacing: 0.02em;
}

body.gate-recycling-theme .copyright-section {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

@media (max-width: 991px) {
    body.gate-recycling-theme .footer-icons-section {
        border-right: none !important;
        border-bottom: 1px solid var(--gate-border-dim) !important;
        padding-right: 0;
        padding-bottom: 2rem !important;
        margin-bottom: 0.5rem;
        justify-content: center;
    }

    body.gate-recycling-theme .gate-footer-brand {
        align-items: center;
        max-width: none;
    }

    body.gate-recycling-theme .footer-logo {
        justify-content: center;
        margin: 0 auto;
    }

    body.gate-recycling-theme .footer-social-links {
        justify-content: center !important;
    }

    body.gate-recycling-theme .footer-text-section {
        padding-top: 2rem !important;
    }
}

@media (max-width: 767px) {
    body.gate-recycling-theme footer.gate-site-footer .gate-footer-inner {
        padding-top: 2.25rem;
        padding-bottom: 2.5rem;
    }

    body.gate-recycling-theme .gate-footer-contact-list {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    body.gate-recycling-theme .gate-footer-contact-item,
    body.gate-recycling-theme .gate-footer-contact-link {
        max-width: none;
    }

    body.gate-recycling-theme .footer-logo {
        max-width: 180px;
    }

    body.gate-recycling-theme .footer-logo img {
        max-height: 140px;
    }

    body.gate-recycling-theme .footer-social-links {
        justify-content: center !important;
        gap: 0.55rem !important;
    }

    body.gate-recycling-theme footer.gate-site-footer .footer-social-link {
        width: 2.35rem;
        height: 2.35rem;
        flex-basis: 2.35rem;
    }
}

/* My Account side navigation (override dashboard_v2 blue/pink palette) */
body.gate-recycling-theme .myaccount-navigation {
    background: rgba(6, 16, 11, 0.92) !important;
    border: 1px solid var(--gate-border-dim) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35), inset 0 0 16px rgba(42, 107, 20, 0.06) !important;
}

body.gate-recycling-theme .myaccount-navigation li {
    color: var(--gate-muted) !important;
}

body.gate-recycling-theme .myaccount-navigation li a,
body.gate-recycling-theme .myaccount-navigation li i {
    color: inherit !important;
}

body.gate-recycling-theme .myaccount-navigation li:hover:not(.myaccount-navigation-link-selected) {
    background: rgba(42, 107, 20, 0.08) !important;
    color: var(--gate-accent) !important;
    transform: translateX(5px);
}

body.gate-recycling-theme .myaccount-navigation-link-selected,
body.gate-recycling-theme li.myaccount-navigation-link-selected {
    background: linear-gradient(135deg, rgba(40, 120, 50, 0.95), rgba(18, 50, 24, 0.98)) !important;
    color: var(--gate-accent) !important;
    border: 1px solid var(--gate-accent) !important;
    border-radius: 12px !important;
    box-shadow: 0 0 14px rgba(42, 107, 20, 0.3), inset 0 0 14px rgba(42, 107, 20, 0.12) !important;
}

body.gate-recycling-theme .myaccount-navigation-link-selected a,
body.gate-recycling-theme .myaccount-navigation-link-selected i {
    color: var(--gate-accent) !important;
}

/* Cards / listing (rest of catalog) */
body.gate-recycling-theme .card,
body.gate-recycling-theme .Product-Detail-card,
body.gate-recycling-theme .filter-section,
body.gate-recycling-theme .specification,
body.gate-recycling-theme .item-detail,
body.gate-recycling-theme .delivery-service {
    background: var(--catalog-panel) !important;
    border: 1px solid var(--catalog-border) !important;
    box-shadow: 0 0 0 1px rgba(116, 255, 106, 0.08), 0 0 22px rgba(116, 255, 106, 0.08);
}

body.gate-recycling-theme .card-title,
body.gate-recycling-theme h1,
body.gate-recycling-theme h2,
body.gate-recycling-theme h3,
body.gate-recycling-theme h4,
body.gate-recycling-theme h5,
body.gate-recycling-theme h6 {
    color: #e8f5e8 !important;
}

body.gate-recycling-theme a,
body.gate-recycling-theme .nav-link,
body.gate-recycling-theme .breadcrumb-item a {
    color: #b8cdb8;
}

/* Unified Gate CTA — same deep logo-green metal gradient as Lots buttons / Flutter primaryButtonGradient */
body.gate-recycling-theme .btn-primary,
body.gate-recycling-theme .add-in-cart-btn,
body.gate-recycling-theme .submit-btn,
body.gate-recycling-theme .apply-btn,
body.gate-recycling-theme .add-btn,
body.gate-recycling-theme .checkout-btn,
body.gate-recycling-theme .view-cart-btn {
    background: var(--gate-cta-gradient) !important;
    border: 1px solid var(--gate-cta-border) !important;
    color: var(--gate-cta-text) !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: filter 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

body.gate-recycling-theme .btn-primary:hover,
body.gate-recycling-theme .add-in-cart-btn:hover,
body.gate-recycling-theme .submit-btn:hover,
body.gate-recycling-theme .apply-btn:hover,
body.gate-recycling-theme .add-btn:hover,
body.gate-recycling-theme .checkout-btn:hover,
body.gate-recycling-theme .view-cart-btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.48), 0 0 16px rgba(42, 107, 20, 0.18);
    color: var(--gate-cta-text) !important;
}

body.gate-recycling-theme .btn-primary:active,
body.gate-recycling-theme .add-in-cart-btn:active,
body.gate-recycling-theme .submit-btn:active,
body.gate-recycling-theme .apply-btn:active,
body.gate-recycling-theme .add-btn:active,
body.gate-recycling-theme .checkout-btn:active {
    filter: brightness(0.94);
}

/* Bootstrap utility colors that still appear pink in places */
body.gate-recycling-theme .text-primary,
body.gate-recycling-theme .link-primary,
body.gate-recycling-theme .btn-link {
    color: var(--gate-brand-muted) !important;
}

body.gate-recycling-theme .bg-primary,
body.gate-recycling-theme .badge-primary,
body.gate-recycling-theme .btn-outline-primary:hover,
body.gate-recycling-theme .btn-check:checked + .btn-outline-primary {
    background: var(--gate-cta-gradient) !important;
    border-color: var(--gate-cta-border) !important;
    color: var(--gate-cta-text) !important;
}

body.gate-recycling-theme .btn-outline-primary {
    color: var(--gate-brand-muted) !important;
    border-color: var(--gate-button-border) !important;
}

body.gate-recycling-theme .card-price,
body.gate-recycling-theme .text-success,
body.gate-recycling-theme .product-discount-label {
    color: var(--catalog-accent) !important;
}

body.gate-recycling-theme .catalog-analysis-snippet small,
body.gate-recycling-theme p,
body.gate-recycling-theme small,
body.gate-recycling-theme td,
body.gate-recycling-theme span {
    color: var(--catalog-text);
}

body.gate-recycling-theme .text-muted,
body.gate-recycling-theme .card-text {
    color: var(--catalog-muted) !important;
}

/* Catalog-only UX: hide legacy ecommerce entry points */
body.gate-recycling-theme .compare,
body.gate-recycling-theme .shuffle-box,
body.gate-recycling-theme .buy_now,
body.gate-recycling-theme .cart-count,
body.gate-recycling-theme [title="Cart"],
body.gate-recycling-theme [title="compare"],
body.gate-recycling-theme a[href*="compare"],
body.gate-recycling-theme a[href*="cart"] {
    display: none !important;
}

/* Scroll-to-top progress button */
body.gate-recycling-theme .progress-wrap {
    background: linear-gradient(145deg, rgba(6, 20, 12, 0.95), rgba(14, 42, 24, 0.96)) !important;
    border: 1px solid var(--gate-border) !important;
    box-shadow:
        inset 0 0 0 1px rgba(42, 107, 20, 0.18),
        0 0 16px rgba(42, 107, 20, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.45) !important;
}

body.gate-recycling-theme .progress-wrap::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 12px !important;
    height: 12px !important;
    margin-left: -6px !important;
    margin-top: -4px !important;
    border-top: 3px solid var(--gate-accent) !important;
    border-left: 3px solid var(--gate-accent) !important;
    transform: rotate(45deg) !important;
    border-radius: 2px !important;
    box-sizing: border-box !important;
    filter: drop-shadow(0 0 8px rgba(42, 107, 20, 0.65));
}

body.gate-recycling-theme .progress-wrap::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 12px !important;
    height: 12px !important;
    margin-left: -6px !important;
    margin-top: -4px !important;
    border-top: 3px solid rgba(154, 255, 140, 0.95) !important;
    border-left: 3px solid rgba(154, 255, 140, 0.95) !important;
    transform: rotate(45deg) scale(1.06) !important;
    border-radius: 2px !important;
    box-sizing: border-box !important;
    opacity: 0.35 !important;
    filter: blur(1px);
}

body.gate-recycling-theme .progress-wrap svg.progress-circle path {
    stroke: rgba(42, 107, 20, 0.75) !important;
}

body.gate-recycling-theme .progress-wrap:hover {
    box-shadow:
        inset 0 0 0 1px rgba(42, 107, 20, 0.28),
        0 0 22px rgba(42, 107, 20, 0.34),
        0 8px 24px rgba(0, 0, 0, 0.55) !important;
}

/* Subcategory links on product listing (e.g. /products/category/electronics) */
body.gate-recycling-theme .subcategory-gem-section .subcategory-gem-link {
    color: inherit;
}

body.gate-recycling-theme .subcategory-gem-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--gate-font);
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.25;
    color: var(--gate-cta-text);
    text-align: center;
    border: 1px solid var(--gate-cta-border);
    box-sizing: border-box;
    background: var(--gate-cta-gradient);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

body.gate-recycling-theme .subcategory-gem-link:hover .subcategory-gem-btn,
body.gate-recycling-theme .subcategory-gem-link:focus-visible .subcategory-gem-btn {
    transform: translateY(-2px);
    filter: brightness(1.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 26px rgba(0, 0, 0, 0.48), 0 0 16px rgba(42, 107, 20, 0.16);
}

body.gate-recycling-theme .subcategory-gem-link:focus-visible {
    outline: none;
}

body.gate-recycling-theme .subcategory-gem-link:focus-visible .subcategory-gem-btn {
    outline: 2px solid rgba(160, 255, 200, 0.95);
    outline-offset: 3px;
}

/* Pagination theme override (catalog-neon is loaded in modern include-css) */
body.gate-recycling-theme .pagination .page-item .page-link,
body.gate-recycling-theme .page-link,
body.gate-recycling-theme .page-link:visited,
body.gate-recycling-theme .fixed-table-pagination .pagination .page-link,
body.gate-recycling-theme .fixed-table-pagination .pagination-info,
body.gate-recycling-theme .fixed-table-pagination .pagination-detail {
    color: var(--gate-text, #e4f7e8) !important;
}

body.gate-recycling-theme .pagination .page-item .page-link,
body.gate-recycling-theme .fixed-table-pagination .pagination .page-link {
    background: linear-gradient(135deg, rgba(8, 26, 16, 0.96), rgba(12, 36, 22, 0.9)) !important;
    border: 1px solid var(--gate-border-dim, rgba(64, 120, 80, 0.45)) !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), inset 0 0 10px rgba(42, 107, 20, 0.08);
}

body.gate-recycling-theme .pagination .page-item .page-link:hover,
body.gate-recycling-theme .fixed-table-pagination .pagination .page-link:hover {
    color: var(--gate-accent, #7aa77a) !important;
    border-color: var(--gate-border, rgba(116, 255, 106, 0.35)) !important;
    background: linear-gradient(135deg, rgba(12, 38, 22, 0.98), rgba(18, 52, 30, 0.92)) !important;
    box-shadow: 0 0 12px rgba(42, 107, 20, 0.22), inset 0 0 12px rgba(42, 107, 20, 0.12);
}

body.gate-recycling-theme .pagination .page-item.active .page-link,
body.gate-recycling-theme .fixed-table-pagination .pagination .page-item.active .page-link {
    color: var(--gate-cta-text) !important;
    border-color: var(--gate-cta-border) !important;
    background: var(--gate-cta-gradient) !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.gate-recycling-theme .pagination .page-item.disabled .page-link,
body.gate-recycling-theme .fixed-table-pagination .pagination .page-item.disabled .page-link {
    color: rgba(143, 179, 154, 0.65) !important;
    border-color: rgba(64, 120, 80, 0.25) !important;
    background: rgba(8, 22, 14, 0.6) !important;
}

body.gate-recycling-theme .pagination .page-item .page-link:focus,
body.gate-recycling-theme .fixed-table-pagination .pagination .page-link:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(42, 107, 20, 0.2) !important;
}

/* Gate SweetAlert modals (logout / confirms) — Flutter glass; NOT toasts */
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) {
    background: var(--gate-card-panel) !important;
    background-color: var(--gate-card-panel) !important;
    background-image: none !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gate-catalog-border) !important;
    border-radius: 12px !important;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
    color: var(--gate-text) !important;
    font-family: var(--gate-font) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-title.gate-swal-title {
    color: var(--gate-text) !important;
    font-family: var(--gate-font) !important;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-html-container.gate-swal-text {
    color: var(--gate-text-soft) !important;
    font-family: var(--gate-font) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-icon.swal2-warning {
    border-color: rgba(61, 122, 40, 0.55) !important;
    color: var(--gate-logo-muted-soft) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-actions {
    gap: 0.5rem;
    margin-top: 1.25rem !important;
}

/* buttonsStyling:false → no .swal2-styled; target customClass names directly */
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-confirm,
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-cancel {
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    padding: 0 1.25rem !important;
    border-radius: 10px !important;
    font-family: var(--gate-font) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.3px !important;
    line-height: 1 !important;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
    cursor: pointer;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-confirm {
    background: var(--gate-cta-gradient) !important;
    background-color: var(--gate-cta-2) !important;
    background-image: var(--gate-cta-gradient) !important;
    border: 1px solid var(--gate-cta-border-alpha) !important;
    color: var(--gate-cta-text) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-confirm:hover {
    background: linear-gradient(180deg, #215510 0%, #17400c 50%, #0c2806 100%) !important;
    background-image: linear-gradient(180deg, #215510 0%, #17400c 50%, #0c2806 100%) !important;
    border-color: rgba(60, 144, 24, 0.4) !important;
    color: var(--gate-cta-text) !important;
}

/* Flutter GateTheme.secondaryButtonDecoration — transparent + #2A4D2A outline */
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-cancel {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-cancel:hover {
    background: rgba(0, 0, 0, 0.18) !important;
    border-color: rgba(61, 122, 40, 0.55) !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-hint {
    color: var(--gate-text-soft) !important;
    margin: 0;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-input.gate-swal-input {
    background: var(--gate-input-fill) !important;
    border: 1px solid var(--gate-button-border) !important;
    border-radius: 10px !important;
    color: var(--gate-text) !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25) !important;
    font-family: var(--gate-font) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-input.gate-swal-input:focus {
    border-color: rgba(42, 107, 20, 0.55) !important;
    box-shadow: 0 0 0 2px rgba(42, 107, 20, 0.18) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-input-label.gate-swal-input-label {
    color: var(--gate-text-soft) !important;
    font-weight: 600;
    font-family: var(--gate-font) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-validation-message.gate-swal-validation {
    background: rgba(120, 30, 30, 0.55) !important;
    color: #ffb8b8 !important;
    border: 1px solid rgba(255, 120, 120, 0.35) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-close {
    color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-close:hover {
    color: var(--gate-text) !important;
}

/* Modal backdrop only — never toast containers */
body.gate-recycling-theme .swal2-container.swal2-backdrop-show:not(:has(.swal2-toast)) {
    background: rgba(0, 0, 0, 0.55) !important;
}

/* Toast messages — solid dark #0d140d; keep glass off toasts */
body.gate-recycling-theme.swal2-toast-shown .swal2-container,
body.gate-recycling-theme .swal2-container:has(.swal2-toast) {
    background: transparent !important;
    pointer-events: none !important;
}

body.gate-recycling-theme .swal2-popup.swal2-toast,
body.gate-recycling-theme .swal2-toast {
    background: #0d140d !important;
    background-color: #0d140d !important;
    background-image: none !important;
    border: 1px solid rgba(61, 122, 40, 0.45) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: #e8f5e8 !important;
    pointer-events: all !important;
}

body.gate-recycling-theme .swal2-popup.swal2-toast .swal2-title,
body.gate-recycling-theme .swal2-toast .swal2-title,
body.gate-recycling-theme .swal2-popup.swal2-toast .swal2-html-container {
    color: #e8f5e8 !important;
}

body.gate-recycling-theme .swal2-popup.swal2-toast .swal2-timer-progress-bar {
    background: rgba(122, 167, 122, 0.55) !important;
}

/* Home page multilingual news ticker */
.home-news-ticker {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(132, 255, 129, 0.32);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(8, 24, 14, 0.95), rgba(10, 31, 18, 0.9));
    padding: 10px 14px;
    overflow: hidden;
}

.home-news-ticker__label {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b8cdb8;
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(86, 235, 80, 0.14);
}

.home-news-ticker__track-wrap {
    min-width: 0;
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.home-news-ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: home-news-ticker-scroll 28s linear infinite;
    will-change: transform;
}

.home-news-ticker:hover .home-news-ticker__track {
    animation-play-state: paused;
}

.home-news-ticker__item {
    color: #efffeb;
    font-size: 14px;
    position: relative;
    padding-right: 24px;
}

.home-news-ticker__item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(128, 255, 99, 0.8);
    box-shadow: 0 0 10px rgba(128, 255, 99, 0.7);
}

@keyframes home-news-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .home-news-ticker {
        gap: 10px;
        padding: 8px 10px;
    }

    .home-news-ticker__label {
        font-size: 10px;
        padding: 4px 6px;
    }

    .home-news-ticker__item {
        font-size: 12px;
    }
}

/* Product details Favorite / Compare / Share — icon-forward, no boxed chrome */
body.gate-recycling-theme .compare-share-btn,
body.gate-recycling-theme .gate-pdp-meta-actions-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.35rem 0 0.5rem !important;
    margin: 0.35rem 0 0.25rem !important;
}

body.gate-recycling-theme .compare-share-btn ul,
body.gate-recycling-theme .gate-pdp-meta-actions {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.gate-recycling-theme .compare-share-btn li,
body.gate-recycling-theme .gate-pdp-meta-actions > li {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

body.gate-recycling-theme .compare-share-btn .quick_view_share .jssocials-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(61, 122, 40, 0.35);
    transition: border-color 0.15s ease, color 0.15s ease;
}

body.gate-recycling-theme .compare-share-btn .quick_view_share .jssocials-share-link:hover {
    border-color: rgba(116, 255, 106, 0.45);
}

body.gate-recycling-theme .compare-share-btn .quick_view_share .jssocials-share-logo {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(72%) sepia(18%) saturate(520%) hue-rotate(62deg) brightness(95%) contrast(90%);
}

/* Converter metadata + PDP key-value sheets (premium glass dashboard) */
body.gate-recycling-theme .converter-meta-card.gate-pdp-kv-card,
body.gate-recycling-theme .gate-pdp-kv-card {
    border-radius: 16px;
    border: 1px solid rgba(42, 107, 20, 0.22);
    background:
        linear-gradient(155deg, rgba(14, 32, 22, 0.88) 0%, rgba(6, 18, 11, 0.92) 100%);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 24px rgba(42, 107, 20, 0.08);
    overflow: hidden;
}

body.gate-recycling-theme .gate-pdp-kv-card--sidebar {
    padding: 0;
}

body.gate-recycling-theme .gate-pdp-kv-card--tab {
    padding: 0;
}

body.gate-recycling-theme .gate-pdp-kv-wrap {
    padding: 4px 0 2px;
}

body.gate-recycling-theme .gate-pdp-kv-sheet {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 4px 4px 8px;
}

/* Flutter ProductConverterKvSheet: label left / value right on one row (incl. mobile) */
body.gate-recycling-theme .gate-pdp-kv-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 11px 12px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(61, 122, 40, 0.28);
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transition: background-color 0.15s ease;
}

body.gate-recycling-theme .gate-pdp-kv-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

body.gate-recycling-theme .gate-pdp-kv-row:hover {
    border-color: rgba(61, 122, 40, 0.28);
    background: rgba(42, 107, 20, 0.06);
    box-shadow: none;
    transform: none;
}

body.gate-recycling-theme .gate-pdp-kv-label {
    font-family: var(--gate-font);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.35;
    color: rgba(184, 205, 184, 0.88) !important;
    padding: 0;
    background: none;
    border: none;
    border-right: none;
    text-shadow: none;
    min-width: 0;
}

body.gate-recycling-theme .gate-pdp-kv-value {
    font-family: var(--gate-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--gate-text) !important;
    padding: 0;
    background: none;
    text-align: end;
    justify-self: stretch;
    min-width: 0;
    word-break: break-word;
}

body.gate-recycling-theme .gate-pdp-kv-value--media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
}

body.gate-recycling-theme .gate-pdp-brand-thumb-wrap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 4px;
    background: transparent;
    border: none;
    box-shadow: none;
}

body.gate-recycling-theme .converter-brand-thumb.gate-pdp-brand-thumb,
body.gate-recycling-theme .gate-pdp-brand-thumb {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    background: transparent;
    border: none;
    display: block;
}

body.gate-recycling-theme .gate-pdp-kv-value-text {
    min-width: 0;
    word-break: break-word;
    text-align: end;
}

@media (max-width: 575.98px) {
    body.gate-recycling-theme .gate-pdp-kv-sheet {
        padding: 2px 2px 6px;
    }

    body.gate-recycling-theme .gate-pdp-kv-row {
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
        padding: 10px 10px;
        gap: 6px;
    }

    body.gate-recycling-theme .gate-pdp-kv-label,
    body.gate-recycling-theme .gate-pdp-kv-value {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* Specification card: same KV language, tuned spacing */
body.gate-recycling-theme .gate-pdp-spec-card {
    border-radius: 16px !important;
    padding: 18px 16px 16px !important;
}

body.gate-recycling-theme .gate-pdp-spec-heading {
    font-family: var(--gate-font) !important;
    font-size: 1rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    color: rgba(210, 255, 218, 0.95) !important;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(42, 107, 20, 0.18);
    text-shadow: 0 0 20px rgba(42, 107, 20, 0.18);
}

body.gate-recycling-theme .gate-pdp-kv-sheet--spec {
    padding: 4px 0 0;
}

body.gate-recycling-theme .gate-pdp-kv-sheet--spec .gate-pdp-kv-label {
    font-size: 12px;
}

/* --- Product detail: unified glass tab panel (Bootstrap tabs preserved) --- */
body.gate-recycling-theme .gate-product-detail-panel {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(42, 107, 20, 0.2);
    background:
        linear-gradient(165deg, rgba(18, 38, 26, 0.55) 0%, rgba(6, 16, 10, 0.72) 48%, rgba(4, 12, 8, 0.82) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(42, 107, 20, 0.06);
    overflow: hidden;
}

body.gate-recycling-theme .gate-product-detail-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(80% 40% at 50% 0%, rgba(42, 107, 20, 0.09) 0%, transparent 55%);
    opacity: 1;
}

body.gate-recycling-theme .gate-pdp-tabs.nav-tabs {
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 14px 0;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(42, 107, 20, 0.14) !important;
    background: rgba(4, 12, 8, 0.35);
}

body.gate-recycling-theme .gate-pdp-tabs .nav-item {
    margin-bottom: 0;
}

body.gate-recycling-theme .gate-pdp-tabs .nav-link {
    position: relative;
    margin-bottom: 0 !important;
    padding: 12px 20px !important;
    font-family: var(--gate-font) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    color: rgba(180, 220, 188, 0.78) !important;
    background: rgba(8, 22, 14, 0.55) !important;
    border: 1px solid rgba(42, 107, 20, 0.12) !important;
    border-radius: 14px 14px 0 0 !important;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

body.gate-recycling-theme .gate-pdp-tabs .nav-link:hover {
    color: rgba(220, 255, 228, 0.98) !important;
    background: rgba(16, 42, 28, 0.75) !important;
    border-color: rgba(42, 107, 20, 0.28) !important;
    box-shadow: 0 0 22px rgba(42, 107, 20, 0.12);
    transform: translateY(-1px);
}

body.gate-recycling-theme .gate-pdp-tabs .nav-link:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(8, 24, 14, 0.9), 0 0 0 4px rgba(42, 107, 20, 0.45) !important;
}

/* Wins over custom.css .nav-link.active white pill */
body.gate-recycling-theme .gate-product-detail-panel .gate-pdp-tabs .nav-link.active,
body.gate-recycling-theme .gate-product-detail-panel .gate-pdp-tabs .nav-link.active:hover {
    color: #031008 !important;
    background: linear-gradient(180deg, rgba(124, 255, 118, 0.95) 0%, rgba(72, 200, 88, 0.88) 100%) !important;
    border-color: rgba(160, 255, 150, 0.65) !important;
    box-shadow:
        0 0 28px rgba(42, 107, 20, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transform: translateY(0);
    z-index: 3;
}

body.gate-recycling-theme .gate-pdp-tab-content.tab-content {
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
    padding: 22px 20px 26px !important;
    border-top: none !important;
    background:
        linear-gradient(180deg, rgba(6, 18, 12, 0.72) 0%, rgba(3, 10, 7, 0.88) 100%) !important;
    border-radius: 0 0 18px 18px;
    box-shadow: inset 0 1px 0 rgba(42, 107, 20, 0.08);
}

body.gate-recycling-theme .gate-product-detail-panel .gate-pdp-tab-content > .tab-pane {
    background: transparent !important;
}

@media (max-width: 575.98px) {
    body.gate-recycling-theme .gate-pdp-tabs .nav-link {
        padding: 10px 14px !important;
        font-size: 0.74rem !important;
        border-radius: 12px 12px 0 0 !important;
    }

    body.gate-recycling-theme .gate-pdp-tab-content.tab-content {
        padding: 18px 14px 20px !important;
    }
}

body.gate-recycling-theme .tab-content:not(.gate-pdp-tab-content),
body.gate-recycling-theme .tab-content:not(.gate-pdp-tab-content) .tab-pane,
body.gate-recycling-theme .description_img {
    background: transparent !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .gate-pdp-tab-content .tab-pane {
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .description_img p,
body.gate-recycling-theme .description_img li,
body.gate-recycling-theme .description_img span,
body.gate-recycling-theme .description_img div {
    color: var(--gate-text) !important;
}

/* Premium auth experience (modern register/login/forgot) */
body.gate-recycling-theme .premium-auth-main {
    position: relative;
    padding: 10px 0 34px;
    /* background:
        radial-gradient(70% 48% at 50% 2%, rgba(56, 255, 82, 0.16) 0%, rgba(56, 255, 82, 0) 70%),
        radial-gradient(62% 42% at 50% 44%, rgba(31, 158, 61, 0.14) 0%, rgba(31, 158, 61, 0) 72%),
        linear-gradient(180deg, #020805 0%, #06120a 100%); */
}

body.gate-recycling-theme .premium-auth-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(144, 255, 154, 0.12) 0.65px, transparent 0.75px);
    background-size: 3px 3px;
    opacity: 0.12;
}

body.gate-recycling-theme .premium-auth-shell {
    position: relative;
    z-index: 1;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

body.gate-recycling-theme .premium-auth-stage {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

body.gate-recycling-theme .premium-auth-stage .premium-auth-card {
    width: 100%;
}

body.gate-recycling-theme .premium-auth-header {
    margin-bottom: 10px;
}

body.gate-recycling-theme .premium-auth-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.gate-recycling-theme .premium-auth-logo {
    width: clamp(150px, 52vw, 240px);
    height: auto;
    filter: drop-shadow(0 0 14px rgba(92, 255, 95, 0.55));
}

body.gate-recycling-theme .premium-auth-grid {
    row-gap: 10px;
}

body.gate-recycling-theme .premium-auth-card,
body.gate-recycling-theme #login-canvas .premium-auth-modal-form {
    /* background: linear-gradient(180deg, rgba(9, 26, 13, 0.92), rgba(2, 8, 5, 0.95)) !important; */
    border: 1px solid rgba(87, 255, 90, 0.16) !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 22px rgba(68, 255, 85, 0.04) !important;
    padding: 18px 14px !important;
}

body.gate-recycling-theme .premium-auth-card .section-title,
body.gate-recycling-theme #login-canvas .section-title,
body.gate-recycling-theme .premium-auth-copy .section-title,
body.gate-recycling-theme .premium-auth-offcanvas .offcanvas-title {
    color: #e9ffe8 !important;
    font-family: var(--gate-font) !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
}

body.gate-recycling-theme .Register-text p,
body.gate-recycling-theme .premium-auth-copy p {
    color: rgba(235, 255, 235, 0.78) !important;
    line-height: 1.55 !important;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

body.gate-recycling-theme .premium-auth-copy {
    border-style: solid !important;
}

body.gate-recycling-theme .register-login-section .form-control,
body.gate-recycling-theme .premium-auth-stage .form-control,
body.gate-recycling-theme .register-login-section .password-insert.form-control,
body.gate-recycling-theme .forget-password-section .form-control,
body.gate-recycling-theme #resetForm .form-control {
    background: rgba(230, 255, 230, 0.08) !important;
    border: 1px solid rgba(161, 255, 165, 0.22) !important;
    color: #f3fff3 !important;
    border-radius: 10px !important;
    height: 46px !important;
    padding: 0 14px !important;
    box-shadow: none !important;
}

body.gate-recycling-theme .register-login-section .form-control::placeholder,
body.gate-recycling-theme #login-canvas .form-control::placeholder,
body.gate-recycling-theme .forget-password-section .form-control::placeholder,
body.gate-recycling-theme #resetForm .form-control::placeholder {
    color: rgba(230, 255, 230, 0.65) !important;
}

body.gate-recycling-theme .register-login-section .form-control:focus,
body.gate-recycling-theme #login-canvas .form-control:focus,
body.gate-recycling-theme .forget-password-section .form-control:focus,
body.gate-recycling-theme #resetForm .form-control:focus {
    border-color: rgba(61, 122, 40, 0.75) !important;
    box-shadow: 0 0 18px rgba(80, 255, 90, 0.25) !important;
}

body.gate-recycling-theme .register-login-section .input-group .btn-outline-secondary,
body.gate-recycling-theme .premium-auth-stage .input-group .btn-outline-secondary,
body.gate-recycling-theme .forget-password-section .input-group .btn-outline-secondary,
body.gate-recycling-theme #resetForm .input-group .btn-outline-secondary {
    background: rgba(230, 255, 230, 0.08) !important;
    border: 1px solid rgba(161, 255, 165, 0.22) !important;
    border-left: none !important;
    color: var(--gate-brand-muted) !important;
}

body.gate-recycling-theme .register-login-section .input-group .btn-outline-secondary:hover,
body.gate-recycling-theme .premium-auth-stage .input-group .btn-outline-secondary:hover,
body.gate-recycling-theme .forget-password-section .input-group .btn-outline-secondary:hover,
body.gate-recycling-theme #resetForm .input-group .btn-outline-secondary:hover {
    color: var(--gate-accent) !important;
}

body.gate-recycling-theme .register-login-section input:-webkit-autofill,
body.gate-recycling-theme .register-login-section input:-webkit-autofill:hover,
body.gate-recycling-theme .register-login-section input:-webkit-autofill:focus,
body.gate-recycling-theme #login-canvas input:-webkit-autofill,
body.gate-recycling-theme #login-canvas input:-webkit-autofill:hover,
body.gate-recycling-theme #login-canvas input:-webkit-autofill:focus,
body.gate-recycling-theme .forget-password-section input:-webkit-autofill,
body.gate-recycling-theme .forget-password-section input:-webkit-autofill:hover,
body.gate-recycling-theme .forget-password-section input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(230, 255, 230, 0.08) inset !important;
    -webkit-text-fill-color: #f3fff3 !important;
    caret-color: #f3fff3 !important;
    transition: background-color 5000s ease-in-out 0s;
}

body.gate-recycling-theme .register-login-section .searchcontainer .form-control,
body.gate-recycling-theme .premium-auth-main .searchbar {
    /* background: rgba(5, 20, 10, 0.75) !important; */
    border: 1px solid rgba(88, 255, 105, 0.22) !important;
    border-radius: 12px !important;
    color: #e8ffe8 !important;
}

body.gate-recycling-theme .register-login-section .searchcontainer .form-control:focus,
body.gate-recycling-theme .premium-auth-main .searchbar:focus {
    box-shadow: 0 0 0 2px rgba(74, 255, 92, 0.18), 0 0 22px rgba(74, 255, 92, 0.22) !important;
}

body.gate-recycling-theme .premium-auth-stage .Register-btn,
body.gate-recycling-theme .register-login-section .Register-btn,
body.gate-recycling-theme #login-canvas .Register-btn,
body.gate-recycling-theme .forget-password-section .btn-primary,
body.gate-recycling-theme #resetForm .btn-primary {
    background: var(--gate-cta-gradient) !important;
    color: var(--gate-cta-text) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    border-radius: 10px !important;
    min-height: 46px !important;
    border: 1px solid var(--gate-cta-border) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    width: 100%;
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}

body.gate-recycling-theme .premium-auth-stage .Register-btn:hover,
body.gate-recycling-theme .register-login-section .Register-btn:hover,
body.gate-recycling-theme #login-canvas .Register-btn:hover,
body.gate-recycling-theme .forget-password-section .btn-primary:hover,
body.gate-recycling-theme #resetForm .btn-primary:hover {
    filter: brightness(1.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.48), 0 0 16px rgba(42, 107, 20, 0.18) !important;
    color: var(--gate-cta-text) !important;
}

body.gate-recycling-theme .register-login-section .login-register-btn,
body.gate-recycling-theme .forget-password-section .btn-delivery,
body.gate-recycling-theme #login-canvas .btn-link {
    background: linear-gradient(180deg, rgba(36, 92, 47, 0.95), rgba(9, 32, 16, 0.98)) !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-text-soft) !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

body.gate-recycling-theme .register-login-section .btn:active,
body.gate-recycling-theme #login-canvas .btn:active,
body.gate-recycling-theme .forget-password-section .btn:active,
body.gate-recycling-theme #resetForm .btn:active {
    transform: scale(0.98);
}

body.gate-recycling-theme .register-login-section a,
body.gate-recycling-theme #login-canvas a,
body.gate-recycling-theme .forget-password-section a {
    color: rgba(225, 255, 225, 0.82) !important;
    font-size: 0.95rem;
}

body.gate-recycling-theme .register-login-section a:hover,
body.gate-recycling-theme #login-canvas a:hover,
body.gate-recycling-theme .forget-password-section a:hover {
    color: #74ff73 !important;
    text-shadow: 0 0 10px rgba(61, 122, 40, 0.24);
}

body.gate-recycling-theme .premium-or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0;
    color: rgba(222, 255, 222, 0.68);
    font-weight: 600;
    letter-spacing: 0.06em;
}

body.gate-recycling-theme .premium-or-divider span {
    display: block;
    height: 1px;
    flex: 1;
    background: rgba(170, 255, 170, 0.18);
}

body.gate-recycling-theme .premium-email-btn,
body.gate-recycling-theme .thirdparty-login.premium-email-btn {
    background: rgba(5, 18, 9, 0.65) !important;
    border: 1px solid rgba(61, 122, 40, 0.22) !important;
    color: #eaffea !important;
    border-radius: 10px !important;
    min-height: 44px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

body.gate-recycling-theme .premium-email-btn img {
    opacity: 0.82;
    filter: hue-rotate(45deg) saturate(0.75);
}

body.gate-recycling-theme .premium-email-btn:hover {
    border-color: rgba(133, 255, 140, 0.48) !important;
    box-shadow: 0 0 14px rgba(74, 255, 92, 0.2) !important;
}

body.gate-recycling-theme .premium-auth-offcanvas {
    --bs-offcanvas-width: min(92vw, 390px);
    background: linear-gradient(180deg, rgba(8, 24, 13, 0.97), rgba(3, 10, 6, 0.99)) !important;
}

body.gate-recycling-theme .premium-auth-offcanvas-header,
body.gate-recycling-theme .premium-auth-offcanvas-body {
    border-color: rgba(87, 255, 90, 0.14) !important;
}

body.gate-recycling-theme .premium-auth-modal-form {
    width: 100%;
}

body.gate-recycling-theme .premium-auth-copy .login-register-btn {
    width: 100%;
    min-height: 48px;
}

body.gate-recycling-theme .premium-auth-switch {
    font-size: 0.94rem;
    line-height: 1.45;
    color: rgba(218, 242, 228, 0.72);
}

body.gate-recycling-theme .premium-auth-switch .auth-switch-link {
    display: inline-block;
    margin-left: 0.15rem;
    color: rgba(124, 255, 150, 0.95);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 122, 40, 0.42);
    transition: color 0.22s ease, border-color 0.22s ease, text-shadow 0.28s ease, transform 0.22s ease;
}

body.gate-recycling-theme .premium-auth-switch .auth-switch-link:hover {
    color: #b8ffc8;
    border-bottom-color: rgba(156, 255, 170, 0.65);
    text-shadow: 0 0 14px rgba(61, 122, 40, 0.38);
}

body.gate-recycling-theme .register-login-section .registration-section,
body.gate-recycling-theme .register-login-section .login-section {
    order: 1;
    backface-visibility: hidden;
}

body.gate-recycling-theme .register-login-section .premium-auth-copy {
    order: 3;
}

body.gate-recycling-theme .register-login-section .wd-login-divider {
    order: 2;
}

/* Tablet / desktop: keep auth cards a fixed readable width (do not stretch edge-to-edge) */
@media (min-width: 768px) {
    body.gate-recycling-theme .premium-auth-main .premium-auth-shell.container {
        max-width: 440px !important;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    body.gate-recycling-theme .password-reset-page .premium-auth-reset-card {
        max-width: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.auth-panel-hidden {
    display: none !important;
}

@media (min-width: 1200px) {
    body.gate-recycling-theme .premium-auth-main .premium-auth-shell.container {
        max-width: 900px !important;
    }

    body.gate-recycling-theme .register-login-section.premium-auth-grid > .col-md-6 {
        flex: 0 1 420px;
        max-width: 420px;
    }
}

@media (max-width: 575px) {
    body.gate-recycling-theme .premium-auth-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    body.gate-recycling-theme .premium-auth-main {
        padding-top: 14px;
        padding-bottom: 102px;
    }

    body.gate-recycling-theme .premium-auth-card,
    body.gate-recycling-theme #login-canvas .premium-auth-modal-form {
        border-radius: 16px !important;
        padding: 18px 14px !important;
    }

    body.gate-recycling-theme .register-login-section .premium-auth-copy {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 10px;
        z-index: 20;
        margin: 0 !important;
        border-radius: 14px !important;
        padding: 10px !important;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.58), 0 0 18px rgba(68, 255, 85, 0.16) !important;
    }

    body.gate-recycling-theme .register-login-section .premium-auth-copy .section-title,
    body.gate-recycling-theme .register-login-section .premium-auth-copy p {
        display: none !important;
    }

    body.gate-recycling-theme .register-login-section .premium-auth-copy .login-register-btn {
        margin: 0 !important;
        font-size: 1rem !important;
    }

    body.gate-recycling-theme .register-login-section .registration-section,
    body.gate-recycling-theme .register-login-section .login-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    body.gate-recycling-theme .register-login-section .wd-login-divider {
        display: none !important;
    }
}

/* Header + mobile sidebar polish */
body.gate-recycling-theme .top-nav,
body.gate-recycling-theme .search-nav.content-wrapper,
body.gate-recycling-theme .search-nav .nav-outer {
    background: linear-gradient(180deg, rgba(6, 16, 11, 0.98) 0%, rgba(3, 10, 7, 0.99) 100%) !important;
    border-bottom: 1px solid rgba(61, 122, 40, 0.16) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), inset 0 -1px 0 rgba(61, 122, 40, 0.08) !important;
}

body.gate-recycling-theme .search-nav.content-wrapper .navbar-md {
    min-height: 62px;
    padding: 8px 10px;
}

body.gate-recycling-theme .search-nav.content-wrapper .company-logo img {
    height: auto !important;
    width: 188px !important;
    max-width: 188px !important;
    max-height: 72px !important;
    object-fit: contain;
    filter: none !important;
}


/* Neon cyber-metal account + lots redesign */
body.gate-recycling-theme .myaccount-navigation {
    background:
        linear-gradient(180deg, rgba(18, 30, 20, 0.95) 0%, rgba(8, 15, 10, 0.98) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.16) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 18px rgba(89, 255, 98, 0.06) !important;
}

body.gate-recycling-theme .myaccount-navigation .sidebar-header {
    border-bottom: 1px solid rgba(61, 122, 40, 0.16) !important;
}

body.gate-recycling-theme .myaccount-navigation .sidebar-header .section-title {
    color: #e9ffe8 !important;
    font-size: 1.05rem !important;
    font-family: var(--gate-font) !important;
    letter-spacing: 0.03em;
}

body.gate-recycling-theme .myaccount-navigation ul > a > li {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-radius: 12px;
    margin-bottom: 6px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(13, 24, 17, 0.9), rgba(8, 15, 10, 0.92));
    color: rgba(228, 247, 232, 0.88) !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

body.gate-recycling-theme .myaccount-navigation ul > a > li ion-icon {
    color: rgba(137, 255, 136, 0.92);
    filter: drop-shadow(0 0 6px rgba(61, 122, 40, 0.2));
}

body.gate-recycling-theme .myaccount-navigation ul > a:hover > li {
    border-color: rgba(61, 122, 40, 0.28);
    box-shadow: 0 0 18px rgba(89, 255, 98, 0.12), inset 0 0 14px rgba(89, 255, 98, 0.06);
}

body.gate-recycling-theme .myaccount-navigation .myaccount-navigation-link-selected {
    border: 1px solid rgba(121, 255, 125, 0.55) !important;
    background:
        radial-gradient(circle at 16% 40%, rgba(95, 255, 105, 0.18), transparent 52%),
        linear-gradient(180deg, rgba(26, 48, 32, 0.98), rgba(11, 23, 14, 0.98)) !important;
    box-shadow: 0 0 20px rgba(121, 255, 125, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    color: #eaffea !important;
}

/* Quantity stepper (PDP / cart modal) — same stepper DNA as .lot-amount-stepper */
body.gate-recycling-theme .plus-minus-input .input-group-button .circle,
body.gate-recycling-theme .plus-minus-input .minus-btn,
body.gate-recycling-theme .plus-minus-input .plus-btn {
    background: rgba(8, 20, 12, 0.72) !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-brand-muted) !important;
    border-radius: 8px !important;
    transition: border-color 0.15s ease, color 0.15s ease;
}

body.gate-recycling-theme .plus-minus-input .input-group-button .circle:hover,
body.gate-recycling-theme .plus-minus-input .minus-btn:hover,
body.gate-recycling-theme .plus-minus-input .plus-btn:hover {
    border-color: var(--gate-accent) !important;
    color: var(--gate-accent) !important;
    background: rgba(8, 20, 12, 0.9) !important;
}

body.gate-recycling-theme .input-group-field,
body.gate-recycling-theme .input-field-cart-modal {
    background: var(--gate-input-fill) !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .input-group-field:focus,
body.gate-recycling-theme .input-field-cart-modal:focus {
    border-color: rgba(42, 107, 20, 0.45) !important;
    box-shadow: 0 0 0 0.15rem rgba(42, 107, 20, 0.12) !important;
    outline: none;
}

body.gate-recycling-theme .card-modal-plus-minus-btn {
    background-color: rgba(8, 20, 12, 0.72) !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-brand-muted) !important;
}

/* ============ Home: metals ticker, categories & brands rail — premium glass ============ */
body.gate-recycling-theme .metals-board {
    padding: 20px 22px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18, 34, 24, 0.72) 0%, rgba(6, 14, 9, 0.86) 100%);
    border: 1px solid rgba(61, 122, 40, 0.16);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.gate-recycling-theme .metals-board__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

body.gate-recycling-theme .metals-unit-toggle,
body.gate-recycling-theme .metals-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.gate-recycling-theme .metals-buttons {
    margin-bottom: 16px;
}

body.gate-recycling-theme .metals-unit-btn,
body.gate-recycling-theme .metals-metal-btn {
    padding: 0.4rem 0.95rem !important;
    border-radius: 999px !important;
    background: rgba(8, 20, 12, 0.65) !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-brand-muted) !important;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.18s ease;
}

body.gate-recycling-theme .metals-unit-btn:hover,
body.gate-recycling-theme .metals-metal-btn:hover {
    border-color: rgba(61, 122, 40, 0.4) !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .metals-unit-btn.active,
body.gate-recycling-theme .metals-metal-btn.active {
    background: var(--gate-cta-gradient) !important;
    border-color: var(--gate-cta-border) !important;
    color: var(--gate-cta-text) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

body.gate-recycling-theme .metals-current-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(4, 14, 9, 0.55);
    border: 1px solid rgba(61, 122, 40, 0.12);
}

body.gate-recycling-theme .metals-current-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(228, 247, 232, 0.6) !important;
}

body.gate-recycling-theme .metals-current-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gate-accent) !important;
    font-family: var(--gate-font);
}

body.gate-recycling-theme .metals-chart-wrap {
    border-radius: 12px;
    padding: 12px;
    background: rgba(4, 14, 9, 0.4);
    border: 1px solid rgba(61, 122, 40, 0.1);
}

/* Category / brand rail — kill Bootstrap white tiles, match Gate glass cards */
body.gate-recycling-theme .categories-card {
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(18, 34, 24, 0.55) 0%, rgba(6, 14, 9, 0.7) 100%);
    border: 1px solid rgba(61, 122, 40, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

body.gate-recycling-theme .categories-card:hover {
    border-color: rgba(61, 122, 40, 0.32);
    transform: translateY(-2px);
}

body.gate-recycling-theme .categories-image,
body.gate-recycling-theme .brands-image {
    background: rgba(6, 16, 11, 0.65) !important;
    border-radius: 12px;
    border: 1px solid rgba(61, 122, 40, 0.1);
}

body.gate-recycling-theme .categories-card-text h4 {
    color: var(--gate-text) !important;
    font-size: 0.95rem;
}

body.gate-recycling-theme .viewmorebtn {
    background: rgba(8, 20, 12, 0.65) !important;
    border: 1px solid var(--gate-button-border) !important;
    color: var(--gate-brand-muted) !important;
    border-radius: 10px !important;
    font-weight: 600;
    transition: all 0.18s ease;
}

body.gate-recycling-theme .viewmorebtn:hover,
body.gate-recycling-theme .viewmorebtn:active {
    background: var(--gate-cta-gradient) !important;
    border-color: var(--gate-cta-border) !important;
    color: var(--gate-cta-text) !important;
}

body.gate-recycling-theme .swiper-button-next,
body.gate-recycling-theme .swiper-button-prev {
    color: var(--gate-brand-muted) !important;
}

body.gate-recycling-theme .swiper-button-next:hover,
body.gate-recycling-theme .swiper-button-prev:hover {
    color: var(--gate-accent) !important;
}

/* ============ Lots — hero header, stats, create panel ============ */
body.gate-recycling-theme .lots-hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.gate-recycling-theme .lots-hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

body.gate-recycling-theme .lots-hero__subtitle {
    color: rgba(228, 247, 232, 0.62) !important;
    font-size: 0.88rem;
}

body.gate-recycling-theme .lots-new-btn,
body.gate-recycling-theme .lots-create-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.3rem !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #2a6b14 0%, #1e5210 55%, #12380a 100%) !important;
    border: 1px solid #3c9018 !important;
    color: #eaffe6 !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45), 0 0 16px rgba(89, 255, 98, 0.14);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    white-space: nowrap;
}

body.gate-recycling-theme .lots-new-btn:hover,
body.gate-recycling-theme .lots-create-submit-btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5), 0 0 22px rgba(42, 107, 20, 0.28);
    color: #eaffe6 !important;
}

body.gate-recycling-theme .lots-new-btn[aria-expanded="true"] {
    filter: brightness(0.92);
}

body.gate-recycling-theme .lots-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.gate-recycling-theme .lots-stat {
    flex: 1 1 130px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(16, 30, 18, 0.9) 0%, rgba(8, 15, 10, 0.95) 100%);
    border: 1px solid rgba(61, 122, 40, 0.16);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.gate-recycling-theme .lots-stat__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e9ffe8;
    letter-spacing: 0.01em;
}

body.gate-recycling-theme .lots-stat--accent .lots-stat__value {
    color: var(--gate-accent);
    text-shadow: 0 0 12px var(--gate-glow);
}

body.gate-recycling-theme .lots-stat__label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(228, 247, 232, 0.55);
}

body.gate-recycling-theme .lot-create-panel {
    padding: 0 !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(16, 30, 18, 0.92) 0%, rgba(8, 15, 10, 0.97) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.18) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 18px rgba(89, 255, 98, 0.08) !important;
}

body.gate-recycling-theme .lot-create-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(61, 122, 40, 0.14);
    color: var(--gate-accent);
}

body.gate-recycling-theme .lot-create-panel__head h6 {
    color: #eaffe6 !important;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.gate-recycling-theme .lot-create-panel__body {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    padding: 16px 18px 18px;
}

body.gate-recycling-theme .lot-create-field {
    min-width: 200px;
}

/* Lots create form field labels — Gate mist */
body.gate-recycling-theme .lot-create-field .form-label {
    color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme .lots-list-heading {
    color: rgba(228, 247, 232, 0.72) !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ============ Lot group card (Lots list) ============ */
body.gate-recycling-theme .lot-group-card {
    padding: 16px !important;
    background: linear-gradient(180deg, rgba(18, 30, 20, 0.95) 0%, rgba(8, 15, 10, 0.98) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.16) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 18px rgba(89, 255, 98, 0.06) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.gate-recycling-theme .lot-group-card:hover {
    border-color: rgba(42, 107, 20, 0.3) !important;
}

body.gate-recycling-theme .lot-group-card.border-success,
body.gate-recycling-theme .lot-group-card--active {
    border-color: rgba(121, 255, 125, 0.55) !important;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.6), 0 0 22px rgba(121, 255, 125, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

body.gate-recycling-theme .lot-group-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

body.gate-recycling-theme .lot-group-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 260px;
    min-width: 0;
}

body.gate-recycling-theme .lot-group-thumb {
    border: 1px solid rgba(61, 122, 40, 0.2);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

body.gate-recycling-theme .lot-group-card__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.gate-recycling-theme .lot-group-card__title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

body.gate-recycling-theme .lot-group-name-text {
    color: #ecffed !important;
    font-size: 1rem;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}

body.gate-recycling-theme .lot-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

body.gate-recycling-theme .lot-badge--active {
    background: rgba(89, 255, 98, 0.18) !important;
    color: #b9ffba !important;
    border: 1px solid rgba(121, 255, 125, 0.4);
}

body.gate-recycling-theme .lot-badge--family {
    background: rgba(8, 22, 13, 0.7);
    border: 1px solid rgba(61, 122, 40, 0.18);
    color: rgba(223, 255, 225, 0.8);
}

body.gate-recycling-theme .lot-badge--electronics {
    color: #9fe7ff;
    border-color: rgba(120, 210, 255, 0.35);
    background: rgba(20, 45, 60, 0.5);
}

body.gate-recycling-theme .lot-badge--converters {
    color: #ffd98a;
    border-color: rgba(255, 200, 100, 0.35);
    background: rgba(55, 42, 15, 0.5);
}

body.gate-recycling-theme .lot-group-metrics .lot-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 10px;
    background: rgba(8, 22, 13, 0.68);
    border: 1px solid rgba(61, 122, 40, 0.14);
    color: rgba(223, 255, 225, 0.88) !important;
}

body.gate-recycling-theme .lot-group-metrics .lot-metric i {
    color: rgba(139, 255, 137, 0.75);
    font-size: 0.72rem;
}

body.gate-recycling-theme .lot-group-metrics .lot-metric-live {
    color: #c8ffca !important;
    border-color: rgba(121, 255, 125, 0.3);
    box-shadow: inset 0 0 10px rgba(89, 255, 98, 0.08);
}

body.gate-recycling-theme .lot-group-metrics .lot-metric-live i {
    color: var(--gate-accent);
}

body.gate-recycling-theme .lot-group-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

body.gate-recycling-theme .lot-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem !important;
    border-radius: 10px !important;
    background: rgba(7, 22, 13, 0.7) !important;
    border: 1px solid rgba(61, 122, 40, 0.32) !important;
    color: #e9ffe8 !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

body.gate-recycling-theme .lot-view-btn:hover {
    border-color: var(--gate-accent) !important;
    color: var(--gate-accent) !important;
    box-shadow: 0 0 14px rgba(42, 107, 20, 0.2);
}

body.gate-recycling-theme .lot-group-card__icon-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

body.gate-recycling-theme .lot-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(7, 22, 13, 0.86);
    border: 1px solid rgba(61, 122, 40, 0.2);
    color: rgba(223, 255, 225, 0.8);
    font-size: 0.82rem;
    transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

body.gate-recycling-theme .lot-icon-btn:hover {
    border-color: var(--gate-accent);
    color: var(--gate-accent);
    transform: translateY(-1px);
}

body.gate-recycling-theme .lot-icon-btn--danger:hover {
    border-color: #ff6b7a;
    color: #ff6b7a;
}

body.gate-recycling-theme .lot-icon-btn--confirm {
    background: rgba(89, 255, 98, 0.16);
    border-color: rgba(121, 255, 125, 0.45);
    color: #b9ffba;
}

body.gate-recycling-theme .lot-group-rename-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(61, 122, 40, 0.14);
}

body.gate-recycling-theme .lot-group-rename-row .lot-group-name-input {
    max-width: 280px;
    background: rgba(8, 20, 12, 0.72);
    border-color: rgba(42, 107, 20, 0.22);
    color: rgba(228, 247, 232, 0.92);
}

/* ============ Lots — empty state ============ */
body.gate-recycling-theme .lots-empty-state {
    padding: 56px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 30, 18, 0.7) 0%, rgba(8, 15, 10, 0.85) 100%);
    border: 1px dashed rgba(61, 122, 40, 0.22);
}

body.gate-recycling-theme .lots-empty-state__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(89, 255, 98, 0.1);
    border: 1px solid rgba(121, 255, 125, 0.3);
    color: var(--gate-accent);
    font-size: 1.4rem;
}

body.gate-recycling-theme .lots-empty-state__text {
    color: rgba(228, 247, 232, 0.6) !important;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

body.gate-recycling-theme .global-mobile-dock {
    display: none;
}

/* Floating "Add products to lot" selector (built inline in custom.js) */
body.gate-recycling-theme #global-lot-selector-wrap {
    background: linear-gradient(180deg, rgba(16, 30, 18, 0.96) 0%, rgba(8, 15, 10, 0.98) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.22) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 18px rgba(89, 255, 98, 0.1) !important;
}

body.gate-recycling-theme #global-lot-selector-wrap label {
    color: rgba(228, 247, 232, 0.6) !important;
}

body.gate-recycling-theme #global-lot-selector {
    background: rgba(8, 20, 12, 0.72) !important;
    border-color: rgba(42, 107, 20, 0.22) !important;
    color: rgba(228, 247, 232, 0.92) !important;
}

@media (max-width: 991px) {
    body.gate-recycling-theme {
        padding-bottom: 92px;
    }

    body.gate-recycling-theme .global-mobile-dock {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        padding: 12px 10px calc(12px + env(safe-area-inset-bottom, 0px));
        background: rgba(8, 15, 10, 0.92);
        backdrop-filter: blur(18px);
        border-top: 1px solid rgba(61, 122, 40, 0.12);
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    body.gate-recycling-theme .global-mobile-dock.global-mobile-dock--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.gate-recycling-theme .global-mobile-dock.global-mobile-dock--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    body.gate-recycling-theme .global-mobile-dock-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 50px;
        border-radius: 14px;
        color: rgba(170, 193, 171, 0.84) !important;
        text-decoration: none !important;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.01em;
    }

    body.gate-recycling-theme .global-mobile-dock-item i {
        font-size: 1.02rem;
        color: rgba(170, 193, 171, 0.84);
    }

    body.gate-recycling-theme .global-mobile-dock-item.active {
        color: #79ff7d !important;
        text-shadow: 0 0 12px rgba(121, 255, 125, 0.65);
        background: radial-gradient(circle, rgba(95, 255, 105, 0.18), transparent 75%);
    }

    body.gate-recycling-theme .global-mobile-dock-item.active i {
        color: #79ff7d !important;
        text-shadow: 0 0 12px rgba(121, 255, 125, 0.65);
    }
}

.cyber-drawer,
.cyber-drawer * {
  box-sizing: border-box;
}

.cyber-drawer {
  --bs-offcanvas-width: min(86vw, 340px);
  width: min(86vw, 340px) !important;
  background:
    radial-gradient(circle at 50% 8%, rgba(42, 107, 20,.16), transparent 32%),
    linear-gradient(180deg, #07110b 0%, #020604 100%) !important;
  color: #eaffea !important;
  border-right: 1px solid rgba(42, 107, 20,.24) !important;
  box-shadow:
    0 0 70px rgba(0,0,0,.9),
    16px 0 40px rgba(0,0,0,.55),
    inset -1px 0 0 rgba(42, 107, 20,.12) !important;
}

.cyber-drawer-header {
  position: relative;
  padding: 26px 18px 14px !important;
  border-bottom: 1px solid rgba(42, 107, 20,.14) !important;
  background: transparent !important;
}

.cyber-drawer-title {
  text-align: center;
}

.cyber-drawer-brand {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.cyber-drawer-brand img {
  width: 145px !important;
  max-width: 145px !important;
  height: auto !important;
  margin: 0 auto 10px !important;
  display: block !important;
  filter: drop-shadow(0 0 18px rgba(42, 107, 20,.65));
}

.cyber-drawer-subtitle {
  color: rgba(234,255,234,.7) !important;
  font-size: 13px !important;
  letter-spacing: .6px !important;
  text-align: center !important;
}

.cyber-drawer-divider {
  width: 72%;
  height: 1px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, rgba(42, 107, 20,.35), transparent);
}

.cyber-drawer-header .btn {
  position: absolute !important;
  top: 16px !important;
  right: 12px !important;
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  border-radius: 14px !important;
  border: 1px solid rgba(42, 107, 20,.2) !important;
  background: rgba(7,18,10,.78) !important;
  color: #9dff9d !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 18px rgba(42, 107, 20,.12) !important;
}

.cyber-drawer-header .btn ion-icon {
  color: #9dff9d !important;
  font-size: 22px !important;
}

.cyber-drawer-body {
  padding: 14px 12px 18px !important;
  overflow-y: auto;
}

.cyber-drawer-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cyber-drawer-nav li {
  margin: 0 !important;
  padding: 0 !important;
}

.cyber-drawer-item,
.cyber-drawer-select-card {
  min-height: 48px !important;
  width: 100% !important;
  padding: 0 14px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  background:
    linear-gradient(180deg, rgba(18,38,22,.72), rgba(5,13,8,.86)) !important;
  border: 1px solid rgba(42, 107, 20,.13) !important;
  box-shadow:
    0 8px 20px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
  transition: all .22s ease !important;
}

.cyber-drawer-item:hover,
.cyber-drawer-select-card:hover {
  transform: translateX(3px);
  border-color: rgba(42, 107, 20,.34) !important;
  box-shadow:
    0 10px 26px rgba(0,0,0,.42),
    0 0 20px rgba(42, 107, 20,.12),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.cyber-drawer .menu-icon {
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  font-size: 22px !important;
  color: #79ff7d !important;
  filter: drop-shadow(0 0 8px rgba(121,255,125,.28));
}

.cyber-drawer .text-body-emphasis,
.cyber-drawer span,
.cyber-drawer a {
  color: var(--gate-text-soft) !important; /* Gate mist #B8CDB8 */
}

.cyber-drawer-item span {
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .45px !important;
}

.cyber-drawer-select-card {
  margin-top: 6px !important;
  background:
    linear-gradient(180deg, rgba(10,26,14,.9), rgba(3,10,6,.95)) !important;
}

.cyber-drawer-select-card .dropdown {
  width: 100% !important;
}

.cyber-drawer-select-card .dropdown-toggle {
  width: 100% !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #dfffe1 !important;
  text-decoration: none !important;
}

.cyber-drawer .text-primary {
  color: #b9ffb9 !important;
  font-weight: 700 !important;
}

.cyber-drawer .dropdown-menu {
  background: #07110b !important;
  border: 1px solid rgba(42, 107, 20,.2) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.7), 0 0 22px rgba(42, 107, 20,.08) !important;
  padding: 8px !important;
  max-height: 280px;
  overflow-y: auto;
}

.cyber-drawer .dropdown-item {
  background: transparent !important;
  color: rgba(235,255,235,.86) !important;
  border-radius: 10px !important;
  padding: 10px 12px !important;
}

.cyber-drawer .dropdown-item:hover,
.cyber-drawer .dropdown-item:focus {
  background: rgba(42, 107, 20,.12) !important;
  color: #ffffff !important;
}

.cyber-drawer .dropdown-item a {
  color: inherit !important;
  text-decoration: none !important;
  display: block !important;
}

.offcanvas-backdrop.show {
  opacity: .72 !important;
  background:
    radial-gradient(circle at 25% 20%, rgba(42, 107, 20,.12), transparent 28%),
    #000 !important;
}

.cyber-drawer.offcanvas-start {
  transition: transform .42s cubic-bezier(.22,.78,.2,1) !important;
  will-change: transform;
}

.offcanvas-backdrop {
  transition: opacity .34s ease !important;
}

/*
 * Mobile drawer must sit above .global-mobile-dock (z-index 1200).
 * Default Bootstrap offcanvas (~1045) renders under the dock.
 * Also: avoid nesting offcanvas inside elements with backdrop-filter (fixes clipped / non-viewport-fixed drawer).
 */
body.gate-recycling-theme .offcanvas {
  z-index: 1260 !important;
}

body.gate-recycling-theme .offcanvas-backdrop {
  z-index: 1255 !important;
}

/* Global glass panels over gate-dust atmosphere */
body.gate-recycling-theme .top-nav,
body.gate-recycling-theme .search-nav,
body.gate-recycling-theme .search-nav .nav-outer,
body.gate-recycling-theme .search-nav.content-wrapper {
  background:
    linear-gradient(180deg, rgba(10, 24, 15, 0.72), rgba(4, 11, 8, 0.72)) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 107, 20, 0.14) !important;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

body.gate-recycling-theme .searchcontainer,
body.gate-recycling-theme .searchbar,
body.gate-recycling-theme .searchcontainer .form-control,
body.gate-recycling-theme .searchcontainer select {
  background:
    linear-gradient(180deg, rgba(10, 22, 14, 0.64), rgba(5, 12, 8, 0.62)) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(42, 107, 20, 0.18) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

body.gate-recycling-theme .nav-category,
body.gate-recycling-theme .subcategory-gem-btn,
body.gate-recycling-theme .card,
body.gate-recycling-theme .product-card,
body.gate-recycling-theme .Product-Detail-card,
body.gate-recycling-theme .filter-section,
body.gate-recycling-theme .specification,
body.gate-recycling-theme .item-detail,
body.gate-recycling-theme .delivery-service,
body.gate-recycling-theme .myaccount-navigation,
body.gate-recycling-theme .lot-group-card {
  background: var(--gate-card-panel) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--gate-catalog-border) !important;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

body.gate-recycling-theme .card:hover,
body.gate-recycling-theme .product-card:hover {
  border-color: var(--gate-glass-border) !important;
}

/* Flutter-style catalog product cards — panel @ ~0.82 + catalogBorder */
body.gate-recycling-theme .grid-view-card.product-card,
body.gate-recycling-theme .list-view-card,
body.gate-recycling-theme .grid-card-container .product-card {
  background: var(--gate-card-panel) !important;
  border: 1px solid var(--gate-catalog-border) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

body.gate-recycling-theme .gate-pdp-kv-card {
  background: var(--gate-glass-panel) !important;
  border: 1px solid var(--gate-glass-border) !important;
  border-radius: 12px;
}

body.gate-recycling-theme .compare-share-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Price/chart/subscription style blocks */
body.gate-recycling-theme .price-view-credits-count,
body.gate-recycling-theme .quickview-pricing-section,
body.gate-recycling-theme .catalog-analysis-snippet,
body.gate-recycling-theme .tab-content:not(.gate-pdp-tab-content),
body.gate-recycling-theme .tab-content:not(.gate-pdp-tab-content) .tab-pane,
body.gate-recycling-theme .description_img,
body.gate-recycling-theme .table,
body.gate-recycling-theme .table-sm,
body.gate-recycling-theme .table-bordered,
body.gate-recycling-theme [class*="subscription"],
body.gate-recycling-theme [class*="price-plan"],
body.gate-recycling-theme .alert {
  background-color: rgba(8, 20, 12, 0.5) !important;
  border-color: rgba(42, 107, 20, 0.16) !important;
}

body.gate-recycling-theme footer .container-fluid,
body.gate-recycling-theme footer .container-fluid.bg-white,
body.gate-recycling-theme footer .border-top.bg-white {
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(42, 107, 20, 0.16) !important;
}

body.gate-recycling-theme .global-mobile-dock {
  background: rgba(8, 15, 10, 0.72) !important;
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(42, 107, 20, 0.16) !important;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

#gate-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  background-image: url("../image/gate_app_background.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity .45s ease, visibility .45s ease;
}
#gate-loader::after {
  content: none;
}
#gate-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.gate-loader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.gate-loader-inner img {
  width: 170px;
  filter: drop-shadow(0 0 24px rgba(42, 107, 20,.75));
  margin-bottom: 24px;
}
.gate-loader-ring {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid rgba(42, 107, 20,.18);
  border-top-color: #7dff73;
  box-shadow: 0 0 18px rgba(42, 107, 20,.35);
  animation: gateSpin .8s linear infinite;
}
.gate-loader-inner p {
  margin: 0;
  color: rgba(230,255,230,.8);
  letter-spacing: .8px;
  font-size: 14px;
}
@keyframes gateSpin {
  to { transform: rotate(360deg); }
}

.search-nav {
  height: 72px !important;
  min-height: 72px !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(42, 107, 20,.20), transparent 28%),
    linear-gradient(180deg, #07120b 0%, #020604 100%) !important;
  border-bottom: 1px solid rgba(42, 107, 20,.18) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.55) !important;
}

.search-nav .navbar {
  height: 72px !important;
  min-height: 72px !important;
  width: 100% !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.search-nav .navbar > button.btn {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #76ff72 !important;
  z-index: 3 !important;
}

.search-nav .navbar > button.btn svg,
.search-nav .navbar > button.btn i {
  width: 18px !important;
  height: 18px !important;
  color: #76ff72 !important;
  filter: drop-shadow(0 0 8px rgba(118,255,114,.55));
}

.search-nav .company-logo {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2 !important;
}

.search-nav .company-logo img,
.search-nav .brand-logo-link {
  width: 188px !important;
  max-width: 188px !important;
  height: auto !important;
  max-height: 72px !important;
  margin: 0 !important;
  object-fit: contain !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
}

.search-nav .me-3v {
  margin-right: 0 !important;
}

.search-nav .text-dark-emphasis {
  color: #76ff72 !important;
}

.search-nav.content-wrapper {
  display: none !important;
}

@media (max-width: 767.98px) {
  .search-nav.content-wrapper {
    display: block !important;
  }
}

main {
    margin-top: 20px !important;
}
body {
  background: #000000 !important;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: #000000;
  background-image: url("../image/gate_app_background.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body::after {
  content: none;
}

/* =====================================================================
   Login offcanvas neon fixes
   custom.css forces .offcanvas-header to white and paints .eye-icons
   white. Re-skin them inside the gate-recycling theme login canvas.
   ===================================================================== */
body.gate-recycling-theme .premium-auth-offcanvas .offcanvas-header,
body.gate-recycling-theme .premium-auth-offcanvas .premium-auth-offcanvas-header {
    background: linear-gradient(180deg, rgba(9, 26, 13, 0.95), rgba(2, 8, 5, 0.97)) !important;
    border-bottom: 1px solid rgba(87, 255, 90, 0.18) !important;
    color: #e9ffe8 !important;
}

body.gate-recycling-theme .premium-auth-offcanvas .offcanvas-title {
    color: #e9ffe8 !important;
}

body.gate-recycling-theme .premium-auth-offcanvas .premium-auth-canvas-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(92, 255, 95, 0.45));
}

body.gate-recycling-theme .premium-auth-offcanvas .btn-close {
    filter: invert(1) brightness(1.6);
    opacity: 0.85;
}

body.gate-recycling-theme .premium-auth-offcanvas .btn-close:hover,
body.gate-recycling-theme .premium-auth-offcanvas .btn-close:focus {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(116, 255, 115, 0.35);
    border-radius: 6px;
}

body.gate-recycling-theme #login-canvas .password-insert {
    position: relative;
    overflow: hidden;
}

body.gate-recycling-theme #login-canvas .password-insert input {
    background: transparent !important;
    border: none !important;
    height: 100% !important;
    padding-right: 44px !important;
    color: #f3fff3 !important;
}

body.gate-recycling-theme #login-canvas .eye-icons {
    background-color: transparent !important;
    color: #b6ffbe !important;
    width: 32px;
    height: 32px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body.gate-recycling-theme #login-canvas .eye-icons ion-icon,
body.gate-recycling-theme #login-canvas .eye-icons .eye-btn {
    color: #b6ffbe;
    font-size: 20px;
    margin: 0;
}

body.gate-recycling-theme #login-canvas .form-check-input {
    background-color: rgba(230, 255, 230, 0.08);
    border: 1px solid rgba(161, 255, 165, 0.45);
}

body.gate-recycling-theme #login-canvas .form-check-input:checked {
    background-color: #2fb83f;
    border-color: #74ff73;
}

body.gate-recycling-theme #login-canvas .form-check-label {
    color: rgba(225, 255, 225, 0.82);
}

body.gate-recycling-theme #login-canvas .form-lable,
body.gate-recycling-theme #login-canvas .form-label p {
    color: #e9ffe8 !important;
}

body.gate-recycling-theme #login-canvas p {
    color: rgba(225, 255, 225, 0.82);
}

/* Login email / mobile field switch — stable slot + GPU hint for fades */
body.gate-recycling-theme .login-identity-fields {
    position: relative;
    min-height: 5.75rem;
}

body.gate-recycling-theme .login-identity-fields .mobile-form,
body.gate-recycling-theme .login-identity-fields .email-form {
    will-change: opacity;
}

/* --- Breadcrumb: kill default white bar, match account nav neon --- */
body.gate-recycling-theme .breadcrumb {
    background:
        linear-gradient(180deg, rgba(13, 24, 17, 0.92), rgba(8, 15, 10, 0.96)) !important;
    border: 1px solid rgba(61, 122, 40, 0.2) !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    margin-bottom: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 16px rgba(89, 255, 98, 0.08) !important;
}

body.gate-recycling-theme .breadcrumb-title-bar,
body.gate-recycling-theme .colored-breadcrumb {
    position: relative;
    padding: 1.15rem 1.35rem !important;
    margin-bottom: 1.25rem !important;
    background:
        linear-gradient(180deg, rgba(18, 30, 20, 0.95) 0%, rgba(8, 15, 10, 0.98) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.18) !important;
    border-radius: 18px !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 18px rgba(89, 255, 98, 0.08) !important;
}

body.gate-recycling-theme .breadcrumb-title-bar::before,
body.gate-recycling-theme .colored-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 12% 20%, rgba(42, 107, 20, 0.12), transparent 42%);
}

body.gate-recycling-theme .breadcrumb-title-bar .section-title,
body.gate-recycling-theme .breadcrumb-title-bar h1,
body.gate-recycling-theme .breadcrumb-title-bar h2,
body.gate-recycling-theme .breadcrumb-title-bar h5,
body.gate-recycling-theme .responsive-breadcrumb .section-title {
    color: #e9ffe8 !important;
    font-family: var(--gate-font) !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em;
    margin-bottom: 0.55rem !important;
    text-shadow: 0 0 14px rgba(42, 107, 20, 0.18);
}

body.gate-recycling-theme .breadcrumb-item,
body.gate-recycling-theme .breadcrumb-item a {
    color: rgba(189, 253, 192, 0.92) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

body.gate-recycling-theme .breadcrumb-item a:hover,
body.gate-recycling-theme .breadcrumb-item a:focus-visible {
    color: var(--gate-accent) !important;
    text-shadow: 0 0 10px rgba(42, 107, 20, 0.35);
}

body.gate-recycling-theme .breadcrumb-item.active,
body.gate-recycling-theme .breadcrumb-item.active.text-muted,
body.gate-recycling-theme nav[aria-label="breadcrumb"] .breadcrumb-item.active {
    color: var(--gate-accent) !important;
    text-shadow: 0 0 12px rgba(42, 107, 20, 0.28);
}

body.gate-recycling-theme .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(42, 107, 20, 0.45) !important;
    opacity: 1;
}

/* --- Account / subscription tables: same row DNA as myaccount-navigation --- */
body.gate-recycling-theme .gate-neon-table-panel {
    padding: 14px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(18, 30, 20, 0.95) 0%, rgba(8, 15, 10, 0.98) 100%);
    border: 1px solid rgba(61, 122, 40, 0.16);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 18px rgba(89, 255, 98, 0.06);
}

body.gate-recycling-theme .gate-neon-table-panel .bootstrap-table {
    background: transparent !important;
}

body.gate-recycling-theme .gate-neon-table-panel .fixed-table-toolbar,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-toolbar {
    margin-bottom: 12px;
    gap: 8px;
}

body.gate-recycling-theme .gate-neon-table-panel .fixed-table-toolbar .btn,
body.gate-recycling-theme .gate-neon-table-panel .fixed-table-toolbar .btn-group > .btn,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-toolbar .btn,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-toolbar .btn-group > .btn {
    min-height: 40px;
    padding: 0.45rem 0.85rem;
    border-radius: 12px !important;
    border: 1px solid rgba(61, 122, 40, 0.22) !important;
    background: linear-gradient(180deg, rgba(13, 24, 17, 0.95), rgba(8, 15, 10, 0.98)) !important;
    color: rgba(228, 247, 232, 0.92) !important;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

body.gate-recycling-theme .gate-neon-table-panel .fixed-table-toolbar .btn:hover,
body.gate-recycling-theme .gate-neon-table-panel .fixed-table-toolbar .btn-group > .btn:hover,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-toolbar .btn:hover {
    border-color: rgba(61, 122, 40, 0.42) !important;
    color: var(--gate-accent) !important;
    box-shadow: 0 0 18px rgba(89, 255, 98, 0.14), inset 0 0 14px rgba(89, 255, 98, 0.06);
}

body.gate-recycling-theme .gate-neon-table-panel .fixed-table-toolbar .search input,
body.gate-recycling-theme .gate-neon-table-panel .fixed-table-toolbar .search .form-control,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-toolbar .search input,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-toolbar .search .form-control {
    min-height: 40px;
    border-radius: 12px !important;
    border: 1px solid rgba(61, 122, 40, 0.22) !important;
    background: rgba(8, 18, 12, 0.92) !important;
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .gate-neon-table-panel .fixed-table-container,
body.gate-recycling-theme .gate-neon-table-panel .table,
body.gate-recycling-theme .gate-neon-table-panel table,
body.gate-recycling-theme .gate-neon-table-panel .gate-neon-table,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-container,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .table {
    /* Kill Bootstrap 5 white --bs-table-bg (var(--bs-body-bg)) on cells */
    --bs-table-bg: transparent;
    --bs-table-color: rgba(228, 247, 232, 0.92);
    --bs-table-striped-bg: rgba(13, 24, 17, 0.55);
    --bs-table-striped-color: rgba(228, 247, 232, 0.92);
    --bs-table-hover-bg: rgba(95, 255, 105, 0.08);
    --bs-table-hover-color: #eaffea;
    --bs-table-border-color: rgba(61, 122, 40, 0.18);
    --bs-table-accent-bg: transparent;
    --bs-table-bg-type: transparent;
    --bs-table-bg-state: transparent;
    background: transparent !important;
    background-color: transparent !important;
    border-color: rgba(61, 122, 40, 0.18) !important;
    color: rgba(228, 247, 232, 0.92) !important;
}

/* BS5 paints cells via background-color + inset box-shadow — override both */
body.gate-recycling-theme .gate-neon-table-panel .table > :not(caption) > * > *,
body.gate-recycling-theme .gate-neon-table-panel table > :not(caption) > * > *,
body.gate-recycling-theme .gate-neon-table-panel .gate-neon-table > :not(caption) > * > *,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .table > :not(caption) > * > * {
    background-color: transparent !important;
    color: inherit !important;
    border-color: rgba(61, 122, 40, 0.14) !important;
    box-shadow: none !important;
}

body.gate-recycling-theme .gate-neon-table-panel .table thead th,
body.gate-recycling-theme .gate-neon-table-panel table thead th,
body.gate-recycling-theme .gate-neon-table-panel .table thead > tr > th,
body.gate-recycling-theme .gate-neon-table-panel table thead > tr > th,
body.gate-recycling-theme .padding-16-30 .bootstrap-table thead th,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-header th {
    background:
        linear-gradient(180deg, rgba(26, 48, 32, 0.98), rgba(11, 23, 14, 0.98)) !important;
    background-color: rgba(14, 28, 18, 0.98) !important;
    border: 1px solid rgba(61, 122, 40, 0.35) !important;
    border-bottom: 1px solid rgba(121, 255, 125, 0.32) !important;
    color: #eaffea !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.78rem;
    padding: 0.8rem 0.9rem !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

body.gate-recycling-theme .gate-neon-table-panel .table tbody tr,
body.gate-recycling-theme .gate-neon-table-panel table tbody tr,
body.gate-recycling-theme .padding-16-30 .bootstrap-table tbody tr {
    background: transparent !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.gate-recycling-theme .gate-neon-table-panel .table tbody td,
body.gate-recycling-theme .gate-neon-table-panel table tbody td,
body.gate-recycling-theme .gate-neon-table-panel .table tbody > tr > td,
body.gate-recycling-theme .gate-neon-table-panel table tbody > tr > td,
body.gate-recycling-theme .padding-16-30 .bootstrap-table tbody td {
    background:
        linear-gradient(180deg, rgba(13, 24, 17, 0.92), rgba(8, 15, 10, 0.95)) !important;
    background-color: rgba(10, 18, 12, 0.92) !important;
    border: 1px solid rgba(61, 122, 40, 0.14) !important;
    color: rgba(228, 247, 232, 0.92) !important;
    padding: 0.72rem 0.9rem !important;
    vertical-align: middle;
    box-shadow: none !important;
}

body.gate-recycling-theme .gate-neon-table-panel .table tbody tr:hover > td,
body.gate-recycling-theme .gate-neon-table-panel table tbody tr:hover > td,
body.gate-recycling-theme .gate-neon-table-panel .table.table-hover > tbody > tr:hover > *,
body.gate-recycling-theme .padding-16-30 .bootstrap-table tbody tr:hover > td {
    background:
        radial-gradient(circle at 16% 40%, rgba(95, 255, 105, 0.1), transparent 52%),
        linear-gradient(180deg, rgba(20, 38, 26, 0.98), rgba(10, 20, 13, 0.98)) !important;
    background-color: rgba(16, 32, 20, 0.98) !important;
    color: #eaffea !important;
    box-shadow: inset 0 0 0 1px rgba(121, 255, 125, 0.22) !important;
    border-color: rgba(61, 122, 40, 0.28) !important;
}

body.gate-recycling-theme .gate-neon-table-panel .table-bordered > :not(caption) > *,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .table-bordered > :not(caption) > * {
    border-color: rgba(61, 122, 40, 0.14) !important;
}

/* Striped odd rows stay dark glass, never white */
body.gate-recycling-theme .gate-neon-table-panel .table-striped > tbody > tr:nth-of-type(odd) > *,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-bg-type: rgba(13, 24, 17, 0.55);
    background-color: rgba(13, 24, 17, 0.55) !important;
    color: rgba(228, 247, 232, 0.92) !important;
    box-shadow: none !important;
}

body.gate-recycling-theme .gate-neon-table-panel .fixed-table-pagination,
body.gate-recycling-theme .padding-16-30 .bootstrap-table .fixed-table-pagination {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(61, 122, 40, 0.12);
}

/* Subscription plan cards on price-plans page */
body.gate-recycling-theme .container .card.shadow-sm {
    background:
        linear-gradient(180deg, rgba(18, 30, 20, 0.95) 0%, rgba(8, 15, 10, 0.98) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.16) !important;
    border-radius: 18px !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 18px rgba(89, 255, 98, 0.06) !important;
}

body.gate-recycling-theme .container .card.shadow-sm .card-title {
    color: #e9ffe8 !important;
}

body.gate-recycling-theme .container .card.shadow-sm .card-text,
body.gate-recycling-theme .container .card.shadow-sm .text-muted,
body.gate-recycling-theme .container .card.shadow-sm .small {
    color: var(--gate-muted) !important;
}

body.gate-recycling-theme .gate-neon-alert {
    background: linear-gradient(180deg, rgba(13, 24, 17, 0.95), rgba(8, 15, 10, 0.98)) !important;
    border: 1px solid rgba(61, 122, 40, 0.22) !important;
    color: rgba(228, 247, 232, 0.92) !important;
    border-radius: 14px !important;
    box-shadow: 0 0 16px rgba(89, 255, 98, 0.08);
}

/* Wishlist — filled heart remove, listing-style image tile */
body.gate-recycling-theme .wishlist-product-container .wishlist-card {
    position: relative;
}

body.gate-recycling-theme .wishlist-product-container .wishlist-card .rating-div {
    z-index: 6;
}

body.gate-recycling-theme .wishlist-product-container .add-to-fav-btn {
    cursor: pointer;
}

body.gate-recycling-theme .wishlist-product-container .add-to-fav-visual-svg {
    transition: transform 0.18s ease;
}

body.gate-recycling-theme .wishlist-product-container .add-to-fav-btn:hover .add-to-fav-visual-svg {
    transform: scale(1.06);
}

body.gate-recycling-theme .wishlist-product-container .img-box-h250 img {
    object-fit: contain;
}

body.gate-recycling-theme .wishlist-product-container .fav-product {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============ Lot detail — overview card ============ */
body.gate-recycling-theme .lot-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(228, 247, 232, 0.65) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.15s ease;
}

body.gate-recycling-theme .lot-back-link:hover {
    color: var(--gate-accent) !important;
}

body.gate-recycling-theme .lot-overview-card {
    padding: 20px !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, rgba(18, 30, 20, 0.95) 0%, rgba(8, 15, 10, 0.98) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.18) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(89, 255, 98, 0.08) !important;
}

body.gate-recycling-theme .lot-overview-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(61, 122, 40, 0.14);
}

body.gate-recycling-theme .lot-overview-card__identity .section-title {
    margin-bottom: 0.35rem;
}

body.gate-recycling-theme .lot-overview-card__badges {
    display: flex;
    gap: 6px;
}

body.gate-recycling-theme .lot-overview-card__live {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

body.gate-recycling-theme .lot-overview-card__live-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(228, 247, 232, 0.55);
}

body.gate-recycling-theme .lot-overview-card__live-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gate-accent);
    text-shadow: 0 0 14px var(--gate-glow);
}

body.gate-recycling-theme .lot-overview-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.gate-recycling-theme .lot-overview-stat {
    flex: 1 1 130px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(8, 20, 12, 0.55);
    border: 1px solid rgba(42, 107, 20, 0.14);
}

body.gate-recycling-theme .lot-overview-stat__value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e9ffe8;
}

body.gate-recycling-theme .lot-overview-stat__label {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(228, 247, 232, 0.55);
}

/* ============ Lot detail — tabs ============ */
body.gate-recycling-theme .lot-tabs {
    border-bottom: 1px solid rgba(61, 122, 40, 0.16);
    gap: 6px;
}

body.gate-recycling-theme .lot-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    color: rgba(228, 247, 232, 0.55) !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 10px 4px 12px;
    margin-right: 22px;
    border-radius: 0 !important;
    position: relative;
    transition: color 0.15s ease;
}

body.gate-recycling-theme .lot-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--gate-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px var(--gate-glow);
}

body.gate-recycling-theme .lot-tabs .nav-link:hover {
    color: rgba(228, 247, 232, 0.85) !important;
}

body.gate-recycling-theme .lot-tabs .nav-link.active {
    color: var(--gate-accent) !important;
    text-shadow: 0 0 10px var(--gate-glow);
}

body.gate-recycling-theme .lot-tabs .nav-link.active::after {
    transform: scaleX(1);
}

/* ============ Lot detail — summary panel (Gate glass) + item cards ============ */
body.gate-recycling-theme .lot-summary-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gate-glass-border);
    background: var(--gate-glass-panel);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.gate-recycling-theme .lot-summary-table {
    /* Kill Bootstrap 5 white --bs-table-bg on cells */
    --bs-table-bg: transparent;
    --bs-table-color: var(--gate-text-soft);
    --bs-table-border-color: rgba(61, 122, 40, 0.28);
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-bg-type: transparent;
    --bs-table-bg-state: transparent;
    color: var(--gate-text-soft);
    margin-bottom: 0;
    background: transparent !important;
    background-color: transparent !important;
}

body.gate-recycling-theme .lot-summary-table > :not(caption) > * > * {
    background-color: transparent !important;
    color: inherit !important;
    border-color: rgba(61, 122, 40, 0.28) !important;
    box-shadow: none !important;
}

body.gate-recycling-theme .lot-summary-table thead th {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gate-text-soft) !important;
    border-bottom: 1px solid rgba(61, 122, 40, 0.28) !important;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: transparent !important;
}

body.gate-recycling-theme .lot-summary-table tbody td {
    text-align: center;
    padding: 0.9rem 0.5rem;
    border: 0;
    color: var(--gate-text-soft) !important;
    background: transparent !important;
}

body.gate-recycling-theme .lot-summary-table tbody td strong {
    color: var(--gate-text-soft);
}

body.gate-recycling-theme .lot-summary-table tbody td:first-child strong {
    color: #7dff82;
}

body.gate-recycling-theme .lot-detail-card {
    display: flex;
    align-items: stretch;
    gap: 14px;
    padding: 14px !important;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 28, 18, 0.9) 0%, rgba(8, 15, 10, 0.96) 100%) !important;
    border: 1px solid rgba(61, 122, 40, 0.14) !important;
    border-radius: 16px !important;
    transition: border-color 0.2s ease;
}

body.gate-recycling-theme .lot-detail-card:hover {
    border-color: rgba(42, 107, 20, 0.3) !important;
}

body.gate-recycling-theme .lot-detail-card__thumb {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(8, 20, 12, 0.7);
    border: 1px solid rgba(61, 122, 40, 0.16);
}

body.gate-recycling-theme .lot-detail-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.gate-recycling-theme .lot-detail-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.gate-recycling-theme .lot-detail-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

body.gate-recycling-theme .lot-detail-card__title {
    color: #e9ffe8 !important;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.gate-recycling-theme .lot-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 90, 110, 0.08);
    color: rgba(255, 120, 130, 0.85);
    text-decoration: none;
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

body.gate-recycling-theme .lot-remove-btn:hover {
    color: #ff6b7a;
    background: rgba(255, 90, 110, 0.16);
    transform: scale(1.06);
}

body.gate-recycling-theme .lot-remove-icon {
    font-size: 0.85rem;
    line-height: 1;
    pointer-events: none;
}

body.gate-recycling-theme .lot-detail-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

body.gate-recycling-theme .lot-line-total {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gate-accent);
}

body.gate-recycling-theme .lot-pricing-unit-badge {
    color: rgba(228, 247, 232, 0.55);
    font-size: 0.72rem;
}

body.gate-recycling-theme .lot-input-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(228, 247, 232, 0.5);
    margin-bottom: 0.2rem;
}

body.gate-recycling-theme .lot-amount-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

body.gate-recycling-theme .lot-amount-stepper input[type="number"] {
    background: rgba(8, 20, 12, 0.72);
    border-color: rgba(42, 107, 20, 0.18);
    color: rgba(228, 247, 232, 0.92);
    text-align: center;
    padding: 0.25rem 0.4rem;
    width: 100%;
    min-width: 0;
}

body.gate-recycling-theme .lot-amount-stepper input[type="number"]:focus {
    border-color: rgba(42, 107, 20, 0.45);
    box-shadow: 0 0 0 0.15rem rgba(42, 107, 20, 0.12);
}

body.gate-recycling-theme .lot-stepper-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(8, 20, 12, 0.72);
    border: 1px solid rgba(61, 122, 40, 0.2);
    color: rgba(223, 255, 225, 0.85);
    font-size: 1rem;
    line-height: 1;
    transition: border-color 0.15s ease, color 0.15s ease;
}

body.gate-recycling-theme .lot-stepper-btn:hover {
    border-color: var(--gate-accent);
    color: var(--gate-accent);
}

body.gate-recycling-theme .lot-line-save-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(89, 255, 98, 0.1);
    border: 1px solid rgba(121, 255, 125, 0.3);
    color: rgba(185, 255, 186, 0.75);
    font-size: 0.8rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

body.gate-recycling-theme .lot-line-save-btn:hover {
    border-color: var(--gate-accent);
    color: var(--gate-accent);
}

body.gate-recycling-theme .lot-line-save-btn.is-dirty {
    background: rgba(89, 255, 98, 0.22);
    border-color: var(--gate-accent);
    color: var(--gate-accent);
    box-shadow: 0 0 12px rgba(42, 107, 20, 0.3);
    animation: gate-lot-pulse 1.4s ease-in-out infinite;
}

@keyframes gate-lot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

body.gate-recycling-theme .lot-product {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============ Lot detail — action bar ============ */
body.gate-recycling-theme .lot-sticky-actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(6, 14, 9, 0.85);
    border: 1px solid rgba(61, 122, 40, 0.22);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55), 0 0 22px rgba(89, 255, 98, 0.1);
}

body.gate-recycling-theme .lot-sticky-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.65rem 1rem !important;
    border-radius: 11px !important;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

body.gate-recycling-theme .lot-sticky-btn--outline {
    background: rgba(8, 20, 12, 0.6) !important;
    border: 1px solid rgba(61, 122, 40, 0.3) !important;
    color: #e9ffe8 !important;
}

body.gate-recycling-theme .lot-sticky-btn--outline:hover {
    border-color: var(--gate-accent) !important;
    color: var(--gate-accent) !important;
}

body.gate-recycling-theme .lot-sticky-btn--primary {
    background: linear-gradient(180deg, #2a6b14 0%, #1e5210 55%, #12380a 100%) !important;
    border: 1px solid #3c9018 !important;
    color: #eaffe6 !important;
    box-shadow: 0 0 16px rgba(89, 255, 98, 0.16);
}

body.gate-recycling-theme .lot-sticky-btn--primary:hover {
    filter: brightness(1.1);
}

body.gate-recycling-theme .lot-sticky-btn--primary.is-loading i {
    animation: gate-lot-spin 0.8s linear infinite;
}

@keyframes gate-lot-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============ Lot detail — empty state ============ */
body.gate-recycling-theme .lot-empty-state {
    padding: 56px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 30, 18, 0.7) 0%, rgba(8, 15, 10, 0.85) 100%);
    border: 1px dashed rgba(61, 122, 40, 0.22);
}

body.gate-recycling-theme .lot-empty-state__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(89, 255, 98, 0.1);
    border: 1px solid rgba(121, 255, 125, 0.3);
    color: var(--gate-accent);
    font-size: 1.4rem;
}

body.gate-recycling-theme .lot-empty-state h5 {
    color: rgba(228, 247, 232, 0.88);
}

body.gate-recycling-theme .lot-empty-state__text {
    color: rgba(228, 247, 232, 0.6) !important;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Catalog listing — 2026 neon filter panel */
body.gate-recycling-theme .gate-catalog-filter-sidebar {
    position: sticky;
    top: 1rem;
    align-self: flex-start;
}

body.gate-recycling-theme .gate-catalog-filters {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

body.gate-recycling-theme .gate-catalog-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(42, 107, 20, 0.14);
}

body.gate-recycling-theme .gate-catalog-filters__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

body.gate-recycling-theme .gate-catalog-filters__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: rgba(42, 107, 20, 0.12);
    color: #3d7a28;
    box-shadow: 0 0 14px rgba(42, 107, 20, 0.12);
}

body.gate-recycling-theme .gate-catalog-filters__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e8ffe8;
    letter-spacing: 0.02em;
}

body.gate-recycling-theme .gate-catalog-filters__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 1.65rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #071108;
    background: linear-gradient(135deg, #2a6b14, #3d7a28);
    box-shadow: 0 0 12px rgba(42, 107, 20, 0.35);
}

body.gate-recycling-theme .gate-catalog-filters__stack {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

body.gate-recycling-theme .gate-filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

body.gate-recycling-theme .gate-filter-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(200, 245, 203, 0.78);
}

body.gate-recycling-theme .gate-filter-label ion-icon {
    font-size: 1rem;
    color: #7dff82;
}

body.gate-recycling-theme .gate-filter-select-wrap {
    position: relative;
}

body.gate-recycling-theme .gate-catalog-filter-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0.72rem 2.4rem 0.72rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(42, 107, 20, 0.22);
    background:
        linear-gradient(180deg, rgba(10, 24, 14, 0.95), rgba(6, 16, 10, 0.98));
    color: #e8ffe8;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 0 1px rgba(42, 107, 20, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.gate-recycling-theme .gate-catalog-filter-select:hover {
    border-color: rgba(42, 107, 20, 0.38);
}

body.gate-recycling-theme .gate-catalog-filter-select:focus {
    border-color: rgba(42, 107, 20, 0.55);
    box-shadow:
        0 0 0 3px rgba(42, 107, 20, 0.14),
        0 0 18px rgba(42, 107, 20, 0.12);
    outline: none;
}

body.gate-recycling-theme .gate-catalog-filter-select option {
    background: #0a1810;
    color: #e8ffe8;
}

body.gate-recycling-theme .gate-filter-select-chevron {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(141, 255, 138, 0.85);
    display: inline-flex;
    align-items: center;
}

body.gate-recycling-theme .gate-catalog-filters__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

body.gate-recycling-theme .gate-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(42, 107, 20, 0.28);
    background: rgba(42, 107, 20, 0.1);
    color: #d8f8dc;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

body.gate-recycling-theme .gate-filter-chip:hover {
    background: rgba(42, 107, 20, 0.18);
    border-color: rgba(42, 107, 20, 0.45);
    transform: translateY(-1px);
}

body.gate-recycling-theme .gate-filter-chip ion-icon {
    font-size: 0.95rem;
    color: #b8cdb8;
}

body.gate-recycling-theme .gate-catalog-filters__actions {
    padding-top: 0.25rem;
}

body.gate-recycling-theme .gate-filter-reset-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.62rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(42, 107, 20, 0.2) !important;
    background: rgba(8, 20, 12, 0.72) !important;
    color: rgba(216, 248, 220, 0.9) !important;
    font-weight: 600;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

body.gate-recycling-theme .gate-filter-reset-btn:hover {
    border-color: rgba(255, 120, 130, 0.45) !important;
    background: rgba(40, 12, 16, 0.55) !important;
    color: #ffb8c0 !important;
}

body.gate-recycling-theme .gate-attribute-filters__title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(200, 245, 203, 0.72);
    margin-bottom: 0.75rem;
}

body.gate-recycling-theme .gate-filter-offcanvas {
    background: linear-gradient(180deg, rgba(8, 20, 12, 0.98), rgba(6, 14, 9, 0.99)) !important;
    border-left: 1px solid rgba(42, 107, 20, 0.18) !important;
    color: #e8ffe8;
}

body.gate-recycling-theme .gate-filter-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(42, 107, 20, 0.12);
}

body.gate-recycling-theme .gate-filter-offcanvas .offcanvas-title {
    color: #e8ffe8;
    font-weight: 700;
}

body.gate-recycling-theme .product-filter-mobilescreen .btn {
    border: 1px solid rgba(42, 107, 20, 0.18);
    border-radius: 12px;
    background: rgba(8, 20, 12, 0.65);
    color: #d8f8dc;
}

body.gate-recycling-theme .product-filter-mobilescreen .btn ion-icon {
    color: #7dff82;
}

/* FAQ hero illustration */
body.gate-recycling-theme .home_faq_sec .faq_image {
    padding: 0.5rem 0;
}

body.gate-recycling-theme .home_faq_sec .faq-hero-image {
    background: transparent !important;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 24px rgba(42, 107, 20, 0.1));
}

/* PDP + products listing actions — Show price + Add to Lot */
body.gate-recycling-theme {
    --btn-height: 48px;
    --font-family: var(--gate-font);
}

body.gate-recycling-theme .gate-pdp-action-row {
    width: 100%;
}

body.gate-recycling-theme .gate-pdp-price-slot,
body.gate-recycling-theme .gate-pdp-lot-slot {
    min-width: 0;
}

body.gate-recycling-theme .btn-continue {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: var(--btn-height);
    height: var(--btn-height);
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.3px;
    cursor: pointer;
    border-radius: 9px !important;
    border: 1px solid var(--gate-cta-border) !important;
    background: var(--gate-cta-gradient) !important;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
    transition: filter 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    outline: none;
}

body.gate-recycling-theme .btn-continue::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 6px;
    bottom: -3px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(42, 107, 20, 0.4) 50%,
        transparent
    );
    filter: blur(2px);
    pointer-events: none;
}

body.gate-recycling-theme .btn-continue:hover:not(:disabled) {
    filter: brightness(1.12);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Outline secondary CTAs — Show price (Flutter outline style) */
body.gate-recycling-theme .gate-pdp-reveal-btn,
body.gate-recycling-theme .btn-continue.gate-pdp-reveal-btn {
    background: #0d140d !important;
    border: 1px solid var(--gate-cta-border) !important;
    color: var(--gate-text-soft) !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Legacy .shuffle outline chrome must NOT style PDP compare */
body.gate-recycling-theme .compare-share-btn .compare,
body.gate-recycling-theme .gate-pdp-meta-btn.compare {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--gate-brand-muted) !important;
}

body.gate-recycling-theme .gate-pdp-reveal-btn:hover,
body.gate-recycling-theme .btn-continue.gate-pdp-reveal-btn:hover {
    filter: brightness(1.08);
    color: var(--gate-text) !important;
}

body.gate-recycling-theme .btn-continue::after {
    display: none;
}

body.gate-recycling-theme .btn-continue:active:not(:disabled) {
    transform: scale(0.98);
    filter: brightness(0.95);
}

body.gate-recycling-theme .btn-continue:focus-visible {
    border-color: var(--gate-cta-border) !important;
    box-shadow: 0 0 0 3px rgba(60, 144, 24, 0.35);
}

body.gate-recycling-theme .gate-pdp-show-price-btn:disabled {
    opacity: 0.72;
}

body.gate-recycling-theme .gate-pdp-price-revealed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: var(--gate-glass-panel);
    border: 1px solid var(--gate-glass-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.gate-recycling-theme .gate-pdp-price-revealed .catalog-price-line-kg {
    color: var(--gate-text-soft) !important;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
}

body.gate-recycling-theme .gate-pdp-price-revealed .catalog-price-line-unit {
    color: var(--gate-brand-muted) !important;
    font-size: 0.84rem;
    line-height: 1.3;
    margin-top: 0.2rem;
}

/* PDP favorite + more products (Flutter match) — see gate-pdp-meta-* rules below */
body.gate-recycling-theme .gate-more-products-section .section-title {
    font-size: 1.15rem;
    color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme .gate-more-product-card {
    background: var(--gate-card-panel) !important;
    border: 1px solid var(--gate-catalog-border) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

body.gate-recycling-theme .categorises-container {
    background: var(--gate-card-panel) !important;
    border: 1px solid var(--gate-catalog-border) !important;
    border-radius: 12px;
    overflow: hidden;
}

/* =====================================================================
   FLUTTER FORCE MATCH — primaryButtonGradient + glassPanelColor (0.22)
   Appended last so it beats leftover neon rules.
   ===================================================================== */
body.gate-recycling-theme {
    --gate-panel: rgba(0, 0, 0, 0.22) !important;
    --gate-card-panel: rgba(0, 0, 0, 0.22) !important;
    --gate-glass-panel: rgba(0, 0, 0, 0.22) !important;
    --gate-glass-border: rgba(61, 122, 40, 0.4) !important;
    --gate-catalog-border: rgba(61, 122, 40, 0.4) !important;
    --gate-cta-gradient: linear-gradient(180deg, #2a6b14 0%, #1e5210 50%, #12380a 100%) !important;
    --gate-cta-border: #3c9018 !important;
    --gate-cta-text: #e8f5e8 !important;
    --primary-color: #2a6b14 !important;
    --primary-color-onhover: #1e5210 !important;
    --bs-primary: #2a6b14 !important;
    --bs-primary-rgb: 42, 107, 20 !important;
}

/* Panels / cards / boxes — Flutter black glass @ 0.22 */
body.gate-recycling-theme .card,
body.gate-recycling-theme .product-card,
body.gate-recycling-theme .grid-view-card,
body.gate-recycling-theme .list-view-card,
body.gate-recycling-theme .grid-card-container .product-card,
body.gate-recycling-theme .gate-more-product-card,
body.gate-recycling-theme .Product-Detail-card,
body.gate-recycling-theme .filter-section,
body.gate-recycling-theme .gate-catalog-filter-sidebar,
body.gate-recycling-theme .specification,
body.gate-recycling-theme .item-detail,
body.gate-recycling-theme .myaccount-navigation,
body.gate-recycling-theme .lot-group-card,
body.gate-recycling-theme .lots-stat,
body.gate-recycling-theme .lot-overview-card,
body.gate-recycling-theme .lot-summary-table-wrap,
body.gate-recycling-theme .gate-pdp-kv-card,
body.gate-recycling-theme .categorises-container,
body.gate-recycling-theme .breadcrumb-title-bar,
body.gate-recycling-theme .colored-breadcrumb,
body.gate-recycling-theme .modal-content,
body.gate-recycling-theme .offcanvas,
body.gate-recycling-theme .dropdown-menu {
    background: rgba(0, 0, 0, 0.22) !important;
    background-color: rgba(0, 0, 0, 0.22) !important;
    background-image: none !important;
    border: 1px solid rgba(61, 122, 40, 0.4) !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.gate-recycling-theme .card:hover,
body.gate-recycling-theme .product-card:hover,
body.gate-recycling-theme .grid-view-card:hover {
    border-color: rgba(61, 122, 40, 0.55) !important;
    box-shadow: none !important;
}

/* Primary CTAs — Flutter primaryButtonFaceDecoration (no neon glow) */
body.gate-recycling-theme .btn-primary,
body.gate-recycling-theme .btn-success,
body.gate-recycling-theme .add-in-cart-btn,
body.gate-recycling-theme .submit-btn,
body.gate-recycling-theme .apply-btn,
body.gate-recycling-theme .add-btn,
body.gate-recycling-theme .checkout-btn,
body.gate-recycling-theme .view-cart-btn,
body.gate-recycling-theme .btn-continue,
body.gate-recycling-theme .lots-new-btn,
body.gate-recycling-theme .explore-btn,
body.gate-recycling-theme .Register-btn,
body.gate-recycling-theme .gate-pdp-add-lot-btn,
body.gate-recycling-theme .product_filter_btn,
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-confirm,
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-confirm,
body.gate-recycling-theme .pagination .page-item.active .page-link,
body.gate-recycling-theme .page-item.active .page-link,
body.gate-recycling-theme a.btn.add-in-cart-btn,
body.gate-recycling-theme button.btn-continue,
body.gate-recycling-theme .btn.btn-primary {
    background: linear-gradient(180deg, #2a6b14 0%, #1e5210 50%, #12380a 100%) !important;
    background-color: #1e5210 !important;
    background-image: linear-gradient(180deg, #2a6b14 0%, #1e5210 50%, #12380a 100%) !important;
    border: 1px solid rgba(60, 144, 24, 0.28) !important;
    color: #e8f5e8 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

body.gate-recycling-theme .btn-primary:hover,
body.gate-recycling-theme .btn-success:hover,
body.gate-recycling-theme .add-in-cart-btn:hover,
body.gate-recycling-theme .submit-btn:hover,
body.gate-recycling-theme .apply-btn:hover,
body.gate-recycling-theme .add-btn:hover,
body.gate-recycling-theme .checkout-btn:hover,
body.gate-recycling-theme .view-cart-btn:hover,
body.gate-recycling-theme .btn-continue:hover,
body.gate-recycling-theme .lots-new-btn:hover,
body.gate-recycling-theme .explore-btn:hover,
body.gate-recycling-theme .Register-btn:hover,
body.gate-recycling-theme .gate-pdp-add-lot-btn:hover,
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .swal2-confirm:hover,
body.gate-recycling-theme .swal2-popup.gate-swal-popup:not(.swal2-toast) .gate-swal-confirm:hover {
    background: linear-gradient(180deg, #215510 0%, #17400c 50%, #0c2806 100%) !important;
    background-image: linear-gradient(180deg, #215510 0%, #17400c 50%, #0c2806 100%) !important;
    border-color: rgba(60, 144, 24, 0.4) !important;
    color: #e8f5e8 !important;
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

body.gate-recycling-theme .btn-continue::before,
body.gate-recycling-theme .btn-continue::after,
body.gate-recycling-theme .lots-new-btn::before,
body.gate-recycling-theme .lots-new-btn::after,
body.gate-recycling-theme .add-in-cart-btn::after {
    display: none !important;
    content: none !important;
}

/* Outline secondary — Show price / Compare (Flutter secondaryButton) */
body.gate-recycling-theme .gate-pdp-reveal-btn,
body.gate-recycling-theme .gate-pdp-show-price-btn,
body.gate-recycling-theme .btn-continue.gate-pdp-reveal-btn,
body.gate-recycling-theme .btn-continue.gate-pdp-show-price-btn,
body.gate-recycling-theme .btn-outline-primary,
body.gate-recycling-theme .btn-outline-success {
    background: #0d140d !important;
    background-image: none !important;
    border: 1px solid #3c9018 !important;
    color: #b8cdb8 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.gate-recycling-theme .gate-pdp-reveal-btn:hover,
body.gate-recycling-theme .gate-pdp-show-price-btn:hover,
body.gate-recycling-theme .btn-outline-primary:hover {
    background: #0d140d !important;
    filter: brightness(1.08);
    color: #e8f5e8 !important;
    box-shadow: none !important;
}

/* Kill neon text-shadows on chrome */
body.gate-recycling-theme .section-title,
body.gate-recycling-theme .nav-link,
body.gate-recycling-theme a {
    text-shadow: none !important;
}

/* =====================================================================
   UX FIXES PASS — logo, fav, nested cards, equal CTAs, type scale
   ===================================================================== */

/* Bigger header logo (mobile too) */
@media (max-width: 991.98px) {
  body.gate-recycling-theme .search-nav .company-logo img,
  body.gate-recycling-theme .search-nav .brand-logo-link,
  body.gate-recycling-theme .company-logo img.brand-logo-link {
    width: 148px !important;
    max-width: 148px !important;
    max-height: 56px !important;
  }
}

body.gate-recycling-theme .company-logo img.brand-logo-link,
body.gate-recycling-theme .brand-logo-link {
  width: 188px !important;
  max-width: 188px !important;
  max-height: 72px !important;
  filter: none !important;
}

/* Favorite — icon only, no circle / pill */
body.gate-recycling-theme .add-to-fav-btn,
body.gate-recycling-theme .gate-pdp-fav-btn,
body.gate-recycling-theme .product-card .add-to-fav-btn,
body.gate-recycling-theme .wishlist-product-container .add-to-fav-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

body.gate-recycling-theme .gate-pdp-fav-btn {
  gap: 8px;
}

/* Nested boxes: outer grid cell must NOT look like a card */
body.gate-recycling-theme .grid-card-container.product-card,
body.gate-recycling-theme .col-6.product-card,
body.gate-recycling-theme [class*="col-"].product-card.grid-card-container {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 8px 16px !important;
}

body.gate-recycling-theme .grid-card-container .card.grid-view-card.product-card,
body.gate-recycling-theme .card.grid-view-card {
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(61, 122, 40, 0.4) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* PDP Show price + Add to Lot — no nested glass box; equal 48px CTAs */
body.gate-recycling-theme .product-add-section,
body.gate-recycling-theme .gate-pdp-action-row,
body.gate-recycling-theme .gate-pdp-price-slot,
body.gate-recycling-theme .gate-pdp-lot-slot,
body.gate-recycling-theme .catalog-price-detail-slot {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.gate-recycling-theme .gate-pdp-action-row {
  align-items: stretch !important;
  width: 100% !important;
  gap: 0.5rem !important;
}

body.gate-recycling-theme .gate-pdp-price-slot,
body.gate-recycling-theme .gate-pdp-lot-slot {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

body.gate-recycling-theme .gate-pdp-action-row .btn-continue,
body.gate-recycling-theme .gate-pdp-action-row .add-btn,
body.gate-recycling-theme .gate-pdp-action-row .gate-pdp-show-price-btn,
body.gate-recycling-theme .gate-pdp-action-row .gate-pdp-add-lot-btn {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
}

body.gate-recycling-theme .gate-pdp-price-revealed {
  min-height: 48px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* PDP corners — match breadcrumb 18px (action meta row stays flat) */
body.gate-recycling-theme .Product-Detail-card,
body.gate-recycling-theme .gate-pdp-kv-card,
body.gate-recycling-theme .converter-meta-card.gate-pdp-kv-card,
body.gate-recycling-theme .gate-product-detail-panel {
  border-radius: 18px !important;
}

body.gate-recycling-theme .gate-pdp-kv-card,
body.gate-recycling-theme .converter-meta-card.gate-pdp-kv-card,
body.gate-recycling-theme .gate-product-detail-panel {
  overflow: hidden;
}

body.gate-recycling-theme .compare-share-btn,
body.gate-recycling-theme .gate-pdp-meta-actions-wrap {
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* PDP Favorite / Compare / Share — Flutter-style icon + label cluster */
body.gate-recycling-theme .gate-pdp-meta-actions {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem !important;
}

body.gate-recycling-theme .gate-pdp-meta-btn,
body.gate-recycling-theme .compare-share-btn .gate-pdp-fav-btn.add-to-fav-btn,
body.gate-recycling-theme .gate-pdp-fav-btn {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 6px !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  color: var(--gate-brand-muted) !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}

body.gate-recycling-theme .gate-pdp-meta-btn:hover,
body.gate-recycling-theme .gate-pdp-meta-btn:focus-visible,
body.gate-recycling-theme .gate-pdp-fav-btn:hover {
  color: var(--gate-accent, #85ff7e) !important;
  background: transparent !important;
  outline: none;
}

body.gate-recycling-theme .gate-pdp-meta-icon,
body.gate-recycling-theme .gate-pdp-fav-btn ion-icon,
body.gate-recycling-theme .gate-pdp-fav-btn .ion-icon,
body.gate-recycling-theme .gate-pdp-meta-btn ion-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  font-size: 20px !important;
  color: var(--gate-brand-muted) !important;
  flex-shrink: 0;
}

body.gate-recycling-theme .gate-pdp-fav-btn ion-icon.heart,
body.gate-recycling-theme .gate-pdp-fav-btn .heart {
  color: var(--gate-brand-muted) !important;
  opacity: 1;
}

body.gate-recycling-theme .gate-pdp-fav-btn ion-icon.heart-outline,
body.gate-recycling-theme .gate-pdp-fav-btn .heart-outline {
  color: var(--gate-brand-muted) !important;
  opacity: 0.9;
}

body.gate-recycling-theme .gate-pdp-meta-label,
body.gate-recycling-theme .gate-pdp-fav-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--gate-brand-muted) !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

body.gate-recycling-theme .gate-pdp-share-btn {
  position: relative;
  flex-wrap: nowrap;
  height: 40px !important;
  min-height: 40px !important;
}

body.gate-recycling-theme .gate-pdp-share-slot {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  width: auto;
  margin-left: 2px;
}

body.gate-recycling-theme .gate-pdp-share-slot:empty {
  display: none;
}

/* Add to Lot “+” prefix */
body.gate-recycling-theme .gate-pdp-add-lot-prefix {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4rem;
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
}

body.gate-recycling-theme .gate-pdp-add-lot-btn {
  gap: 0 !important;
}

/* More products — listing-style cards in a usable carousel */
body.gate-recycling-theme .gate-more-products-section {
  padding-top: 1.5rem !important;
  padding-bottom: 2rem !important;
}

body.gate-recycling-theme .gate-more-products-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.gate-recycling-theme .gate-more-products-title,
body.gate-recycling-theme .gate-more-products-section .section-title {
  margin: 0 !important;
  padding: 0 0.25rem !important;
  font-size: var(--gate-fs-section) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.3 !important;
  color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme .gate-more-products-track {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}

body.gate-recycling-theme .gate-more-products-swiper.swiper,
body.gate-recycling-theme .gate-more-products-section .mySwiper3 {
  width: 100%;
  margin: 0 !important;
  padding: 0 2.75rem !important;
  box-sizing: border-box;
  overflow: hidden;
}

body.gate-recycling-theme .gate-more-products-section .swiper-wrapper {
  align-items: stretch;
}

body.gate-recycling-theme .gate-more-products-section .swiper-slide {
  height: auto !important;
  display: flex !important;
  justify-content: stretch !important;
  align-items: stretch !important;
  font-size: inherit !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  min-width: 0;
}

body.gate-recycling-theme .gate-more-products-section .swiper-slide img {
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.gate-recycling-theme .gate-more-product-card {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 12px !important;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(61, 122, 40, 0.4) !important;
  box-shadow: none !important;
}

body.gate-recycling-theme .gate-more-product-card .gate-more-product-link {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  color: inherit;
}

body.gate-recycling-theme .gate-more-product-card .img-box-h250 {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

body.gate-recycling-theme .gate-more-product-card .img-box-h250 img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

body.gate-recycling-theme .gate-more-product-card .card-body {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0.75rem 0.85rem !important;
}

body.gate-recycling-theme .gate-more-product-card .gate-listing-card-head {
  padding-bottom: 0.35rem !important;
}

body.gate-recycling-theme .gate-more-product-card .product-icon-onhover {
  display: none !important;
}

/* More products nav — always visible, soft glass, scoped (beats custom.css opacity:0) */
body.gate-recycling-theme .gate-more-products-section .swiper-button-next,
body.gate-recycling-theme .gate-more-products-section .swiper-button-prev,
body.gate-recycling-theme .gate-more-products-section .gate-more-products-nav {
  position: absolute !important;
  top: 50% !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: 0 !important;
  transform: translateY(-50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 6 !important;
  color: var(--gate-brand-muted) !important;
  background: rgba(8, 18, 12, 0.72) !important;
  border: 1px solid rgba(61, 122, 40, 0.45) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

body.gate-recycling-theme .gate-more-products-section .swiper-button-prev,
body.gate-recycling-theme .gate-more-products-section .gate-more-products-nav.swiper-button-prev {
  left: 0.15rem !important;
  right: auto !important;
}

body.gate-recycling-theme .gate-more-products-section .swiper-button-next,
body.gate-recycling-theme .gate-more-products-section .gate-more-products-nav.swiper-button-next {
  right: 0.15rem !important;
  left: auto !important;
}

body.gate-recycling-theme .gate-more-products-section .swiper-button-next:hover,
body.gate-recycling-theme .gate-more-products-section .swiper-button-prev:hover,
body.gate-recycling-theme .gate-more-products-section .gate-more-products-nav:hover {
  color: var(--gate-accent, #85ff7e) !important;
  border-color: rgba(116, 255, 106, 0.5) !important;
  background: rgba(12, 28, 18, 0.88) !important;
}

body.gate-recycling-theme .gate-more-products-section .swiper-button-next.swiper-button-disabled,
body.gate-recycling-theme .gate-more-products-section .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35 !important;
  cursor: default;
}

body.gate-recycling-theme .gate-more-products-section .swiper-button-next::after,
body.gate-recycling-theme .gate-more-products-section .swiper-button-prev::after {
  content: none !important;
  display: none !important;
}

body.gate-recycling-theme .gate-more-products-section .swiper-button-next ion-icon,
body.gate-recycling-theme .gate-more-products-section .swiper-button-prev ion-icon,
body.gate-recycling-theme .gate-more-products-section .gate-more-products-nav ion-icon {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  color: inherit !important;
  pointer-events: none;
}

@media (min-width: 768px) {
  body.gate-recycling-theme .gate-more-products-section.swiper-arrow .swiper-button-next,
  body.gate-recycling-theme .gate-more-products-section .swiper-arrow .swiper-button-next,
  body.gate-recycling-theme .gate-more-products-section .mySwiper3 .swiper-button-next,
  body.gate-recycling-theme .gate-more-products-section.swiper-arrow .swiper-button-prev,
  body.gate-recycling-theme .gate-more-products-section .swiper-arrow .swiper-button-prev,
  body.gate-recycling-theme .gate-more-products-section .mySwiper3 .swiper-button-prev {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.gate-recycling-theme .gate-more-products-section .swiper-arrow .swiper-button-next,
  body.gate-recycling-theme .gate-more-products-section .mySwiper3 .swiper-button-next {
    right: 0.15rem !important;
  }

  body.gate-recycling-theme .gate-more-products-section .swiper-arrow .swiper-button-prev,
  body.gate-recycling-theme .gate-more-products-section .mySwiper3 .swiper-button-prev {
    left: 0.15rem !important;
  }
}

body.gate-recycling-theme .gate-more-products-empty {
  margin: 0 !important;
  padding: 0 0.25rem !important;
}

@media (max-width: 575.98px) {
  body.gate-recycling-theme .gate-more-products-title,
  body.gate-recycling-theme .gate-more-products-section .section-title,
  body.gate-recycling-theme .gate-more-products-empty {
    padding-left: 0.15rem !important;
    padding-right: 0.15rem !important;
  }

  body.gate-recycling-theme .gate-more-products-swiper.swiper,
  body.gate-recycling-theme .gate-more-products-section .mySwiper3 {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }

  body.gate-recycling-theme .gate-more-product-card .img-box-h250 {
    height: 140px;
  }
}

/* Sitewide type scale — stop random huge/tiny titles */
body.gate-recycling-theme {
  --gate-fs-body: 14px;
  --gate-fs-small: 12px;
  --gate-fs-card: 0.95rem;
  --gate-fs-section: 1.25rem;
  --gate-fs-hero: 1.35rem;
  font-size: var(--gate-fs-body) !important;
}

body.gate-recycling-theme p,
body.gate-recycling-theme .card-text,
body.gate-recycling-theme .text-muted {
  font-size: var(--gate-fs-body) !important;
  line-height: 1.45 !important;
}

body.gate-recycling-theme .section-title,
body.gate-recycling-theme h1.section-title,
body.gate-recycling-theme h2.section-title {
  font-size: var(--gate-fs-section) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.3 !important;
  margin-bottom: 0.35rem !important;
}

body.gate-recycling-theme .breadcrumb-title-bar .section-title {
  font-size: 1.15rem !important;
}

body.gate-recycling-theme .product-title,
body.gate-recycling-theme .card-title,
body.gate-recycling-theme h5.card-title,
body.gate-recycling-theme h4.card-title {
  font-size: var(--gate-fs-card) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

body.gate-recycling-theme .categories-card-text h4,
body.gate-recycling-theme .brands-card-text h4,
body.gate-recycling-theme .categories-card h4 {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

body.gate-recycling-theme .metals-board .section-title {
  font-size: 1.2rem !important;
}

body.gate-recycling-theme .metals-current-value {
  font-size: 1.35rem !important;
}

body.gate-recycling-theme .viewmorebtn,
body.gate-recycling-theme .btn.viewmorebtn {
  font-size: 13px !important;
  padding: 6px 14px !important;
}

body.gate-recycling-theme .h1, body.gate-recycling-theme h1 { font-size: 1.5rem !important; }
body.gate-recycling-theme .h2, body.gate-recycling-theme h2 { font-size: 1.3rem !important; }
body.gate-recycling-theme .h3, body.gate-recycling-theme h3 { font-size: 1.15rem !important; }
body.gate-recycling-theme .h4, body.gate-recycling-theme h4 { font-size: 1.05rem !important; }
body.gate-recycling-theme .h5, body.gate-recycling-theme h5 { font-size: 0.95rem !important; }
body.gate-recycling-theme .h6, body.gate-recycling-theme h6 { font-size: 0.875rem !important; }

/* Subscription page polish */
body.gate-recycling-theme .gate-subs-page > .breadcrumb-title-bar,
body.gate-recycling-theme .gate-subs-page > .colored-breadcrumb {
  margin-bottom: 0 !important;
}

body.gate-recycling-theme .gate-subs-hero {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

body.gate-recycling-theme .gate-subs-intro {
  color: var(--gate-text-soft) !important;
  font-size: 14px !important;
  max-width: 42rem;
}

body.gate-recycling-theme .gate-subs-balance {
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(61, 122, 40, 0.4) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  color: var(--gate-text) !important;
}

body.gate-recycling-theme .gate-subs-plan-card {
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(61, 122, 40, 0.4) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

body.gate-recycling-theme .gate-subs-plan-card .card-title {
  font-size: 1.05rem !important;
}

body.gate-recycling-theme .gate-subs-plan-card .fs-4 {
  font-size: 1.35rem !important;
  color: var(--gate-text-soft) !important;
}

body.gate-recycling-theme .gate-subs-plan-card .card-text,
body.gate-recycling-theme .gate-subs-plan-card .text-muted,
body.gate-recycling-theme .gate-subs-plan-card .small,
body.gate-recycling-theme .gate-subs-plan-card ul {
  color: var(--gate-muted) !important;
}

/* Subscriptions “Your recent requests” table — match plan-card glass DNA */
body.gate-recycling-theme .gate-subs-page .gate-neon-table-panel {
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(61, 122, 40, 0.4) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  padding: 12px;
}

body.gate-recycling-theme .gate-subs-page .gate-neon-table-panel .table,
body.gate-recycling-theme .gate-subs-page .gate-neon-table-panel .gate-neon-table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--gate-text-soft);
  --bs-table-border-color: rgba(61, 122, 40, 0.28);
  margin-bottom: 0;
}

body.gate-recycling-theme .gate-subs-page .section-title {
  color: var(--gate-text-soft) !important;
}

/* Listing / More products — matched Show price + Add to Lot row */
body.gate-recycling-theme {
  --gate-listing-cta-h: 42px;
}

body.gate-recycling-theme .gate-listing-card-head {
  padding-bottom: 0.35rem !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body.gate-recycling-theme .gate-listing-card-actions {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  margin-top: auto;
}

body.gate-recycling-theme .grid-view-card .card-body,
body.gate-recycling-theme .gate-more-product-card .card-body {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.gate-recycling-theme .gate-listing-action-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

body.gate-recycling-theme .gate-listing-price-slot,
body.gate-recycling-theme .gate-listing-lot-slot {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

body.gate-recycling-theme .gate-listing-price-inner,
body.gate-recycling-theme .gate-listing-price-slot .catalog-price-slot {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  margin: 0 !important;
}

body.gate-recycling-theme .gate-listing-action-row .gate-listing-show-price,
body.gate-recycling-theme .gate-listing-action-row .gate-listing-add-lot,
body.gate-recycling-theme .gate-listing-action-row .btn-show-catalog-price,
body.gate-recycling-theme .gate-listing-action-row .add-in-cart-btn {
  width: 100% !important;
  height: var(--gate-listing-cta-h) !important;
  min-height: var(--gate-listing-cta-h) !important;
  max-height: var(--gate-listing-cta-h) !important;
  padding: 0 10px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  font-family: 'Rajdhani', var(--gate-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.15 !important;
  border-radius: 10px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Kill legacy cart-label offset/hover slide (custom.css .add-in-cart left:5%) */
body.gate-recycling-theme .gate-listing-action-row .add-in-cart,
body.gate-recycling-theme .gate-listing-action-row .gate-listing-add-lot .add-in-cart {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  opacity: 1 !important;
  transform: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  display: inline !important;
}

body.gate-recycling-theme .gate-listing-action-row .gate-listing-add-lot:hover .add-in-cart,
body.gate-recycling-theme .gate-listing-action-row .add-in-cart-btn:hover .add-in-cart {
  bottom: auto !important;
  opacity: 1 !important;
  transform: none !important;
}

body.gate-recycling-theme .gate-listing-action-row .gate-listing-show-price,
body.gate-recycling-theme .gate-listing-action-row .btn-show-catalog-price {
  background: #0d140d !important;
  background-image: none !important;
  border: 1px solid #3c9018 !important;
  color: #b8cdb8 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.gate-recycling-theme .gate-listing-action-row .gate-listing-show-price:hover,
body.gate-recycling-theme .gate-listing-action-row .btn-show-catalog-price:hover {
  background: #0d140d !important;
  color: #e8f5e8 !important;
  filter: brightness(1.08);
}

body.gate-recycling-theme .gate-listing-action-row .gate-listing-add-lot .add-in-cart-icon {
  display: none !important;
}

@media (max-width: 575.98px) {
  body.gate-recycling-theme {
    --gate-listing-cta-h: 38px;
  }

  body.gate-recycling-theme .gate-listing-action-row {
    gap: 0.35rem;
  }

  body.gate-recycling-theme .gate-listing-action-row .gate-listing-show-price,
  body.gate-recycling-theme .gate-listing-action-row .gate-listing-add-lot,
  body.gate-recycling-theme .gate-listing-action-row .btn-show-catalog-price,
  body.gate-recycling-theme .gate-listing-action-row .add-in-cart-btn {
    padding: 0 6px !important;
    font-family: 'Rajdhani', 'Segoe UI', system-ui, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.1 !important;
  }

  body.gate-recycling-theme .gate-listing-action-row .add-in-cart,
  body.gate-recycling-theme .gate-listing-action-row .gate-listing-add-lot .add-in-cart {
    font-size: 12px !important;
    letter-spacing: 0.01em !important;
  }
}

body.gate-recycling-theme .gate-listing-price-visible {
  justify-content: center;
}

body.gate-recycling-theme .gate-listing-price-visible .card-price,
body.gate-recycling-theme .gate-listing-price-visible .gate-listing-price-inner {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: var(--gate-listing-cta-h) !important;
  min-height: var(--gate-listing-cta-h);
  display: flex;
  align-items: center;
}

body.gate-recycling-theme .gate-listing-action-row .catalog-price-revealed:not(.d-none) {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: var(--gate-listing-cta-h);
  width: 100%;
  font-size: 12px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  gap: 2px;
  line-height: 1.25 !important;
}

/* =====================================================================
   PDP meta actions + More products nav — final overrides (flutter-match-9)
   ===================================================================== */
body.gate-recycling-theme .compare-share-btn,
body.gate-recycling-theme .gate-pdp-meta-actions-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.gate-recycling-theme .gate-pdp-meta-actions > li {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (min-width: 768px) {
  body.gate-recycling-theme .gate-more-products-section .swiper-button-next,
  body.gate-recycling-theme .gate-more-products-section .swiper-button-prev,
  body.gate-recycling-theme .gate-more-products-swiper .swiper-button-next,
  body.gate-recycling-theme .gate-more-products-swiper .swiper-button-prev {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

body.gate-recycling-theme .gate-more-products-nav {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}
