:root {
    --blue: #123d9f;
    --blue2: #29479f;
    --orange: #ff6746;
    --ink: #101d33;
    --muted: #70798b;
    --light: #f6f7f9;
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    color: var(--ink);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: min(1120px, calc(100% - 40px));
    margin: auto;
}
.announcement {
    background: #0f3b9e;
    color: white;
    text-align: center;
    font-weight: 700;
    padding: 18px;
}
.site-header {
    height: 96px;
    padding: 0 max(28px, calc((100% - 1220px) / 2));
    display: flex;
    align-items: center;
    gap: 42px;
    position: relative;
    z-index: 20;
}
.brand {
    margin-right: auto;
}
.brand img {
    width: 180px;
    height: 52px;
    object-fit: contain;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-weight: 600;
    color: #002c86;
}
.main-nav > a,
.nav-dropdown > a {
    padding: 36px 0 14px;
    border-bottom: 3px solid transparent;
}
.main-nav .active {
    border-color: var(--orange);
    color: var(--orange);
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: -18px;
    background: #fff;
    box-shadow: 0 12px 30px #09266a24;
    padding: 10px;
    min-width: 190px;
}
.dropdown-menu a {
    display: block;
    padding: 10px;
}
.cart-button {
    border: 1px solid #7b8492;
    width: 50px;
    height: 42px;
    display: grid;
    place-items: center;
    position: relative;
}
.cart-button b {
    position: absolute;
    right: 5px;
    top: 3px;
    background: #ef584a;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    color: var(--blue);
}
.hero {
    background: radial-gradient(
        circle at 70% 35%,
        #536db5,
        #2747a5 40%,
        #123b9d
    );
    padding: 18px 0 70px;
    color: #fff;
}
.hero-panel {
    min-height: 775px;
    border: 2px solid #ffffff33;
    border-radius: 24px;
    background: #ffffff20;
    padding: 58px 88px;
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    align-items: center;
    gap: 70px;
}
.hero h1 {
    font-size: 56px;
    line-height: 1.25;
    margin: 45px 0 25px;
}

.disclaimer {
    display: block;
    font-size: 9px;
    margin-top: 24px;
}
.hero-product {
    border: 2px solid #ffffff70;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff33;
}
.hero-product > img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
}
.hero-product > div {
    padding: 10px;
}
.hero-product h2 {
    font-size: 30px;
    margin: 0;
}
.hero-product label {
    font-size: 12px;
    font-weight: 700;
}
.choice-row {
    display: flex;
    gap: 12px;
    margin: 6px 0 10px;
}
.choice-row input {
    position: absolute;
    opacity: 0;
}
.choice-row span {
    display: block;
    padding: 7px 17px;
    background: #777f84;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.choice-row input:checked + span {
    background: var(--orange);
}
button,
.button {
    font: inherit;
    cursor: pointer;
}
.hero-product button,
.button {
    border: 0;
    background: var(--blue2);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 24px;
    display: inline-block;
}
.hero-product button {
    width: 100%;
    background: #cb7771;
}
.section {
    padding: 90px 0;
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #edf0f5;
    box-shadow: 0 4px 14px rgba(16, 34, 75, 0.09);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(16, 34, 75, 0.15);
}
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #f9fafb; /* Latar belakang abu tipis agar gambar produk menonjol */
    overflow: hidden;
    cursor: pointer;
}

/* --- PRODUCT IMAGE ELEMENT --- */
.product-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover !important; /* Dipaksa contain agar foto tidak pernah terpotong */
    object-position: center;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-info {
    padding: 0 20px 20px 20px;
}
.product-info small {
    color: #8c817d;
    font-size: 11px;
}
.product-info h3 {
    font-size: 16px;
    margin: 10px 0;
}
.product-info strong {
    font-size: 20px;
}
.support {
    background: var(--blue2);
    padding: 28px 0 64px;
}
.support-panel {
    background: white;
    border-radius: 26px;
    padding: 70px 100px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.support-panel small {
    color: var(--orange);
}
.support-panel h2 {
    font-size: 42px;
    color: var(--blue2);
    line-height: 1.35;
}
.support-panel p {
    color: var(--muted);
}
.support-panel img {
    border: 1px solid var(--orange);
}
.footer {
    background: var(--blue2);
    color: white;
    padding: 60px 0 20px;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.benefits article {
    display: flex;
    gap: 18px;
    padding: 20px;
    border: 2px solid var(--orange);
    border-radius: 16px;
    background: #ffffff1b;
}

/* Document 6 revisions */
.footer .benefits {
    column-gap: 24px !important;
    row-gap: 24px !important;
    margin-bottom: 24px !important;
}
.benefits article {
    margin: 0;
}
.footer .newsletter {
    margin-top: 0 !important;
}
.footer .newsletter {
    margin-bottom: 24px !important;
}
.footer .footer-main {
    margin-top: 0 !important;
}
.shop-toolbar .filters {
    flex-wrap: wrap;
}
.product-card h3,
.product-card h3 a {
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
}
.product-card .product-info p {
    font-size: 11px !important;
    font-weight: 400 !important;
}
.coa-product-photo {
    overflow: hidden;
}
.coa-product-content {
    position: relative;
    z-index: 2;
    background: #fff;
}
.coa-product-content h2 {
    display: block !important;
    margin: 0 0 4px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
}
@media (max-width: 640px) {
    .benefits {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 16px !important;
    }
    .footer .newsletter {
        margin-bottom: 16px !important;
    }
    .benefits article {
        min-width: 0;
    }
    .shop-toolbar .filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }
    .shop-toolbar .filters a {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}
.benefits p {
    font-size: 12px;
}
/* ==========================================
   PERBAIKAN FORM NEWSLETTER (AGAR TIDAK KELUAR JALUR)
   ========================================== */
.newsletter {
    border: 2px solid var(--orange);
    border-radius: 16px;
    background: #ffffff1b;
    margin-top: 30px;
    padding: 28px 34px;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr; /* Memperlebar ruang form kanan */
    gap: 30px;
    align-items: center;
}

.newsletter form {
    width: 100%;
}

.newsletter form label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
}

.newsletter form > div {
    display: flex;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.newsletter input[type="email"] {
    flex: 1 1 auto !important;
    width: 0 !important; /* Trik agar flexbox memaksa input menyusut pas di dalam container */
    min-width: 0 !important;
    padding: 14px 16px !important;
    border: 1px solid #d6deeb !important;
    border-radius: 8px 0 0 8px !important;
    background: #fff !important;
    color: var(--ink) !important;
    outline: none !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
}

.newsletter button {
    flex: 0 0 auto !important;
    width: auto !important;
    border: 0 !important;
    border-radius: 0 8px 8px 0 !important;
    background: #0878d3 !important;
    color: #fff !important;
    padding: 14px 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

.newsletter button:hover {
    background: #0662ad !important;
}

.footer-main {
    border: 2px solid var(--orange);
    border-radius: 16px;
    background: #ffffff1b;
    margin-top: 24px;
    padding: 40px 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.footer-main img {
    width: 170px;
    filter: brightness(0) invert(1);
    margin-bottom: 50px;
}
.footer-main a {
    display: block;
    margin: 7px;
}
.footer-main .customer-service-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}
.footer-main .customer-service-email:hover {
    color: #ffd0c5;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    font-size: 12px;
}
.floating {
    position: fixed;
    right: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    z-index: 30;
}
.floating-cart {
    bottom: 92px;
    background: #28bce2;
}
.floating-wa {
    bottom: 24px;
    background: #19d56e;
}
.toast {
    position: fixed;
    top: 135px;
    right: 20px;
    z-index: 50;
    background: #fff;
    border-left: 4px solid #22b76b;
    box-shadow: 0 8px 30px #0002;
    padding: 16px;
}
.page-hero {
    background: linear-gradient(125deg, #0e358f, #3559b7);
    color: white;
    padding: 90px 0;
}
.page-hero.compact {
    padding: 55px 0;
}
.page-hero small {
    color: #ff8a71;
    font-weight: 700;
}
.page-hero h1 {
    font-size: 55px;
    margin: 10px 0;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
}
.filters {
    display: flex;
    gap: 10px;
}
.filters a {
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
}
.filters .active {
    background: var(--blue);
    color: #fff;
}
.shop-toolbar form {
    display: flex;
} /* ==========================================
   1. BRAND VARIABLES & BASE RESETS
   ========================================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
    --blue: #253d91;
    --blue2: #29479f;
    --orange: #f36d44;
    --ink: #172033;
    --muted: #6f7890;
    --light: #f6f7f9;
    --line: rgba(37, 61, 145, 0.14);
    --blue-dark: #253d91;
    --blue-soft: #f3f5fc;
    --blue-pale: #f8f9fd;
    --yellow-soft: #fff7f3;
    --yellow-line: rgba(243, 109, 68, 0.22);
    --green-soft: #f7f8fc;
    --green-line: rgba(37, 61, 145, 0.12);
    --coral-soft: #fff4ef;
    --coral-line: rgba(243, 109, 68, 0.25);
    --shadow: 0 18px 48px rgba(37, 61, 145, 0.1);
    --danger: #c94f36;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 85px !important;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    color: var(--ink);
    background: #ffffff;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

button,
input,
select {
    font-family: "Montserrat", Arial, sans-serif;
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.container {
    width: min(1440px, calc(100% - 80px));
    margin: auto;
}

.announcement {
    background: #0f3b9e;
    color: white;
    text-align: center;
    font-weight: 700;
    padding: 18px;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
.site-header {
    height: 96px;
    padding: 0 max(40px, calc((100% - 1440px) / 2));
    display: flex;
    align-items: center;
    gap: 42px;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 8px 24px transparent;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    z-index: 99;
}

.site-header.is-scrolled {
    background: #fff;
    box-shadow: 0 8px 28px rgba(8, 30, 73, 0.14);
}

.brand {
    margin-right: auto;
}

.brand img {
    width: 220px;
    height: 60px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-weight: 600;
    color: #002c86;
}

.main-nav > a,
.nav-dropdown > a {
    padding: 36px 0 14px;
    border-bottom: 3px solid transparent;
}

.main-nav .active {
    border-color: var(--orange);
    color: var(--orange);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: -18px;
    background: #fff;
    box-shadow: 0 12px 30px #09266a24;
    padding: 10px;
    min-width: 190px;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
}

.cart-button {
    border: 1px solid #d6deeb;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #123d9f;
    display: grid;
    place-items: center;
    position: relative;
    cursor: pointer;
}

.cart-button b {
    position: absolute;
    right: -2px;
    top: -3px;
    background: #ef584a;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    color: var(--blue);
}

/* ==========================================
   3. HERO & HOMEPAGE INTERACTION
   ========================================== */
.hero {
    background: radial-gradient(
        circle at 70% 35%,
        #536db5,
        #2747a5 40%,
        #123b9d
    );
    padding: 16px 0 64px;
    min-height: calc(100vh - 151px);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-panel {
    width: calc(100% - 80px);
    max-width: 1440px;
    min-height: calc(100vh - 190px);
    border: 2px solid #ffffff33;
    border-radius: 24px;
    background: #ffffff20;
    padding: 58px clamp(52px, 6vw, 105px);
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.75fr);
    align-items: center;
    gap: clamp(45px, 6vw, 110px);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(1px);
}

.hero-copy h1 {
    font-size: clamp(58px, 5.35vw, 88px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    max-width: 830px;
    margin: 42px 0 32px;
    text-wrap: balance;
}

.disclaimer {
    display: block;
    font-size: 9px;
    margin-top: 24px;
}

.hero-product {
    border: 2px solid #ffffff70;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff33;
    max-width: 470px;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    justify-self: end;
}

.hero-product > img {
    display: block;
    width: 100%;
    height: 365px;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.hero-product > div {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0 10px;
    min-height: 25px;
}

.hero-price strong {
    font-size: 15px;
}

.hero-price .clear-product {
    border: 0;
    background: none;
    color: #fff;
    text-decoration: underline;
    padding: 0;
    font-size: 11px;
}

.glitter-canvas,
.hero-video-background {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 55px;
    width: 100%;
    height: calc(100vh + 80px);
    pointer-events: none;
}

.hero-video-background {
    object-fit: cover;
    object-position: center top;
}

.home-tools {
    position: relative;
    z-index: 2;
    background: var(--blue);
    padding: 65px 0 !important;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 4;
}

.tools-grid article {
    border: 1px solid #ffffff3b;
    border-radius: 22px;
    background: #ffffff19;
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 48px;
    min-height: 300px;
}

.tools-grid small {
    color: #ff8b70;
    letter-spacing: 1.5px;
    font-size: 10px;
}

.tools-grid h2 {
    font-size: 28px;
    margin: 15px 0;
}

.tools-grid p {
    font-weight: 600;
    line-height: 1.8;
    color: #eef3ff;
}

.tools-grid a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
    border: 1px solid #ffffff52;
    border-radius: 30px;
    padding: 12px 18px;
}

.tools-grid a span {
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

/* Glass Header Homepage Override */
.home-page .site-header {
    background: rgba(78, 103, 174, 0.94);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    border-right: 0;
}

.home-page .site-header .brand img {
    filter: brightness(0) invert(1);
}

.home-page .site-header .main-nav {
    color: #fff;
}

.home-page .site-header .main-nav .active {
    color: #fff;
    border-color: #fff;
}

.home-page .site-header .cart-button {
    background: transparent;
    border-color: #ffffff55;
    color: #fff;
}

.home-page .site-header:hover,
.home-page .site-header.is-scrolled {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 28px rgba(8, 30, 73, 0.14);
}

.home-page .site-header:hover .brand img,
.home-page .site-header.is-scrolled .brand img {
    filter: none;
}

.home-page .site-header:hover .main-nav,
.home-page .site-header.is-scrolled .main-nav {
    color: #071d3d;
}

.home-page .site-header:hover .main-nav .active,
.home-page .site-header.is-scrolled .main-nav .active {
    color: var(--orange);
    border-color: var(--orange);
}

.home-page .site-header:hover .cart-button,
.home-page .site-header.is-scrolled .cart-button {
    background: #fff;
    border-color: #d6deeb;
    color: #123d9f;
}

/* ==========================================
   4. PRODUCT CARDS & GRID
   ========================================== */
.section {
    padding: 100px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-heading h2 {
    font-size: clamp(34px, 3vw, 50px);
    letter-spacing: -0.035em;
}

.product-grid,
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #edf0f5;
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 7px 20px #10224b1f;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #f9fafb;
    overflow: hidden;
    cursor: pointer;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px 20px 20px 20px;
    display: flex;
    min-height: 185px;
    flex-direction: column;
}

.product-info small {
    color: #8c817d;
    font-size: 11px;
}

.product-info h3 {
    font-size: 16px;
    margin: 10px 0;
}

.product-info strong {
    font-size: 20px;
    margin-bottom: 17px;
}

.product-card-action {
    display: block;
    margin-top: auto;
    border: 1px solid var(--orange);
    border-radius: 7px;
    padding: 11px 15px;
    background: var(--orange);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}

.product-card-action:hover {
    background: #fff;
    color: var(--orange);
}

/* ==========================================
   5. DETAIL PRODUK & GALERI INTERAKTIF
   ========================================== */
.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 75px;
    max-width: 1320px;
    padding-top: 90px;
    width: 100%;
}

.product-gallery {
    min-width: 0;
    width: 100%;
    display: block !important;
}

.gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #e3e7ee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    touch-action: pan-y;
}

.gallery-stage img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center;
    display: block !important;
    pointer-events: none;
    user-select: none;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid #e0e5ed;
    border-radius: 50%;
    background: #fffffff0;
    color: #183e8f;
    box-shadow: 0 5px 18px #11295820;
    font-size: 29px;
    line-height: 1;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 0.18s,
        background 0.18s;
}

.gallery-stage:hover .gallery-arrow,
.gallery-arrow:focus-visible {
    opacity: 1;
}

.gallery-arrow-prev {
    left: 14px;
}
.gallery-arrow-next {
    right: 14px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.gallery-thumb {
    aspect-ratio: 1/1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    opacity: 0.38;
    transition:
        opacity 0.18s,
        border-color 0.18s;
    cursor: pointer;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--orange);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.breadcrumbs {
    color: #8b91a0;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.breadcrumbs a {
    color: #68758a;
}

.detail-copy h1 {
    font-size: 45px;
}
.detail-price {
    font-size: 25px;
    font-weight: 700;
}

/* Configurator & Variants */
.product-configurator {
    margin-top: 25px;
    border: 1px solid #dfe5ef;
    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(145deg, #f8faff, #fff);
    box-shadow: 0 14px 36px rgba(15, 48, 112, 0.08);
}

.product-configurator-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 22px;
}

.product-configurator-heading small {
    display: block;
    color: #75829a;
    font-size: 11px;
    letter-spacing: 1.4px;
}

.product-configurator-heading strong {
    color: #173f9e;
    font-size: 18px;
}

.product-configurator .variant-option-group {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 18px;
    align-items: start;
    padding: 17px 0;
    border-top: 1px solid #e4e9f1;
}

.product-configurator .variant-option-group > b {
    font-size: 11px;
    letter-spacing: 2px;
    color: #67758c;
    padding-top: 12px;
}

.format-options {
    display: inline-flex;
    border: 1px solid #dbe2eb;
    border-radius: 5px;
    overflow: hidden;
}

.format-options label,
.size-options label {
    flex: 1;
    cursor: pointer;
}

.format-options input,
.size-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.format-options span {
    display: block;
    min-width: 76px;
    padding: 12px 20px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    text-align: center;
    transition: 0.18s;
}

.format-options input:checked + span {
    background: var(--orange);
    color: #fff;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.size-options label[hidden] {
    display: none;
}

.size-options span {
    min-height: 92px;
    border: 1px solid #dce3ec;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    background: #fff;
    transition:
        border-color 0.18s,
        box-shadow 0.18s,
        background 0.18s;
}

.size-options label:hover span {
    border-color: #9eadd2;
}

.size-options strong {
    font-size: 16px;
    color: var(--blue);
}
.size-options small {
    font-size: 12px;
    color: #7f8a9b;
    margin-top: 8px;
}

.size-options input:checked + span {
    border: 2px solid var(--orange);
    background: #fff8f6;
    box-shadow: 0 0 0 3px #ff674617;
}

.size-options input:checked + span strong {
    color: var(--orange);
}

.add-row {
    display: flex;
    gap: 12px;
    margin: 25px 0;
}

.quantity-control {
    display: grid;
    grid-template-columns: 38px 52px 38px;
    border: 1px solid #d6dce7;
    border-radius: 30px;
    overflow: hidden;
}

.quantity-control button,
.quantity-control input {
    width: auto !important;
    border: 0;
    background: #fff;
    text-align: center;
    padding: 10px 3px;
}

.add-row > button {
    flex: 1;
    background: var(--blue);
    color: #fff;
    border: 0;
    border-radius: 30px !important;
    font-weight: 600;
}

.detail-copy .add-row > button:disabled {
    background: #aeb6c6;
    cursor: not-allowed;
}
.detail-copy .add-row > button.is-ready {
    background: var(--orange);
}

.product-assurances {
    margin-top: 17px;
}
.secure-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0 17px;
}

.secure-payment > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #42516a;
    font-size: 11px;
    white-space: nowrap;
}

.assurance-list {
    border: 1px solid #dfe5ed;
    border-radius: 10px;
    overflow: hidden;
}
.assurance-list article {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 11px;
    padding: 13px 15px;
    background: #fff;
}
.assurance-list article + article {
    border-top: 1px solid #e5e9ef;
}

/* ==========================================
   6. CART DRAWER & CHECKOUT
   ========================================== */
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: #07122580;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}
.cart-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100dvh;
    background: #fff;
    box-shadow: -20px 0 60px #06132f30;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
}
.cart-drawer.open {
    transform: none;
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e3e8f0;
    padding-bottom: 18px;
}

.drawer-items {
    overflow: auto;
    flex: 1;
}
.drawer-items article {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #edf0f5;
}

.drawer-items img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.checkout-page {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
    background: #f7f8fa;
    width: 100%;
    padding-left: max(40px, calc((100% - 1320px) / 2));
    padding-right: max(40px, calc((100% - 1320px) / 2));
}

.checkout-card,
.order-summary {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 16px;
    padding: 24px;
}

.place-order {
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 30px;
    padding: 15px 25px;
    font-weight: 700;
    width: 240px;
    margin: auto;
}

/* ==========================================
   7. CALCULATOR COMPONENT
   ========================================== */
.page {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 34px;
}

.calculator-stack {
    display: grid;
    gap: 14px;
}
.card {
    border: 1px solid rgba(37, 61, 145, 0.13);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.result-card {
    padding: 22px 24px 18px;
    background: #ffffff;
    border-color: rgba(37, 61, 145, 0.18);
    position: relative;
}

.result-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #253d91 0 72%, #f36d44 72% 100%);
}

.eyebrow {
    color: #f36d44;
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
}
.result-value {
    font-size: 24px;
    font-weight: 850;
    color: #253d91;
}

.syringe-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1465/145;
    min-height: 62px;
}

