:root {
    --bg: #f6f8fb;
    --bg-elevated: #ffffff;
    --bg-panel: #f0f3f7;
    --blue: #0057d9;
    --blue-soft: rgba(11, 79, 179, 0.1);
    --line: rgba(24, 37, 56, 0.14);
    --text: #172033;
    --muted: #526173;
    --quiet: #7a8796;
    --success: #176f52;
    --radius: 8px;
    --shadow: 0 24px 70px rgba(24, 37, 56, 0.11);
    --font: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 14% 0, rgba(0, 87, 217, 0.08), transparent 28rem),
        linear-gradient(180deg, #ffffff 0, var(--bg) 36rem);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
    font-weight: 500;
}

body.entry-gate-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 20;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    clip: auto;
    border-radius: var(--radius);
    background: var(--blue);
    color: white;
}

.site-header {
    position: sticky;
    z-index: 10;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.promo-strip {
    display: flex;
    justify-content: center;
    gap: 1.3rem;
    border-bottom: 1px solid var(--line);
    padding: 0.45rem 1rem;
    background: #172033;
    color: #f7f5f0;
    font-size: 0.76rem;
    font-weight: 760;
    text-transform: uppercase;
}

.promo-strip span + span::before {
    margin-right: 1.3rem;
    color: var(--blue);
    content: "/";
}

.header-inner,
.hero-grid,
.proof-strip,
.trust-grid,
.category-grid,
.workflow-section,
.featured-products,
.checkout-section,
.footer-inner,
.page-shell,
.commerce-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr minmax(220px, 320px) auto;
    align-items: center;
    min-height: 92px;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 102, 255, 0.55);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #172033, var(--blue)),
        #172033;
    box-shadow: none;
}

.brand-logo {
    width: 68px;
    height: 68px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.custom-logo-link img {
    max-width: 210px;
    max-height: 72px;
    object-fit: contain;
}

.brand-text {
    max-width: 15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.primary-nav {
    justify-self: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border-radius: var(--radius);
    padding: 0 0.8rem;
    color: #3f4c5e;
    font-size: 0.92rem;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease;
}

.menu a:hover,
.menu .current-menu-item > a {
    background: rgba(11, 79, 179, 0.08);
    color: var(--text);
}

.cart-link,
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--text);
}

.cart-link {
    gap: 0.55rem;
    min-height: 42px;
    padding: 0 0.8rem;
}

.product-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.product-search input[type="search"] {
    min-width: 0;
    height: 42px;
    border: 0;
    padding: 0 0.85rem;
    background: transparent;
    color: var(--text);
    font: inherit;
    outline: 0;
}

.product-search input[type="search"]::placeholder {
    color: var(--quiet);
}

.product-search button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--blue);
    cursor: pointer;
}

.cart-count {
    display: inline-grid;
    min-width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border-radius: 999px;
    background: var(--blue);
    font-size: 0.78rem;
    font-weight: 760;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
}

.nav-toggle span:not(.screen-reader-text) {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.hero-section {
    overflow: hidden;
    padding: 74px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 3rem;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.02;
    font-weight: 800;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.75rem, 5.7vw, 5.2rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3.15rem);
}

h3 {
    font-size: 1.1rem;
}

.hero-lede {
    max-width: 620px;
    margin: 1.4rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.4rem;
}

.hero-categories span {
    border: 1px solid rgba(11, 79, 179, 0.16);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: #ffffff;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 760;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 1.1rem;
    font-weight: 800;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-1px);
}

.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: #172033;
    color: #fff;
    box-shadow: 0 18px 42px rgba(24, 37, 56, 0.16);
}

.button-secondary {
    border-color: var(--line);
    background: #ffffff;
    color: var(--text);
}

.hero-panel {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 72% 28%, rgba(11, 79, 179, 0.14), transparent 18rem),
        linear-gradient(150deg, rgba(23, 111, 82, 0.08), transparent 52%),
        #ffffff;
    box-shadow: var(--shadow);
}

.hero-panel::before {
    position: absolute;
    right: 34px;
    bottom: 38px;
    left: 34px;
    height: 54px;
    border-radius: 999px;
    background: rgba(24, 37, 56, 0.08);
    filter: blur(18px);
    content: "";
}

.hero-product-scene {
    display: grid;
    align-items: end;
    padding: 1.6rem;
}

.product-bottle {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 37, 56, 0.16);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent 32%, rgba(255, 255, 255, 0.32) 70%, transparent),
        linear-gradient(180deg, #ffffff, #dfe9f6);
    box-shadow: 0 30px 70px rgba(24, 37, 56, 0.16);
}

.bottle-primary {
    top: 64px;
    right: 122px;
    width: 154px;
    height: 318px;
    border-radius: 18px 18px 28px 28px;
}

.bottle-secondary {
    top: 150px;
    right: 292px;
    width: 102px;
    height: 214px;
    border-radius: 16px 16px 24px 24px;
    opacity: 0.92;
}

.bottle-cap {
    position: absolute;
    top: -28px;
    width: 70%;
    height: 34px;
    border: 1px solid rgba(24, 37, 56, 0.14);
    border-radius: 10px 10px 4px 4px;
    background: #172033;
}

.bottle-label {
    display: grid;
    width: 72%;
    min-height: 92px;
    align-content: center;
    gap: 0.25rem;
    border: 1px solid rgba(24, 37, 56, 0.18);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 0.8rem 0.55rem;
    text-align: center;
}

