:root {
    --green: #009c4c;
    --deep: #00431f;
    --ink: #080b0c;
    --muted: #747979;
    --line: #d9dede;
    --wash: #efffd0;
    --soft: #f8fff0;
    --pink: #f51872;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-hero {
    min-height: 990px;
    padding: 48px 0 120px;
    background: linear-gradient(180deg, #efffd0 0%, #fbfff8 86%, #fff 100%);
}

.shop-hero {
    min-height: 760px;
    padding: 48px 0 120px;
    display: grid;
    align-items: start;
    background: linear-gradient(180deg, #efffd0 0%, #fbfff8 86%, #fff 100%);
}

.about-hero {
    min-height: 760px;
    padding: 48px 0 120px;
    display: grid;
    align-items: start;
    background: linear-gradient(180deg, #efffd0 0%, #fbfff8 86%, #fff 100%);
}

.detail-hero {
    min-height: 150px;
    padding: 48px 0 0;
    background: #efffd0;
}

.lab-services-hero {
    min-height: 850px;
    padding: 48px 0 0;
    position: relative;
    display: grid;
    align-items: start;
    isolation: isolate;
    color: #fff;
    background: url("../img/lab-cta.png") center / cover no-repeat;
}

.lab-services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 67, 31, .7), rgba(0, 67, 31, .25));
}

.lab-services-copy {
    width: min(900px, calc(100% - 48px));
    margin: 210px auto 0;
    text-align: center;
}

.lab-services-copy span {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    font-weight: 700;
}

.lab-services-copy h1 {
    margin: 44px 0 28px;
    font-size: clamp(62px, 7vw, 84px);
    line-height: 1.16;
}

.lab-services-copy p {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .9);
    font-size: 20px;
    line-height: 1.45;
}

.shop-hero-copy {
    width: min(860px, calc(100% - 48px));
    margin: 190px auto 0;
    text-align: center;
}

.about-hero-copy {
    width: min(980px, calc(100% - 48px));
    margin: 190px auto 0;
    text-align: center;
}

.shop-hero-copy .eyebrow {
    color: #777;
}

.shop-hero-copy h1 {
    margin: 46px 0 30px;
    font-size: clamp(58px, 7vw, 78px);
    line-height: 1.18;
    letter-spacing: 0;
}

.about-hero-copy h1 {
    margin: 46px 0 30px;
    font-size: clamp(58px, 7vw, 82px);
    line-height: 1.14;
    letter-spacing: 0;
}

.shop-hero-copy h1 span {
    color: var(--green);
}

.about-hero-copy h1 span {
    color: var(--green);
}

.shop-hero-copy p {
    max-width: 440px;
    margin: 0 auto;
    color: #7a7f80;
    font-size: 17px;
    line-height: 1.5;
}

.about-hero-copy p {
    max-width: 760px;
    margin: 0 auto;
    color: #7a7f80;
    font-size: 18px;
    line-height: 1.6;
}

.nav-shell {
    width: min(1000px, calc(100% - 48px));
    height: 70px;
    position: fixed;
    top: 48px;
    left: 50%;
    z-index: 50;
    transform: translateX(-50%);
    margin: 0 auto;
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 999px;
    background: rgba(255, 255, 255, .56);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .38);
    transition: top .24s ease, width .24s ease, background .24s ease, box-shadow .24s ease, backdrop-filter .24s ease;
}

.nav-shell.is-scrolled {
    top: 18px;
    width: min(1030px, calc(100% - 32px));
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .74);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 67, 31, .12), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    font-weight: 600;
}

@media (min-width: 901px) {
    .nav-links a.mobile-only {
        display: none;
    }
}

.nav-links a {
    position: relative;
}

.nav-links a.active {
    color: var(--deep);
}

.nav-links a.active::after {
    content: "";
    width: 18px;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--green);
}

.nav-count {
    min-width: 18px;
    height: 18px;
    margin-left: 6px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #e33145;
    font-size: 11px;
    line-height: 1;
}

.mobile-cart-link {
    display: none;
}

.cart-pill {
    min-width: 104px;
    height: 41px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    border: 1px solid #d0d5dd;
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
}

.cart-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-pill b {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    position: absolute;
    top: 5px;
    right: 15px;
    border-radius: 999px;
    color: #fff;
    background: #e33145;
    font-size: 12px;
}

.cart-pill b:empty,
[data-cart-count="0"],
[data-wishlist-count="0"] {
    display: none;
}

.menu-toggle {
    display: none;
}

.hero-content {
    width: min(1260px, calc(100% - 80px));
    margin: 160px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 570px;
    align-items: center;
    gap: 60px;
}