.liquid {
    height: 100%;
    width: 0;
    background: linear-gradient(
        90deg,
        rgba(243, 109, 68, 0.18),
        rgba(243, 109, 68, 0.62)
    );
    border-right: 2px solid #f36d44;
}

.form-card {
    padding: 14px;
    background: #fff;
    display: grid;
    gap: 12px;
}
.step {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
}
.step:nth-child(1) {
    background: #f5f6fb;
}
.step:nth-child(2) {
    background: #fff7f3;
}
.step:nth-child(3) {
    background: #fafbfe;
}
.step:nth-child(4) {
    background: #f2f4fb;
}

/* ==========================================
   8. AGE GATE POPUP
   ========================================== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: #173f9e8f;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.22s,
        visibility 0.22s;
}
.age-gate.open {
    opacity: 1;
    visibility: visible;
}

.age-gate-card {
    width: min(540px, 100%);
    border-radius: 8px;
    background: #fff;
    padding: 40px 42px 38px;
    box-shadow: 0 12px 35px #06133035;
}

.age-gate-card img {
    width: 185px;
    height: 54px;
    margin-bottom: 20px;
    object-fit: contain;
}
.age-gate-card h2 {
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--blue);
}
.age-gate-card p {
    max-width: 450px;
    color: #536176;
    font-size: 14px;
    line-height: 1.78;
}

.age-gate-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 27px;
}
.age-gate-actions button {
    min-height: 58px;
    border-radius: 3px;
    border: 1px solid var(--blue);
    color: var(--blue);
    background: #fff;
    font-size: 11px;
    font-weight: 800;
}
.age-gate-actions button:last-child {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

/* ==========================================
   9. COA CATALOG
   ========================================== */
.coa-catalog {
    background: #eef0f3;
    padding: 46px 0 90px;
}
.coa-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.coa-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(13, 36, 72, 0.03);
}

.coa-product-photo {
    position: relative;
    height: 315px;
    background: #f7f8fa;
    display: grid;
    place-items: center;
}

.coa-product-photo img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    padding: 18px;
}

/* ==========================================
   10. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1100px) {
    .container {
        width: calc(100% - 48px);
    }
    .hero-panel {
        width: calc(100% - 48px);
        padding: 48px;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
    }
    .hero-copy h1 {
        font-size: 54px;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .site-header {
        height: 78px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    .main-nav.open {
        display: flex;
    }
    .hero-panel {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        min-height: 0;
    }
    .hero-product {
        justify-self: center;
        max-width: 520px;
    }
    .product-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 20px;
    }
    .gallery-arrow {
        opacity: 1 !important;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .coa-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .gallery-arrow {
        width: 38px;
        height: 38px;
    }
    .gallery-arrow-prev {
        left: 8px;
    }
    .gallery-arrow-next {
        right: 8px;
    }
    .gallery-thumbnails {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    .gallery-thumb {
        flex: 0 0 76px;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 24px) !important;
    }
    body {
        padding-top: 78px !important;
    }
    .hero-panel {
        padding: 30px 18px;
    }
    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .product-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-gallery {
        width: 100% !important;
        max-width: 100% !important;
    }
    .gallery-stage {
        width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        aspect-ratio: 1 / 1 !important;
    }
    .gallery-stage img {
        width: 100% !important;
        height: 100% !important;
        max-height: 320px !important;
        object-fit: contain !important;
    }
    .size-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .size-options span {
        min-height: 84px;
    }
    .format-options {
        width: 100%;
    }
    .format-options label {
        flex: 1;
    }
    .format-options span {
        text-align: center;
    }
    .age-gate-card {
        width: 100%;
        padding: 30px 25px 27px;
    }
    .age-gate-card h2 {
        font-size: 23px;
    }
    .age-gate-actions {
        margin-top: 22px;
        gap: 9px;
    }
    .age-gate-actions button {
        min-height: 53px;
        font-size: 9.5px;
        padding: 8px;
    }
    .coa-product-grid {
        grid-template-columns: 1fr;
    }
    .coa-product-photo {
        height: 290px;
    }
}
.shop-toolbar button {
    background: var(--blue);
    color: #fff;
    border: 0;
}
.shop-grid {
    grid-template-columns: repeat(4, 1fr);
}
.shop-grid .product-info strong {
    font-size: 16px;
}
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
}
.detail-image {
    background: var(--light);
    border-radius: 15px;
}
.detail-copy h1 {
    font-size: 45px;
}
.detail-price {
    font-size: 25px;
    font-weight: 700;
}

.detail-copy select {
    width: 100%;
}
.add-row {
    display: flex;
    gap: 12px;
    margin: 25px 0;
}
.add-row input {
    width: 70px;
}
.add-row button {
    flex: 1;
    background: var(--blue);
    color: #fff;
    border: 0;
}
.product-meta {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 13px;
}
.cart-layout,
.checkout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 35px;
}
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}
.cart-item img {
    width: 100px;
}
.cart-summary {
    background: var(--light);
    padding: 28px;
    border-radius: 12px;
    height: max-content;
}
.cart-summary > div {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.cart-summary .button {
    display: block;
    text-align: center;
    margin-top: 20px;
}
/* ====================================================
   FIX TAMPILAN CART & CART TOTALS UNTUK LAYAR HP
   ==================================================== */
@media (max-width: 768px) {
    /* Buat layout cart menumpuk ke bawah (1 kolom) */
    .cart-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 24px !important;
    }

    /* Pastikan list item pas dengan lebar layar */
    .cart-list {
        width: 100% !important;
    }

    /* Rapikan item produk di dalam keranjang */
    .cart-item {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 16px 0 !important;
    }

    .cart-item img {
        width: 70px !important;
        height: 70px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
    }

    .cart-item > div:first-of-type {
        flex: 1 1 180px !important;
    }

    /* Pastikan panel Cart totals muncul penuh di bawah list produk */
    aside.cart-summary,
    .cart-summary {
        display: block !important;
        width: 100% !important;
        margin-top: 16px !important;
        box-sizing: border-box !important;
    }

    .cart-summary .button,
    .cart-summary a.checkout-btn {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}
.empty-state {
    text-align: center;
    padding: 80px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-grid input,
.form-grid textarea {
    width: 100%;
    display: block;
}
.form-grid textarea {
    min-height: 130px;
}
.form-grid .wide {
    grid-column: 1/-1;
}

.prose {
    max-width: 850px;
}
.prose h2,
.contact-layout h2 {
    font-size: 40px;
    color: var(--blue);
}
.prose p {
    line-height: 1.9;
}
.notice {
    border-left: 4px solid var(--orange);
    padding: 20px;
    background: #fff3ef;
}
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}
.contact-form {
    background: var(--light);
    padding: 35px;
    border-radius: 16px;
}
.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.report-grid article {
    border: 1px solid #dfe3ec;
    border-radius: 16px;
    padding: 28px;
}
.report-icon {
    font-size: 40px;
    color: var(--orange);
}
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .site-header {
        height: 78px;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    .main-nav.open {
        display: flex;
    }
    .main-nav > a,
    .nav-dropdown > a {
        display: block;
        padding: 10px;
    }
    .dropdown-menu {
        position: static;
    }
    .hero-panel {
        padding: 40px;
        grid-template-columns: 1fr;
    }
    .hero-panel > * {
        min-width: 0;
    }
    .product-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .support-panel {
        padding: 50px;
        grid-template-columns: 1fr;
    }
    .benefits,
    .footer-main {
        grid-template-columns: 1fr;
    }
    .newsletter {
        grid-template-columns: 1fr; /* Berubah jadi 1 kolom ke bawah di HP */
        gap: 20px;
        padding: 24px;
    }

    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .container {
        width: calc(100% - 28px);
    }
    .announcement {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
    }
    .site-header {
        padding: 0 14px;
        gap: 10px;
    }
    .brand img {
        width: 135px;
    }
    .hero-panel {
        padding: 28px 18px;
    }
    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .discover {
        width: 100%;
    }
    .section {
        padding: 55px 0;
    }
    .section-heading {
        gap: 12px;
    }
    .section-heading h2 {
        font-size: 22px;
        white-space: nowrap;
    }
    .section-heading a {
        font-size: 11px;
        text-align: right;
    }
    .product-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .support-panel {
        padding: 35px 22px;
    }
    .support-panel h2 {
        font-size: 31px;
    }
    .newsletter,
    .footer-main {
        padding: 25px 20px;
    }
    .page-hero {
        padding: 60px 0;
    }
    .page-hero h1 {
        font-size: 42px;
    }
    .shop-toolbar {
        display: block;
    }
    .filters {
        overflow: auto;
        margin-bottom: 15px;
    }
    .detail-copy h1 {
        font-size: 35px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid .wide {
        grid-column: auto;
    }
    .report-grid {
        grid-template-columns: 1fr;
    }
}

/* Header alignment and uncropped product media */
@media (min-width: 901px) {
    .main-nav {
        height: 96px;
        align-items: stretch;
    }
    .main-nav > a,
    .nav-dropdown {
        height: 96px;
        display: flex;
        align-items: stretch;
    }
    .main-nav > a,
    .nav-dropdown > a {
        padding: 4px 0 0;
        height: 96px;
        display: flex;
        align-items: center;
        line-height: 1;
        border-bottom: 3px solid transparent;
    }
    .nav-dropdown > a span {
        margin-left: 5px;
        transform: translateY(-1px);
    }
    .dropdown-menu {
        top: 82px;
    }
}
.hero-panel > * {
    min-width: 0;
}
.hero-copy h1 {
    max-width: 590px;
    text-wrap: balance;
}
.hero-product {
    width: 100%;
    max-width: 455px;
    justify-self: end;
}
.hero-product > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    background: #fff;
    padding: 0;
}
.product-card,
.product-card:hover {
    transform: none;
}
.product-card {
    transition: box-shadow 0.2s ease;
    border: 1px solid #edf0f5;
}
.product-card:hover {
    box-shadow: 0 7px 20px #10224b1f;
}
.product-info {
    display: flex;
    min-height: 185px;
    flex-direction: column;
}
.product-info strong {
    margin-bottom: 17px;
}
.product-card-action {
    display: block;
    margin-top: auto;
    border: 1px solid var(--orange);
    border-radius: 7px;
    padding: 11px 15px;
    background: var(--orange);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}
