/*
Theme Name: Real Clear Biogenix
Theme URI: https://realclearbiogenix.com
Author: Luciano Monegatto
Author URI: https://lucianomb.it
Description: Custom WooCommerce theme for Real Clear Biogenix LLC — research peptide e-commerce store.
Version: 3.6.5
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: Proprietary
License URI: https://realclearbiogenix.com
Text Domain: real-clear-biogenix
Tags: woocommerce, custom, e-commerce
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
    --color-primary:   #3484f2;
    --color-text:      #000000;
    --color-bg:        #ffffff;
    --color-primary-dark:  #1a6ad8;
    --color-primary-light: #eaf1fe;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

/* =========================================================
   COMING SOON PAGE
   ========================================================= */
.rcb-coming-soon {
    min-height: calc(100vh - var(--rcb-header-total, 0px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--color-bg);
}

.rcb-coming-soon__inner {
    max-width: 640px;
    width: 100%;
    text-align: center;
}

.rcb-coming-soon__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.rcb-coming-soon__logo-mark {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rcb-coming-soon__logo-mark svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.rcb-coming-soon__logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1.2;
    text-align: left;
}

.rcb-coming-soon__logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-primary);
}

.rcb-coming-soon__divider {
    width: 48px;
    height: 3px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 2px;
    margin: 0 auto 2.5rem;
}

.rcb-coming-soon__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.rcb-coming-soon__heading em {
    font-style: normal;
    color: var(--color-primary);
}

.rcb-coming-soon__subheading {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.rcb-coming-soon__badge {
    display: inline-block;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2.5rem;
}

.rcb-coming-soon__footer {
    margin-top: 4rem;
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 0.04em;
}

/* =========================================================
   COMING SOON — RESPONSIVE
   ========================================================= */
@media (max-width: 480px) {
    .rcb-coming-soon__logo {
        flex-direction: column;
        text-align: center;
    }

    .rcb-coming-soon__logo-text {
        text-align: center;
    }
}

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.rcb-announce {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    padding: 0.6rem 3rem;
    position: relative;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.rcb-announce__text {
    margin: 0;
}

.rcb-announce__close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: opacity 0.2s;
    border-radius: 4px;
}

.rcb-announce__close:hover,
.rcb-announce__close:focus-visible {
    opacity: 1;
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* =========================================================
   SITE HEADER — BASE
   ========================================================= */
.rcb-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 900;
    transition: box-shadow 0.25s ease;
}

.rcb-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.rcb-header__inner {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    gap: 2rem;
    position: relative; /* anchor for absolute logo on mobile */
}

/* =========================================================
   SPLIT NAVIGATION — DESKTOP
   ========================================================= */
.rcb-nav {
    flex: 1;
    min-width: 0;
}

.rcb-nav--right {
    text-align: right;
}

.rcb-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
}

.rcb-nav--right .rcb-nav__list {
    justify-content: flex-end;
}

.rcb-nav__list li a {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    position: relative;
    transition: color 0.2s ease;
}

.rcb-nav__list li a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.rcb-nav__list li a:hover,
.rcb-nav__list .current-menu-item > a,
.rcb-nav__list .current_page_item > a {
    color: var(--color-primary);
}

.rcb-nav__list li a:hover::after,
.rcb-nav__list .current-menu-item > a::after,
.rcb-nav__list .current_page_item > a::after {
    transform: scaleX(1);
}

.rcb-nav__list li a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* =========================================================
   NAV DROPDOWN
   ========================================================= */
.rcb-nav__list li.menu-item-has-children {
    position: relative;
}

.rcb-nav__list ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    z-index: 9999;
    padding: 14px 0 6px;
    list-style: none;
    margin: 0;
}

.rcb-nav__list li.menu-item-has-children:hover > ul,
.rcb-nav__list li.menu-item-has-children:focus-within > ul {
    display: block;
}

.rcb-nav__list ul li a {
    display: block;
    padding: 9px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
    border-radius: 0;
    letter-spacing: 0.01em;
}

.rcb-nav__list ul li a::after {
    display: none;
}