.bottle-label strong {
    color: #172033;
    font-size: 0.92rem;
    font-weight: 900;
}

.bottle-label em {
    color: var(--quiet);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-product-card {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    width: min(66%, 310px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(24, 37, 56, 0.1);
}

.preview-kicker {
    margin: 0 0 0.45rem;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-product-card strong {
    display: block;
    max-width: 15rem;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.2;
}

.hero-product-card a {
    display: inline-flex;
    margin-top: 0.8rem;
    color: var(--blue);
    font-weight: 800;
}

.hero-orbit-card {
    position: absolute;
    z-index: 2;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(24, 37, 56, 0.1);
}

.orbit-one {
    top: 78px;
    left: 42px;
}

.orbit-two {
    bottom: 116px;
    left: 70px;
}

.trust-section,
.category-section,
.workflow-section,
.featured-products,
.checkout-section,
.page-shell,
.commerce-shell {
    padding: 58px 0;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.proof-strip div {
    padding: 1.25rem;
}

.proof-strip div + div {
    border-left: 1px solid var(--line);
}

.proof-strip strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}

.proof-strip span {
    display: block;
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.category-grid a {
    display: grid;
    min-height: 188px;
    align-content: space-between;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    background:
        linear-gradient(145deg, rgba(11, 79, 179, 0.08), transparent 58%),
        #ffffff;
    box-shadow: 0 16px 42px rgba(24, 37, 56, 0.06);
}

.category-grid span {
    color: var(--blue);
    font-weight: 900;
}

.category-grid strong {
    display: block;
    margin-top: 2.2rem;
    font-size: 1.18rem;
}

.category-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 1rem;
    color: var(--quiet);
    font-size: 0.86rem;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--blue);
}

.woocommerce-products-header .page-title {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.woocommerce .woocommerce-result-count {
    margin: 0.35rem 0 1.1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 1.1rem;
}

.woocommerce .woocommerce-ordering select,
.woocommerce .widget_price_filter .price_slider_amount .button {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.woocommerce .woocommerce-ordering select {
    min-height: 42px;
    padding: 0 0.8rem;
}

.shop-catalog-layout {
    clear: both;
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    gap: 1.3rem;
    align-items: start;
}

.shop-rail {
    position: sticky;
    top: 124px;
    display: grid;
    gap: 1rem;
}

.shop-rail-section {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    background: #ffffff;
}

.shop-rail-section h3,
.shop-rail-section .widget-title {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.shop-rail-section ul,
.mini-product-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-rail-section a {
    color: var(--muted);
    font-size: 0.92rem;
}

.shop-rail-section a:hover {
    color: var(--text);
}

.mini-product-list li {
    display: grid;
    gap: 0.2rem;
    border-top: 1px solid var(--line);
    padding-top: 0.55rem;
}

.mini-product-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.mini-product-list span,
.shop-rail-empty {
    color: var(--success);
    font-size: 0.84rem;
    font-weight: 800;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: rgba(24, 37, 56, 0.12);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: var(--blue);
}

.woocommerce .widget_price_filter .price_label {
    color: var(--muted);
    font-size: 0.84rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid div {
    padding: 2rem;
}

.trust-grid div + div {
    border-left: 1px solid var(--line);
}

.trust-grid span {
    color: var(--blue);
    font-weight: 800;
}

.trust-grid strong {
    display: block;
    margin-top: 1rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.trust-grid p,
.workflow-grid p,
.checkout-copy p,
.site-footer p,
.entry-content {
    color: var(--muted);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.workflow-grid div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(24, 37, 56, 0.06);
}

.workflow-grid span {
    color: var(--blue);
    font-weight: 900;
}

.workflow-grid strong {
    display: block;
    margin-top: 1.6rem;
    font-size: 1.1rem;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.section-heading-inline {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    margin-bottom: 1.25rem;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -0.35rem;
}

.section-heading a {
    color: var(--blue);
    font-weight: 760;
}

.product-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 0;
}

.product-card,
.woocommerce ul.products li.product {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(24, 37, 56, 0.08);
}

.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 0;
}

.product-image,
.woocommerce ul.products li.product a img {
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 0.78;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(11, 79, 179, 0.1), rgba(23, 111, 82, 0.07)),
        var(--bg-panel);
    object-fit: cover;
}

.product-image-fallback {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(0, 102, 255, 0.5);
    border-radius: 50%;
    color: var(--blue);
    font-weight: 900;
}

.product-card-body {
    padding: 1rem;
}

.product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: 800;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0 1rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.25;
}

.product-kicker {
    min-height: 1.1rem;
    margin: 0 0 0.55rem;
    color: var(--quiet);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
    color: #172033;
    font-weight: 800;
}

.woocommerce ul.products li.product .price {
    padding: 0 1rem;
}

.woocommerce ul.products li.product .button {
    width: calc(100% - 2rem);
    min-height: 40px;
    margin: 0.75rem 1rem 1rem;
    font-size: 0.88rem;
}

.product-link {
    color: var(--blue);
    font-weight: 760;
}

.catalog-empty {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    background: #ffffff;
}

.catalog-empty p {
    margin-bottom: 0;
    color: var(--muted);
}

.checkout-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.checkout-copy {
    max-width: 760px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    padding: 36px 0;
}

.footer-brand {
    margin-bottom: 0.8rem;
}

.footer-logo {
    width: 84px;
    height: 84px;
    background: transparent;
}

.footer-note {
    text-align: right;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    max-width: 860px;
    font-size: clamp(2.2rem, 4.8vw, 4.35rem);
}

.page-header .hero-lede {
    max-width: 780px;
}

.content-page,
.woocommerce .woocommerce-notices-wrapper,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout,
.woocommerce-account .woocommerce {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.commerce-content-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.entry-content a {
    color: var(--blue);
}

.entry-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.entry-grid h2,
.contact-grid h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--bg-panel);
}

.faq-list summary {
    cursor: pointer;
    color: var(--text);
    font-weight: 800;
}

.faq-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.1rem;
    color: var(--muted);
}

.form-status {
    border: 1px solid rgba(0, 102, 255, 0.34);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    background: rgba(11, 79, 179, 0.08);
    color: var(--text);
}

.contact-form {
    display: grid;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--bg-panel);
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 720;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.85rem;
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.woocommerce table.shop_table,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .select2-container .select2-selection--single {
    border-color: var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--text);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: var(--line);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 2rem;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    float: none;
    width: auto;
}

.ruo-notice {
    margin: 0.85rem 0;
    border: 1px solid rgba(11, 79, 179, 0.18);
    border-radius: var(--radius);
    padding: 0.85rem;
    background: rgba(11, 79, 179, 0.06);
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.ruo-notice strong {
    color: var(--text);
}

.entry-gate {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.2rem;
    background:
        linear-gradient(180deg, rgba(247, 245, 240, 0.88), rgba(247, 245, 240, 0.96)),
        rgba(24, 37, 56, 0.32);
    backdrop-filter: blur(18px);
}

.entry-gate__panel {
    width: min(100%, 620px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.35rem, 4vw, 2.25rem);
    background:
        linear-gradient(145deg, rgba(11, 79, 179, 0.08), rgba(255, 255, 255, 0.72)),
        #ffffff;
    box-shadow: var(--shadow);
}

.entry-gate__eyebrow {
    margin: 0 0 0.75rem;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.entry-gate h2 {
    font-size: clamp(1.7rem, 5vw, 2.75rem);
}

.entry-gate p:not(.entry-gate__eyebrow) {
    margin: 1rem 0 0;
    color: var(--muted);
}

.entry-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .hero-panel {
        min-height: 420px;
    }

    .trust-grid,
    .category-grid,
    .proof-strip,
    .product-grid,
    .workflow-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-strip div:nth-child(3) {
        border-left: 0;
    }

    .proof-strip div:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .shop-catalog-layout {
        grid-template-columns: 1fr;
    }

    .shop-rail {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-note {
        text-align: left;
    }
}

@media (max-width: 760px) {
    .header-inner,
    .hero-grid,
    .proof-strip,
    .trust-grid,
    .category-grid,
    .workflow-section,
    .featured-products,
    .checkout-section,
    .footer-inner,
    .page-shell,
    .commerce-shell {
        width: min(100% - 28px, 1180px);
    }

    .promo-strip {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.9rem;
        white-space: nowrap;
    }

    .promo-strip span + span::before {
        margin-right: 0.9rem;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .product-search {
        grid-column: 1 / -1;
        order: 4;
        width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        order: 2;
    }

    .cart-link {
        order: 3;
    }

    .brand {
        order: 1;
    }

    .primary-nav {
        position: absolute;
        top: 92px;
        right: 14px;
        left: 14px;
        display: none;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 0.6rem;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .site-header.is-open .primary-nav {
        display: block;
    }

    .menu {
        display: grid;
        gap: 0.25rem;
    }

    .menu a {
        justify-content: flex-start;
    }

    .hero-section {
        padding-top: 54px;
    }

    h1 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
    }

    .page-header h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .section-heading,
    .checkout-section {
        display: grid;
    }

    .section-heading-inline {
        width: min(100% - 28px, 1180px);
    }

    .trust-grid,
    .category-grid,
    .proof-strip,
    .product-grid,
    .workflow-grid,
    .woocommerce ul.products,
    .entry-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .proof-strip div + div {
        border-left: 0;
    }

    .hero-panel {
        min-height: 420px;
    }

    .bottle-primary {
        top: 46px;
        right: 32px;
        width: 96px;
        height: 224px;
    }

    .bottle-secondary {
        top: 112px;
        right: 138px;
        width: 72px;
        height: 164px;
    }

    .bottle-cap {
        width: 60px;
        height: 30px;
    }

    .bottle-label {
        min-height: 68px;
        padding: 0.55rem 0.35rem;
    }

    .hero-product-card {
        right: 18px;
        bottom: 18px;
        width: min(78%, 300px);
    }

    .hero-orbit-card {
        display: none;
    }

    .content-page,
    .woocommerce .woocommerce-notices-wrapper,
    .woocommerce-cart-form,
    .cart_totals,
    .woocommerce-checkout,
    .woocommerce-account .woocommerce {
        padding: 1.25rem;
    }

    .entry-gate__actions .button {
        width: 100%;
    }

    .shop-rail {
        grid-template-columns: 1fr;
    }

    .woocommerce-products-header .page-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}


/* Product-photo merchandising pass */
.hero-photo-panel {
    display: grid;
    place-items: center;
    min-height: 540px;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 50% 45%, rgba(11, 79, 179, 0.12), transparent 18rem),
        #ffffff;
}

.hero-photo-panel::before {
    right: 12%;
    bottom: 7%;
    left: 12%;
    height: 72px;
    border-radius: 999px;
    background: rgba(24, 37, 56, 0.1);
    filter: blur(24px);
}

.hero-product-photo {
    position: relative;
    z-index: 1;
    width: min(78%, 430px);
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(24, 37, 56, 0.16));
}

.hero-photo-panel .hero-product-card {
    right: 24px;
    bottom: 24px;
    width: min(62%, 300px);
}

.visual-merch-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.58) 44%, rgba(255,255,255,0.12)),
        url("../images/molecular-tech-banner.png") center / cover no-repeat;
}