.eyebrow,
.section-kicker {
    color: var(--green);
    font-weight: 800;
}

.eyebrow {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 999px;
    color: #777;
    background: #fff;
    box-shadow: 0 2px 10px rgba(16, 24, 40, .06);
}

.hero-copy h1 {
    max-width: 770px;
    margin: 62px 0 34px;
    font-size: clamp(70px, 7vw, 92px);
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: var(--green);
}

.hero-copy p {
    max-width: 470px;
    margin: 0 0 34px;
    color: #777;
    font-size: 20px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.btn {
    min-width: 150px;
    height: 52px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 800;
}

.btn-primary {
    color: #fff;
    background: var(--deep);
}

.btn-soft {
    border-color: #d8d8d8;
    color: var(--ink);
    background: #fff;
}

.hero-visual img {
    width: 100%;
    filter: drop-shadow(0 35px 50px rgba(0, 0, 0, .06));
}

.section {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding: 72px 0;
    text-align: center;
}

.section h2 {
    margin: 18px 0 58px;
    font-size: 42px;
    line-height: 1.25;
    letter-spacing: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 20px;
}

.featured-card {
    min-height: 285px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: center;
    gap: 20px;
    border-radius: 9px;
    text-align: left;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 67, 31, .08);
}

.featured-card:nth-child(2),
.featured-card:nth-child(3) {
    grid-column: 2;
}

.featured-card:nth-child(3) {
    margin-top: -9px;
}

.featured-large {
    grid-row: span 2;
    min-height: 600px;
    grid-template-columns: .9fr 1.15fr;
}

.tone-green {
    background: #efffd0;
}

.tone-cream {
    background: #fff6e5;
}

.tone-mint {
    background: #effff0;
}

.discount {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 18px;
    border-radius: 7px;
    color: #fff;
    background: var(--green);
    font-size: 20px;
    font-weight: 800;
}

.featured-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
}

.featured-large h3 {
    font-size: 40px;
}

.featured-card p {
    margin: 0 0 26px;
    font-size: 28px;
    line-height: 1.18;
}

.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}

.old-price {
    color: #555;
    text-decoration: line-through;
}

.price-row strong {
    display: block;
    width: 100%;
    font-size: 28px;
}

.featured-large .price-row strong {
    font-size: 38px;
}

.price-row small {
    font-size: 16px;
}

.featured-card img {
    width: 100%;
    object-fit: contain;
}

.featured-large img {
    align-self: end;
}

.shop-section {
    padding-top: 180px;
}

.shop-page .shop-listing {
    padding-top: 18px;
    padding-bottom: 118px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 64px;
}

.category-tabs button {
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: #2f3441;
    cursor: pointer;
    font-weight: 600;
}

.category-tabs .active {
    border-color: var(--green);
    box-shadow: inset 0 0 0 1px var(--green);
}

.category-tabs span {
    margin-right: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px 30px;
    text-align: left;
}

.catalog-empty {
    grid-column: 1 / -1;
    padding: 22px 18px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    background: #fff;
    text-align: center;
    color: #5a6272;
}

.catalog-empty p {
    margin: 0;
    font-weight: 600;
}

.product-image {
    height: 250px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: #f4f4f4;
}

.product-image button {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color .18s ease, transform .18s ease, background .18s ease;
    z-index: 2;
}

.product-image .wishlist-button.is-saved {
    color: #f51872;
    background: #fff3f8;
}

.product-image .wishlist-button:hover {
    transform: scale(1.06);
}

.product-image img {
    width: 60%;
    max-height: 72%;
    object-fit: contain;
}

.product-image a {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.product-card h3 {
    margin: 24px 0 14px;
    font-size: 18px;
}

.product-card[hidden] {
    display: none;
}

.wishlist-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 24px;
}

.wishlist-empty {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.product-card p {
    margin: 0 0 22px;
    display: flex;
    gap: 18px;
    color: #888;
    font-size: 18px;
}

.product-card p strong {
    color: var(--green);
}

.product-card p span {
    text-decoration: line-through;
}

.add-cart {
    width: 100%;
    height: 45px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.add-cart:hover {
    transform: translateY(-1px);
    border-color: var(--deep);
}

.product-card.in-cart .product-image {
    outline: 2px solid rgba(0, 156, 76, .34);
    outline-offset: 3px;
}

.product-card.in-cart .add-cart {
    color: #fff;
    border-color: var(--green);
    background: var(--green);
}

.product-qty {
    margin-left: auto;
    color: var(--deep);
    font-weight: 800;
}

.cart-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    padding: 14px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--deep);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.view-all {
    margin-top: 72px;
}

.lab-cta {
    min-height: 400px;
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
    text-align: center;
    color: #fff;
    background: url("../img/lab-cta.png") center / cover no-repeat;
}

.lab-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 65, 30, .82);
}