.rcb-nav__list ul li a:hover {
    color: var(--color-primary);
    background: var(--color-primary-light, #eaf1fe);
}

/* =========================================================
   SHOP MEGA MENU (desktop) — scoped entirely to .menu-item-mega-shop
   so no other nav item's markup or behavior is affected.

   Structure: <li class="menu-item-mega-shop"> > .rcb-mega (panel, flex
   row) > .rcb-mega__left (ul, one <li> per category) as the first flex
   child, and .rcb-mega__right-panel (holding one .rcb-mega__right-group
   per category, only the active one displayed) as the second flex
   child. Both are plain in-flow flex children — no absolute positioning
   — so .rcb-mega's height always auto-sizes to whichever column is
   taller; it can never clip or need an internal scrollbar. Which group
   is "active" is tracked by mega-menu.js (matching data-mega-key), with
   the first group active by default server-side so it still shows
   something sensible with JS disabled.
   ========================================================= */
.menu-item-mega-shop > .rcb-mega {
    display: flex;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    width: 760px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.25s;
    /* Safety clip: grid/flex children below are sized correctly (see
       .rcb-mega__product's min-width:0), but this guarantees nothing can
       ever visually bleed past the panel's own rounded border again. */
    overflow: hidden;
}

.menu-item-mega-shop:hover > .rcb-mega,
.menu-item-mega-shop:focus-within > .rcb-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

/* NOTE: every selector below is prefixed with .menu-item-mega-shop, even
   though nesting alone would resolve correctly — the existing flat-dropdown
   rules two sections up (".rcb-nav__list ul", ".rcb-nav__list ul li a", etc.)
   are descendant selectors that also match these new elements structurally,
   and several of them out-specify a single class selector by using more
   type selectors. Prefixing keeps every mega-menu rule at 2+ classes so it
   reliably wins, without touching or !important-ing the legacy rules that
   the plain dropdown (COA's/About/etc. never had, but Shop's own old flat
   list used) still needs to keep working exactly as-is. */
.menu-item-mega-shop .rcb-mega__left {
    display: block;
    position: static;
    list-style: none;
    margin: 0;
    padding: 10px;
    width: 230px;
    flex-shrink: 0;
    background: none;
    box-shadow: none;
    border: none;
    border-right: 1px solid #f0f0f0;
    border-radius: 0;
    min-width: 0;
}

.menu-item-mega-shop .rcb-mega__left-link {
    display: block;
    padding: 11px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.01em;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.menu-item-mega-shop .rcb-mega__left-link::after {
    display: none;
}

.menu-item-mega-shop .rcb-mega__left-item.is-active > .rcb-mega__left-link,
.menu-item-mega-shop .rcb-mega__left-link:hover,
.menu-item-mega-shop .rcb-mega__left-link:focus-visible {
    color: var(--color-primary);
    background: var(--color-primary-light, #eaf1fe);
}

.menu-item-mega-shop .rcb-mega__left-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.menu-item-mega-shop .rcb-mega__right-panel {
    flex: 1;
    min-width: 0;
    padding: 18px 22px;
}

.menu-item-mega-shop .rcb-mega__right-group {
    display: none;
}

.menu-item-mega-shop .rcb-mega__right-group.is-active {
    display: block;
}

.menu-item-mega-shop .rcb-mega__right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 14px;
}

.menu-item-mega-shop .rcb-mega__product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    white-space: normal;
    transition: background-color 0.15s ease;
    /* Grid items default to min-width:auto, which sizes each 1fr track to
       fit its content's unbroken min-content width (here, a long product
       name with white-space:nowrap) instead of the fair 1fr split — the
       classic CSS Grid blowout. This is what let the second column render
       past the panel's edge. */
    min-width: 0;
}

.menu-item-mega-shop .rcb-mega__product:hover {
    background: #f7f8fa;
}

.menu-item-mega-shop .rcb-mega__product-img {
    flex-shrink: 0;
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}

.menu-item-mega-shop .rcb-mega__product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-item-mega-shop .rcb-mega__product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.menu-item-mega-shop .rcb-mega__product-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1f2430;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item-mega-shop .rcb-mega__product-price {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.menu-item-mega-shop .rcb-mega__viewall {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    padding: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.menu-item-mega-shop .rcb-mega__viewall:hover {
    color: var(--color-primary);
    background: none;
    text-decoration: underline;
}

.menu-item-mega-shop .rcb-mega__viewall:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 3px;
}

.menu-item-mega-shop .rcb-mega__empty {
    font-size: 0.8125rem;
    color: #9ca3af;
    padding: 8px;
}

/* =========================================================
   LOGO — CENTER (absolute so it's truly centered regardless of nav widths)
   ========================================================= */
.rcb-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
    z-index: 1;
}

.rcb-header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.rcb-header__logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

.rcb-header__logo-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    white-space: nowrap;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* =========================================================
   HEADER ICONS
   ========================================================= */
.rcb-header__icons {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.rcb-header__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease;
    line-height: 1;
}

.rcb-header__icon-btn:hover {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.rcb-header__icon-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.rcb-header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

/* Hide count when 0 */
.rcb-header__cart-count:empty,
.rcb-header__cart-count[data-count="0"] {
    display: none;
}

/* =========================================================
   SEARCH BAR (dropdown under header)
   ========================================================= */
.rcb-search-bar {
    display: none;
    padding: 1rem 2rem;
    border-top: 1px solid #ebebeb;
    background-color: var(--color-bg);
    animation: rcb-slide-down 0.2s ease;
}

.rcb-search-bar.is-open {
    display: block;
}

@keyframes rcb-slide-down {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rcb-search-bar .search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.rcb-search-bar .search-field {
    flex: 1;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
}

.rcb-search-bar .search-field:focus {
    border-color: var(--color-primary);
}

.rcb-search-bar .search-submit {
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.rcb-search-bar .search-submit:hover {
    background-color: var(--color-primary-dark);
}

.rcb-search-bar .search-submit:focus-visible {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
}

/* =========================================================
   MOBILE HAMBURGER BUTTON
   ========================================================= */
.rcb-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    z-index: 1;
}

.rcb-header__burger:hover {
    background-color: var(--color-primary-light);
}

.rcb-header__burger:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.rcb-header__burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Animated X when open */
.rcb-header__burger[aria-expanded="true"] .rcb-header__burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rcb-header__burger[aria-expanded="true"] .rcb-header__burger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.rcb-header__burger[aria-expanded="true"] .rcb-header__burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
.rcb-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100%;
    height: 100dvh;
    background-color: var(--color-bg);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.rcb-mobile-drawer.is-open {
    transform: translateX(0);
}

.rcb-mobile-drawer__inner {
    padding: 4.5rem 1.5rem 2rem;
}

.rcb-mobile-drawer__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.rcb-mobile-drawer__close:hover {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.rcb-mobile-drawer__close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.rcb-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rcb-mobile-nav__list--secondary {
    margin-top: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #ebebeb;
}

.rcb-mobile-nav__list li a {
    display: flex;
    align-items: center;
    padding: 0.875rem 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.rcb-mobile-nav__list li a:hover,
.rcb-mobile-nav__list .current-menu-item > a,
.rcb-mobile-nav__list .current_page_item > a {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

.rcb-mobile-nav__list li a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.rcb-mobile-nav__list li.menu-item-has-children > a {
    justify-content: space-between;
}

.rcb-mobile-nav__list li.menu-item-has-children > a:focus-visible {
    outline: none;
}

.rcb-mobile-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.rcb-mobile-nav__list li.menu-item-has-children > a.is-open .rcb-mobile-chevron {
    transform: rotate(180deg);
}

.rcb-mobile-nav__list li.menu-item-has-children > ul {
    display: none;
    padding: 0 0 0.5rem 0;
    list-style: none;
}

.rcb-mobile-nav__list li.menu-item-has-children > ul li {
    list-style: none;
}

.rcb-mobile-nav__list li.menu-item-has-children > ul li a {
    display: block;
    padding: 10px 0 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    border-left: 2px solid transparent;
    border-bottom: none;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.rcb-mobile-nav__list li.menu-item-has-children > ul li a:hover {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 20px;
}

/* =========================================================
   SHOP MEGA MENU (mobile) — Level 1 (category) triggers nested inside
   the existing Shop accordion; each opens its own Level 2 (product)
   list. Output by Walker_RCB_Mega_Menu in mobile context — every
   other accordion item is untouched.

   Specificity note: ".rcb-mobile-nav__list li.menu-item-has-children >
   ul li a" (pre-existing rule, used for the original single-level Shop
   dropdown) has 2 classes + 4 type selectors. Because "> ul" only
   requires a direct-child <ul> of Shop's own <li> — which .rcb-mega__left
   still is — that old selector's descendant "li a" reaches all the way
   through the new nested structure and matches these Level 1/2 links
   too. Its 4 type-selectors out-specify a 2-class selector on ties, so
   every rule below is prefixed with .menu-item-mega-shop (3 classes) to
   win outright rather than relying on source order. Also reset the
   desktop .rcb-mega__left sizing (230px fixed column, right border)
   that would otherwise leak onto the mobile <ul>, since both share
   that class.
   ========================================================= */
.menu-item-mega-shop .rcb-mega__left.rcb-mega__left--mobile {
    width: auto;
    padding: 0;
    border-right: none;
}

.rcb-mobile-nav__list .menu-item-mega-shop .rcb-mega__accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0 12px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    border-left: 2px solid transparent;
    border-bottom: none;
    background: none;
    border-top: none;
    border-right: none;
    text-align: left;
}

.rcb-mobile-nav__list .menu-item-mega-shop .rcb-mega__accordion-trigger:hover,
.rcb-mobile-nav__list .menu-item-mega-shop .rcb-mega__accordion-trigger.is-open {
    color: var(--color-primary);
    padding-left: 20px;
}

.menu-item-mega-shop .rcb-mega__mobile-sub {
    display: none;
    padding: 0 0 0.5rem 20px;
    list-style: none;
}

/* 3 classes (.rcb-mobile-nav__list + .menu-item-mega-shop + .rcb-mega__mobile-sub)
   is required, not 2 — the old ".menu-item-has-children > ul li a" selector
   this competes with carries 4 type selectors, which otherwise wins any tie
   against a 2-class selector regardless of source order. */
.rcb-mobile-nav__list .menu-item-mega-shop .rcb-mega__mobile-sub li a {
    display: block;
    padding: 9px 0 9px 20px;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    border-left: 2px solid transparent;
    border-bottom: none;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.rcb-mobile-nav__list .menu-item-mega-shop .rcb-mega__mobile-sub li a:hover {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 22px;
}

.rcb-mobile-nav__list .menu-item-mega-shop .rcb-mega__mobile-sub li a.rcb-mega__viewall {
    color: var(--color-primary);
    font-weight: 600;
}

.menu-item-mega-shop .rcb-mega__mobile-sub li.rcb-mega__empty {
    padding: 9px 0 9px 20px;
    font-size: 13px;
    color: #9ca3af;
}

/* =========================================================
   MOBILE OVERLAY
   ========================================================= */
.rcb-mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.rcb-mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when drawer is open */
body.rcb-no-scroll {
    overflow: hidden;
    /* Prevent layout shift from scrollbar disappearing */
    padding-right: var(--rcb-scrollbar-width, 0px);
}

/* =========================================================
   UTILITY — desktop-only elements
   ========================================================= */
.rcb-d-desktop {
    display: flex;
}

/* =========================================================
   HEADER — RESPONSIVE (≤ 1024px → mobile/tablet)
   ========================================================= */
@media (max-width: 1024px) {

    /* Burger left, icons right, logo absolutely centered */
    .rcb-header__inner {
        gap: 0;
        justify-content: space-between;
    }

    /* Hide split desktop nav */
    .rcb-nav {
        display: none;
    }

    /* Show hamburger */
    .rcb-header__burger {
        display: flex;
        z-index: 1;
        flex-shrink: 0;
    }

    /* Center logo absolutely within the header inner */
    .rcb-header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        /* Constrain so it never overlaps burger or icons */
        max-width: calc(100% - 140px);
        display: flex;
        justify-content: center;
    }

    .rcb-header__logo a {
        max-width: 100%;
        overflow: hidden;
    }

    /* Hide desktop-only account icon */
    .rcb-d-desktop {
        display: none;
    }

    .rcb-header__icons {
        flex-shrink: 0;
    }

    .rcb-announce {
        font-size: 0.75rem;
        padding: 0.5rem 2.5rem;
    }

    /* Coming soon: subtract sticky header + announce height */
    .rcb-coming-soon {
        min-height: calc(100dvh - var(--rcb-header-total, 130px));
        min-height: calc(100vh - var(--rcb-header-total, 130px));
    }
}

@media (max-width: 480px) {
    .rcb-header__inner {
        padding: 0 1rem;
        height: 60px;
    }

    .rcb-header__logo-text {
        font-size: 0.875rem;
        letter-spacing: -0.03em;
    }

    /* On very small phones, shorten site name via CSS */
    .rcb-header__logo-text::after {
        content: none;
    }
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.rcb-footer {
    background-color: #111111;
    color: #ffffff;
    margin-top: auto;
}

.rcb-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 560px) auto;
    gap: 3rem 6rem;
    align-items: start;
}

/* ── Brand column ── */
.rcb-footer__col--brand {
    max-width: 560px;
}

.rcb-footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.rcb-footer__logo img {
    max-height: 56px;
    width: auto;
}

.rcb-footer__logo-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.rcb-footer__ruo {
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.rcb-footer__legal {
    font-size: 0.8125rem;
    color: #aaaaaa;
    line-height: 1.65;
    margin-bottom: 0.875rem;
}

.rcb-footer__legal--highlight {
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 0;
}

/* ── Quick links column ── */
.rcb-footer__col-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.rcb-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.rcb-footer__nav li a {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #dddddd;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.rcb-footer__nav li a:hover {
    color: var(--color-primary);
}

.rcb-footer__nav li a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── Payment column — markup currently disabled in footer.php, styles
   kept ready in case it's re-enabled ── */
.rcb-footer__col--payment {
    min-width: 160px;
}

.rcb-footer__payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.rcb-pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
    height: 36px;
    min-width: 52px;
}

.rcb-pay-badge svg {
    height: 20px;
    width: auto;
    display: block;
}

/* ── Bottom bar ── */
.rcb-footer__bottom {
    background-color: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    text-align: center;
    padding: 1rem 2rem;
}

.rcb-footer__copyright {
    font-size: 0.8125rem;
    color: #888888;
    letter-spacing: 0.02em;
}

/* =========================================================
   FOOTER — RESPONSIVE
   ========================================================= */

/* Tablet — two column layout */
@media (max-width: 900px) {
    .rcb-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .rcb-footer__col--brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Mobile — full-width stacked columns */
@media (max-width: 600px) {
    .rcb-footer__inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 2rem;
        gap: 2rem;
    }

    .rcb-footer__col--brand {
        grid-column: auto;
    }

    .rcb-footer__nav li a {
        white-space: normal;
    }

    .rcb-footer__bottom {
        padding: 0.875rem 1.25rem;
    }
}

/* ════════════════════════════════════════════════
   HOME PAGE — BACKGROUND
   ════════════════════════════════════════════════ */

body.home {
    background-color: #fcfcfc;
}

/* ════════════════════════════════════════════════
   HOME PAGE — HERO
   ════════════════════════════════════════════════ */

.rcb-hero {
    position: relative;
    overflow: hidden;
    /* Molecule background: white fades to image toward the right */
    background:
        linear-gradient(105deg, #ffffff 32%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0) 88%),
        linear-gradient(rgba(52, 132, 242, 0.22), rgba(52, 132, 242, 0.22)),
        url(assets/img/hero-bg.jpg) right center / cover no-repeat;
    background-color: #f0f4f8; /* fallback if image not loaded */
    min-height: 560px;
    display: flex;
    align-items: stretch;
    /* Rounded card with breathing room from viewport edges */
    margin: 1.5rem 2rem 1.5rem;
    border-radius: 28px;
}

.rcb-hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

/* Badge */
.rcb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary-light);
    border: 1px solid rgba(52, 132, 242, 0.25);
    color: var(--color-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}

/* Heading */
.rcb-hero__heading {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.06;
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
}

.rcb-hero__accent {
    color: var(--color-primary);
}

/* Subtext */
.rcb-hero__sub {
    color: #555e6d;
    font-size: 1.0625rem;
    line-height: 1.72;
    max-width: 440px;
    margin: 0 0 2.25rem;
}

/* CTA row */
.rcb-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.rcb-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: background-color 0.18s ease, transform 0.15s ease;
    white-space: nowrap;
}

.rcb-hero__cta:hover,
.rcb-hero__cta:focus-visible {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    outline: none;
}

.rcb-hero__cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.18s ease;
    white-space: nowrap;
}

.rcb-hero__cta-ghost:hover {
    color: var(--color-primary);
}

/* Trust line */
.rcb-hero__trust {
    font-size: 0.8rem;
    color: #adb5bd;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Right — product image */
.rcb-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 420px;
}

.rcb-hero__product-img {
    position: relative;
    z-index: 2;
    max-height: 280px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Tablet / mobile */
@media (max-width: 900px) {
    .rcb-hero {
        min-height: auto;
        margin: 1rem 1rem 1rem;
        border-radius: 22px;
        /* On mobile, fade from top (white) to image below */
        background-image:
            linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0) 100%),
            linear-gradient(rgba(52, 132, 242, 0.22), rgba(52, 132, 242, 0.22)),
            url(assets/img/hero-bg.jpg);
        background-size: cover;
        background-position: center bottom;
    }

    .rcb-hero__container {
        grid-template-columns: 1fr;
        padding: 36px 1.5rem 48px;
        gap: 1.5rem;
    }

    .rcb-hero__sub {
        max-width: 100%;
        font-size: 1rem;
    }

    .rcb-hero__visual {
        min-height: auto;
        order: -1;
        padding: 1.5rem 0 0;
    }

    .rcb-hero__product-img {
        max-height: 220px;
    }

    .rcb-hero__trust {
        color: #6b7280;
    }
}

@media (max-width: 480px) {
    .rcb-hero {
        margin: 0.75rem 0.75rem 0.75rem;
        border-radius: 18px;
    }

    .rcb-hero__container {
        padding: 28px 1.25rem 40px;
    }

    .rcb-hero__heading {
        font-size: 2rem;
    }

    .rcb-hero__badge {
        font-size: 0.625rem;
        letter-spacing: 0.07em;
        margin-bottom: 1.25rem;
    }

    .rcb-hero__sub {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }

    .rcb-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .rcb-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .rcb-hero__cta-ghost {
        justify-content: center;
    }

    .rcb-hero__product-img {
        max-height: 180px;
    }
}

/* ════════════════════════════════════════════════
   HOME PAGE — FEATURES CARDS
   ════════════════════════════════════════════════ */

.rcb-features {
    max-width: 1440px;
    margin: 0 auto 3.5rem;
    padding: 0 2rem;
    background: none;
}

.rcb-features__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.rcb-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 1.75rem;
    background-color: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 18px;
    box-shadow: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.rcb-feature:hover {
    box-shadow: 0 6px 24px rgba(52, 132, 242, 0.1);
    transform: translateY(-2px);
}

.rcb-feature__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    padding: 10px;
    box-sizing: border-box;
}

.rcb-feature__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.rcb-feature__heading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}