.visual-merch-section::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(246, 248, 251, 0.04), rgba(246, 248, 251, 0.68)),
        linear-gradient(90deg, rgba(0, 87, 217, 0.05), rgba(0, 87, 217, 0.18));
    content: "";
}

.visual-merch-grid {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr);
    gap: 1rem;
}

.visual-card {
    position: relative;
    display: grid;
    min-height: 220px;
    align-content: end;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    background:
        linear-gradient(145deg, rgba(0, 87, 217, 0.08), rgba(255, 255, 255, 0.74)),
        #ffffff;
    box-shadow: 0 16px 42px rgba(24, 37, 56, 0.08);
}

.visual-card-large {
    grid-row: span 2;
    min-height: 460px;
    background: transparent;
    box-shadow: none;
}

.visual-card-large img {
    display: none;
}

.visual-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    opacity: 0.92;
    transform: scale(1.06);
}

.visual-card-photo img {
    object-fit: cover;
    object-position: center;
}

.visual-card-photo::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.5) 48%, rgba(255,255,255,0.08));
}

.visual-card-coa::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.2) 46%, rgba(255,255,255,0.84));
}

.visual-card-coa span,
.visual-card-coa strong {
    justify-self: end;
    max-width: 18rem;
    text-align: right;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.visual-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.62) 45%, rgba(255,255,255,0.18));
    content: "";
}