.lab-cta h2 {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.22;
}

.lab-cta p {
    max-width: 520px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    line-height: 1.5;
}

.testimonials {
    padding-top: 100px;
    padding-bottom: 170px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
}

.testimonial-grid article {
    min-height: 250px;
    padding: 50px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, #005428 0%, #04ad50 72%);
}

.testimonial-grid p {
    margin: 0 0 52px;
    font-size: 18px;
    line-height: 1.55;
}

.person {
    display: flex;
    align-items: center;
    gap: 18px;
}

.person img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.person strong,
.person small {
    display: block;
}

.person strong {
    margin-bottom: 5px;
    font-size: 18px;
}

.slider-controls {
    margin-top: 86px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    font-size: 20px;
}

.slider-controls button {
    width: 100px;
    height: 55px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .12);
    font-size: 27px;
}

.site-footer {
    border-left: 2px solid #111;
    background: linear-gradient(90deg, #fff 0%, #f1ffd4 100%);
}

.footer-inner {
    width: min(1280px, calc(100% - 80px));
    min-height: 310px;
    margin: 0 auto;
    padding: 72px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.site-footer h2 {
    margin: 70px 0 9px;
    font-size: 20px;
}

.site-footer p {
    margin: 0 0 20px;
    color: #999;
    font-size: 17px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.footer-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(10, 139, 121, .18);
    border-radius: 999px;
    color: #0f291f;
    background: rgba(255, 255, 255, .88);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.footer-nav a:hover {
    transform: translateY(-1px);
    border-color: rgba(10, 139, 121, .32);
    background: #fff;
}

.newsletter {
    width: min(400px, 100%);
    height: 43px;
    display: flex;
    align-items: center;
    padding: 4px;
    border: 1px solid #d1d6d6;
    border-radius: 999px;
    background: #fff;
}

.newsletter input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 12px;
    color: #555;
}

.newsletter button {
    height: 33px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--deep);
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 28px;
}

.social-links a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--deep);
    background: #e8ffe6;
    font-weight: 900;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-links a[aria-label="Instagram"] svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-shell {
    width: min(1180px, calc(100% - 48px));
    min-height: 72vh;
    margin: 0 auto;
    padding: 170px 0 90px;
}

.page-heading {
    padding: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #efffd0 0%, #fff 80%);
}

.page-heading p {
    margin: 0 0 12px;
    color: var(--green);
    font-weight: 900;
}

.page-heading h1 {
    max-width: 760px;
    margin: 0;
    font-size: 56px;
    line-height: 1.05;
}

.page-heading span {
    display: block;
    max-width: 680px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.contact-page {
    overflow: hidden;
}

.contact-section {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding: 164px 0 92px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 18px 20px;
    align-items: start;
}

.contact-info-panel,
.social-card {
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 0 rgba(17, 17, 17, .01), 0 14px 50px rgba(24, 56, 36, .04);
}

.contact-info-panel {
    padding: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 4px;
    color: #45505b;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
}

.contact-detail > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-detail + .contact-detail {
    margin-top: 2px;
}

.contact-detail--address {
    padding-right: 10px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex: none;
    margin-top: 2px;
    display: grid;
    place-items: center;
    color: var(--green);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-map {
    height: 242px;
    margin-top: 8px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .7) 0 1px, transparent 1px 100%),
        linear-gradient(0deg, rgba(255, 255, 255, .8) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #f8f3ea 0%, #f2ede3 100%);
    background-size: 48px 48px, 48px 48px, auto;
}

.contact-map::before,
.contact-map::after {
    content: "";
    position: absolute;
    inset: -12%;
    pointer-events: none;
}

.contact-map::before {
    background:
        radial-gradient(circle at 58% 65%, rgba(34, 163, 116, .36) 0 4px, transparent 5px),
        radial-gradient(circle at 74% 42%, rgba(38, 140, 224, .35) 0 4px, transparent 5px),
        linear-gradient(112deg, transparent 0 21%, rgba(242, 201, 54, .98) 21% 24%, transparent 24% 42%, rgba(100, 178, 238, .9) 42% 45%, transparent 45% 60%, rgba(242, 201, 54, .98) 60% 63%, transparent 63% 100%);
    transform: rotate(-8deg);
}

.contact-map::after {
    inset: 0;
    background:
        linear-gradient(104deg, transparent 0 36%, rgba(240, 204, 58, .95) 36% 39%, transparent 39% 100%),
        linear-gradient(20deg, transparent 0 58%, rgba(107, 188, 239, .96) 58% 61%, transparent 61% 100%),
        linear-gradient(0deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .18));
    opacity: .9;
}