.rcb-feature__text {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.rcb-feature__text a {
    color: var(--color-primary);
    text-decoration: none;
}

.rcb-feature__text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rcb-features {
        padding: 0;
        margin: 0 1rem 2rem;
        background: none;
        border-radius: 0;
    }

    .rcb-features__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .rcb-feature {
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .rcb-features {
        margin: 0 0.75rem 1.5rem;
    }

    .rcb-features__container {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════
   HOME PAGE — PRODUCT GRID
   ════════════════════════════════════════════════ */

.rcb-products {
    max-width: 1440px;
    margin: 0 auto 3.5rem;
    padding: 0 2rem;
}

/* Section header row */
.rcb-products__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.rcb-products__header-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rcb-products__heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
}

.rcb-products__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s ease;
}

.rcb-products__view-all:hover {
    gap: 0.6rem;
}

.rcb-products__view-all:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Grid */
.rcb-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Card */
.rcb-product-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.rcb-product-card.is-hidden {
    display: none;
}

.rcb-product-card:hover {
    box-shadow: 0 8px 28px rgba(52, 132, 242, 0.10);
    transform: translateY(-3px);
}

/* Image area */
.rcb-product-card__img-wrap {
    position: relative;
    display: block;
    background-color: #f5f6f8;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.rcb-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.rcb-product-card:hover .rcb-product-card__img {
    transform: scale(1.04);
}

/* Sale badge */
.rcb-product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    line-height: 1.4;
    pointer-events: none;
}