.visual-card span,
.visual-card strong {
    position: relative;
    z-index: 1;
    max-width: 25rem;
}

.visual-card span {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.visual-card strong {
    display: block;
    margin-top: 0.55rem;
    color: var(--text);
    font-size: clamp(1.35rem, 2.5vw, 2.35rem);
    line-height: 1.08;
}

.visual-card:not(.visual-card-large) strong {
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

@media (max-width: 980px) {
    .visual-merch-grid {
        grid-template-columns: 1fr;
    }

    .visual-card-large {
        min-height: 380px;
    }
}

@media (max-width: 760px) {
    .hero-photo-panel {
        min-height: 470px;
    }

    .hero-product-photo {
        width: min(92%, 360px);
    }

    .visual-merch-grid {
        width: min(100% - 28px, 1180px);
    }
}


/* Photographic hero merchandising */
.hero-image-panel {
    display: grid;
    min-height: 560px;
    align-self: auto;
    overflow: hidden;
    border-color: transparent;
    padding: 0.65rem;
    background: transparent;
    box-shadow: none;
}

.hero-image-panel::before {
    display: none;
}

.hero-banner-photo {
    width: 100%;
    height: 100%;
    min-height: 528px;
    border-radius: calc(var(--radius) - 2px);
    object-fit: contain;
    object-position: center 34%;
    filter: drop-shadow(0 24px 44px rgba(24, 37, 56, 0.16));
}

.hero-image-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    width: min(68%, 340px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(24, 37, 56, 0.12);
    backdrop-filter: blur(12px);
}

/* Full-site page buildout */
.page-hero {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.page-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.page-hero-split img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 22px 54px rgba(24, 37, 56, 0.14);
}

.page-header-compact {
    max-width: 860px;
}

.story-grid,
.coa-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.story-grid article,
.coa-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    background:
        linear-gradient(145deg, rgba(0, 87, 217, 0.07), rgba(255, 255, 255, 0.72)),
        #ffffff;
    box-shadow: 0 16px 42px rgba(24, 37, 56, 0.07);
}

.story-grid span,
.coa-grid span {
    color: var(--blue);
    font-weight: 900;
}

.story-grid h2,
.coa-grid h2 {
    margin-top: 1.8rem;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.story-grid p,
.coa-grid p,
.image-copy-band p,
.commerce-page-hero p,
.shop-hero p {
    color: var(--muted);
}

.image-copy-band {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.image-copy-band img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    border-radius: var(--radius);
    object-fit: cover;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: 1.25rem;
}

.faq-side-card,
.contact-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.faq-side-card {
    align-self: start;
    box-shadow: 0 16px 42px rgba(24, 37, 56, 0.07);
}

.faq-side-card img,
.contact-panel img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
}

.faq-side-card strong,
.faq-side-card p,
.contact-panel h2,
.contact-panel p,
.contact-panel .contact-list {
    margin-right: 1rem;
    margin-left: 1rem;
}

.faq-side-card strong {
    display: block;
    margin-top: 1rem;
    font-size: 1.05rem;
}

.faq-side-card p {
    margin-bottom: 1rem;
    color: var(--muted);
}

.contact-panel {
    padding-bottom: 0.35rem;
}

.contact-page .contact-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
}

.shop-hero,
.commerce-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 2rem);
    background:
        linear-gradient(120deg, rgba(0, 87, 217, 0.08), rgba(255, 255, 255, 0.72)),
        #ffffff;
    box-shadow: var(--shadow);
}