.product-card-action:hover {
    background: #fff;
    color: var(--orange);
}
.manual-order-note {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 16px;
    border-radius: 8px;
    background: #fff4e8;
    padding: 12px;
    color: #7b501c;
    font-size: 11px;
}
.manual-wa-order {
    width: 100%;
    margin-top: 10px;
    background: #16b968 !important;
    text-align: center;
}

.detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7eaf0;
}
.detail-image img,
.detail-image:hover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none !important;
    transition: none !important;
    cursor: default;
}
@media (max-width: 900px) {
    .hero-product {
        justify-self: center;
        max-width: 520px;
    }
}
@media (max-width: 560px) {
    .hero-panel {
        overflow: hidden;
    }
    .hero-copy,
    .hero-product {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .hero-product > img {
        aspect-ratio: 1/1;
    }
    .hero-copy .disclaimer {
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.55;
        max-width: 100%;
    }
    .section-heading > a {
        display: none;
    }
    .product-image,
    .detail-image {
        aspect-ratio: 1/1;
    }
}
.variant-option-group {
    margin-top: 30px;
}
.variant-option-group > b {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #63728a;
    margin-bottom: 14px;
}
.format-options {
    display: inline-flex;
    border: 1px solid #dbe2eb;
    border-radius: 5px;
    overflow: hidden;
}
.format-options label,
.size-options label {
    flex: 1;
    cursor: pointer;
}
.format-options input,
.size-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.format-options span {
    display: block;
    min-width: 76px;
    padding: 12px 20px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    text-align: center;
    transition: 0.18s;
}
.format-options input:checked + span {
    background: var(--orange);
    color: #fff;
}
.size-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.size-options label[hidden] {
    display: none;
}
.size-options span {
    min-height: 92px;
    border: 1px solid #dce3ec;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    background: #fff;
    transition:
        border-color 0.18s,
        box-shadow 0.18s,
        background 0.18s;
}
.size-options label:hover span {
    border-color: #9eadd2;
}
.size-options strong {
    font-size: 16px;
    color: var(--blue);
}
.size-options small {
    font-size: 12px;
    color: #7f8a9b;
    margin-top: 8px;
}
.size-options input:checked + span {
    border: 2px solid var(--orange);
    background: #fff8f6;
    box-shadow: 0 0 0 3px #ff674617;
}
.size-options input:checked + span strong {
    color: var(--orange);
}
.detail-copy .add-row > button:disabled {
    background: #aeb6c6;
    cursor: not-allowed;
}
.detail-copy .add-row > button.is-ready {
    background: var(--orange);
}
@media (max-width: 560px) {
    .size-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .size-options span {
        min-height: 84px;
    }
    .format-options {
        width: 100%;
    }
    .format-options label {
        flex: 1;
    }
    .format-options span {
        text-align: center;
    }
    .variant-option-group {
        margin-top: 24px;
    }
}

/* Interactive product gallery */
.product-gallery {
    min-width: 0;
}
.gallery-stage {
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid #e3e7ee;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    touch-action: pan-y;
}
.gallery-stage > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid #e0e5ed;
    border-radius: 50%;
    background: #fffffff0;
    color: #183e8f;
    box-shadow: 0 5px 18px #11295820;
    font-size: 29px;
    line-height: 1;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 0.18s,
        background 0.18s;
}
.gallery-stage:hover .gallery-arrow,
.gallery-arrow:focus-visible {
    opacity: 1;
}
.gallery-arrow:hover {
    background: #fff;
}
.gallery-arrow-prev {
    left: 14px;
}
.gallery-arrow-next {
    right: 14px;
}
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.gallery-thumb {
    aspect-ratio: 1/1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    opacity: 0.38;
    transition:
        opacity 0.18s,
        border-color 0.18s;
    cursor: pointer;
}
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    opacity: 1;
}
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--orange);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.breadcrumbs {
    color: #8b91a0;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.breadcrumbs a {
    color: #68758a;
}
@media (max-width: 700px) {
    .gallery-arrow {
        width: 38px;
        height: 38px;
        opacity: 1;
    }
    .gallery-arrow-prev {
        left: 8px;
    }
    .gallery-arrow-next {
        right: 8px;
    }
    .gallery-thumbnails {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: thin;
        padding-bottom: 5px;
    }
    .gallery-thumb {
        flex: 0 0 76px;
    }
}

/* Client revision: Montserrat, refined cards and cart drawer */
body {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 600;
}
.brand img {
    width: 220px;
    height: 60px;
}
.cart-button {
    border: 1px solid #d6deeb;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #123d9f;
    cursor: pointer;
}
.cart-button b {
    right: -2px;
    top: -3px;
}
.hero-product {
    min-height: 625px;
    display: flex;
    flex-direction: column;
}
.hero-product > img {
    height: 365px;
    aspect-ratio: auto;
}
.hero-product > div {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hero-product > div > button:last-child {
    margin-top: auto;
}
.hero-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0 10px;
    min-height: 25px;
}
.hero-price strong {
    font-size: 15px;
}
.hero-price .clear-product {
    border: 0;
    background: none;
    color: #fff;
    text-decoration: underline;
    padding: 0;
    font-size: 11px;
}
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.tools-grid article {
    border: 1px solid #ffffff3b;
    border-radius: 22px;
    background: #ffffff19;
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 38px;
    min-height: 285px;
}
.tools-grid small {
    color: #ff8b70;
    letter-spacing: 1.5px;
    font-size: 10px;
}
.tools-grid h2 {
    font-size: 28px;
    margin: 15px 0;
}
.tools-grid p {
    font-weight: 600;
    line-height: 1.8;
    color: #eef3ff;
}
.tools-grid a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
    border: 1px solid #ffffff52;
    border-radius: 30px;
    padding: 12px 18px;
}
.tools-grid a span {
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.support {
    background: #fff;
    padding: 40px 0 75px;
}
.support-panel {
    box-shadow: 0 8px 30px #10224b17;
    border: 1px solid #edf0f5;
}
.footer-main img {
    width: 220px;
    margin-bottom: 12px;
}
.footer-main strong {
    margin-top: 0;
}
.report-product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 16px;
}
.report-button {
    display: inline-block;
    background: #173f9e;
    color: #fff;
    border-radius: 7px;
    padding: 10px 16px;
    font-size: 12px;
}
.report-button.disabled {
    background: #e9edf5;
    color: #637087;
}
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: #07122580;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}
.cart-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100dvh;
    background: #fff;
    box-shadow: -20px 0 60px #06132f30;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
}
.cart-drawer.open {
    transform: none;
}
.drawer-open {
    overflow: hidden;
}
.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e3e8f0;
    padding-bottom: 18px;
}
.drawer-head h2 {
    margin: 0;
}
.drawer-head h2 span {
    display: inline-grid;
    place-items: center;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 11px;
}
.drawer-head button {
    border: 0;
    background: none;
    font-size: 30px;
}
.drawer-items {
    overflow: auto;
    flex: 1;
}
.drawer-items article {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #edf0f5;
}
.drawer-items img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}
.drawer-items small {
    display: block;
    color: #788398;
    margin: 6px 0;
}
.drawer-empty {
    text-align: center;
    color: #788398;
    padding: 60px 10px;
}
.drawer-promo {
    display: flex;
    margin: 18px 0;
}
.drawer-promo input {
    min-width: 0;
    flex: 1;
    padding: 11px;
    border: 1px solid #d9dfe9;
}
.drawer-promo button {
    border: 0;
    background: #173f9e;
    color: #fff;
    padding: 0 18px;
}
.drawer-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    padding: 18px 0;
    border-top: 1px solid #e3e8f0;
}
.drawer-checkout {
    display: block;
    text-align: center;
    background: #173f9e;
    color: #fff;
    border-radius: 7px;
    padding: 15px;
    font-weight: 700;
}
@media (max-width: 900px) {
    .brand img {
        width: 175px;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .hero-product {
        min-height: 0;
    }
    .hero-product > img {
        height: auto;
        aspect-ratio: 1;
    }
    .home-tools {
        padding-top: 40px;
    }
}
@media (max-width: 560px) {
    .tools-grid article {
        padding: 26px;
        min-height: 0;
    }
    .tools-grid h2 {
        font-size: 23px;
    }
    .cart-drawer {
        padding: 18px;
    }
}
.quantity-control {
    display: grid;
    grid-template-columns: 38px 52px 38px;
    border: 1px solid #d6dce7;
    border-radius: 30px;
    overflow: hidden;
}
.quantity-control button,
.quantity-control input {
    width: auto !important;
    border: 0;
    background: #fff;
    text-align: center;
    padding: 10px 3px;
}
.quantity-control input {
    -moz-appearance: textfield;
}
.quantity-control input::-webkit-inner-spin-button {
    display: none;
}
.add-row > button {
    border-radius: 30px !important;
}
.checkout-page {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
    background: #f7f8fa;
    max-width: none;
    width: 100%;
    padding-left: max(30px, calc((100% - 1120px) / 2));
    padding-right: max(30px, calc((100% - 1120px) / 2));
}
.checkout-flow {
    display: grid;
    gap: 18px;
}
.checkout-card,
.order-summary {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 16px;
    padding: 24px;
}
.checkout-card-title {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.checkout-card-title > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 12px;
}
.checkout-card-title h2 {
    font-size: 18px;
    margin: 3px 0 4px;
}
.checkout-card-title p {
    font-size: 11px;
    color: #7b8494;
    margin: 0;
}
.checkout-card input {
    border: 1px solid #dfe3ea !important;
    border-radius: 8px !important;
    padding: 12px !important;
}
.delivery-option {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 12px;
    align-items: center;
    border: 1px solid #dfe5ee;
    border-radius: 11px;
    padding: 16px;
    margin: 12px 0;
    cursor: pointer;
}
.delivery-option:has(input:checked) {
    border-color: #173f9e;
    background: #f5f8ff;
}
.delivery-option input {
    width: auto !important;
}
.delivery-option div {
    display: flex;
    flex-direction: column;
}
.delivery-option small {
    color: #7e8797;
    margin-top: 4px;
}
.delivery-option strong {
    color: #16835d;
}
.delivery-option.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.delivery-note {
    font-size: 11px;
    color: #758094;
}
.payment-placeholder {
    background: #f4f6f8;
    border: 1px dashed #ccd3df;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    color: #778092;
}
.place-order {
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 30px;
    padding: 15px 25px;
    font-weight: 700;
    width: 240px;
    margin: auto;
}
.place-order span {
    float: right;
}
.order-summary {
    position: sticky;
    top: 20px;
}
.summary-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf0f4;
    padding-bottom: 18px;
}
.summary-head h2 {
    font-size: 17px;
}
.summary-head span {
    font-size: 11px;
    color: #7b8494;
}
.order-summary article {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #edf0f4;
}
.order-summary article img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f6f7f9;
    border-radius: 8px;
}
.order-summary article div {
    display: flex;
    flex-direction: column;
}
.order-summary article small {
    color: #7b8494;
    margin-top: 5px;
}
.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
}
.summary-total {
    border-top: 1px solid #dfe3e9;
    font-size: 18px;
}
.summary-total strong {
    font-size: 20px;
}
@media (max-width: 850px) {
    .checkout-page {
        grid-template-columns: 1fr;
        padding-left: 18px;
        padding-right: 18px;
    }
    .order-summary {
        position: static;
        grid-row: 1;
    }
    .checkout-card {
        padding: 19px;
    }
    .place-order {
        width: 100%;
    }
}
.page-hero {
    background-size: cover;
    background-position: center;
}
.prose {
    margin-left: auto;
    margin-right: auto;
}
.calc-page .calc-heading {
    display: none;
}

/* Homepage interactive glass header and cyan glitter field. */
.home-page .site-header {
    background: rgba(78, 103, 174, 0.94);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    border-right: 0;
    transition:
        background-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease;
}
.home-page .site-header .brand img {
    filter: brightness(0) invert(1);
    transition: filter 0.28s ease;
}
.home-page .site-header .main-nav {
    color: #fff;
}
.home-page .site-header .main-nav .active {
    color: #fff;
    border-color: #fff;
}
.home-page .site-header .cart-button {
    background: transparent;
    border-color: #ffffff55;
    color: #fff;
    transition: 0.28s ease;
}
.home-page .site-header:hover,
.home-page .site-header:focus-within {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 12px 32px #071d3d1c;
}
.home-page .site-header:hover .brand img,
.home-page .site-header:focus-within .brand img {
    filter: none;
}
.home-page .site-header:hover .main-nav,
.home-page .site-header:focus-within .main-nav {
    color: #071d3d;
}
.home-page .site-header:hover .main-nav .active,
.home-page .site-header:focus-within .main-nav .active {
    color: #071d3d;
    border-color: #071d3d;
}
.home-page .site-header:hover .cart-button,
.home-page .site-header:focus-within .cart-button {
    background: #fff;
    border-color: #d6deeb;
    color: #123d9f;
}
.home-page .hero {
    position: relative;
    overflow: hidden;
}
.home-page .hero-panel {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(1px);
}
.home-page .hero-panel > * {
    position: relative;
    z-index: 4;
}
.glitter-canvas {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 55px;
    width: 100%;
    height: 140vh;
    pointer-events: none;
}
.hero-video-background {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 55px;
    width: 100%;
    height: 140vh;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}