.contact-map__label,
.contact-map__landmark {
    position: absolute;
    z-index: 1;
    color: #34424f;
    font-weight: 500;
}

.contact-map__label {
    top: 42px;
    right: 18px;
    font-size: 24px;
    letter-spacing: -.02em;
}

.contact-map__road {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 999px;
}

.contact-map__road--main {
    width: 10px;
    height: 88%;
    left: 66%;
    top: -8%;
    background: linear-gradient(180deg, #f9d748 0%, #efc32d 100%);
    transform: rotate(13deg);
}

.contact-map__road--secondary {
    width: 7px;
    height: 78%;
    left: 50%;
    top: 12%;
    background: linear-gradient(180deg, #62b7ef 0%, #3da2df 100%);
    transform: rotate(-16deg);
}

.contact-map__road--accent {
    width: 8px;
    height: 66%;
    left: 30%;
    top: 14%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0 10%, rgba(255, 255, 255, .65) 10% 12%, rgba(245, 199, 47, .95) 12% 100%);
    transform: rotate(42deg);
}

.contact-map__landmark {
    padding: 2px 5px;
    border: 1px solid rgba(85, 85, 85, .25);
    border-radius: 4px;
    background: rgba(255, 255, 255, .78);
    font-size: 10px;
    line-height: 1;
    letter-spacing: .04em;
}

.contact-map__landmark--a {
    top: 22px;
    left: 41%;
}

.contact-map__landmark--b {
    top: 14px;
    right: 34%;
}

.contact-map__landmark--c {
    bottom: 20px;
    right: 14%;
}

.contact-socials {
    display: grid;
    gap: 20px;
}

.social-card {
    min-height: 112px;
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--ink);
}

.social-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--green);
    background: #effaf1;
}

.social-card__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.2;
}

.social-card span:last-child {
    margin-top: 6px;
    color: #6b7280;
    font-size: 14px;
}

.cart-layout {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.cart-screen {
    width: min(760px, calc(100% - 48px));
    min-height: 690px;
    margin: 0 auto;
    padding: 190px 0 110px;
}

.cart-panel h1 {
    margin: 0 0 28px;
    font-size: 28px;
}

.cart-panel h1 span {
    color: #777;
}

.cart-list-clean {
    display: grid;
    gap: 14px;
}

.cart-line-item,
.checkout-line-item {
    min-height: 126px;
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr) 42px;
    gap: 22px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.cart-line-item img,
.checkout-line-item img {
    width: 126px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    background: #f7f7f7;
}

.cart-line-item h2,
.checkout-line-item h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.cart-line-item p,
.checkout-line-item p {
    margin: 0 0 12px;
    display: flex;
    gap: 14px;
}

.cart-line-item p strong,
.checkout-line-item p strong {
    color: var(--green);
}

.cart-line-item p span,
.checkout-line-item p span {
    color: #888;
    text-decoration: line-through;
}

.cart-remove-icon {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #ff1f1f;
    cursor: pointer;
}

.cart-remove-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-grand-total {
    margin: 48px 16px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #777;
    font-size: 18px;
}

.cart-grand-total strong {
    color: var(--ink);
    font-size: 20px;
}

.checkout-button,
.pay-now {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--deep);
    cursor: pointer;
    font-weight: 900;
}

.checkout-button.disabled {
    opacity: .45;
    pointer-events: none;
}

.checkout-screen {
    width: min(1080px, calc(100% - 48px));
    min-height: 760px;
    margin: 0 auto;
    padding: 180px 0 110px;
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 42px;
    align-items: start;
}

.checkout-summary-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.checkout-line-item {
    grid-template-columns: 128px minmax(0, 1fr) 36px;
    min-height: 120px;
    padding: 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
}

.checkout-line-item img {
    width: 118px;
    height: 94px;
}

.checkout-totals {
    display: grid;
    gap: 28px;
    padding: 38px 0 28px;
}

.checkout-totals div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #777;
}

.checkout-totals strong {
    color: var(--ink);
}

.payment-options {
    display: grid;
    gap: 22px;
    margin-bottom: 24px;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
}

.payment-options input {
    width: 22px;
    height: 22px;
    accent-color: var(--green);
}