/* Body */
.rcb-product-card__body {
    padding: 1rem 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.rcb-product-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.01em;
}

.rcb-product-card__name a {
    color: inherit;
    text-decoration: none;
}

.rcb-product-card__name a:hover {
    color: var(--color-primary);
}

/* WooCommerce price HTML */
.rcb-product-card__price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0;
    line-height: 1.3;
}

.rcb-product-card__price .price ins {
    text-decoration: none;
    color: var(--color-primary);
}

.rcb-product-card__price .price del {
    color: #adb5bd;
    font-size: 0.8125rem;
    font-weight: 400;
}

.rcb-product-card__price .price .amount {
    color: inherit;
}

/* CTA button — pushed to bottom */
.rcb-product-card__btn {
    display: block;
    margin-top: auto;
    padding: 0.625rem 1rem;
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.rcb-product-card__btn:hover,
.rcb-product-card__btn:focus-visible {
    background-color: var(--color-primary);
    color: #ffffff;
    outline: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rcb-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rcb-products {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }

    .rcb-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .rcb-product-card__body {
        padding: 0.875rem 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .rcb-products {
        padding: 0 0.75rem;
        margin-bottom: 2rem;
    }

    .rcb-products__heading {
        font-size: 1.25rem;
    }

    .rcb-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .rcb-product-card {
        border-radius: 14px;
    }

    .rcb-product-card__name {
        font-size: 0.8125rem;
    }

    .rcb-product-card__btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}






/* ════════════════════════════════════════════════
   HERO — STAT BADGES
   ════════════════════════════════════════════════ */

.rcb-hero__stats {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    z-index: 3;
}

.rcb-hero__stat {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(52, 132, 242, 0.18);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 88px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(52, 132, 242, 0.08);
}

.rcb-hero__stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.rcb-hero__stat-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .rcb-hero__stats {
        display: none;
    }
}


/* ════════════════════════════════════════════════
   UTILITY — SECTION LABEL & SECTION HEADER
   ════════════════════════════════════════════════ */

.rcb-section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.375rem;
}