.home-tools {
    position: relative;
    z-index: 2;
    background: var(--blue);
    padding: 65px 0 65px !important ;
}
.home-tools .tools-grid {
    position: relative;
    z-index: 4;
}
.hero-product > div > button:last-child {
    background: #aeb6c6;
    color: #eef1f6;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
    cursor: not-allowed;
}
.hero-product > div > button:last-child.is-ready {
    background: var(--orange);
    color: #fff;
    cursor: pointer;
}
.hero-product > div > button:last-child.is-ready:hover {
    background: #f25532;
    transform: translateY(-1px);
}
.floating svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.floating-cart {
    background: #27bdd5;
    box-shadow: 0 8px 20px #06265b38;
}
.floating-wa {
    background: #25d366;
    box-shadow: 0 8px 20px #06265b38;
}
.floating-wa svg {
    width: 35px;
    height: 35px;
    stroke: #fff;
    stroke-width: 1.8;
}
.floating-wa .wa-phone {
    fill: #fff;
    stroke: none;
}
.floating-cart b {
    position: absolute;
    right: -1px;
    top: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #17243a;
    color: #fff;
    border: 2px solid #fff;
    font-size: 11px;
}
@media (max-width: 900px) {
    .home-page .site-header .main-nav {
        color: #071d3d;
    }
    .home-page .site-header .main-nav .active {
        color: var(--orange);
        border-color: var(--orange);
    }
    .glitter-canvas {
        top: 45px;
        height: 780px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .glitter-canvas {
        display: none;
    }
    .hero-video-background {
        display: none;
    }
    .home-page .site-header {
        transition: none;
    }
}

/* Sticky navigation: transparent only at the top of the homepage. */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 8px 24px transparent;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    z-index: 90;
}
.site-header.is-scrolled {
    background: #fff;
    box-shadow: 0 8px 28px rgba(8, 30, 73, 0.14);
}
.home-page .site-header.is-scrolled {
    background: #fff;
}
.home-page .site-header.is-scrolled .brand img {
    filter: none;
}
.home-page .site-header.is-scrolled .main-nav {
    color: #071d3d;
}
.home-page .site-header.is-scrolled .main-nav .active {
    color: var(--orange);
    border-color: var(--orange);
}
.home-page .site-header.is-scrolled .cart-button {
    background: #fff;
    border-color: #d6deeb;
    color: #123d9f;
}

.product-configurator {
    margin-top: 25px;
    border: 1px solid #dfe5ef;
    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(145deg, #f8faff, #fff);
    box-shadow: 0 14px 36px rgba(15, 48, 112, 0.08);
}
.product-configurator-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
}
.product-configurator-heading small {
    display: block;
    color: #75829a;
    font-size: 11px;
    letter-spacing: 1.4px;
}
.product-configurator-heading strong {
    color: #173f9e;
    font-size: 18px;
}
.product-configurator .variant-option-group {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 18px;
    align-items: start;
    padding: 17px 0;
    border-top: 1px solid #e4e9f1;
}
.product-configurator .variant-option-group > b {
    font-size: 11px;
    letter-spacing: 2px;
    color: #67758c;
    padding-top: 12px;
}
.product-configurator .format-options,
.product-configurator .size-options {
    margin: 0;
}
@media (max-width: 560px) {
    .product-configurator {
        padding: 18px;
    }
    .product-configurator-heading {
        display: block;
    }
    .product-configurator .variant-option-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .product-configurator .variant-option-group > b {
        padding-top: 0;
    }
}

/* Wide-screen layout revision: use the available viewport instead of a narrow centered column. */
.container {
    width: min(1440px, calc(100% - 80px));
}
.site-header {
    padding-left: max(40px, calc((100% - 1440px) / 2));
    padding-right: max(40px, calc((100% - 1440px) / 2));
}
.hero {
    padding: 16px 0 64px;
    min-height: calc(100vh - 151px);
}
.hero-panel {
    width: calc(100% - 80px);
    max-width: 1440px;
    min-height: calc(100vh - 190px);
    padding: 58px clamp(52px, 6vw, 105px);
    grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.75fr);
    gap: clamp(45px, 6vw, 110px);
}
.hero-copy h1 {
    font-size: clamp(58px, 5.35vw, 88px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    max-width: 830px;
    margin: 42px 0 32px;
}
.hero-product {
    max-width: 470px;
    min-height: 610px;
}
.home-tools .container,
.best.container,
.support-panel {
    max-width: 1440px;
}

.tools-grid article {
    padding: 48px;
    min-height: 300px;
}
.section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-heading h2 {
    font-size: clamp(34px, 3vw, 50px);
    letter-spacing: -0.035em;
}
.product-grid {
    gap: 30px;
}

.page-hero {
    min-height: 430px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.page-hero .container {
    width: min(1320px, calc(100% - 100px));
}
.page-hero h1 {
    font-size: clamp(54px, 5.2vw, 82px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    max-width: 1000px;
}
.page-hero p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.75;
}
.prose {
    max-width: 1100px;
    font-size: 17px;
}
.prose h2 {
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -0.04em;
}
.contact-layout {
    max-width: 1320px;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 110px;
}
.contact-form {
    padding: 48px;
}
.report-grid {
    max-width: 1320px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-detail {
    max-width: 1320px;
    padding-top: 90px;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}
.checkout-page {
    padding-left: max(40px, calc((100% - 1320px) / 2));
    padding-right: max(40px, calc((100% - 1320px) / 2));
}
.glitter-canvas {
    height: calc(100vh + 80px);
}
@media (max-width: 1100px) {
    .container {
        width: calc(100% - 48px);
    }
    .hero-panel {
        width: calc(100% - 48px);
        padding: 48px;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
    }
    .hero-copy h1 {
        font-size: 54px;
    }
}
@media (max-width: 900px) {
    .container,
    .hero-panel {
        width: calc(100% - 32px);
    }
    .site-header {
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero {
        min-height: 0;
    }
    .hero-panel {
        min-height: 0;
        padding: 36px 28px;
        grid-template-columns: 1fr;
    }
    .hero-copy h1 {
        font-size: clamp(38px, 10vw, 56px);
    }
    .page-hero {
        min-height: 340px;
    }
    .page-hero .container {
        width: calc(100% - 40px);
    }
    .contact-layout {
        gap: 40px;
    }
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .container,
    .hero-panel {
        width: calc(100% - 24px);
    }
    .hero-panel {
        padding: 30px 18px;
    }
    .hero-copy h1 {
        font-size: 38px;
    }
    .page-hero {
        min-height: 300px;
    }
    .page-hero h1 {
        font-size: 43px;
    }
    .page-hero p {
        font-size: 15px;
    }
    .report-grid {
        grid-template-columns: 1fr;
    }
}
.drawer-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.drawer-qty button {
    width: 25px;
    height: 25px;
    border: 1px solid #d9dfe9;
    border-radius: 50%;
    background: #fff;
}
.drawer-qty span {
    font-size: 12px;
}
.drawer-qty strong {
    margin-left: auto;
    font-size: 12px;
}

/* First-visit 18+ research access gate */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #071942e8, #183f9ed9);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.22s,
        visibility 0.22s;
}
.age-gate.open {
    opacity: 1;
    visibility: visible;
}
.age-gate-open {
    overflow: hidden;
}
.age-gate-card {
    position: relative;
    width: min(560px, 100%);
    border: 1px solid #ffffff70;
    border-radius: 22px;
    background: #fff;
    padding: 38px 40px 34px;
    box-shadow: 0 30px 90px #020b244f;
    overflow: hidden;
}
.age-gate-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--blue), #315dc0 68%, var(--orange));
}
.age-gate-card img {
    width: 190px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 24px;
}
.age-badge {
    position: absolute;
    right: 38px;
    top: 36px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff1ed;
    color: var(--orange);
    border: 2px solid var(--orange);
    font-size: 18px;
    font-weight: 800;
}
.age-gate-card > small {
    display: block;
    color: var(--orange);
    font-size: 10px;
    letter-spacing: 2.2px;
    font-weight: 800;
}
.age-gate-card h2 {
    margin: 9px 0 14px;
    color: var(--blue);
    font-size: 29px;
    line-height: 1.25;
}
.age-gate-card p {
    margin: 0;
    color: #59667b;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}
.age-gate-actions {
    display: grid;
    grid-template-columns: 0.75fr 1.5fr;
    gap: 12px;
    margin-top: 27px;
}
.age-gate-actions button {
    min-height: 52px;
    border-radius: 8px;
    border: 1px solid #b9c4d7;
    background: #fff;
    color: #42516a;
    font-size: 12px;
    font-weight: 800;
}
.age-gate-actions button:last-child {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 22px #ff674630;
}
.age-gate-actions button:hover {
    transform: translateY(-1px);
}
.age-gate-card em {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: #8993a4;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
}
@media (max-width: 560px) {
    .age-gate {
        padding: 14px;
    }
    .age-gate-card {
        padding: 32px 23px 25px;
        border-radius: 17px;
    }
    .age-gate-card img {
        width: 155px;
        height: 48px;
        margin-bottom: 21px;
    }
    .age-badge {
        right: 22px;
        top: 28px;
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    .age-gate-card h2 {
        font-size: 24px;
    }
    .age-gate-card p {
        font-size: 12px;
        line-height: 1.7;
    }
    .age-gate-actions {
        grid-template-columns: 1fr;
    }
    .age-gate-actions button:last-child {
        grid-row: 1;
    }
    .age-gate-actions button:first-child {
        grid-row: 2;
    }
}

/* Simplified reference-aligned age gate */
.age-gate {
    padding: 20px;
    background: #173f9e8f;
    backdrop-filter: none;
}
.age-gate-card {
    width: min(448px, 100%);
    border: 0;
    border-radius: 7px;
    padding: 30px 32px 31px;
    box-shadow: 0 12px 35px #06133035;
}
.age-gate-card:before {
    display: none;
}
.age-gate-card img {
    width: 155px;
    height: 46px;
    margin: 0 0 13px;
    object-position: left center;
}
.age-gate-card .age-badge {
    display: none;
}
.age-gate-card > small {
    margin-bottom: 6px;
    color: var(--orange);
    font-size: 9px;
    letter-spacing: 1.7px;
}
.age-gate-card h2 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 24px;
    line-height: 1.3;
}
.age-gate-card p {
    color: #53647a;
    font-size: 12.5px;
    line-height: 1.65;
}
.age-gate-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 21px;
}
.age-gate-actions button {
    min-height: 52px;
    border-radius: 3px;
    border: 1px solid var(--blue);
    color: var(--blue);
    background: #fff;
    font-size: 10px;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}
.age-gate-actions button:last-child {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: none;
}
.age-gate-actions button:hover {
    transform: none;
    filter: brightness(0.97);
}
.age-gate-card em {
    margin-top: 12px;
    font-size: 8.5px;
    color: #8a94a5;
}
@media (max-width: 560px) {
    .age-gate {
        padding: 14px;
    }
    .age-gate-card {
        padding: 25px 22px 23px;
        border-radius: 6px;
    }
    .age-gate-card img {
        width: 140px;
        height: 42px;
        margin-bottom: 11px;
    }
    .age-gate-card h2 {
        font-size: 21px;
    }
    .age-gate-card p {
        font-size: 11.5px;
        line-height: 1.6;
    }
    .age-gate-actions {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .age-gate-actions button {
        min-height: 50px;
        padding: 8px;
        font-size: 9px;
    }
    .age-gate-actions button:last-child,
    .age-gate-actions button:first-child {
        grid-row: auto;
    }
}

/* Larger, more readable age confirmation */
.age-gate-card {
    width: min(540px, 100%);
    padding: 40px 42px 38px;
    border-radius: 8px;
}
.age-gate-card img {
    width: 185px;
    height: 54px;
    margin-bottom: 20px;
}
.age-gate-card h2 {
    margin-bottom: 15px;
    font-size: 28px;
    letter-spacing: -0.3px;
}
.age-gate-card p {
    max-width: 450px;
    color: #536176;
    font-size: 14px;
    line-height: 1.78;
    font-weight: 500;
    letter-spacing: 0.01px;
}
.age-gate-actions {
    gap: 12px;
    margin-top: 27px;
}
.age-gate-actions button {
    min-height: 58px;
    font-size: 11px;
    line-height: 1.35;
    padding: 10px 14px;
}
@media (max-width: 560px) {
    .age-gate-card {
        width: 100%;
        padding: 30px 25px 27px;
    }
    .age-gate-card img {
        width: 160px;
        height: 47px;
        margin-bottom: 16px;
    }
    .age-gate-card h2 {
        margin-bottom: 12px;
        font-size: 23px;
    }
    .age-gate-card p {
        font-size: 12.5px;
        line-height: 1.7;
    }
    .age-gate-actions {
        margin-top: 22px;
        gap: 9px;
    }
    .age-gate-actions button {
        min-height: 53px;
        font-size: 9.5px;
        padding: 8px;
    }
}

/* Product assurances and overflow-safe checkout */
.product-assurances {
    margin-top: 17px;
}
.secure-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0 17px;
}
.secure-payment > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #42516a;
    font-size: 11px;
    white-space: nowrap;
}
.secure-payment > span svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.8;
}
.assurance-list {
    border: 1px solid #dfe5ed;
    border-radius: 10px;
    overflow: hidden;
}
.assurance-list article {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 11px;
    padding: 13px 15px;
    background: #fff;
}
.assurance-list article + article {
    border-top: 1px solid #e5e9ef;
}
.assurance-list article > span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eef3ff;
}
.assurance-list svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.8;
}
.assurance-list b {
    display: block;
    color: #27354d;
    font-size: 11px;
}
.assurance-list p {
    margin: 3px 0 0 !important;
    color: #7d8796 !important;
    font-size: 9.5px !important;
    line-height: 1.45 !important;
}
.research-only {
    margin: 16px 0 0 !important;
    border-radius: 8px;
    background: #f1f3f6;
    padding: 10px 12px;
    text-align: center;
    color: #546176 !important;
    font-size: 9.5px !important;
    line-height: 1.4 !important;
}
.checkout-page > * {
    min-width: 0;
}
.checkout-flow,
.checkout-card,
.order-summary {
    min-width: 0;
}
.checkout-card {
    overflow: hidden;
}
.checkout-card .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checkout-card label,
.checkout-card input {
    min-width: 0;
    max-width: 100%;
}
.delivery-option {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    max-width: 100%;
    overflow: hidden;
}
.delivery-option div {
    min-width: 0;
}
.delivery-option small {
    overflow-wrap: anywhere;
}
.payment-card {
    display: block;
}
.checkout-payment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #dfe5ee;
    border-radius: 11px;
    padding: 17px;
    background: #fafbfe;
    max-width: 100%;
}
.checkout-payment-box > div:first-child {
    min-width: 0;
}
.checkout-payment-box b {
    display: block;
    font-size: 12px;
    color: #27364f;
}
.checkout-payment-box small {
    display: block;
    margin-top: 5px;
    color: #7d8797;
    font-size: 9.5px;
    line-height: 1.5;
}
.checkout-payment-box .payment-marks {
    flex: 0 1 255px;
}
.payment-status {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 13px;
    padding: 13px 15px;
    border-radius: 9px;
    background: #fff8ed;
    color: #725724;
}
.payment-status > span {
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 4px;
    border-radius: 50%;
    background: #e9a62e;
    box-shadow: 0 0 0 4px #f9e8c4;
}
.payment-status p {
    margin: 0;
}
.payment-status b {
    display: block;
    font-size: 10px;
}
.payment-status small {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.45;
}
.order-summary article {
    grid-template-columns: 60px minmax(0, 1fr) auto;
}
.order-summary article strong {
    white-space: nowrap;
    font-size: 11px;
}
.summary-line,
.summary-total {
    gap: 15px;
}
.summary-line > *:last-child,
.summary-total > *:last-child {
    text-align: right;
}
@media (max-width: 650px) {
    .checkout-card .form-grid {
        grid-template-columns: 1fr;
    }
    .checkout-payment-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .checkout-payment-box .payment-marks {
        flex: 0 0 auto;
        justify-content: flex-start;
        width: 100%;
    }
    .payment-marks {
        justify-content: flex-start;
    }
    .secure-payment {
        align-items: flex-start;
        flex-direction: column;
    }
    .delivery-option {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }
    .delivery-option > span {
        display: none;
    }
    .pay-mark {
        width: 50px;
    }
    .order-summary article {
        grid-template-columns: 54px minmax(0, 1fr);
    }
    .order-summary article > strong {
        grid-column: 2;
        text-align: left;
    }
    .research-only {
        font-size: 9px !important;
    }
}