.commerce-page-hero {
    display: block;
}

.shop-hero h1,
.commerce-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.shop-hero img {
    width: 100%;
    max-height: 270px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center 35%;
}

.catalog-empty-premium {
    margin-bottom: 1rem;
}

.product-card-preview .product-image {
    position: relative;
    overflow: hidden;
}

.product-card-preview .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.product-card-preview .product-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.18));
    content: "";
}

.product-spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.product-spec-row span {
    border: 1px solid rgba(24, 37, 56, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.55rem;
    background: var(--bg-panel);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.coa-table-section {
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.coa-table {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.coa-table > div {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.8fr 1fr;
}

.coa-table span {
    padding: 0.9rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.coa-table div:first-child span {
    border-top: 0;
}

.coa-table-head span {
    background: var(--bg-panel);
    color: var(--text);
    font-weight: 900;
}

@media (max-width: 980px) {
    .page-hero-split,
    .image-copy-band,
    .faq-layout,
    .contact-page .contact-grid,
    .shop-hero {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .coa-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .commerce-content-panel {
        padding: 1.25rem;
    }

    .page-hero-split,
    .image-copy-band,
    .coa-table-section {
        padding: 1rem;
    }

    .coa-table,
    .coa-table > div {
        display: block;
    }

    .coa-table > div {
        border-top: 1px solid var(--line);
        padding: 0.75rem;
    }

    .coa-table > div:first-child {
        display: none;
    }

    .coa-table span {
        display: block;
        border: 0;
        padding: 0.2rem 0;
    }
}

.hero-image-card strong {
    display: block;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.2;
}

.hero-image-card a {
    display: inline-flex;
    margin-top: 0.8rem;
    color: var(--blue);
    font-weight: 800;
}

@media (max-width: 760px) {
    .hero-image-panel,
    .hero-banner-photo {
        min-height: 430px;
    }

    .hero-image-card {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }
}

.visual-card.visual-card-coa::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.2) 46%, rgba(255,255,255,0.84));
}

/* ── RUO Compliance Styles ──────────────────────────────────────────── */

.product-ruo-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #e6a800;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.ruo-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #e6a800;
    padding: 10px 14px;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.product-testing-block,
.product-specs-block {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 1.5rem 0;
}

.product-ruo-footer {
    background: #172033;
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 2rem;
    text-align: center;
}

/* Checkout RUO acknowledgment */
.ruo-checkout-acknowledgment {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #e6a800;
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.ruo-checkout-acknowledgment h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 800;
}

.ruo-checkout-acknowledgment .form-row {
    margin: 6px 0;
}

.ruo-checkout-acknowledgment label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    cursor: pointer;
}

.ruo-checkout-acknowledgment input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.ruo-checkout-note {
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #7a5800;
    letter-spacing: 0.02em;
}

/* Footer disclaimer */
.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--quiet);
    line-height: 1.55;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 16px;
}

.footer-disclaimer-heading {
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

/* ── About page hero banner (image behind, text overlaid) ───────────── */

.about-hero-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 0;
}

.about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(to top, rgba(23,32,51,0.92) 0%, rgba(23,32,51,0.6) 60%, transparent 100%);
    padding: 48px 48px 48px;
    width: 100%;
    max-width: 720px;
}

.about-hero-overlay .eyebrow {
    color: rgba(255,255,255,0.7);
}

.about-hero-overlay h1 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-overlay .hero-lede {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
}

.about-hero-overlay .button {
    margin-top: 1.5rem;
}

@media (max-width: 760px) {
    .about-hero-banner { min-height: 420px; }
    .about-hero-overlay { padding: 32px 20px; }
}

/* ── FAQ heading — lighter weight, less overwhelming ────────────────── */

.faq-heading {
    font-weight: 600;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.faq-page-header {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

/* ── FAQ CTA section — match FAQ page visual style ──────────────────── */

.faq-cta-section {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-top: 2rem;
}

/* ── Checkout acknowledgment heading ────────────────────────────────── */

.ruo-checkout-heading {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 6px;
    color: var(--text);
}

.ruo-checkout-acknowledgment h3 {
    font-size: 0.95rem;
    margin: 0 0 6px;
}

/* ── Checkout: single RUO acknowledgment ────────────────────────────── */

.ruo-checkout-prominent {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #7a5800;
    margin: 0 0 8px;
}

.ruo-checkout-body {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0 0 14px;
}

.ruo-checkout-checkbox-row label {
    font-size: 0.88rem;
    font-weight: 600;
}

/* ── Lab tests: COA lookup callout ──────────────────────────────────── */

.coa-lookup-callout {
    background: var(--blue-soft);
    border: 1px solid rgba(0, 87, 217, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.coa-lookup-callout strong {
    font-size: 0.9rem;
}

.coa-lookup-callout p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
}

/* ── Homepage hero: smaller h1, balanced columns ────────────────────── */

.hero-section .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.hero-section h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.08;
}

/* ── Age / RUO entry gate ────────────────────────────────────────────── */

#prc-age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 22, 38, 0.92);
    backdrop-filter: blur(6px);
}

.age-gate-modal {
    position: relative;
    z-index: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 48px 44px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.age-gate-logo {
    margin-bottom: 24px;
}

.age-gate-logo img {
    height: 40px;
    width: auto;
}

.age-gate-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 10px;
}

.age-gate-modal h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--text);
}

.age-gate-body {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 28px;
}