.rcb-section-label--centered {
    display: block;
    text-align: center;
}

.rcb-section-label--light {
    color: rgba(255, 255, 255, 0.75);
}

.rcb-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.rcb-section-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.rcb-section-sub {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}


/* ════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════ */

.rcb-trust-bar {
    background-color: #f5f6f8;
    border-top: 1px solid #e8ecf0;
    border-bottom: 1px solid #e8ecf0;
    padding: 0.875rem 2rem;
    margin-bottom: 3rem;
}

.rcb-trust-bar__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.rcb-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.rcb-trust-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .rcb-trust-bar {
        padding: 0.875rem 1rem;
    }

    .rcb-trust-bar__inner {
        gap: 1.25rem 2rem;
    }
}


/* ════════════════════════════════════════════════
   PRODUCT CATALOG LABEL + TABS
   ════════════════════════════════════════════════ */

.rcb-product-card__cat {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.rcb-products__tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.rcb-products__tab {
    padding: 0.4375rem 1rem;
    border: 1.5px solid #e8ecf0;
    border-radius: 50px;
    background: transparent;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.rcb-products__tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.rcb-products__tab.is-active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.rcb-products__tab:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}


/* ════════════════════════════════════════════════
   QUALITY SECTION
   ════════════════════════════════════════════════ */

.rcb-quality {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.rcb-quality__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rcb-quality__img-wrap {
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.rcb-quality__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.rcb-quality__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.rcb-quality__desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0 0 2rem;
}

.rcb-quality__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.rcb-quality__value {
    padding: 1rem 1.125rem;
    border-left: 3px solid var(--color-primary);
    background: var(--color-primary-light);
    border-radius: 0 10px 10px 0;
}

.rcb-quality__value h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 0.25rem;
}

.rcb-quality__value p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .rcb-quality__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rcb-quality {
        padding: 3.5rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .rcb-quality__values {
        grid-template-columns: 1fr;
    }

    .rcb-quality {
        padding: 2.5rem 1rem;
    }
}


/* ════════════════════════════════════════════════
   THIRD PARTY VERIFICATION
   ════════════════════════════════════════════════ */

.rcb-third-party {
    padding: 5rem 2rem;
    background-color: #f0f7ff;
}

.rcb-third-party__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.rcb-third-party__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.rcb-tp-card {
    background: #ffffff;
    border: 1px solid #dce8fb;
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.rcb-tp-card:hover {
    box-shadow: 0 6px 24px rgba(52, 132, 242, 0.1);
    transform: translateY(-3px);
}

.rcb-tp-card__icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 0 auto 1rem;
    padding: 12px;
    box-sizing: border-box;
}

.rcb-tp-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.rcb-tp-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.rcb-tp-card p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .rcb-third-party__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rcb-third-party {
        padding: 3.5rem 1.5rem;
    }

    .rcb-third-party__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rcb-third-party {
        padding: 2.5rem 1rem;
    }

    .rcb-third-party__grid {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════ */

.rcb-faq {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.rcb-faq__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.rcb-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.rcb-faq__item {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    overflow: hidden;
}

.rcb-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.375rem;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0a0a0a;
    text-align: left;
    cursor: pointer;
    transition: color 0.15s ease;
}

.rcb-faq__q:hover {
    color: var(--color-primary);
}

.rcb-faq__q[aria-expanded="true"] {
    color: var(--color-primary);
}

.rcb-faq__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--color-primary);
}