/* calculator start */
:root {
    --ink: #172033;
    --muted: #6f7a8b;
    --line: #e5e8ec;
    --surface: #ffffff;
    --blue: #86abd2;
    --blue-dark: #355d84;
    --blue-soft: #edf5fc;
    --blue-pale: #f5f9fd;
    --yellow-soft: #fff8e8;
    --yellow-line: #f2e2b5;
    --green-soft: #eef8f1;
    --green-line: #cfe6d5;
    --coral-soft: #fff3ea;
    --coral-line: #efd5c3;
    --shadow: 0 18px 48px rgba(47, 78, 107, 0.09);
    --danger: #a65f5a;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: #ffffff;
}
button,
input,
select {
    font: inherit;
}
button {
    cursor: pointer;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.page {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 34px;
}
.calculator-stack {
    display: grid;
    gap: 14px;
}
.card {
    border: 1px solid #e7ebef;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.result-card {
    padding: 22px 24px 18px;
    background: linear-gradient(145deg, #eaf4fc 0%, #f6faff 54%, #e7f1fa 100%);
    border-color: #d8e8f5;
}
.result-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}
.eyebrow {
    display: block;
    margin-bottom: 3px;
    color: var(--blue-dark);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 850;
}
.result-head h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.035em;
}
.result-value {
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.04em;
    color: var(--blue-dark);
}
.syringe-area {
    position: relative;
    margin-top: 8px;
}
.syringe-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1465/145;
    min-height: 62px;
    overflow: visible;
}
.syringe-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}
.barrel-fill {
    position: absolute;
    left: 18.43%;
    width: 55.84%;
    top: 24.14%;
    height: 51.72%;
    overflow: hidden;
    border-radius: 2px;
    z-index: 1;
}
.liquid {
    height: 100%;
    width: 0;
    background: linear-gradient(
        90deg,
        rgba(103, 160, 204, 0.16),
        rgba(103, 160, 204, 0.48)
    );
    border-right: 2px solid #4f8fbe;
    transition: width 0.25s ease;
}
.scale-shell {
    position: absolute;
    left: 18.43%;
    width: 55.84%;
    top: 24.14%;
    height: 51.72%;
    pointer-events: none;
    z-index: 3;
}
.scale-line {
    display: none;
}
.tick {
    position: absolute;
    top: 5%;
    width: 1.4px;
    height: 28%;
    background: #274159;
    transform: translateX(-50%);
}
.tick.major {
    width: 2px;
    height: 48%;
    background: #17314d;
}
.tick-label {
    position: absolute;
    top: 53%;
    transform: translateX(-50%);
    font-size: clamp(8px, 1.45vw, 13px);
    line-height: 1;
    color: #17314d;
    font-weight: 760;
    white-space: nowrap;
}
.result-marker {
    position: absolute;
    top: 0;
    width: 2px;
    height: 52%;
    background: #417fae;
    transform: translateX(-50%);
    transition: left 0.25s ease;
    z-index: 4;
}
.result-marker-label {
    position: absolute;
    top: -70%;
    transform: translateX(-50%);
    padding: 4px 7px;
    border-radius: 999px;
    background: #315f88;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
    transition: left 0.25s ease;
    z-index: 5;
}
.summary-copy {
    margin: 6px 0 0;
    padding-left: 18px;
    color: #31506c;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 650;
}
.summary-copy li {
    margin: 4px 0;
    padding-left: 2px;
}
.summary-copy strong {
    font-weight: 850;
}
.result-list {
    margin-top: 4px;
}
.result-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(49, 95, 136, 0.12);
    font-size: 9px;
}
.result-line:last-child {
    border-bottom: 0;
}
.warning {
    display: none;
    margin-top: 7px;
    padding: 7px 9px;
    border-radius: 10px;
    background: #fff8dc;
    color: #715b19;
    font-size: 9px;
    font-weight: 650;
}
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.action-btn {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 9px;
    font-weight: 850;
}
.action-btn.secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}
.action-btn.primary {
    background: var(--blue-dark);
    color: #fff;
}
.form-card {
    padding: 12px 14px 14px;
    background: #ffffff;
    display: grid;
    gap: 10px;
}
.step {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
}
.step:first-child {
    padding-top: 13px;
}
.step:last-child {
    padding-bottom: 13px;
}
.step:nth-child(1) {
    background: var(--blue-soft);
    border-color: #d8e7f4;
}
.step:nth-child(2) {
    background: var(--yellow-soft);
    border-color: var(--yellow-line);
}
.step:nth-child(3) {
    background: var(--green-soft);
    border-color: var(--green-line);
}
.step:nth-child(4) {
    background: var(--coral-soft);
    border-color: var(--coral-line);
}
.step-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 18px;
    margin-bottom: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue-dark);
    font-size: 9px;
    letter-spacing: 0.08em;
    font-weight: 850;
    border: 1px solid rgba(53, 93, 132, 0.08);
}
.step-title {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 820;
    margin-bottom: 8px;
}
.head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}
.head-row .step-title {
    margin: 0;
}
.field-row,
.peptide-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}
.field-label,
.peptide-label {
    font-size: 12px;
    font-weight: 760;
}
.peptide-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.control,
.split {
    min-height: 42px;
    border: 1px solid rgba(23, 32, 51, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}
.control {
    width: 100%;
    padding: 0 14px;
    outline: none;
    color: var(--ink);
    font-weight: 720;
}
.control:focus,
.split:focus-within {
    border-color: #8fb4d6;
    box-shadow: 0 0 0 3px rgba(134, 171, 210, 0.16);
    background: #fff;
}
select.control {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #587892 50%),
        linear-gradient(135deg, #587892 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 18px,
        calc(100% - 13px) 18px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    padding-right: 38px;
}
.split {
    display: grid;
    grid-template-columns: 1fr 76px;
    overflow: hidden;
}
.split input,
.split select {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 720;
    padding: 0 13px;
}
.split select {
    appearance: none;
    text-align: center;
    border-left: 1px solid var(--line);
    padding-right: 23px;
    background-image:
        linear-gradient(45deg, transparent 50%, #587892 50%),
        linear-gradient(135deg, #587892 50%, transparent 50%);
    background-position:
        calc(100% - 13px) 18px,
        calc(100% - 9px) 18px;
    background-size: 4px 4px;
    background-repeat: no-repeat;
}
.split.fixed-unit {
    grid-template-columns: 1fr 76px;
}
.unit-label {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(23, 32, 51, 0.09);
    color: var(--blue-dark);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.42);
}
.peptide-list {
    display: grid;
    gap: 7px;
}
.add-btn {
    display: block;
    width: 100%;
    margin-top: 8px;
    border: 1px dashed #c8b77f;
    border-radius: 14px;
    padding: 9px 11px;
    background: rgba(255, 255, 255, 0.52);
    color: #76652f;
    font-size: 10px;
    letter-spacing: 0.01em;
    font-weight: 850;
}
.add-btn:hover {
    background: rgba(255, 255, 255, 0.82);
}
.add-btn:disabled {
    display: none;
}
.remove-btn {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #fbeef0;
    color: var(--danger);
    font-size: 12px;
    font-weight: 850;
}
.disclaimer {
    margin: 9px auto 0;
    text-align: center;
    color: #7b8d9d;
    font-size: 8px;
    line-height: 1.45;
}
@media (min-width: 760px) {
    .calculator-stack {
        grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
        align-items: start;
    }
    .result-card {
        grid-column: 1/-1;
    }
    .form-card {
        grid-column: 1/-1;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 14px;
    }
    .form-card .step {
        padding: 14px 16px;
    }
}
@media (max-width: 520px) {
    .page {
        width: min(100% - 10px, 430px);
        padding: 6px 0 9px;
    }
    .calculator-stack {
        gap: 5px;
    }
    .card {
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(43, 83, 117, 0.08);
    }
    .result-card {
        padding: 9px 10px 8px;
    }
    .eyebrow {
        font-size: 6px;
        margin-bottom: 1px;
    }
    .result-head h2 {
        font-size: 13px;
    }
    .result-value {
        font-size: 15px;
    }
    .syringe-area {
        margin-top: 3px;
    }
    .syringe-stage {
        min-height: 42px;
    }
    .tick-label {
        font-size: 7px;
    }
    .result-marker-label {
        font-size: 6px;
        padding: 2px 4px;
    }
    .summary-copy {
        margin-top: 2px;
        padding-left: 14px;
        font-size: 7.5px;
        line-height: 1.3;
    }
    .summary-copy li {
        margin: 2px 0;
    }
    .result-list {
        margin-top: 1px;
    }
    .result-line {
        padding: 2px 0;
        font-size: 6.5px;
    }
    .warning {
        margin-top: 3px;
        padding: 4px 6px;
        font-size: 6.5px;
    }
    .actions {
        margin-top: 3px;
    }
    .action-btn {
        font-size: 6.5px;
        padding: 5px 8px;
    }
    .form-card {
        padding: 5px;
        gap: 4px;
    }
    .step {
        padding: 6px 7px;
        border-radius: 11px;
    }
    .step:first-child {
        padding-top: 6px;
    }
    .step:last-child {
        padding-bottom: 6px;
    }
    .step-tag {
        min-width: 17px;
        height: 12px;
        font-size: 6px;
        margin-bottom: 1px;
    }
    .step-title {
        font-size: 9px;
        margin-bottom: 4px;
    }
    .head-row {
        margin-bottom: 4px;
    }
    .field-row,
    .peptide-row {
        grid-template-columns: 87px minmax(0, 1fr);
        gap: 6px;
    }
    .field-label,
    .peptide-label {
        font-size: 9px;
    }
    .control,
    .split {
        min-height: 29px;
        border-radius: 10px;
    }
    .control {
        font-size: 9px;
        padding: 0 9px;
    }
    select.control {
        background-position:
            calc(100% - 13px) 12px,
            calc(100% - 8px) 12px;
        padding-right: 27px;
    }
    .split,
    .split.fixed-unit {
        grid-template-columns: 1fr 50px;
    }
    .split input,
    .split select,
    .unit-label {
        font-size: 9px;
        padding: 0 7px;
    }
    .split select {
        padding-right: 18px;
        background-position:
            calc(100% - 10px) 12px,
            calc(100% - 6px) 12px;
    }
    .peptide-list {
        gap: 3px;
    }
    .add-btn {
        margin-top: 4px;
        padding: 5px 7px;
        border-radius: 9px;
        font-size: 6px;
    }
    .remove-btn {
        width: 17px;
        height: 17px;
        font-size: 9px;
    }
    .disclaimer {
        font-size: 6px;
        margin-top: 3px;
    }
}

/* BYON Peptides brand override — Brand Guideline */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
:root {
    --ink: #172033;
    --muted: #6f7890;
    --line: rgba(37, 61, 145, 0.14);
    --surface: #ffffff;
    --blue: #253d91;
    --blue-dark: #253d91;
    --blue-soft: #f3f5fc;
    --blue-pale: #f8f9fd;
    --yellow-soft: #fff7f3;
    --yellow-line: rgba(243, 109, 68, 0.22);
    --green-soft: #f7f8fc;
    --green-line: rgba(37, 61, 145, 0.12);
    --coral-soft: #fff4ef;
    --coral-line: rgba(243, 109, 68, 0.25);
    --shadow: 0 18px 48px rgba(37, 61, 145, 0.1);
    --danger: #c94f36;
}
body {
    font-family: "Montserrat", Arial, sans-serif;
    background: #ffffff;
    color: var(--ink);
}
button,
input,
select {
    font-family: "Montserrat", Arial, sans-serif;
}
.result-head h2,
.step-title {
    font-family: "Montserrat", Arial, sans-serif;
    text-transform: none;
    letter-spacing: -0.025em;
    font-weight: 800;
}
.card {
    border-color: rgba(37, 61, 145, 0.13);
    box-shadow: var(--shadow);
}
.result-card {
    background: #ffffff;
    border-color: rgba(37, 61, 145, 0.18);
    position: relative;
}
.result-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #253d91 0 72%, #f36d44 72% 100%);
}
.eyebrow {
    color: #f36d44;
    font-weight: 800;
}
.result-value,
.unit-label {
    color: #253d91;
}
.result-head h2 {
    color: #253d91;
}
/* BYON orange dose preview */
.liquid {
    background: linear-gradient(
        90deg,
        rgba(243, 109, 68, 0.18),
        rgba(243, 109, 68, 0.62)
    );
    border-right: 2px solid #f36d44;
}
.result-marker {
    background: #f36d44;
}
.result-marker-label {
    background: #f36d44;
    color: #fff;
}
.summary-copy {
    color: #384663;
}
.summary-copy strong {
    color: #253d91;
}
.result-line {
    border-bottom-color: rgba(37, 61, 145, 0.12);
}
.action-btn.primary {
    background: #253d91;
    color: #fff;
    transition: 0.2s ease;
}
.action-btn.primary:hover {
    background: #f36d44;
}
.action-btn.secondary {
    background: #fff;
    color: #253d91;
    border: 1px solid rgba(37, 61, 145, 0.18);
}
.form-card {
    background: #fff;
}
.step:nth-child(1) {
    background: #f5f6fb;
    border-color: rgba(37, 61, 145, 0.13);
}
.step:nth-child(2) {
    background: #fff7f3;
    border-color: rgba(243, 109, 68, 0.22);
}
.step:nth-child(3) {
    background: #fafbfe;
    border-color: rgba(37, 61, 145, 0.12);
}
.step:nth-child(4) {
    background: #f2f4fb;
    border-color: rgba(37, 61, 145, 0.16);
}
.step-tag {
    background: #253d91;
    color: #fff;
    border: 0;
    font-weight: 800;
}
.control,
.split {
    border-color: rgba(37, 61, 145, 0.14);
    background: #fff;
}
.control:focus,
.split:focus-within {
    border-color: #f36d44;
    box-shadow: 0 0 0 3px rgba(243, 109, 68, 0.14);
}
select.control,
.split select {
    background-image:
        linear-gradient(45deg, transparent 50%, #253d91 50%),
        linear-gradient(135deg, #253d91 50%, transparent 50%);
}
.add-btn {
    border-color: #f36d44;
    color: #d15531;
    background: #fff7f3;
}
.add-btn:hover {
    background: #ffede6;
}
.remove-btn {
    background: #fff0eb;
    color: #d15531;
}
.warning {
    background: #fff4ef;
    color: #9d3e26;
    border: 1px solid rgba(243, 109, 68, 0.24);
}
.disclaimer {
    color: #7a8295;
}
@media (max-width: 520px) {
    html,
    body {
        min-height: 100%;
        overflow-x: hidden;
    }
    .page {
        width: min(100% - 10px, 430px);
        padding: 5px 0 7px;
    }
    .calculator-stack {
        gap: 4px;
    }
    .result-card {
        padding: 9px 10px 7px;
    }
    .form-card {
        padding: 4px;
        gap: 4px;
    }
    .step {
        padding: 5px 7px;
    }
    .result-head h2 {
        font-size: 13px;
    }
    .step-title {
        font-size: 9px;
        letter-spacing: -0.02em;
    }
}

/* calculator end */

/* Generic payment status pages retained for a future provider */
.place-order:disabled {
    opacity: 0.6;
    cursor: wait;
}
.payment-result-page {
    min-height: 560px;
    display: grid;
    place-items: start center;
}
.payment-result-card {
    width: min(650px, 100%);
    padding: 48px;
    border: 1px solid #e1e7f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 55px #17366f17;
    text-align: center;
}
.payment-result-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    font-size: 27px;
    font-weight: 800;
}
.payment-result-icon.paid {
    background: #dff7ec;
    color: #16805c;
}
.payment-result-icon.pending {
    background: #fff1d7;
    color: #a56d12;
}
.payment-result-icon.failed {
    background: #ffebe7;
    color: #c9442d;
}
.payment-result-card > small {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 1.4px;
}
.payment-result-card h1 {
    margin: 10px 0 13px;
    color: var(--blue);
    font-size: 30px;
}
.payment-result-card > p {
    margin: 0 auto 25px;
    max-width: 510px;
    color: #68758a;
    line-height: 1.75;
}
.payment-result-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 13px;
    padding: 20px;
    border-radius: 11px;
    background: #f5f7fb;
    text-align: left;
}
.payment-result-summary strong {
    text-align: right;
}
.payment-result-summary .status-text {
    color: var(--blue);
}
.payment-result-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}
.payment-result-actions form {
    margin: 0;
}
.payment-result-actions .button {
    border: 0;
    border-radius: 30px;
    background: var(--orange);
}
.payment-result-actions .secondary-payment {
    background: #fff;
    color: var(--blue);
    border: 1px solid #cfd8e8;
}
.payment-result-actions > a:last-child {
    font-size: 12px;
    color: #68758a;
    text-decoration: underline;
}
@media (max-width: 560px) {
    .payment-result-card {
        padding: 32px 20px;
    }
    .payment-result-card h1 {
        font-size: 24px;
    }
    .payment-result-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .payment-result-actions .button {
        display: block;
        width: 100%;
    }
}
.track-order-card {
    max-width: 720px;
    margin: auto;
}
.track-order-card .form-grid {
    margin: 24px 0;
}
.track-order-card .form-grid .button {
    align-self: end;
    min-height: 48px;
}
.track-order-card hr {
    border: 0;
    border-top: 1px solid #e4e9f2;
    margin: 28px 0;
}
.promo-form {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}
.promo-form input {
    min-width: 0;
    flex: 1;
    border: 1px solid #dce3ee;
    border-radius: 7px;
    padding: 11px;
}
.promo-form button,
.promo-applied button {
    border: 0;
    border-radius: 7px;
    background: #173f9e;
    color: #fff;
    padding: 0 14px;
    font-weight: 700;
}
.promo-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding: 12px;
    background: #eef4ff;
    border-radius: 8px;
}
.promo-saving {
    color: #14845c !important;
}
.coa-upload-image {
    object-fit: contain !important;
    border: 1px solid #e4e9f2;
    padding: 8px;
}
.coa-catalog {
    background: #eef0f3;
    padding: 46px 0 90px;
}
.coa-search {
    height: 54px;
    background: #fff;
    border: 1px solid #dfe3e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    margin-bottom: 28px;
}
.coa-search svg {
    width: 21px;
    fill: none;
    stroke: #466078;
    stroke-width: 1.8;
}
.coa-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 13px;
    font: inherit;
    color: #10213b;
}
.coa-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.coa-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(13, 36, 72, 0.03);
}
.coa-product-card[hidden] {
    display: none;
}
.coa-product-photo {
    position: relative;
    height: 315px;
    background: #f7f8fa;
    display: grid;
    place-items: center;
}
.coa-product-photo img {
    grid-area: 1/1;
    width: 100%;
    height: 100%;
    object-fit: fill;
    padding: 18px;
}
.coa-product-photo img[hidden] {
    display: none;
}
.coa-product-photo .coa-logo-placeholder {
    width: 72%;
    height: auto;
    opacity: 0.65;
}
.coa-photo-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid #dbe2eb;
    border-radius: 50%;
    background: #fffffff0;
    color: #173f9e;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 3px 12px #10234a18;
}
.coa-photo-arrow.prev {
    left: 12px;
}
.coa-photo-arrow.next {
    right: 12px;
}
.coa-photo-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 5px;
    transform: translateX(-50%);
}
.coa-photo-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b9c1ce;
}
.coa-photo-dots span.active {
    width: 17px;
    border-radius: 5px;
    background: #10a6cc;
}
.coa-product-content {
    padding: 18px 18px 28px;
}
.coa-product-content h2 {
    font-size: 17px;
    margin: 0 0 5px;
}
.coa-product-content > p {
    margin: 0 0 14px;
    color: #08a4cc;
    font-size: 12px;
}
.coa-batches {
    display: grid;
    gap: 9px;
}
.coa-batches > div {
    min-height: 49px;
    border: 1px solid #dfe4ea;
    border-radius: 9px;
    background: #fafbfc;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.coa-batches span {
    display: flex;
    flex-direction: column;
    font-size: 11px;
}
.coa-batches small {
    color: #7d8795;
    margin-top: 2px;
}
.coa-batches a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #10a6cc;
    color: #fff;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}