.age-gate-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.age-gate-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    line-height: 1.5;
}

.age-gate-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--blue);
}

.age-gate-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.age-gate-exit {
    font-size: 0.76rem;
    color: var(--quiet);
    margin: 20px 0 0;
}

.age-gate-exit a {
    color: var(--quiet);
}

@media (max-width: 520px) {
    .age-gate-modal {
        padding: 32px 24px;
    }
    .age-gate-modal h2 {
        font-size: 1.25rem;
    }
}

/* ── Interior page headings — lighter, easier on the eyes ───────────── */

.page-hero h1,
.page-header h1,
.lab-hero h1,
.page-hero-split h1 {
    font-weight: 600;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1.15;
}

/* ── Lab Tests hero — tighter to prevent word wrap ─────────────────── */

.lab-hero h1 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

/* ── Lab Tests hero — fixed size, no viewport scaling ───────────────── */

.lab-hero h1 {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    line-height: 1.2;
}

@media (max-width: 760px) {
    .lab-hero h1 {
        font-size: 1.4rem !important;
    }
}

/* ── Lab Tests h1 — final override, fixed size, no vw scaling ───────── */
.page-shell .lab-hero .page-hero-split h1,
.page-shell .lab-hero h1,
.lab-hero h1 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    max-width: 100%;
}

@media (max-width: 900px) {
    .page-shell .lab-hero h1,
    .lab-hero h1 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .page-shell .lab-hero h1,
    .lab-hero h1 {
        font-size: 1.3rem !important;
    }
}

/* ── FAQ layout responsive fix ──────────────────────────────────────── */

.faq-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
}

@media (max-width: 1100px) {
    .faq-layout {
        grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    }
}

@media (max-width: 860px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-side-card {
        display: none;
    }
}

/* ── Font weight hierarchy — consistent across all pages ────────────── */

h2 {
    font-weight: 700 !important;
}

h3 {
    font-weight: 600 !important;
}

/* Keep ultra-bold only for key proof points */
.proof-strip strong,
.trust-grid span,
.workflow-grid span,
.story-grid span,
.category-grid a span,
.coa-grid span {
    font-weight: 800;
}

/* Section headings within content — 700 */
.section-heading h2,
.page-hero h2,
.checkout-section h2,
.featured-products h2,
.workflow-section h2,
.trust-section h2 {
    font-weight: 700 !important;
}

/* ── Category grid — align bold titles horizontally across all cards ── */

.category-grid {
    grid-template-rows: auto;
    align-items: stretch;
}

.category-grid a {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
    gap: 0;
}

.category-grid span {
    align-self: start;
}

.category-grid strong {
    margin-top: 0.75rem;
    align-self: start;
}

.category-grid p {
    margin-top: 0.5rem;
    align-self: end;
}

/* ── Category grid — cross-card bold title alignment (override) ─────── */

.category-grid a {
    display: flex !important;
    flex-direction: column;
    align-content: unset;
}

.category-grid span {
    display: block;
    min-height: 2.2rem;
}

.category-grid strong {
    margin-top: 0 !important;
}

.category-grid p {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin-top: 0.5rem;
}

/* ── Visual merch cards — align bold text consistently ──────────────── */

.visual-card:not(.visual-card-large) {
    align-content: start;
    padding-top: 1.5rem;
}

.visual-card-coa span,
.visual-card-coa strong {
    justify-self: start !important;
    text-align: left !important;
    max-width: 22rem;
}

/* ── Category grid — consistent gap between bold and paragraph ───────── */

.category-grid p {
    margin-top: 0.5rem !important;
}

/* ── Visual merch — align eyebrows + fix text width + bottom card ────── */

/* Large left card — text starts from top to align with right cards */
.visual-card-large {
    align-content: start !important;
    padding-top: 1.5rem;
}

/* Constrain text width on large card — more breathing room */
.visual-card-large span,
.visual-card-large strong {
    max-width: 72% !important;
}

/* Bottom right COA card — left-align to match top card */
.visual-card-coa span,
.visual-card-coa strong {
    justify-self: start !important;
    text-align: left !important;
    max-width: 22rem !important;
}

/* ══════════════════════════════════════════════════════════════════════
   PREMIUM PRODUCT CARDS — k site level
   ══════════════════════════════════════════════════════════════════════ */

/* Product grid */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.products li.product {
    margin: 0 !important;
}

/* Product card base */
ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
    background: linear-gradient(160deg, #0d1a2e 0%, #091422 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    min-height: 320px;
    display: flex !important;
    flex-direction: column;
}

ul.products li.product a.woocommerce-LoopProduct-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,87,217,0.18), 0 8px 24px rgba(0,0,0,0.4);
    border-color: rgba(0,87,217,0.3);
}