.card-badges {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-badges svg {
    width: 34px;
    height: 20px;
}

.card-badges svg:nth-child(1) rect {
    fill: #fff;
    stroke: #e4e7ec;
}

.card-badges svg:nth-child(1) text {
    fill: #155eef;
    font: 700 9px sans-serif;
}

.card-badges svg:nth-child(2) rect {
    fill: #fff;
    stroke: #e4e7ec;
}

.card-badges svg:nth-child(2) circle:first-of-type {
    fill: #eb001b;
    opacity: .9;
}

.card-badges svg:nth-child(2) circle:last-of-type {
    fill: #f79e1b;
    opacity: .9;
}

.card-badges svg:nth-child(3) rect {
    fill: #fff3d6;
    stroke: #fdb022;
}

.card-badges svg:nth-child(3) path {
    fill: none;
    stroke: #f04438;
    stroke-width: 2;
    stroke-linecap: round;
}

.promo-row {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 14px;
    margin-bottom: 26px;
}

.promo-row input,
.delivery-details input {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 0;
    border-radius: 4px;
    outline: 0;
    background: #f3f3f3;
}

.promo-row button {
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--deep);
    cursor: pointer;
    font-weight: 900;
}

.delivery-details h1 {
    margin: 0 0 26px;
    font-size: 38px;
}

.delivery-details form {
    display: grid;
    gap: 24px;
}

.delivery-details label {
    color: #999;
    font-weight: 700;
}

.delivery-details sup {
    color: #ff8a8a;
}

.delivery-details input {
    margin-top: 10px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.save-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink) !important;
    font-weight: 700 !important;
}

.save-info input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--green);
}