.coa-batches a svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
.coa-coming-soon {
    display: inline-flex !important;
    background: #edf0f5;
    color: #7a8493;
    padding: 8px 10px;
    border-radius: 7px;
    font-size: 9px !important;
    font-weight: 700;
    white-space: nowrap;
}
.coa-no-results,
.coa-empty {
    text-align: center;
    padding: 50px;
    color: #6e7888;
}
.coa-no-results {
    margin: 0;
}
@media (max-width: 900px) {
    .coa-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .coa-page-hero {
        display: none !important;
    }
    .coa-catalog {
        padding: 20px 0 52px;
    }
    .coa-catalog > .container {
        width: calc(100% - 22px);
    }
    .coa-search {
        height: 42px;
        margin-bottom: 16px;
        padding: 0 11px;
        border-radius: 9px;
    }
    .coa-search svg {
        width: 16px;
    }
    .coa-search input {
        min-width: 0;
        padding: 0 9px;
        font-size: 11px;
    }
    .coa-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: start;
    }
    .coa-product-photo {
        display: grid;
        place-items: center;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1.08 !important;
        background: #f7f8fa;
    }
    .coa-product-photo img {
        width: 100%;
        height: 100%;
        padding: 7px !important;
        object-fit: contain !important;
    }
    .coa-product-card {
        border-radius: 12px;
    }
    .coa-product-content {
        min-height: 0 !important;
        padding: 11px 9px 13px;
    }
    .coa-product-content h2 {
        min-width: 0;
        margin-bottom: 3px;
        overflow: hidden;
        font-size: 13px;
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .coa-product-content > p {
        margin-bottom: 9px;
        font-size: 10px;
    }
    .coa-batches {
        gap: 6px;
    }
    .coa-batches > div {
        min-height: 42px;
        gap: 5px;
        padding: 5px 6px;
        border-radius: 7px;
    }
    .coa-batches > div > span:first-child {
        min-width: 0;
        overflow: hidden;
    }
    .coa-batches b {
        overflow: hidden;
        font-size: 9px;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .coa-batches small {
        font-size: 8px;
        white-space: nowrap;
    }
    .coa-batches a {
        flex: 0 0 auto;
        gap: 3px;
        padding: 7px 6px;
        border-radius: 6px;
        font-size: 8px;
    }
    .coa-batches a svg {
        width: 11px;
        height: 11px;
    }
    .coa-coming-soon {
        padding: 6px 5px;
        border-radius: 5px;
        font-size: 7px !important;
    }
    .coa-photo-arrow {
        width: 27px;
        height: 27px;
        font-size: 19px;
    }
    .coa-photo-arrow.prev {
        left: 6px;
    }
    .coa-photo-arrow.next {
        right: 6px;
    }
}
@media (max-width: 330px) {
    .coa-product-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FIX KHUSUS: GALERI MOBILE & HEADING OVERFLOW
   (Paste di baris paling akhir CSS asli kamu)
   ========================================== */

/* 1. Perbaikan Header Fixed agar Announcement & Logo tidak bergeser */
#main-header-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}

/* 2. Mencegah Elemen Lingkaran / Gambar Raksasa Meluap di Layar */
html,
body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* 3. Menampilkan Galeri Foto Produk di Mobile tanpa Mengubah Layout Desktop */
@media (max-width: 768px) {
    .product-detail {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .product-gallery {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .gallery-stage {
        width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        aspect-ratio: 1 / 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        border: 1px solid #e3e7ee !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .gallery-stage img,
    #galleryMainImage {
        width: 100% !important;
        height: 100% !important;
        max-height: 350px !important;
        object-fit: contain !important;
        display: block !important;
    }
}

/* Contact page final responsive layout */
.contact-layout {
    width: min(1320px, calc(100% - 64px));
    max-width: 1320px;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
    padding-top: 72px;
    padding-bottom: 82px;
}
.contact-intro {
    min-width: 0;
}
.contact-intro > small,
.contact-form-heading > small {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}
.contact-intro h2 {
    max-width: 610px;
    margin: 13px 0 22px;
    font-size: clamp(42px, 4.1vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}
.contact-lead {
    max-width: 580px;
    margin: 0;
    color: #56647a;
    font-size: 17px;
    line-height: 1.7;
}
.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}
.contact-details > * {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 15px 17px;
    border: 1px solid #e1e7f0;
    border-radius: 12px;
    background: #fff;
    overflow-wrap: anywhere;
}
.contact-details span {
    color: #75829a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}
.contact-details b {
    color: #153b94;
    font-size: 14px;
}
.contact-form {
    padding: 38px;
    border: 1px solid #e1e7f0;
    border-radius: 22px;
    background: #f7f9fc;
    box-shadow: 0 20px 55px rgba(20, 48, 105, 0.09);
}
.contact-form-heading {
    margin-bottom: 26px;
}
.contact-form-heading h3 {
    margin: 7px 0;
    color: #122a64;
    font-size: 27px;
}
.contact-form-heading p {
    margin: 0;
    color: #68768b;
    font-size: 13px;
    line-height: 1.55;
}
.contact-form .form-grid {
    gap: 19px 18px;
}
.contact-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: #172745;
    font-size: 12px;
    font-weight: 700;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ccd6e5;
    border-radius: 10px;
    background: #fff;
    padding: 13px 14px;
    color: #14213a;
    font: inherit;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.contact-form input {
    min-height: 48px;
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2451b7;
    box-shadow: 0 0 0 4px rgba(36, 81, 183, 0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa5b6;
}
.contact-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
}
.contact-submit-row small {
    max-width: 300px;
    color: #7a8699;
    font-size: 11px;
    line-height: 1.45;
}
.contact-submit-row .button {
    min-width: 180px;
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}
@media (max-width: 900px) {
    .contact-layout {
        width: min(680px, calc(100% - 30px));
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        padding: 40px 0 60px;
    }
    .contact-intro h2 {
        margin: 10px 0 16px;
        font-size: clamp(34px, 9vw, 46px);
    }
    .contact-lead {
        font-size: 15px;
    }
    .contact-details {
        grid-template-columns: 1fr 1fr;
        margin-top: 23px;
    }
    .contact-form {
        width: 100%;
        padding: 26px;
        border-radius: 18px;
    }
}
@media (max-width: 560px) {
    .contact-layout {
        width: calc(100% - 24px);
        gap: 26px;
        padding: 30px 0 48px;
    }
    .contact-intro h2 {
        font-size: 34px;
        line-height: 1.12;
    }
    .contact-details {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 20px 16px;
    }
    .contact-form-heading h3 {
        font-size: 23px;
    }
    .contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-form .form-grid .wide {
        grid-column: auto;
    }
    .contact-form textarea {
        min-height: 135px;
    }
    .contact-submit-row {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
        margin-top: 20px;
    }
    .contact-submit-row .button {
        width: 100%;
    }
}
.hero-product-unavailable {
    display: grid !important;
    place-items: center !important;
    min-height: 260px !important;
    text-align: center !important;
}
.hero-product-unavailable h2 {
    margin: 0 0 8px !important;
}
.hero-product-unavailable p {
    margin: 0 !important;
    color: #667085 !important;
    font-size: 13px !important;
}
/* BYON legal information and checkout consent */
.legal-hero {
    background: linear-gradient(120deg, #123d98, #355bb7);
    color: #fff;
    padding: 76px 0 66px;
}
.legal-hero small {
    color: #ff7555;
    font-weight: 800;
    letter-spacing: 2px;
}
.legal-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1;
    margin: 16px 0;
}
.legal-hero p {
    max-width: 720px;
    font-size: 18px;
    margin: 0 0 18px;
}
.legal-hero span {
    font-size: 13px;
    opacity: 0.8;
}
.legal-page {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.legal-summary {
    position: sticky;
    top: 150px;
    padding: 26px;
    border: 1px solid #d8e0ed;
    border-top: 4px solid #ff6746;
    border-radius: 14px;
    background: #f7f9fc;
}
.legal-summary strong {
    display: block;
    color: #10204a;
    font-size: 20px;
    margin-bottom: 10px;
}
.legal-summary p {
    color: #526078;
    line-height: 1.65;
}
.legal-summary a {
    color: #1746aa;
    font-weight: 700;
    overflow-wrap: anywhere;
}
.legal-content {
    display: grid;
    gap: 0;
}
.legal-content > section {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #dde3ed;
}
.legal-content > section:first-child {
    padding-top: 0;
}
.legal-content > section > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff0ec;
    color: #ef5d3f;
    font-size: 12px;
    font-weight: 800;
}
.legal-content h2 {
    color: #10204a;
    font-size: 25px;
    margin: 5px 0 12px;
}
.legal-content p {
    color: #4c5870;
    line-height: 1.72;
    margin: 0 0 12px;
}
.checkout-terms-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid #d8e0ed;
    border-radius: 12px;
    background: #f7f9fc;
    color: #43516a;
    font-size: 13px;
    line-height: 1.5;
}
.checkout-terms-consent input {
    flex: 0 0 auto !important;
    width: 18px !important;
    height: 18px;
    margin: 2px 0 0;
}
.checkout-terms-consent a {
    color: #1746aa;
    font-weight: 800;
    text-decoration: underline;
}
@media (max-width: 760px) {
    .legal-hero {
        padding: 52px 0 44px;
    }
    .legal-page {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .legal-summary {
        position: static;
    }
    .legal-content > section {
        grid-template-columns: 38px 1fr;
        gap: 12px;
        padding: 24px 0;
    }
    .legal-content > section > span {
        width: 34px;
        height: 34px;
    }
    .legal-content h2 {
        font-size: 20px;
    }
    .legal-content p {
        font-size: 14px;
    }
}
/* Client revision 13 August 2026 */
.shop-toolbar {
    align-items: flex-start;
    flex-wrap: wrap;
}
.shop-toolbar .filters {
    order: 1;
    display: flex;
    flex: 1 1 100%;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 7px;
    padding: 2px 0 10px;
    scrollbar-width: thin;
}
.shop-toolbar .filters a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 10px !important;
    padding: 9px 13px !important;
}
.shop-toolbar form {
    order: 2;
    margin-left: auto;
}
.product-card .product-info {
    min-height: 190px !important;
}
.product-card .product-info > div:first-child {
    display: flex;
    flex-direction: column;
}
.product-card .product-info small {
    order: 1;
    font-size: 10px !important;
}
.product-card .product-info h3 {
    order: 2;
    margin: 5px 0 !important;
}
.product-card .product-info h3,
.product-card .product-info h3 a {
    font-size: 17px !important;
    font-weight: 700 !important;
}
.product-card .product-info p {
    order: 3;
}
.product-card .product-info > div:last-child {
    margin-top: auto !important;
}
.product-card .product-info > div:last-child strong {
    font-size: 13px !important;
    font-weight: 600 !important;
}
.product-card-action.is-disabled {
    border-color: #b8c0cf !important;
    background: #b8c0cf !important;
    color: #fff !important;
    cursor: not-allowed !important;
    pointer-events: none;
}
.size-options label.is-out-of-stock {
    opacity: 0.48;
}
.size-options label.is-out-of-stock span:after {
    content: "Out of Stock";
    display: block;
    color: #c7463d;
    font-size: 9px;
    margin-top: 4px;
}
.benefit-icon {
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center;
    border-radius: 50%;
    background: #ffffff17;
}
.benefit-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer .benefits article {
    gap: 14px;
}
.footer .benefits article b {
    font-size: 14px;
}
.footer .benefits article p {
    font-size: 11px;
    line-height: 1.5;
}
.coa-product-photo img {
    object-fit: contain !important;
}
.coa-product-content {
    position: relative;
    z-index: 2;
    background: #fff;
}
.coa-product-content h2 {
    display: block !important;
    visibility: visible !important;
    color: #111b31 !important;
    line-height: 1.25;
}
@media (max-width: 760px) {
    .shop-toolbar form {
        width: 100%;
        display: flex;
    }
    .shop-toolbar form input {
        min-width: 0;
        flex: 1;
    }
    .shop-toolbar .filters {
        margin-right: 0;
    }
    .product-card .product-info h3,
    .product-card .product-info h3 a {
        font-size: 15px !important;
    }
}
/* Permanent COA proof section above Our Best Seller */
.home-coa-proof {
    padding: 72px 0 22px;
    background: #fff;
}
.home-coa-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 48px 58px;
    align-items: center;
}
.home-coa-proof-image {
    overflow: hidden;
    border: 1px solid #dce2ec;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 12px 35px #142b5c12;
}
.home-coa-proof-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.48/1;
    object-fit: cover;
}
.home-coa-proof-copy {
    color: #0c317f;
}
.home-coa-badges {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
}
.home-coa-badges span {
    padding: 7px 12px;
    border: 1px solid #d7e0ef;
    border-radius: 999px;
    background: #f1f5fb;
    color: #163a8c;
    font-size: 11px;
    font-weight: 700;
}
.home-coa-proof h2 {
    margin: 0 0 20px;
    color: #0b3184;
    font-size: clamp(35px, 3.4vw, 57px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}
.home-coa-proof ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 11px;
}
.home-coa-proof li {
    position: relative;
    padding-left: 32px;
    font-size: 19px;
    font-weight: 600;
}
.home-coa-proof li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border: 2px solid #ff6746;
    border-radius: 50%;
    color: #ff6746;
    font-size: 15px;
    font-weight: 800;
}
.home-coa-proof-copy > strong {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 20px;
    background: #ff6746;
    color: #fff;
    font-size: 18px;
}
.home-coa-proof-copy > p {
    max-width: 650px;
    margin: 16px 0 0;
    color: #173570;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}
.home-coa-button {
    grid-column: 1/-1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 25px;
    border-radius: 7px;
    background: #2148a9;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    transition: 0.2s;
}
.home-coa-button:hover {
    background: #ff6746;
    transform: translateY(-2px);
}
@media (max-width: 760px) {
    .home-coa-proof {
        padding: 42px 0 12px;
    }
    .home-coa-proof-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .home-coa-proof-image {
        border-radius: 20px;
    }
    .home-coa-proof-copy {
        padding: 0 4px;
    }
    .home-coa-proof h2 {
        font-size: 32px;
    }
    .home-coa-proof li {
        font-size: 15px;
    }
    .home-coa-proof-copy > strong {
        font-size: 14px;
    }
    .home-coa-button {
        grid-column: 1;
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }
}

/* Only show packages belonging to the currently selected hero format and dose. */
.hero-product .choice-row > label[hidden],
.hero-product [data-hero-packages] > label[hidden] {
    display: none !important;
}

/* Stock and payment-policy finishing */
.product-configurator .add-row > button:disabled,
.product-card-action.is-disabled {
    border-color: #aeb7c7 !important;
    background: #aeb7c7 !important;
    color: #fff !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}
.legal-content .legal-merchant {
    margin-bottom: 8px;
    padding: 26px;
    border: 1px solid #d8e0ed;
    border-radius: 16px;
    background: #f7f9fc;
}
.legal-content .legal-merchant > span {
    background: #e4f7ef;
    color: #16845d;
}
.legal-merchant dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 22px 0 0;
    border: 1px solid #d8e0ed;
    border-radius: 12px;
    overflow: hidden;
}
.legal-merchant dl > div {
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #e3e8f0;
}
.legal-merchant dl > div:nth-child(odd) {
    border-right: 1px solid #e3e8f0;
}
.legal-merchant dl > div:nth-last-child(-n + 2) {
    border-bottom: 0;
}
.legal-merchant dt {
    margin-bottom: 4px;
    color: #748099;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.legal-merchant dd {
    margin: 0;
    color: #16264b;
    font-size: 14px;
    font-weight: 700;
}
.legal-merchant a {
    color: #1746aa;
    text-decoration: underline;
}
@media (max-width: 760px) {
    .legal-content .legal-merchant {
        padding: 20px 14px;
    }
    .legal-merchant dl {
        grid-template-columns: 1fr;
    }
    .legal-merchant dl > div,
    .legal-merchant dl > div:nth-child(odd) {
        border-right: 0;
        border-bottom: 1px solid #e3e8f0;
    }
    .legal-merchant dl > div:last-child {
        border-bottom: 0;
    }
}

/* Product catalog toolbar: share the same left and right edges as the product grid. */
.shop-catalog-section .shop-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.shop-catalog-section .shop-toolbar .filters {
    order: initial;
    display: flex;
    flex: initial;
    min-width: 0;
    margin: 0;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 2px 0 7px;
    flex-wrap: wrap !important;
    overflow: visible;
}
.shop-catalog-section .shop-toolbar .filters a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0;
    padding: 9px 17px;
    line-height: 1.2;
    white-space: nowrap;
}
.shop-catalog-section .shop-toolbar form {
    order: initial;
    display: flex;
    justify-self: end;
    width: min(420px, 100%);
    max-width: 100%;
    margin: 0;
}
.shop-catalog-section .shop-toolbar form input {
    flex: 1 1 auto;
    min-width: 0;
}
.shop-catalog-section .shop-toolbar form input,
.shop-catalog-section .shop-toolbar form button {
    min-height: 46px;
    margin: 0;
}
.shop-catalog-section .shop-toolbar form input {
    border-radius: 7px 0 0 7px;
}
.shop-catalog-section .shop-toolbar form button {
    border-radius: 0 7px 7px 0;
}
.shop-catalog-section .result-count {
    margin-top: 20px;
}
@media (max-width: 900px) {
    .shop-catalog-section .shop-toolbar {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .shop-catalog-section .shop-toolbar form {
        justify-self: stretch;
        width: 100%;
    }
    .shop-catalog-section .shop-toolbar .filters {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #b8c4d8 transparent;
        padding: 2px 2px 10px;
    }
    .shop-catalog-section .shop-toolbar .filters::-webkit-scrollbar {
        height: 4px;
    }
    .shop-catalog-section .shop-toolbar .filters::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: #b8c4d8;
    }
}

@media (max-width: 430px) {
    .shop-catalog-section {
        width: calc(100% - 28px) !important;
        max-width: calc(100% - 28px) !important;
    }
    .shop-catalog-section .shop-toolbar form input,
    .shop-catalog-section .shop-toolbar form button {
        min-height: 44px;
        font-size: 16px;
    }
    .shop-catalog-section .shop-toolbar form button {
        flex: 0 0 auto;
        padding-inline: 14px;
    }
}

/* Product catalog card: category, product, price, then action. */
.product-card .product-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 166px !important;
    padding: 19px 18px 17px !important;
}
.product-card-meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 7px !important;
}
.product-card .product-card-category {
    display: inline-flex !important;
    order: initial !important;
    margin: 0 !important;
    padding: 5px 9px !important;
    border-radius: 999px !important;
    background: #fff0eb !important;
    color: #ed5b3e !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
}
.product-card .product-card-meta h3 {
    order: initial !important;
    margin: 0 !important;
    color: #102e78 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}
.product-card .product-card-meta h3 a {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}
.product-card-purchase {
    display: flex !important;
    flex-direction: column !important;
    gap: 11px !important;
    margin-top: 20px !important;
    padding: 0 !important;
    border: 0 !important;
}
.product-card .product-card-price {
    display: block !important;
    margin: 0 !important;
    color: #111d3b !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}
.product-card .product-card-action {
    margin: 0 !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}
@media (max-width: 760px) {
    .product-card .product-info {
        min-height: 148px !important;
        padding: 14px 12px 13px !important;
    }
    .product-card .product-card-meta h3 {
        font-size: 14px !important;
    }
    .product-card .product-card-price {
        font-size: 12px !important;
    }
    .product-card-purchase {
        gap: 9px !important;
        margin-top: 15px !important;
    }
    .product-card .product-card-action {
        min-height: 38px !important;
        font-size: 10px !important;
    }
}

.home-coa-proof h2 {
    font-size: clamp(34px, 3vw, 51px) !important;
}
.home-coa-proof h2 > span {
    display: block;
    white-space: nowrap;
}
@media (max-width: 760px) {
    .home-coa-proof h2 {
        font-size: clamp(27px, 8vw, 34px) !important;
    }
    .home-coa-proof h2 > span {
        white-space: normal;
    }
}

/* Keep every footer card visibly separated on all pages. */
.footer > .benefits {
    column-gap: 28px !important;
    row-gap: 28px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.footer > .newsletter,
.footer > .footer-main {
    margin-top: 28px !important;
    margin-bottom: 0 !important;
}
.footer > .benefits article {
    margin: 0 !important;
}
@media (max-width: 760px) {
    .footer > .benefits {
        row-gap: 18px !important;
    }
    .footer > .newsletter,
    .footer > .footer-main {
        margin-top: 18px !important;
    }
}

/* Linked COA cards open the related store product. Gallery arrows remain independent. */
.coa-product-detail-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
}
.coa-product-detail-link img {
    grid-area: 1/1;
}
.coa-product-link-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #123d98e8;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(5px);
    transition: 0.2s;
}
.coa-product-detail-link:hover .coa-product-link-hint,
.coa-product-detail-link:focus-visible .coa-product-link-hint {
    opacity: 1;
    transform: none;
}
.coa-product-detail-link:focus-visible {
    outline: 3px solid #ff6746;
    outline-offset: -3px;
}
.coa-product-photo .coa-photo-arrow,
.coa-product-photo .coa-photo-dots {
    z-index: 3;
}
.coa-product-content h2 a {
    color: inherit;
    text-decoration: none;
}
.coa-product-content h2 a:hover {
    color: #ff6746;
}
@media (max-width: 760px) {
    .coa-product-link-hint {
        opacity: 1;
        transform: none;
        padding: 6px 9px;
        font-size: 8px;
    }
}

/* WhatsApp consultation entry point and service-area selection. */
.floating.floating-wa {
    right: 22px;
    bottom: 24px;
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px #112d6d35;
    transition: transform .2s ease, box-shadow .2s ease;
}
.floating.floating-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px #112d6d45;
}
.floating.floating-wa svg {
    width: 35px;
    height: 35px;
}