/* Vial image area */
ul.products li.product a.woocommerce-LoopProduct-link img {
    width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
    padding: 2rem;
    background: linear-gradient(160deg, #0d1a2e, #091422);
    filter: drop-shadow(0 8px 24px rgba(0,87,217,0.3));
}

/* Product title */
ul.products li.product .woocommerce-loop-product__title {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 1rem 1.25rem 0.25rem !important;
    line-height: 1.3;
    flex: 1;
}

/* Price hidden (no inventory yet) */
ul.products li.product .price {
    display: none !important;
}

/* Notify Me button on card */
ul.products li.product .notify-me-loop-btn,
ul.products li.product .add_to_cart_button {
    display: block !important;
    margin: 0.75rem 1.25rem 1.25rem !important;
    padding: 0.65rem 1rem !important;
    background: rgba(0,87,217,0.15) !important;
    border: 1px solid rgba(0,87,217,0.4) !important;
    border-radius: 8px !important;
    color: #5b9cf6 !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    transition: background 0.15s ease, border-color 0.15s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

ul.products li.product .notify-me-loop-btn:hover,
ul.products li.product .add_to_cart_button:hover {
    background: rgba(0,87,217,0.28) !important;
    border-color: rgba(0,87,217,0.7) !important;
    color: #ffffff !important;
}

/* RUO badge on card */
ul.products li.product::before {
    content: 'FOR RESEARCH USE ONLY';
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(0,87,217,0.7);
    padding: 0.6rem 1.25rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Category badge */
ul.products li.product .product-kicker,
ul.products li.product .posted_in {
    color: rgba(255,255,255,0.4) !important;
    font-size: 0.72rem !important;
    padding: 0 1.25rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

/* Notify me — single product page */
.notify-me-block {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(0,87,217,0.06);
    border: 1px solid rgba(0,87,217,0.15);
    border-radius: 10px;
}

.notify-me-label {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 0.75rem;
}

.notify-me-btn {
    display: inline-block;
    background: var(--blue) !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: opacity 0.15s !important;
}

.notify-me-btn:hover {
    opacity: 0.88 !important;
}

@media (max-width: 760px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ── Mobile: restore single-column hero (overrides desktop hero pass) ── */

@media (max-width: 980px) {
    .hero-section .hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hero-section {
        padding-top: 54px;
    }

    .hero-section .hero-copy {
        width: 100%;
        min-width: 0;
    }

    .hero-section .hero-panel {
        width: 100%;
        min-width: 0;
    }

    .checkout-section {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-section .button {
        width: 100%;
    }
}

/* ── Product card image — show full vial, no cropping ───────────────── */

ul.products li.product a.woocommerce-LoopProduct-link img {
    height: auto !important;
    max-height: 280px !important;
    object-fit: contain !important;
    padding: 1.5rem 2rem !important;
    width: auto !important;
    margin: 0 auto !important;
    display: block !important;
}

/* ── Remove Read More button ─────────────────────────────────────────── */

ul.products li.product .button.product_type_simple,
ul.products li.product a.button,
ul.products li.product .added_to_cart {
    display: none !important;
}

/* ── Product cards — white background, clean ────────────────────────── */

ul.products li.product a.woocommerce-LoopProduct-link {
    background: #ffffff !important;
    border: 1px solid var(--line) !important;
    box-shadow: 0 4px 24px rgba(24,37,56,0.07) !important;
}

ul.products li.product a.woocommerce-LoopProduct-link:hover {
    box-shadow: 0 8px 32px rgba(24,37,56,0.13) !important;
    border-color: rgba(0,87,217,0.2) !important;
}

ul.products li.product .woocommerce-loop-product__title {
    color: var(--text) !important;
}

ul.products li.product::before {
    color: rgba(0,87,217,0.5) !important;
}

/* ── Shop grid: center cards + fix WooCommerce clearfix offset ───────── */

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    justify-content: center !important;
    justify-items: stretch !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin: 0 !important;
}

ul.products li.product .notify-me-loop-btn,
ul.products li.product .add_to_cart_button,
ul.products li.product a.button,
ul.products li.product .button {
    display: none !important;
}

ul.products li.product .woocommerce-loop-product__title {
    text-align: center !important;
}

ul.products li.product a.woocommerce-LoopProduct-link img {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ── Vial photography product cards (final 3ml label pass) ──────────── */

ul.products li.product a.woocommerce-LoopProduct-link {
    background: #ffffff !important;
    border: 1px solid rgba(24, 37, 56, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 28px rgba(24, 37, 56, 0.06) !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

ul.products li.product a.woocommerce-LoopProduct-link:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 40px rgba(24, 37, 56, 0.1) !important;
    border-color: rgba(0, 87, 217, 0.18) !important;
}

ul.products li.product a.woocommerce-LoopProduct-link img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    object-fit: cover !important;
    background: transparent !important;
    filter: none !important;
    aspect-ratio: auto !important;
}

ul.products li.product .woocommerce-loop-product__title {
    color: var(--text) !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    padding: 0.85rem 1rem 1rem !important;
    text-align: center !important;
    line-height: 1.35 !important;
}

ul.products li.product::before {
    display: none !important;
    content: none !important;
}

/* Homepage featured product cards — match shop styling */
.product-grid .product-card {
    border: 1px solid rgba(24, 37, 56, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(24, 37, 56, 0.06);
}

.product-grid .product-image,
.product-grid .product-card .product-image img {
    aspect-ratio: auto;
    background: transparent;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0;
}

.product-grid .product-card-body {
    padding: 0.85rem 1rem 1rem;
    text-align: center;
}

.product-grid .product-meta-row {
    justify-content: center;
}

.product-grid .product-kicker {
    text-align: center;
}

.product-grid .product-card h3 {
    text-align: center;
}

/* ── Fix portrait vial image scaling in shop grid ───────────────────── */

ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
}

ul.products li.product a.woocommerce-LoopProduct-link img,
.woocommerce ul.products li.product a img {
    aspect-ratio: unset !important;
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center bottom !important;
}
/* ═══════════════════════════════════════════════════════════════════════
   $100K POLISH PASS
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Unified vial product cards (shop + homepage) ─────────────────────── */

.prc-vial-card,
ul.products li.product {
    list-style: none;
}

.prc-vial-card,
ul.products li.product a.woocommerce-LoopProduct-link {
    background: #ffffff !important;
    border: 1px solid rgba(24, 37, 56, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 28px rgba(24, 37, 56, 0.06) !important;
    overflow: hidden !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
    text-decoration: none !important;
    min-height: 0 !important;
}

.prc-vial-card:hover,
ul.products li.product a.woocommerce-LoopProduct-link:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 40px rgba(24, 37, 56, 0.1) !important;
    border-color: rgba(0, 87, 217, 0.18) !important;
}

.prc-vial-card__link,
ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
}

.prc-vial-card__image,
ul.products li.product a.woocommerce-LoopProduct-link img,
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    background: transparent !important;
    filter: none !important;
    aspect-ratio: unset !important;
}

.prc-vial-card__title,
ul.products li.product .woocommerce-loop-product__title {
    color: var(--text) !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    padding: 0.85rem 1rem 0.35rem !important;
    text-align: center !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.prc-vial-card__meta,
ul.products li.product .prc-vial-card__meta {
    display: block;
    padding: 0 1rem 0.85rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.prc-vial-card__cta {
    display: block;
    margin: 0 1rem 1rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(0, 87, 217, 0.2);
    border-radius: 8px;
    background: rgba(0, 87, 217, 0.06);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.prc-vial-card__cta:hover {
    background: rgba(0, 87, 217, 0.12);
    border-color: rgba(0, 87, 217, 0.35);
}

.featured-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

ul.products li.product::before {
    display: none !important;
    content: none !important;
}

ul.products li.product .notify-me-loop-btn,
ul.products li.product .add_to_cart_button,
ul.products li.product a.button,
ul.products li.product .button {
    display: none !important;
}

/* ── Shop toolbar + layout ──────────────────────────────────────────── */

.shop-toolbar-premium {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.shop-toolbar-premium__count {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.shop-toolbar-premium__note {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.prc-shop-archive .woocommerce-ordering,
.prc-shop-archive .woocommerce-result-count {
    display: none !important;
}

.shop-hero--premium {
    display: block;
    margin-bottom: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(120deg, rgba(0, 87, 217, 0.06), #ffffff 55%);
    box-shadow: 0 16px 42px rgba(24, 37, 56, 0.06);
}

.shop-hero--premium img {
    display: none;
}

.shop-hero--premium h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    max-width: 18ch;
}

.shop-catalog-layout--premium {
    gap: 1.5rem;
}

.shop-rail--premium .shop-rail-section {
    border-radius: 12px;
}

.shop-rail--premium .shop-rail-empty {
    display: none;
}

/* Mobile: products first, sidebar below */
@media (max-width: 980px) {
    .shop-catalog-layout--premium {
        display: flex;
        flex-direction: column;
    }

    .shop-catalog-main--premium {
        order: 1;
    }

    .shop-rail--premium {
        order: 2;
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 560px) {
    .shop-rail--premium {
        grid-template-columns: 1fr;
    }

    .featured-products-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Single product page ────────────────────────────────────────────── */

.product-availability {
    margin: 0.5rem 0 1rem;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 700;
}

.product-availability--in-stock {
    background: rgba(23, 111, 82, 0.1);
    border: 1px solid rgba(23, 111, 82, 0.25);
    color: #176f52;
}

.product-availability--waitlist {
    background: rgba(0, 87, 217, 0.08);
    border: 1px solid rgba(0, 87, 217, 0.2);
    color: var(--blue);
}

.product-specs-block--premium h2,
.product-coa-block h2 {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.product-specs-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
}

.product-specs-list div {
    display: grid;
    grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.4fr);
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
}

.product-specs-list div:last-child {
    border-bottom: 0;
}

.product-specs-list dt {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.product-specs-list dd {
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}

.product-specs-list code {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--blue);
}

.product-coa-block {
    margin-top: 1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(0, 87, 217, 0.18);
    border-radius: var(--radius);
    background: rgba(0, 87, 217, 0.05);
}

.product-coa-block p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.product-coa-actions {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-coa-actions .button {
    width: fit-content;
}

.product-coa-link {
    color: var(--blue);
    font-weight: 700;
    font-size: 0.88rem;
}

.notify-me-block--premium {
    margin-top: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--line);
}

.notify-me-block--premium .notify-me-label {
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.55;
}

.prc-single-product .woocommerce div.product div.images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.prc-single-product .woocommerce div.product div.summary {
    display: grid;
    gap: 0.25rem;
}

.prc-single-product .product_meta {
    display: none;
}

/* ── Homepage featured alignment ────────────────────────────────────── */

.featured-products .section-heading h2 {
    max-width: 22ch;
}

.featured-products-grid .prc-vial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-products-grid .prc-vial-card__cta {
    margin-top: auto;
}

/* ── Grid consistency ───────────────────────────────────────────────── */

ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-content: center !important;
}

@media (max-width: 980px) {
    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    ul.products {
        grid-template-columns: 1fr !important;
    }
}

.prc-shop-archive .woocommerce-products-header,
.prc-single-product .woocommerce-products-header {
    display: none;
}

.woocommerce-notices-wrapper:empty {
    display: none;
    margin: 0;
    padding: 0;
}