.cart-list,
.cart-summary {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.cart-list {
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-item img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 8px;
    background: #f4f4f4;
}

.cart-item h2 {
    margin: 0 0 8px;
    font-size: 19px;
}

.cart-item p {
    margin: 0;
    color: var(--green);
    font-weight: 900;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-actions button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-weight: 900;
}

.cart-actions .remove {
    width: auto;
    padding: 0 14px;
    color: #b42318;
}

.cart-empty {
    padding: 50px 24px;
    text-align: center;
}

.cart-empty h2 {
    margin: 0 0 10px;
}

.cart-empty p {
    margin: 0 0 24px;
    color: var(--muted);
}

.cart-summary {
    padding: 26px;
    position: sticky;
    top: 110px;
}

.cart-summary h2 {
    margin: 0 0 24px;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.cart-summary .total {
    border-bottom: 0;
    font-size: 22px;
}

.cart-summary button {
    width: 100%;
    height: 52px;
    margin-top: 22px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--deep);
    cursor: pointer;
    font-weight: 900;
}

.product-detail-page .product-detail-grid {
    width: min(1120px, calc(100% - 80px));
    margin: 0 auto;
    padding: 70px 0 120px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 34px;
    align-items: start;
}

.product-detail-image {
    min-height: 430px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f5faed;
}

.product-detail-image img {
    width: min(62%, 440px);
    max-height: 360px;
    object-fit: contain;
}

.thumb-row {
    margin-top: 22px;
    display: flex;
    gap: 20px;
}

.thumb-row button {
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
}

.thumb-row button.active {
    border-color: var(--deep);
    box-shadow: inset 0 0 0 1px var(--deep);
}

.thumb-row img {
    width: 74%;
    height: 74%;
    object-fit: contain;
}

.detail-pill {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    color: #777;
    background: #fff;
    font-weight: 700;
}

.product-detail-copy h1 {
    margin: 18px 0 10px;
    font-size: 46px;
    line-height: 1.05;
}

.product-detail-copy>p:not(.section-kicker) {
    max-width: 520px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 22px;
}

.detail-price strong {
    color: var(--green);
}

.detail-price span {
    color: #888;
    text-decoration: line-through;
}

.expiry {
    margin-top: 28px;
}

.quantity-stepper {
    width: 100px;
    height: 40px;
    margin: 28px 0 34px;
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    text-align: center;
    font-weight: 900;
}

.quantity-stepper button {
    height: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
}

.detail-cart {
    width: min(280px, 100%);
    margin-top: 0;
}

.suggested-section {
    padding-top: 50px;
    padding-bottom: 118px;
}

.lab-services-page {
    background: #fff;
}

.about-page {
    background: #fff;
}

.about-vision {
    width: min(1280px, calc(100% - 80px));
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: .9fr 1fr;
    align-items: center;
    gap: 64px;
}

.about-vision-copy h2 {
    margin: 0 0 30px;
    font-size: 52px;
    line-height: 1.05;
}

.about-vision-copy p {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.9;
}

.about-storefront img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.about-benefits {
    padding-top: 150px;
    padding-bottom: 110px;
}

.about-benefits h2 {
    margin-bottom: 48px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
}

.benefit-card {
    padding: 22px;
    border: 1px solid #e7eceb;
    border-radius: 12px;
    background: #fff;
}

.benefit-card span {
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #effaf3;
    color: var(--green);
}

.benefit-card svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.benefit-card p {
    margin: 0;
    color: #667085;
    line-height: 1.55;
}

.lab-tests-section {
    padding-top: 120px;
}

.lab-tests-section h2 {
    margin-bottom: 30px;
    font-size: 24px;
}

.lab-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.lab-tabs button {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    color: #384047;
    font-weight: 700;
}

.lab-tabs button.active {
    border-color: var(--green);
    box-shadow: inset 0 0 0 1px var(--green);
}

.lab-tabs span {
    width: 16px;
    height: 16px;
    position: relative;
    border: 2px solid #00a85a;
    border-radius: 4px;
    background: #fff;
}

.lab-tabs span::before,
.lab-tabs span::after {
    content: "";
    position: absolute;
    background: #ff5b6c;
    border-radius: 999px;
}

.lab-tabs span::before {
    width: 8px;
    height: 2px;
    left: 2px;
    top: 5px;
}

.lab-tabs span::after {
    width: 2px;
    height: 8px;
    left: 5px;
    top: 2px;
}

.lab-test-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.lab-test-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.lab-test-card[hidden] {
    display: none;
}

.lab-test-card h3 {
    margin: 0 0 12px;
    color: #344054;
    font-size: 16px;
}

.lab-test-card p {
    min-height: 58px;
    margin: 0 0 18px;
    color: #667085;
    font-size: 13px;
    line-height: 1.45;
}

.lab-test-card div {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    font-weight: 800;
}

.lab-test-card strong {
    color: var(--green);
}

.lab-test-card span {
    color: #888;
    text-decoration: line-through;
}

.lab-test-card button,
.lab-test-card .lab-book-btn {
    width: 100%;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    color: inherit;
    text-decoration: none;
}

.lab-test-card svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lab-test-card .whatsapp-icon {
    width: 15px;
    height: 15px;
    color: #0a7a3c;
}

.lab-help-section {
    width: min(1280px, calc(100% - 80px));
    margin: 120px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.lab-help-section h2 {
    margin: 12px 0 26px;
    font-size: 36px;
    line-height: 1.12;
}

.lab-help-section p:not(.section-kicker) {
    max-width: 570px;
    color: #667085;
    line-height: 1.6;
}

.lab-help-section .btn {
    width: 150px;
    margin-top: 18px;
}

.lab-help-section img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.top-packages {
    padding-top: 40px;
}

.top-packages h2 {
    margin-bottom: 40px;
    font-size: 24px;
}

@media (max-width: 900px) {
    .site-hero {
        min-height: auto;
        padding: 44px 0 62px;
    }

    .shop-hero {
        min-height: 520px;
        padding: 44px 0 74px;
    }

    .about-hero {
        min-height: 520px;
        padding: 44px 0 74px;
    }

    .nav-shell {
        width: calc(100% - 24px);
        height: 78px;
        top: 22px;
        padding: 0 18px;
        border-color: rgba(255, 255, 255, .75);
        background: rgba(239, 251, 191, .95);
        box-shadow: 0 10px 24px rgba(111, 144, 28, .12), inset 0 0 0 1px rgba(255, 255, 255, .55);
    }

    .cart-pill {
        display: none;
    }

    .menu-toggle {
        width: 74px;
        height: 58px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: 1px solid #d7d7d7;
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
        box-shadow: 0 8px 18px rgba(17, 24, 39, .08);
    }

    .menu-toggle span {
        width: 21px;
        height: 2.5px;
        display: block;
        background: #111;
        border-radius: 999px;
    }

    .nav-links.open {
        display: grid;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 5;
        gap: 18px;
        padding: 24px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(16px);
        box-shadow: 0 20px 60px rgba(16, 24, 40, .14);
    }

    .nav-links {
        display: none;
    }

    .mobile-cart-link {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-cart-link b {
        min-width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        color: #fff;
        background: #e33145;
        font-size: 12px;
    }

    .mobile-cart-link b[data-cart-count="0"] {
        display: none;
    }

    .mobile-cart-link b[data-wishlist-count="0"] {
        display: none;
    }

    .hero-content {
        width: calc(100% - 34px);
        margin-top: 92px;
        display: block;
    }

    .shop-hero-copy {
        width: calc(100% - 34px);
        margin-top: 112px;
    }

    .about-hero-copy {
        width: calc(100% - 34px);
        margin-top: 112px;
    }

    .shop-hero-copy h1 {
        margin: 34px 0 20px;
        font-size: 48px;
        line-height: 1.15;
    }

    .about-hero-copy h1 {
        margin: 34px 0 20px;
        font-size: 46px;
        line-height: 1.15;
    }

    .shop-hero-copy p {
        font-size: 15px;
    }

    .about-hero-copy p {
        font-size: 15px;
    }

    .eyebrow {
        padding: 8px 13px;
        font-size: 13px;
    }

    .hero-copy h1 {
        margin: 34px 0 24px;
        font-size: 57px;
        line-height: 1.12;
    }

    .hero-copy p {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.45;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn {
        flex: 1;
        min-width: 0;
        height: 52px;
        padding: 0 16px;
    }

    .hero-visual {
        width: 76%;
        margin: 18px auto 0;
    }

    .section {
        width: calc(100% - 34px);
        padding: 70px 0;
    }

    .section h2 {
        margin-bottom: 48px;
        font-size: 29px;
    }

    .featured-grid {
        display: block;
    }

    .featured-card,
    .featured-large {
        min-height: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 18px;
        padding: 32px 20px 28px;
        margin: 0 0 20px;
        border-radius: 9px;
    }

    .featured-card img {
        width: 88%;
        height: 300px;
        margin: 0 auto;
        object-fit: contain;
    }

    .featured-large img {
        height: 420px;
    }

    .discount {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .featured-card h3,
    .featured-large h3 {
        font-size: 27px;
    }

    .featured-card p {
        font-size: 20px;
    }

    .featured-large .price-row strong,
    .price-row strong {
        width: auto;
        font-size: 28px;
    }

    .shop-section {
        padding-top: 120px;
    }

    .shop-page .shop-listing {
        padding-top: 24px;
        padding-bottom: 84px;
    }

    .category-tabs {
        justify-content: flex-start;
        gap: 14px;
        margin-bottom: 38px;
    }

    .category-tabs button {
        min-height: 51px;
        padding: 0 17px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 19px;
    }

    .product-image {
        height: 190px;
    }

    .product-image img {
        width: 72%;
    }

    .product-card h3 {
        margin: 15px 0 9px;
        font-size: 15px;
    }

    .product-card p {
        margin-bottom: 16px;
        gap: 14px;
        font-size: 15px;
    }

    .product-card p strong {
        color: var(--pink);
    }

    .add-cart {
        height: 48px;
        font-size: 14px;
    }

    .view-all {
        width: 150px;
        margin: 60px auto 0;
        display: flex;
    }

    .lab-cta {
        min-height: 420px;
        background-position: 48% center;
    }

    .lab-cta h2 {
        font-size: 28px;
    }

    .lab-cta p {
        width: calc(100% - 54px);
        font-size: 16px;
    }

    .lab-cta .btn {
        width: 174px;
        margin: 0 auto;
        flex: none;
    }

    .testimonials {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .testimonial-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .testimonial-grid article {
        min-height: 316px;
        padding: 54px 50px 38px;
        border-radius: 14px;
    }

    .testimonial-grid p {
        margin-bottom: 58px;
        font-size: 16px;
    }

    .slider-controls {
        margin-top: 26px;
        gap: 18px;
    }

    .slider-controls button {
        width: 103px;
        height: 54px;
    }

    .site-footer {
        border-left: 0;
    }

    .footer-inner {
        width: calc(100% - 34px);
        min-height: 520px;
        padding: 76px 0 52px;
        display: block;
    }

    .site-footer h2 {
        margin-top: 70px;
    }

    .newsletter {
        width: 100%;
    }

    .social-links {
        margin-top: 54px;
        justify-content: space-between;
        gap: 16px;
    }

    .page-shell {
        width: calc(100% - 34px);
        padding-top: 138px;
    }

    .page-heading {
        padding: 36px 22px;
    }

    .page-heading h1 {
        font-size: 39px;
    }

    .contact-section {
        width: calc(100% - 34px);
        padding: 132px 0 68px;
    }

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

    .contact-info-panel {
        padding: 16px;
    }

    .contact-detail {
        font-size: 15px;
        padding: 8px 2px;
    }

    .contact-map {
        height: 216px;
    }

    .contact-socials {
        gap: 16px;
    }

    .social-card {
        min-height: 106px;
    }

    .cart-layout {
        display: block;
    }

    .cart-screen,
    .checkout-screen {
        width: calc(100% - 34px);
        padding-top: 146px;
    }

    .cart-line-item,
    .checkout-line-item {
        grid-template-columns: 88px minmax(0, 1fr) 32px;
        gap: 12px;
        padding: 12px;
    }

    .cart-line-item img,
    .checkout-line-item img {
        width: 82px;
        height: 78px;
    }

    .cart-line-item h2,
    .checkout-line-item h2 {
        font-size: 15px;
    }

    .checkout-screen {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .checkout-summary-card {
        order: 2;
    }

    .delivery-details {
        order: 1;
    }

    .field-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .delivery-details h1 {
        font-size: 32px;
    }

    .cart-summary {
        margin-top: 20px;
        position: static;
    }

    .cart-item {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .cart-item img {
        width: 76px;
        height: 76px;
    }

    .cart-actions {
        grid-column: 2;
        justify-content: flex-start;
    }

    .cart-toast {
        right: 17px;
        bottom: 17px;
        left: 17px;
        text-align: center;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 19px;
    }

    .detail-hero {
        min-height: 120px;
        padding-top: 44px;
    }

    .lab-services-hero {
        min-height: 600px;
        padding-top: 44px;
        background-position: 45% center;
    }

    .lab-services-copy {
        width: calc(100% - 34px);
        margin-top: 116px;
    }

    .lab-services-copy span {
        padding: 8px 14px;
        font-size: 12px;
    }

    .lab-services-copy h1 {
        margin: 28px 0 20px;
        font-size: 40px;
    }

    .lab-services-copy p {
        font-size: 14px;
    }

    .lab-tests-section {
        padding-top: 62px;
    }

    .about-vision {
        width: calc(100% - 34px);
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 26px;
    }

    .about-vision-copy h2 {
        font-size: 36px;
    }

    .about-vision-copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-benefits {
        padding-top: 92px;
        padding-bottom: 72px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .lab-tabs {
        justify-content: flex-start;
        gap: 12px;
    }

    .lab-tabs button {
        min-height: 42px;
        padding: 0 12px;
        font-size: 12px;
    }

    .lab-test-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lab-help-section {
        width: calc(100% - 34px);
        margin: 70px auto;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lab-help-section h2 {
        font-size: 25px;
    }

    .pharmacist-help img {
        order: 2;
    }

    .scientist-help img {
        order: 2;
    }

    .product-detail-page .product-detail-grid {
        width: calc(100% - 34px);
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 72px 0 80px;
    }

    .product-detail-image {
        min-height: 360px;
    }

    .product-detail-image img {
        width: 82%;
        max-height: 315px;
    }

    .product-detail-copy h1 {
        font-size: 38px;
    }

    .detail-cart {
        width: 100%;
    }

    .thumb-row {
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .thumb-row button {
        min-width: 76px;
        width: 76px;
        height: 76px;
    }

    .suggested-section {
        padding-top: 30px;
        padding-bottom: 88px;
    }
}

@media (max-width: 430px) {
    .hero-copy h1 {
        font-size: 50px;
    }

    .brand {
        font-size: 15px;
    }

    .product-image {
        height: 178px;
    }
}

/* WhatsApp Floating Widget */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.wa-toggle {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
}

.wa-toggle:hover {
    transform: scale(1.1);
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #fff;
}

.wa-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    animation: waSlideIn 0.3s ease-out;
}

@keyframes waSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-card.is-active {
    display: flex;
}

.wa-card-header {
    background: #0a8b79;
    padding: 24px;
    color: #fff;
    position: relative;
}

.wa-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.wa-card-header p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.8;
}

.wa-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
}

.wa-card-body {
    padding: 24px;
}

.wa-card-body p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #55625c;
    line-height: 1.5;
}

#wa-lead-form {
    display: grid;
    gap: 12px;
}

#wa-lead-form input {
    height: 48px;
    padding: 0 16px;
    border: 1px solid #eef3f0;
    border-radius: 12px;
    font-size: 14px;
    background: #fbfcfb;
    outline: none;
}

#wa-lead-form input:focus {
    border-color: #0a8b79;
    background: #fff;
}

.wa-submit-btn {
    height: 48px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    transition: background 0.2s;
    width: 100%;
}

.wa-submit-btn:hover {
    background: #1eb956;
}

@media (max-width: 480px) {
    .wa-widget {
        bottom: 20px;
        right: 20px;
    }

    .wa-card {
        width: calc(100vw - 40px);
        bottom: 70px;
    }
}