.rcb-faq__minus {
    display: none;
}

.rcb-faq__q[aria-expanded="true"] .rcb-faq__plus {
    display: none;
}

.rcb-faq__q[aria-expanded="true"] .rcb-faq__minus {
    display: block;
}

.rcb-faq__a {
    padding: 0 1.375rem 1.25rem;
}

.rcb-faq__a p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .rcb-faq {
        padding: 3.5rem 1.5rem;
    }

    .rcb-faq__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rcb-faq {
        padding: 2.5rem 1rem;
    }
}


/* ════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ════════════════════════════════════════════════ */

.rcb-reviews {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.rcb-reviews__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.rcb-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.rcb-review-card {
    background: #f9fafb;
    border: 1px solid #e8ecf0;
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: box-shadow 0.2s ease;
}

.rcb-review-card:hover {
    box-shadow: 0 6px 24px rgba(52, 132, 242, 0.08);
}

.rcb-review-card__stars {
    font-size: 1rem;
    color: #f59e0b;
    letter-spacing: 0.05em;
}

.rcb-review-card__text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    font-style: italic;
}

.rcb-review-card__footer {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    border-top: 1px solid #e8ecf0;
    padding-top: 0.875rem;
    margin-top: auto;
}

.rcb-review-card__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0a0a0a;
}