.contact-details > .contact-whatsapp-cta {
    position: relative;
    min-height: 68px;
    padding: 15px 54px 15px 18px;
    justify-content: center;
    border-color: #ff6746;
    background: linear-gradient(135deg, #ff7048, #f05232);
    text-decoration: none;
    box-shadow: 0 10px 24px #f0523224;
    transition: transform .2s ease, box-shadow .2s ease;
}
.contact-details > .contact-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px #f0523238;
}
.contact-details > .contact-whatsapp-cta::after {
    content: '\2192';
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.contact-details > .contact-whatsapp-cta > span {
    color: #fff;
    opacity: .82;
}
.contact-details > .contact-whatsapp-cta b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
}
.contact-details > .contact-whatsapp-cta b span { display: none; }

.wa-consultation-page {
    min-height: calc(100vh - 1px);
    padding: 34px 24px 28px;
    background: #f4f6fa;
    color: #132349;
}
.wa-consultation-route {
    padding-top: 0 !important;
}
.wa-consultation-route .announcement,
.wa-consultation-route #main-header-wrapper,
.wa-consultation-route > .footer,
.wa-consultation-route > .floating-wa {
    display: none !important;
}
.wa-consultation-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.wa-consultation-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    gap: 24px;
}
.wa-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #61708b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.wa-back-link:hover { color: #ff6746; }
.wa-consultation-logo img {
    display: block;
    width: 190px;
    max-height: 58px;
    object-fit: contain;
}
.wa-consultation-heading {
    max-width: 800px;
    margin: 44px 0 42px;
    padding-left: 28px;
    border-left: 5px solid #ff6746;
}
.wa-consultation-heading small {
    color: #ff6746;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.wa-consultation-heading h1 {
    max-width: 740px;
    margin: 14px 0 12px;
    color: #102966;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.02;
    letter-spacing: -.035em;
}
.wa-consultation-heading p {
    margin: 0;
    color: #6d7789;
    font-size: 16px;
    line-height: 1.6;
}
.wa-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.wa-service-card {
    position: relative;
    min-height: 292px;
    padding: 34px 30px 28px;
    border: 1px solid #dce2ec;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #fff;
    color: #15244c;
    text-decoration: none;
    box-shadow: 0 7px 18px #10245b0d;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wa-service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: #2049a5;
}
.wa-service-card-jabodetabek::before { background: #ff6746; }
.wa-service-card-indonesia::before { background: linear-gradient(90deg, #2049a5, #ff6746); }
.wa-service-card:hover {
    transform: translateY(-5px);
    border-color: #bdc9de;
    box-shadow: 0 18px 38px #10245b18;
}
.wa-service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.wa-service-meta span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f2f6fd;
    color: #173b91;
    font-weight: 900;
}
.wa-service-card-jabodetabek .wa-service-meta span {
    background: #fff2ed;
    color: #ff6746;
}
.wa-service-meta b {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f6fa;
    color: #52617c;
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.wa-service-card h2 {
    margin: 26px 0 10px;
    color: #102966;
    font-size: 27px;
    line-height: 1.15;
}
.wa-service-card p {
    margin: 0;
    color: #737d8e;
    font-size: 15px;
    line-height: 1.65;
}
.wa-service-card > strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #153b92;
    font-size: 13px;
}
.wa-service-card-jabodetabek > strong { color: #f15b3c; }
.wa-consultation-footer {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid #dde2eb;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: #7b8494;
    font-size: 12px;
}
.wa-consultation-footer p { margin: 0; }
.wa-consultation-footer strong {
    color: #1a3989;
    letter-spacing: .08em;
    text-transform: uppercase;
}
@media (max-width: 820px) {
    .wa-service-grid { grid-template-columns: 1fr; }
    .wa-service-card { min-height: 250px; }
}
@media (max-width: 600px) {
    .floating.floating-wa {
        right: 14px;
        bottom: 16px;
        width: 54px;
        min-width: 54px;
        height: 54px;
        padding: 0;
    }
    .wa-consultation-page { padding: 18px 16px 24px; }
    .wa-consultation-logo img { width: 145px; }
    .wa-consultation-heading {
        margin: 32px 0 28px;
        padding-left: 18px;
    }
    .wa-consultation-heading h1 { font-size: 38px; }
    .wa-consultation-heading p { font-size: 14px; }
    .wa-service-grid { gap: 16px; }
    .wa-service-card {
        min-height: 234px;
        padding: 28px 22px 23px;
        border-radius: 20px;
    }
    .wa-service-card h2 { font-size: 24px; }
    .wa-consultation-footer {
        flex-direction: column;
        gap: 10px;
    }
}
/* Customer authentication link inside the public navigation. */
.customer-logout-form{margin:0}.customer-logout-form button{border:0;background:transparent;color:inherit;font:inherit;font-weight:700;cursor:pointer;padding:0}

/* Customer account, order history, and delivery tracking. */
.account-shell{max-width:1180px}.account-heading{margin-bottom:30px}.account-heading>span{color:#ff6746;font-size:12px;font-weight:900;letter-spacing:.16em}.account-heading h1{margin:8px 0;color:#102966;font-size:clamp(38px,5vw,62px);line-height:1}.account-heading p{color:#68758c}.account-grid,.order-detail-layout{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(280px,.8fr);gap:24px;align-items:start}.account-card,.customer-order-card,.account-empty{padding:28px;border:1px solid #dbe3f0;border-radius:20px;background:#fff;box-shadow:0 12px 30px rgba(16,41,102,.07)}.account-card h2,.customer-order-card h2{margin:0 0 16px;color:#102966}.account-card dl{margin:0}.account-card dl div{padding:14px 0;border-bottom:1px solid #e7ecf4}.account-card dt,.status-grid small,.status-stack small,.tracking-number small{display:block;color:#728098;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.account-card dd{margin:5px 0 0;font-weight:800}.account-actions form{margin-top:10px}.account-primary,.account-secondary{display:inline-flex;justify-content:center;align-items:center;min-height:46px;padding:0 20px;border:1px solid #2049ad;border-radius:10px;font-weight:800;text-decoration:none;cursor:pointer}.account-primary{background:#2049ad;color:#fff}.account-secondary{background:#fff;color:#2049ad}.account-actions .account-primary,.account-actions .account-secondary{width:100%}.customer-order-list{display:grid;gap:18px}.customer-order-top{display:flex;justify-content:space-between;gap:20px;align-items:flex-start}.customer-order-top h2{margin:4px 0 2px}.customer-order-top p,.order-item-summary{color:#6f7b90}.customer-order-top>strong{color:#102966;font-size:20px}.status-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:20px 0}.status-grid span,.status-stack span{padding:12px;border-radius:10px;background:#f3f6fb;font-weight:800}.status-stack{display:grid;gap:10px}.account-back{display:inline-flex;margin-bottom:24px;color:#2049ad;font-weight:800}.customer-order-detail .order-detail-layout{margin-bottom:24px}.order-detail-layout>div,.order-detail-layout>aside{display:grid;gap:20px}.customer-order-item{display:grid;grid-template-columns:76px minmax(0,1fr) auto;gap:16px;align-items:center;padding:16px 0;border-bottom:1px solid #e6ebf3}.customer-order-item img,.order-item-placeholder{width:76px;height:76px;border-radius:10px;object-fit:contain;background:#f3f6fb}.order-item-placeholder{display:grid;place-items:center;color:#2049ad;font-size:12px;font-weight:900}.customer-order-item h3{margin:0 0 6px;color:#102966}.customer-order-item p{margin:2px 0;color:#6f7b90}.customer-totals{display:grid;gap:10px;margin-top:20px}.customer-totals span{display:flex;justify-content:space-between}.customer-totals span:last-child{padding-top:12px;border-top:1px solid #dce3ee;color:#102966;font-size:18px}.tracking-number{display:grid;grid-template-columns:1fr auto;gap:5px 12px;align-items:center;padding:14px;border-radius:10px;background:#f3f6fb}.tracking-number small{grid-column:1/-1}.tracking-number button{border:0;background:none;color:#ff6746;font-weight:900;cursor:pointer}.tracking-guidance{font-size:13px;color:#68758c}.link-button{margin-top:5px}.order-timeline{position:relative;display:grid;gap:18px;padding-left:24px}.order-timeline:before{position:absolute;left:5px;top:7px;bottom:7px;width:2px;background:#dce5f3;content:""}.order-timeline div{position:relative;display:flex;justify-content:space-between;gap:20px}.order-timeline div:before{position:absolute;left:-24px;top:5px;width:12px;height:12px;border-radius:50%;background:#ff6746;content:""}.order-timeline time{color:#77839a;font-size:13px}.admin-delivery-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.is-hidden{display:none!important}
@media(max-width:760px){.account-grid,.order-detail-layout{grid-template-columns:1fr}.account-shell{padding-left:16px;padding-right:16px}.account-card,.customer-order-card,.account-empty{padding:20px;border-radius:16px}.status-grid{grid-template-columns:repeat(2,1fr)}.customer-order-top{display:block}.customer-order-top>strong{display:block;margin-top:10px}.customer-order-item{grid-template-columns:62px minmax(0,1fr)}.customer-order-item img,.order-item-placeholder{width:62px;height:62px}.customer-order-item>strong{grid-column:2}.order-timeline div{display:grid;gap:3px}.admin-delivery-grid{grid-template-columns:1fr}}

/* Optional Google address suggestions; manual checkout remains fully usable. */
.checkout-card textarea{display:block;width:100%;min-height:105px;padding:13px 14px;border:1px solid #d5deeb;border-radius:10px;background:#fff;color:#13213a;font:inherit;resize:vertical}.checkout-card label>small,.google-address-search>small{display:block;margin-top:6px;color:#758198;font-size:11px;line-height:1.45}.google-address-search>label{display:flex;justify-content:space-between;gap:12px;margin-bottom:7px;font-weight:800}.google-address-search>label span{color:#71809a;font-size:10px;text-transform:uppercase}.google-address-search [data-google-autocomplete]{position:relative;z-index:3;min-height:49px}.google-address-search gmp-place-autocomplete{display:block;width:100%;max-width:100%;--gmpx-color-surface:#fff;--gmpx-color-primary:#2049ad}.google-address-unavailable [data-google-autocomplete]{display:none}.google-address-unavailable>small{padding:10px 12px;border-radius:8px;background:#fff5ed;color:#7b4c2b}@media(max-width:650px){.checkout-card textarea{min-height:120px}.google-address-search gmp-place-autocomplete{font-size:16px}}

/* Final customer UI safeguards: narrow screens, long content, and order tracking. */
.whatsapp-order-button{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;min-height:52px;margin:0;padding:14px 22px;border-radius:12px;background:#25d366;color:#fff;box-shadow:0 4px 14px rgba(37,211,102,.28);font-size:1rem;transition:background-color .2s ease,transform .2s ease}.whatsapp-order-button:hover{background:#20ba5a}.whatsapp-order-button:focus-visible{outline:3px solid rgba(32,73,173,.28);outline-offset:3px}.whatsapp-order-button svg{width:22px;height:22px;flex:0 0 22px;fill:currentColor}.summary-options{display:block;color:#667085;overflow-wrap:anywhere}.order-summary article b,.account-card,.customer-order-card,.customer-order-top h2,.customer-order-item h3,.tracking-number b{min-width:0;overflow-wrap:anywhere}.track-order-card{text-align:left}.track-order-card>h2,.track-order-card>p{text-align:center}.track-order-card .form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.track-order-card .form-grid label{min-width:0;font-weight:700}.track-order-card .form-grid input{min-width:0;min-height:48px;margin-top:7px}.track-order-card .form-grid .button{grid-column:1/-1;justify-self:center;min-width:180px}.track-order-message{margin-top:18px}.track-order-result>small{color:var(--orange);font-weight:800;letter-spacing:.12em}.track-order-result>h2{margin:6px 0;color:var(--blue);overflow-wrap:anywhere}.track-order-date{margin:0;color:#6f7b90}.track-status-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:22px 0}.track-status-grid span{min-width:0;padding:13px;border-radius:10px;background:#f3f6fb;font-weight:800;overflow-wrap:anywhere}.track-status-grid small,.track-shipping-details dt{display:block;margin-bottom:5px;color:#728098;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.track-shipping-details{margin:22px 0;padding:20px;border:1px solid #e1e7f0;border-radius:14px;background:#fafbfe}.track-shipping-details h3{margin-top:0}.track-shipping-details dl{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:0}.track-shipping-details dd{margin:0;font-weight:800;overflow-wrap:anywhere}.track-order-history{display:grid;gap:12px}.track-order-history p{display:grid;grid-template-columns:minmax(130px,auto) minmax(0,1fr);gap:14px;margin:0;padding:12px 0;border-bottom:1px solid #e7ecf3}.track-order-history span{overflow-wrap:anywhere}@media(max-width:650px){.checkout-page{padding-left:14px;padding-right:14px}.checkout-card,.order-summary{padding:18px 16px}.checkout-card-title{gap:11px}.order-summary article{gap:10px}.summary-line,.summary-total{align-items:flex-start}.track-order-card .form-grid{grid-template-columns:1fr}.track-order-card .form-grid .button{width:100%;min-width:0}.track-status-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.track-shipping-details dl{grid-template-columns:1fr}.track-order-history p{grid-template-columns:1fr;gap:4px}}@media(max-width:350px){.account-shell{padding-left:12px;padding-right:12px}.account-card,.customer-order-card,.account-empty{padding:17px}.status-grid,.track-status-grid{grid-template-columns:1fr}.customer-order-item{grid-template-columns:52px minmax(0,1fr);gap:12px}.customer-order-item img,.order-item-placeholder{width:52px;height:52px}}
/* Customer payment options: 1, 2, or 3 independent gateways (WhatsApp, DOKU, NOWPayments). */
.payment-method-options{display:grid;grid-template-columns:1fr;gap:12px;width:100%}.payment-method-options.payment-count-3{grid-template-columns:1fr!important}.payment-method-options.payment-count-2{grid-template-columns:repeat(2,minmax(0,1fr))}.payment-method-options.payment-count-1,.payment-method-options.is-single{grid-template-columns:1fr!important}.payment-method-card{display:flex!important;align-items:flex-start;gap:13px;width:100%!important;min-width:0;min-height:auto!important;margin:0!important;border:2px solid #d7deed;border-radius:12px;padding:14px 18px;cursor:pointer;background:#fff;transition:border-color .18s ease,background-color .18s ease,box-shadow .18s ease;box-sizing:border-box!important}.payment-method-card:hover{border-color:#9eb1dc}.payment-method-card:has(input:checked){border-color:var(--blue);background:#f4f7ff;box-shadow:0 0 0 3px rgba(32,73,173,.1)}.payment-method-card:has(input:focus-visible){outline:3px solid rgba(32,73,173,.25);outline-offset:3px}.checkout-card .payment-method-card input{width:18px!important;height:18px!important;min-width:18px!important;flex:0 0 18px;margin:3px 0 0!important;padding:0!important;accent-color:var(--blue)}.payment-method-card > span{display:flex!important;flex-direction:column!important;gap:2px!important;min-width:0!important;flex:1!important}.payment-method-card b{color:var(--blue);font-size:14px;line-height:1.35}.payment-method-card small{margin:0!important;color:#53627c!important;font-size:12px!important;line-height:1.45;overflow-wrap:normal;word-break:normal}.doku-channels{display:inline-block!important;margin-top:4px!important;color:#475467!important;font-size:11px!important;font-weight:700!important;letter-spacing:.02em!important}.crypto-badges{display:flex!important;flex-direction:row!important;align-items:center!important;gap:5px!important;margin-top:5px!important;flex-wrap:wrap!important;width:auto!important;flex:none!important}.crypto-pill{display:inline-flex!important;flex-direction:row!important;align-items:center!important;padding:2px 7px!important;border-radius:4px!important;background:#fff6eb;color:#b45309;font-size:10px;font-weight:800;border:1px solid #fed7aa;letter-spacing:.04em;line-height:1.3!important;width:auto!important;flex:none!important}.payment-method-unavailable{line-height:1.55}.payment-method-unavailable b{display:block;margin-bottom:3px}@media(max-width:767px){.payment-method-options,.payment-method-options.payment-count-3,.payment-method-options.payment-count-2{grid-template-columns:1fr!important}.payment-method-card{padding:13px 15px!important}}
.checkout-payment-button{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;min-height:52px;margin:0;padding:14px 22px;border-radius:12px;background:var(--blue);color:#fff;box-shadow:0 4px 14px rgba(32,73,173,.2);font-size:1rem}.checkout-payment-button:hover{background:#173c91}.checkout-payment-button svg{width:22px;height:22px;flex:0 0 22px}

/* Consolidated Responsive Polish for Public & Customer Mobile Views */
@media (max-width: 480px) {
    .cart-item {
        display: grid !important;
        grid-template-columns: 64px minmax(0, 1fr) !important;
        gap: 12px !important;
        align-items: start !important;
        padding: 14px 0 !important;
    }
    .cart-item img {
        width: 64px !important;
        height: 64px !important;
    }
    .cart-item-details {
        grid-column: 2 !important;
    }
    .cart-item-actions {
        grid-column: 1 / -1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        margin-top: 8px !important;
        padding-top: 10px !important;
        border-top: 1px dashed #e5e7eb !important;
    }
    .cart-item-actions .item-subtotal {
        font-size: 15px !important;
    }
    .cart-item-actions .cart-remove-btn {
        margin-top: 0 !important;
    }
    .payment-method-card {
        padding: 12px 12px !important;
        gap: 10px !important;
        border-radius: 10px !important;
    }
    .payment-method-card b {
        font-size: 13px !important;
    }
    .payment-method-card small {
        font-size: 11px !important;
        line-height: 1.35 !important;
    }
    .doku-channels {
        font-size: 10px !important;
    }
    .crypto-pill {
        padding: 1px 5px !important;
        font-size: 9px !important;
    }
    .add-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .quantity-control {
        width: fit-content !important;
        margin: 0 auto !important;
    }
    .add-row > button {
        width: 100% !important;
        min-height: 48px !important;
    }
}

@media (max-width: 430px) {
    .hero-product .choice-row {
        gap: 4px !important;
    }
    .hero-product .choice-row span {
        padding: 5px 9px !important;
        font-size: 11px !important;
    }
}