.rcb-review-card__title {
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 500;
}

@media (max-width: 900px) {
    .rcb-reviews {
        padding: 3.5rem 1.5rem;
    }

    .rcb-reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rcb-reviews {
        padding: 2.5rem 1rem;
    }

    .rcb-reviews__grid {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════════════════
   DISCLAIMER BANNER
   ════════════════════════════════════════════════ */

.rcb-disclaimer-banner {
    background-color: #1a1e27;
    padding: 1.25rem 2rem;
}

.rcb-disclaimer-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rcb-disclaimer-banner__icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #f59e0b;
}

.rcb-disclaimer-banner__text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin: 0;
}

.rcb-disclaimer-banner__text strong {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 640px) {
    .rcb-disclaimer-banner {
        padding: 1.25rem 1rem;
    }
}


/* ════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════ */

.rcb-cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a6ad8 0%, var(--color-primary) 50%, #5ba4f5 100%);
    text-align: center;
}

.rcb-cta-banner__inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rcb-cta-banner__heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
}

.rcb-cta-banner__sub {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0;
}

.rcb-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.875rem 2rem;
    background-color: #ffffff;
    color: var(--color-primary);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.rcb-cta-banner__btn:hover {
    background-color: #f0f7ff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.rcb-cta-banner__btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .rcb-cta-banner {
        padding: 3.5rem 1.25rem;
    }
}
