/*
Theme Name: Artcure
Theme URI: https://artcure.co.uk
Author: Deepak P Uthaman
Author URI: https://deepus.in
Description: Custom WordPress theme for Artcure® UK — Non-Invasive Disc Herniation Treatment by Vlad Co Med.
Version: 1.6.9
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artcure
Tags: medical, one-page, custom-colors, custom-logo, elementor-ready
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display&display=swap');

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

:root {
    --background: 210 20% 98%;
    --foreground: 215 35% 15%;
    --card: 0 0% 100%;
    --card-foreground: 215 35% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 215 35% 15%;
    --primary: 210 65% 22%;
    --primary-foreground: 210 40% 98%;
    --secondary: 185 45% 45%;
    --secondary-foreground: 0 0% 100%;
    --muted: 210 20% 95%;
    --muted-foreground: 215 15% 50%;
    --accent: 185 55% 40%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 210 20% 90%;
    --input: 210 20% 90%;
    --ring: 210 65% 22%;
    --radius: 0.75rem;
    --hero-gradient: linear-gradient(135deg, hsl(210, 65%, 22%) 0%, hsl(200, 55%, 30%) 50%, hsl(185, 45%, 38%) 100%);
    --section-gradient: linear-gradient(180deg, hsl(210, 20%, 98%) 0%, hsl(210, 25%, 95%) 100%);
    --card-shadow: 0 4px 24px -4px hsl(210 30% 20% / 0.08);
    --card-shadow-hover: 0 12px 40px -8px hsl(210 30% 20% / 0.15);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-color: hsl(var(--border));
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.1;
}

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

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-gradient {
    background: var(--hero-gradient);
}

.section-gradient {
    background: var(--section-gradient);
}

.text-gradient {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */

.text-primary {
    color: hsl(var(--primary));
}

.text-primary-foreground {
    color: hsl(var(--primary-foreground));
}

.text-accent {
    color: hsl(var(--accent));
}

.text-accent-foreground {
    color: hsl(var(--accent-foreground));
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.text-foreground {
    color: hsl(var(--foreground));
}

.text-destructive {
    color: hsl(var(--destructive));
}

.bg-background {
    background-color: hsl(var(--background));
}

.bg-card {
    background-color: hsl(var(--card));
}

.bg-muted {
    background-color: hsl(var(--muted));
}

.bg-accent {
    background-color: hsl(var(--accent));
}

.bg-primary {
    background-color: hsl(var(--primary));
}

.bg-foreground {
    background-color: hsl(var(--foreground));
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: hsl(var(--accent));
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 1.875rem;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.section-description {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.75;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-accent {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.btn-accent:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 1px solid hsl(var(--primary-foreground) / 0.3);
    color: hsl(var(--primary-foreground));
}

.btn-outline:hover {
    background: hsl(var(--primary-foreground) / 0.1);
}

.btn-outline-default {
    background: transparent;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn-outline-default:hover {
    background: hsl(var(--muted));
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsl(var(--card) / 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
}

.site-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
    height: 4rem;
}

.site-logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin-right: 0.75rem;
    line-height: 1.2;
    text-decoration: none;
}

.site-logo .logo-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: hsl(var(--primary));
    letter-spacing: -0.025em;
}

.site-logo .logo-title .accent {
    color: hsl(var(--accent));
}

.site-logo .logo-title .suffix {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.site-logo .logo-subtitle {
    font-size: 0.625rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0 0 0 1.25rem;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
    text-decoration: none;
}

.nav-menu a:hover {
    color: hsl(var(--primary));
}

/* Active menu item: ensure current page link is clearly styled */
.nav-menu li.current-menu-item>a,
.nav-menu li.current_page_item>a {
    color: hsl(var(--primary)) !important;
    font-weight: 600;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

.nav-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    background: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    padding: 0 1rem 1rem;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    padding: 0.75rem 0;
}

.mobile-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
    text-decoration: none;
    display: block;
}

.mobile-menu a:hover {
    color: hsl(var(--primary));
}

.mobile-menu li.current-menu-item>a,
.mobile-menu li.current_page_item>a {
    color: hsl(var(--primary)) !important;
    font-weight: 600;
}

/* Header actions: language + cart + hamburger (cart stays on the side on mobile) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
}

.site-lang-switcher {
    display: flex;
    align-items: center;
}

.site-lang-switcher .gtranslate_wrapper,
.site-lang-switcher [id^="gt-wrapper-"] {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.site-lang-switcher .gt_selector,
.site-lang-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: hsl(var(--muted));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) - 0.1rem);
    color: hsl(var(--foreground));
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    min-height: 2.25rem;
    max-width: 9.5rem;
    padding: 0.45rem 1.75rem 0.45rem 0.65rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.45rem center;
    background-size: 0.7rem;
}

.site-lang-switcher .gt_selector:focus,
.site-lang-select:focus {
    outline: 2px solid hsl(var(--accent));
    outline-offset: 1px;
}

/* Keep GTranslate chrome out of the header look */
.site-lang-switcher .skiptranslate,
.site-lang-switcher #google_translate_element2 {
    display: none !important;
}

@media (max-width: 899px) {

    .site-lang-switcher .gt_selector,
    .site-lang-select {
        max-width: 7.25rem;
        min-width: 6.5rem;
        width: auto;
        min-height: 2rem;
        padding: 0.35rem 1.55rem 0.35rem 0.55rem;
        font-size: 0.72rem;
        text-overflow: clip;
        overflow: visible;
    }
}

/* Header cart link with count */
.site-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}

.site-cart-link:hover {
    color: hsl(var(--primary));
    background: hsl(var(--muted));
}

.site-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-cart-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.site-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    color: hsl(var(--accent-foreground));
    background: hsl(var(--accent));
    border-radius: 9999px;
}

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

/* Hide Google Translate chrome */
.goog-te-banner-frame.skiptranslate,
body>.skiptranslate,
.goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
    box-shadow: none !important;
    background: transparent !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: hsl(210 25% 96%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg img,
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-bg-img--mobile {
    display: none;
}

/* Full integrated banner: product is part of the scene image */
.hero-section--integrated .hero-bg-img--desktop {
    opacity: 1;
    filter: none;
    object-position: 68% center;
}

.hero-section--integrated .hero-overlay {
    background: linear-gradient(90deg,
            hsl(210 30% 99% / 0.94) 0%,
            hsl(210 28% 98% / 0.78) 28%,
            hsl(210 25% 97% / 0.32) 46%,
            hsl(210 22% 98% / 0.06) 58%,
            transparent 72%);
}

.hero-section--integrated .hero-section--banner:not(.hero-section--split) .hero-copy,
.hero-section--integrated .hero-copy {
    max-width: min(34rem, 46%);
}

.hero-section--integrated .hero-trust {
    background: hsl(0 0% 100% / 0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            hsl(210 30% 98% / 0.88) 0%,
            hsl(210 28% 97% / 0.72) 34%,
            hsl(210 25% 97% / 0.28) 58%,
            hsl(210 20% 98% / 0.08) 72%,
            transparent 100%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
}

.hero-section--banner:not(.hero-section--split) .hero-layout {
    grid-template-columns: 1fr;
}

.hero-section--banner:not(.hero-section--split) .hero-copy {
    max-width: min(36rem, 52%);
}

.hero-copy {
    max-width: 36rem;
}

.hero-badge {
    color: hsl(var(--primary) / 0.85);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.hero-heading {
    font-size: clamp(1.85rem, 5.2vw, 3.15rem);
    color: hsl(var(--primary));
    line-height: 1.12;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.05rem;
    color: hsl(215 15% 38%);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 34rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-buttons .btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.hero-buttons .btn-primary:hover {
    opacity: 0.92;
    color: hsl(var(--primary-foreground));
}

.btn-outline-hero {
    background: hsl(var(--card) / 0.85);
    border: 1px solid hsl(var(--primary) / 0.4);
    color: hsl(var(--primary));
}

.btn-outline-hero:hover {
    background: hsl(var(--card));
    color: hsl(var(--primary));
}

.btn-arrow {
    font-size: 1em;
    line-height: 1;
}

.hero-trust {
    list-style: none;
    margin: 0;
    padding: 0.7rem 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.15rem;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    background: hsl(0 0% 100% / 0.72);
    border: 1px solid hsl(var(--border) / 0.85);
    border-radius: calc(var(--radius) + 0.15rem);
    backdrop-filter: blur(8px);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: hsl(215 15% 40%);
}

.hero-trust-item+.hero-trust-item {
    padding-left: 1.15rem;
    border-left: 1px solid hsl(var(--border));
    margin-left: 0.15rem;
}

.hero-trust-icon {
    display: inline-flex;
    width: 1.15rem;
    height: 1.15rem;
    color: hsl(var(--primary));
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.hero-trust-icon svg {
    width: 100%;
    height: 100%;
}

.hero-media {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-media--mobile {
    display: none;
}

.hero-product-card {
    width: 100%;
    max-width: 28rem;
    /* border-radius: calc(var(--radius) + 0.35rem); */
    /* background: hsl(var(--card) / 0.88); */
    /* border: 1px solid hsl(var(--border)); */
    /* box-shadow: var(--card-shadow-hover); */
    /* padding: 0.85rem; */
    overflow: hidden;
}

.hero-product-card img,
.hero-product-shot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    object-fit: contain;
}

.hero-product-shot {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
}

.hero-product-shot img {
    border-radius: calc(var(--radius) + 0.2rem);
    filter: drop-shadow(0 18px 28px hsl(210 40% 20% / 0.22));
}

/* Hero text animation after full page load */
.hero-load-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

body.hero-loaded .hero-load-item {
    opacity: 1;
    transform: none;
}

body.hero-loaded .hero-load-item-1 {
    transition-delay: 0.2s;
}

body.hero-loaded .hero-load-item-2 {
    transition-delay: 0.45s;
}

body.hero-loaded .hero-load-item-3 {
    transition-delay: 0.7s;
}

body.hero-loaded .hero-load-item-4 {
    transition-delay: 0.95s;
}

.hero-scroll-down {
    position: absolute;
    bottom: 1.15rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 999px;
    border: none;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 22px -10px hsl(210 40% 20% / 0.45);
    animation: bounce 1.4s infinite;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.hero-scroll-down:hover {
    color: hsl(var(--primary-foreground));
    background: hsl(var(--primary) / 0.9);
}

.hero-scroll-down.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@media (min-width: 900px) {
    .hero-section--integrated {
        align-items: center;
    }

    .hero-section--integrated .hero-bg-img--desktop {
        object-position: 72% center;
        transform: scale(1.06);
        transform-origin: right center;
    }

    .hero-section--integrated .hero-layout {
        min-height: 100%;
        padding-top: 6rem;
        padding-bottom: 4rem;
        align-content: center;
        align-items: start;
    }

    .hero-section--integrated .hero-trust {
        max-width: min(34rem, 46%);
        margin-top: 0.75rem;
    }

    .hero-trust {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-section--has-mobile-product .hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "trust";
    }

    .hero-section--split .hero-layout {
        min-height: 100%;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        grid-template-areas:
            "copy media"
            "trust media";
        gap: 1rem 2.75rem;
        padding-top: 6rem;
        padding-bottom: 4rem;
        align-content: center;
        align-items: center;
    }

    .hero-section--split .hero-copy,
    .hero-section--has-mobile-product .hero-copy {
        grid-area: copy;
    }

    .hero-section--split .hero-media--desktop,
    .hero-section--has-mobile-product .hero-media--desktop {
        grid-area: media;
    }

    .hero-section--split .hero-trust,
    .hero-section--has-mobile-product .hero-trust {
        grid-area: trust;
    }

    .hero-section--split .hero-copy {
        align-self: end;
        max-width: min(36rem, 100%);
    }

    .hero-section--split .hero-trust {
        align-self: start;
        justify-self: start;
        max-width: min(36rem, 100%);
        margin-top: 0.35rem;
    }

    .hero-section--banner:not(.hero-section--split) .hero-layout {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-section--banner:not(.hero-section--split) .hero-trust {
        margin-top: -0.35rem;
        max-width: min(36rem, 52%);
    }

    .hero-section--split .hero-media {
        justify-content: flex-end;
        align-self: center;
    }

    .hero-product-card {
        max-width: 38rem;
    }
}

/* Tablet integrated: content top, product weighted lower in frame */
@media (min-width: 600px) and (max-width: 1199px) {
    .hero-section--integrated {
        min-height: min(92vh, 820px);
        height: auto;
        align-items: flex-start;
    }

    .hero-section--integrated .hero-bg-img--desktop {
        display: block;
        object-position: 78% bottom;
    }

    .hero-section--integrated .hero-bg-img--mobile {
        display: none;
    }

    .hero-section--integrated .hero-overlay {
        background:
            linear-gradient(0deg,
                hsl(210 30% 99% / 0.97) 0%,
                hsl(210 28% 98% / 0.82) 28%,
                hsl(210 25% 97% / 0.35) 48%,
                transparent 68%),
            linear-gradient(90deg,
                hsl(210 30% 99% / 0.92) 0%,
                hsl(210 28% 98% / 0.55) 38%,
                transparent 58%);
    }

    .hero-section--integrated .hero-layout {
        min-height: min(92vh, 820px);
        align-content: start;
        align-items: start;
        padding-top: 5rem;
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
        grid-template-areas:
            "copy"
            "trust";
        gap: 0.75rem;
    }

    .hero-section--integrated .hero-copy,
    .hero-section--integrated .hero-section--banner:not(.hero-section--split) .hero-copy {
        max-width: min(32rem, 48%);
    }

    .hero-section--integrated .hero-heading {
        font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    }

    .hero-section--integrated .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-section--integrated .hero-buttons .btn {
        width: auto;
        min-width: 12rem;
    }

    .hero-section--integrated .hero-trust {
        max-width: min(32rem, 48%);
        margin-top: 0.25rem;
        margin-bottom: 0;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .hero-section--integrated .hero-bg-img--desktop {
        display: none;
    }

    .hero-section--integrated .hero-bg-img--mobile {
        display: block;
        object-fit: cover;
        object-position: center bottom;
        opacity: 1;
        filter: none;
    }

    .hero-section--integrated .hero-copy,
    .hero-section--integrated .hero-section--banner:not(.hero-section--split) .hero-copy,
    .hero-section--integrated .hero-trust {
        max-width: min(34rem, 68%);
    }
}

/* Phone integrated: content top, product weighted lower in frame */
@media (max-width: 599px) {
    .hero-section--integrated {
        min-height: 72svh;
        height: auto;
        align-items: flex-start;
    }

    .hero-section--integrated .hero-bg-img--desktop {
        display: none;
    }

    .hero-section--integrated .hero-bg-img--mobile {
        display: block;
        object-fit: cover;
        object-position: center bottom;
        opacity: 1;
        filter: none;
    }

    .hero-section--integrated .hero-overlay {
        background: linear-gradient(180deg,
                transparent 0%,
                transparent 32%,
                hsl(210 28% 98% / 0.35) 50%,
                hsl(210 30% 99% / 0.88) 72%,
                hsl(210 30% 99% / 0.97) 100%);
    }

    .hero-section--integrated .hero-layout {
        grid-template-areas:
            "copy"
            "trust";
        gap: 0.6rem;
        padding-top: 6.5rem;
        padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
        min-height: 72svh;
        align-content: start;
        align-items: stretch;
    }

    .hero-section--integrated .hero-copy,
    .hero-section--integrated .hero-section--banner:not(.hero-section--split) .hero-copy {
        max-width: 100%;
    }

    .hero-section--integrated .hero-heading {
        font-size: clamp(1.45rem, 6.2vw, 1.95rem);
        margin-bottom: 0.5rem;
    }

    .hero-section--integrated .hero-text {
        font-size: 0.86rem;
        line-height: 1.55;
        margin-bottom: 0.75rem;
    }

    .hero-section--integrated .hero-buttons {
        gap: 0.45rem;
    }

    .hero-section--integrated .hero-buttons .btn {
        min-height: 2.5rem;
        font-size: 0.88rem;
    }

    .hero-section--integrated .hero-trust {
        margin-top: 0.1rem;
        margin-bottom: 0;
        width: 100%;
        max-width: none;
        justify-content: space-between;
        gap: 0.35rem 0.4rem;
        padding: 0.65rem 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        background: hsl(0 0% 100% / 0.82);
    }

    .hero-section--integrated .hero-trust-item {
        flex: 1 1 0;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        gap: 0.3rem;
        font-size: 0.6rem;
        line-height: 1.25;
        min-width: 3.8rem;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
    }

    .hero-section--integrated .hero-scroll-down {
        bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 899px) {

    /* Legacy split mobile only below */
    .hero-section--has-mobile-product:not(.hero-section--integrated) {
        min-height: auto;
        height: auto;
        align-items: flex-start;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-bg-img--desktop {
        display: none;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-bg-img--mobile {
        display: block;
        object-position: center center;
        opacity: 0.42;
        filter: saturate(0.9);
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-overlay {
        background: linear-gradient(180deg,
                hsl(210 30% 99% / 0.96) 0%,
                hsl(210 28% 98% / 0.92) 42%,
                hsl(210 25% 97% / 0.88) 100%);
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-layout {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "media"
            "trust";
        gap: 1rem;
        padding-top: 4.6rem;
        padding-bottom: 3.25rem;
        text-align: left;
        min-height: 0;
        align-content: start;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-copy {
        grid-area: copy;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-media--mobile {
        grid-area: media;
        display: flex;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-media--desktop {
        display: none !important;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-trust {
        grid-area: trust;
    }

    .hero-section--banner:not(.hero-section--split) .hero-copy,
    .hero-copy {
        max-width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-badge {
        letter-spacing: 0.1em;
        font-size: 0.62rem;
        max-width: none;
        line-height: 1.4;
        margin-bottom: 0.55rem;
    }

    .hero-heading {
        font-size: clamp(1.55rem, 6.6vw, 2.05rem);
        margin-bottom: 0.65rem;
    }

    .hero-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0 0 0.95rem;
        max-width: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: none;
        gap: 0.55rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: space-between;
        min-height: 2.65rem;
        font-size: 0.92rem;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-product-shot {
        max-width: 14.5rem;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-trust {
        width: 100%;
        max-width: none;
        justify-content: space-between;
        gap: 0.35rem 0.4rem;
        padding: 0.75rem 0.55rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-trust-item {
        flex: 1 1 0;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        gap: 0.3rem;
        font-size: 0.62rem;
        line-height: 1.25;
        min-width: 4.2rem;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
    }

    .hero-trust-icon {
        width: 1.35rem;
        height: 1.35rem;
    }

    .hero-scroll-down {
        position: fixed;
        bottom: max(1rem, env(safe-area-inset-bottom, 0px));
        left: 50%;
        z-index: 95;
        width: 2.85rem;
        height: 2.85rem;
        border: none;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        box-shadow: 0 10px 28px -10px hsl(210 40% 16% / 0.55);
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: clamp(1.65rem, 7.6vw, 2.1rem);
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-product-shot {
        max-width: 15.5rem;
    }

    .hero-section--integrated .hero-trust {
        margin-bottom: 0;
    }

    .hero-section--has-mobile-product:not(.hero-section--integrated) .hero-trust-item,
    .hero-section--integrated .hero-trust-item {
        font-size: 0.58rem;
        min-width: 3.6rem;
    }
}

/* ==========================================================================
   Cards
   ========================================================================== */

.ac-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease;
}

.ac-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.ac-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: hsl(var(--accent) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.ac-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--accent));
}

.ac-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.ac-card-text {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

/* ==========================================================================
   Section Spacing
   ========================================================================== */

.section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-py-sm {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    padding: 6rem 0;
}

.about-section:not(:has(.section-header)) {
    padding-top: 2.5rem;
}

/* Avoid repeating About intro when Product Video section already shows it */
body:has(.artcure-video-about) .about-section>.container>.section-header {
    display: none;
}

body:has(.artcure-video-about) .about-section {
    padding-top: 2.5rem;
}

/* ==========================================================================
   Kit Overview Section (reformatted layout)
   ========================================================================== */

.kit-overview-section {
    padding: 3.5rem 0 3rem;
    background: hsl(0 0% 100%);
}

.kit-overview-header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 1.1rem;
}

.kit-overview-title {
    margin: 0 0 0.55rem;
    color: hsl(var(--primary));
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.85rem, 3.4vw, 2.55rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.kit-overview-lead {
    margin: 0 0 0.3rem;
    color: hsl(215 12% 42%);
    font-size: 1.05rem;
    line-height: 1.5;
}

.kit-overview-sublead {
    margin: 0;
    color: hsl(215 20% 22%);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.kit-overview-buy {
    margin-top: 0.95rem;
}

.kit-overview-buy .product-price-row {
    margin-bottom: 0.1rem;
}

.kit-overview-buy .product-assurances {
    margin-top: 0.65rem;
}

.kit-overview-divider {
    height: 1px;
    width: 100%;
    background: hsl(var(--border));
    margin: 0.85rem 0;
}

.kit-overview-group-label {
    margin: 0 0 0.65rem;
    color: hsl(215 25% 16%);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kit-overview-row {
    display: grid;
    grid-template-columns: 26rem 1fr;
    gap: 0.85rem 1.5rem;
    align-items: center;
}

.kit-overview-row--inner {
    grid-template-columns: 22rem 1fr;
}

.kit-overview-hero {
    width: 100%;
    max-width: 26rem;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    border-radius: 0.4rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(20, 40, 80, 0.1);
}

.kit-overview-row--inner .kit-overview-hero {
    max-width: 22rem;
    aspect-ratio: 4 / 3;
}

.kit-overview-hero img {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: contain;
    object-position: center;
    cursor: default;
    pointer-events: none;
}

.kit-overview-row {
    padding-top: 10px;
}

.kit-overview-items {
    display: grid;
    gap: 0.55rem 0.85rem;
    align-items: stretch;
}

.kit-overview-items--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kit-overview-items--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kit-overview-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    height: 100%;
}

.kit-overview-item-head {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    min-height: 2.4em;
}

.kit-overview-item-num {
    flex-shrink: 0;
    color: hsl(var(--primary));
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
}

.kit-overview-item-title {
    margin: 0;
    color: hsl(215 25% 18%);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.kit-overview-item-media {
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin-top: auto;
}

.kit-overview-item-media img {
    max-width: 100%;
    max-height: 7.5rem;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.kit-overview-trust {
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0.15rem 0 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.55rem 0.75rem;
    align-items: start;
}

.kit-overview-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-align: center;
}

.kit-overview-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    color: hsl(var(--primary));
}

.kit-overview-trust-icon svg {
    width: 100%;
    height: 100%;
}

.kit-overview-trust-label {
    color: hsl(215 15% 34%);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .kit-overview-items--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kit-overview-row,
    .kit-overview-row--inner {
        gap: 0.65rem 0.85rem;
    }

    .kit-overview-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem 0.65rem;
    }
}

@media (max-width: 767px) {
    .kit-overview-section {
        padding: 2.75rem 0 2.35rem;
    }

    .kit-overview-header {
        margin-bottom: 0.85rem;
    }

    .kit-overview-row,
    .kit-overview-row--inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .kit-overview-hero,
    .kit-overview-row--inner .kit-overview-hero {
        max-width: 18rem;
        margin: 0 auto;
    }

    .kit-overview-items--3,
    .kit-overview-items--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem 0.6rem;
    }

    .kit-overview-item-title {
        font-size: 0.76rem;
    }

    .kit-overview-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem 0.5rem;
    }

    .kit-overview-divider {
        margin: 0.7rem 0;
    }
}

/* Unified Kit Overview Grid & Card Layout (Desktop & Mobile) */
.kit-overview-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.kit-overview-card {
    flex: 0 0 calc((100% - 3.4rem) / 5);
    width: calc((100% - 3.4rem) / 5);
    background: #fff;
    border: 1px solid hsl(var(--border) / 0.6);
    border-radius: 0.6rem;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(20, 40, 80, 0.03);
    min-height: 0;
}

.kit-overview-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.kit-overview-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background-color: hsl(var(--primary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.kit-overview-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.kit-overview-card-title {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--primary));
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
}

.kit-overview-card-desc {
    font-size: 0.72rem;
    color: hsl(215 15% 42%);
    line-height: 1.35;
}

.kit-overview-card-image {
    width: 100%;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    overflow: hidden;
}

.kit-overview-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .kit-overview-card {
        flex: 0 0 calc((100% - 1.7rem) / 3) !important;
        width: calc((100% - 1.7rem) / 3) !important;
    }
}

@media (max-width: 767px) {
    .kit-overview-grid {
        gap: 0.35rem !important;
        margin-top: 0.85rem !important;
    }

    .kit-overview-card {
        flex: 0 0 calc((100% - 0.7rem) / 3) !important;
        width: calc((100% - 0.7rem) / 3) !important;
        border-radius: 0.4rem !important;
        padding: 0.45rem !important;
        gap: 0.35rem !important;
        box-shadow: 0 2px 8px rgba(20, 40, 80, 0.02) !important;
    }

    .kit-overview-card-header {
        gap: 0.3rem !important;
    }

    .kit-overview-card-badge {
        width: 1.1rem !important;
        height: 1.1rem !important;
        font-size: 0.62rem !important;
        margin-top: 0.05rem !important;
    }

    .kit-overview-card-content {
        gap: 0.1rem !important;
    }

    .kit-overview-card-title {
        font-size: 0.65rem !important;
        line-height: 1.25 !important;
    }

    .kit-overview-card-desc {
        font-size: 0.52rem !important;
        line-height: 1.3 !important;
    }

    .kit-overview-card-image {
        height: 3.5rem !important;
    }
}

.kit-overview-mobile-trust-bar {
    margin-top: 0.85rem;
    background: hsl(210 20% 98%);
    border-radius: 0.4rem;
    padding: 0.65rem 0.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    border: 1px solid hsl(var(--border) / 0.5);
}

.kit-overview-mobile-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

    .kit-overview-mobile-trust-icon {
        width: 1.15rem;
        height: 1.15rem;
        color: hsl(var(--primary));
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .kit-overview-mobile-trust-icon svg {
        width: 100%;
        height: 100%;
    }

    .kit-overview-mobile-trust-label {
        font-size: 0.5rem;
        font-weight: 700;
        color: hsl(var(--primary));
        line-height: 1.25;
        font-family: 'DM Sans', sans-serif;
    }
}

@media (min-width: 1025px) {
    .kit-overview-section {
        padding: 2.25rem 0 1.75rem;
        min-height: calc(100vh - 100px);
        display: flex;
        align-items: center;
    }

    .kit-overview-section .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .kit-overview-header {
        margin-bottom: 0.6rem;
    }

    .kit-overview-title {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }

    .kit-overview-lead {
        font-size: 0.95rem;
        margin-bottom: 0.1rem;
    }

    .kit-overview-sublead {
        font-size: 0.85rem;
    }

    .kit-overview-buy {
        margin-top: 0.4rem;
    }

    .kit-overview-buy .product-assurances {
        margin-top: 0.4rem;
    }

    .kit-overview-divider {
        margin: 0.5rem 0;
    }

    .kit-overview-row {
        padding-top: 0px !important;
        gap: 0.5rem 1.5rem;
    }

    .kit-overview-hero {
        max-width: 18rem;
        aspect-ratio: 16 / 10;
        box-shadow: 0 4px 16px rgba(20, 40, 80, 0.06);
    }

    .kit-overview-row--inner .kit-overview-hero {
        max-width: 15rem;
        aspect-ratio: 16 / 11;
    }

    .kit-overview-items {
        gap: 0.4rem 0.75rem;
    }

    .kit-overview-item-head {
        min-height: 1.8em;
    }

    .kit-overview-item-title {
        font-size: 0.72rem;
    }

    .kit-overview-item-media {
        max-height: 6rem;
    }

    .kit-overview-group-label {
        margin-bottom: 0.25rem;
        font-size: 0.7rem;
    }

    .kit-overview-trust {
        margin-top: 0.2rem;
        padding-top: 0.2rem;
    }

    .kit-overview-trust-icon {
        width: 1.4rem;
        height: 1.4rem;
    }

    .kit-overview-trust-label {
        font-size: 0.68rem;
    }
}

/* ==========================================================================
   Product Section
   ========================================================================== */

.product-section {
    padding: 5rem 0;
}

.product-price {
    font-family: 'DM Serif Display', serif;
    font-size: 1.875rem;
    color: hsl(var(--foreground));
}

.product-price .price-suffix {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-left: 0.35rem;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.product-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin: 1rem 0 0.75rem;
}

.product-assurance {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.75rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.35rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: hsl(var(--foreground));
}

.payment-badge--paypal {
    color: #003087;
}

.payment-badge--klarna {
    color: #0a0b09;
    background: #ffb3c7;
    border-color: #ffb3c7;
}

.payment-badge--clearpay {
    color: #b2fce4;
    background: #000;
    border-color: #000;
}

.payment-badges--checkout {
    justify-content: flex-start;
    margin: 0 0 0.5rem;
}

.payment-badges-note {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
}

.product-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
    list-style: none;
    margin: 1.5rem auto 0;
    padding: 1rem 1.1rem;
    max-width: 72rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--card));
}

.product-trust-bar li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    line-height: 1.35;
}

.product-trust-bar li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: hsl(var(--accent));
}

@media (min-width: 768px) {
    .product-trust-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .product-trust-bar {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .product-trust-bar li {
        padding-left: 0;
        text-align: center;
    }

    .product-trust-bar li::before {
        display: none;
    }
}

.package-group-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: hsl(var(--foreground));
}

.package-group-subtitle {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.4;
    min-height: calc(0.875rem * 1.4);
}

.package-group-subtitle.is-empty {
    visibility: hidden;
}

.kit-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: hsl(var(--card));
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease;
}

.kit-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.kit-card-image {
    aspect-ratio: 4 / 3;
    background: hsl(var(--muted));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kit-card-image svg {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--accent) / 0.4);
}

.kit-card-body {
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.kit-card-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: hsl(var(--accent) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.kit-card-icon svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--accent));
}

.kit-card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    margin-bottom: 0.125rem;
}

.kit-card-desc {
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
    line-height: 1.5;
}

.product-included-frame {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.25rem;
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 0.25rem);
    background: hsl(var(--card) / 0.55);
}

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

.package-grid-2col--single {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.package-column {
    min-width: 0;
}

.package-items-grid {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

.kit-card--compact {
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
}

.kit-card--compact .kit-card-image {
    width: 8.5rem;
    min-width: 8.5rem;
    aspect-ratio: auto;
}

.kit-card-image-trigger {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: zoom-in;
    background: transparent;
}

.kit-card--compact .kit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kit-card--compact .kit-card-body {
    padding: 0.75rem 0.85rem;
    align-items: center;
}

.kit-card--compact .kit-card-title {
    font-size: 0.875rem;
    line-height: 1.35;
    margin-bottom: 0.2rem;
}

.kit-card--compact .kit-card-desc {
    font-size: 0.75rem;
    line-height: 1.35;
}

.product-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: hsl(210 30% 8% / 0.85);
}

.product-image-lightbox.is-open {
    display: flex;
}

.product-image-lightbox-img {
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    border-radius: 0.75rem;
    box-shadow: 0 20px 50px hsl(210 30% 5% / 0.5);
    object-fit: contain;
    background: hsl(var(--card));
}

.product-image-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 900px) {
    .package-grid-2col {
        grid-template-columns: 1fr;
    }

    .kit-card--compact .kit-card-image {
        width: 7rem;
        min-width: 7rem;
    }
}

/* ==========================================================================
   Product Video – in-page card + modal
   ========================================================================== */

.artcure-video-section {
    padding: 4.5rem 0 2rem;
    background: hsl(var(--background));
}

.artcure-video-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.25rem;
    align-items: center;
    padding: 2rem;
    border-radius: calc(var(--radius) + 0.55rem);
    background: linear-gradient(145deg, hsl(210 28% 96%), hsl(200 30% 97%));
    border: 1px solid hsl(var(--border));
    box-shadow: 0 18px 40px -28px hsl(210 40% 20% / 0.35);
}

.artcure-video-eyebrow {
    margin: 0 0 0.55rem;
    color: hsl(var(--accent));
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.artcure-video-heading {
    margin: 0 0 0.85rem;
    color: hsl(var(--primary));
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.artcure-video-text {
    margin: 0 0 1.15rem;
    color: hsl(215 15% 38%);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 34rem;
}

.artcure-video-bullets {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.artcure-video-bullets li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: hsl(var(--foreground));
    font-size: 0.95rem;
    font-weight: 500;
}

.artcure-video-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: hsl(var(--accent) / 0.14);
    color: hsl(var(--accent));
    flex-shrink: 0;
}

.artcure-video-check svg {
    width: 0.75rem;
    height: 0.75rem;
}

.artcure-video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0.8rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: hsl(var(--accent));
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 24px -14px hsl(185 55% 28% / 0.7);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.artcure-video-play-btn:hover {
    background: hsl(185 55% 34%);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px -14px hsl(185 55% 28% / 0.8);
}

.artcure-video-play-btn:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

.artcure-video-play-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: hsl(0 0% 100% / 0.18);
}

.artcure-video-play-btn-icon svg {
    width: 0.7rem;
    height: 0.7rem;
    margin-left: 0.08rem;
}

.artcure-video-media {
    width: 100%;
}

.artcure-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: calc(var(--radius) + 0.35rem);
    overflow: hidden;
    background: hsl(210 25% 18%);
    aspect-ratio: 16 / 10;
    cursor: pointer;
    box-shadow: 0 20px 40px -24px hsl(210 40% 16% / 0.55);
}

.artcure-video-thumb img,
.artcure-video-thumb-preview,
.artcure-video-thumb-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
    pointer-events: none;
}

.artcure-video-thumb-fallback {
    background:
        linear-gradient(135deg, hsl(210 45% 28%), hsl(185 40% 32%)),
        radial-gradient(circle at 70% 55%, hsl(0 75% 55% / 0.45), transparent 42%);
}

.artcure-video-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 45%, hsl(210 30% 8% / 0.35) 100%);
    transition: background 0.2s ease;
}

.artcure-video-thumb:hover .artcure-video-thumb-overlay {
    background: linear-gradient(180deg, hsl(210 30% 8% / 0.12) 0%, hsl(210 30% 8% / 0.42) 100%);
}

.artcure-video-thumb-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 999px;
    background: hsl(var(--accent) / 0.88);
    color: #fff;
    box-shadow: 0 12px 28px -10px hsl(185 55% 20% / 0.65);
}

.artcure-video-thumb-play svg {
    width: 1.4rem;
    height: 1.4rem;
    margin-left: 0.15rem;
}

.artcure-video-about {
    text-align: center;
    max-width: 46rem;
    margin: 3.5rem auto 0;
}

.artcure-video-about .section-description {
    margin-left: auto;
    margin-right: auto;
}

body.artcure-video-open {
    overflow: hidden;
}

.artcure-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.artcure-video-modal.is-open {
    display: flex;
}

.artcure-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: hsl(210 30% 6% / 0.92);
    cursor: pointer;
}

.artcure-video-modal-panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 1100px);
    max-height: 92vh;
}

.artcure-video-modal-close {
    position: absolute;
    top: -2.75rem;
    right: 0;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 9999px;
    background: hsl(0 0% 100% / 0.12);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.artcure-video-modal-close:hover {
    background: hsl(0 0% 100% / 0.22);
}

.artcure-video-modal-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #000;
    box-shadow: 0 24px 60px hsl(0 0% 0% / 0.45);
}

.artcure-video-modal-player,
.artcure-video-modal-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

@media (max-width: 899px) {
    .artcure-video-section {
        padding: 3rem 0 1.25rem;
    }

    .artcure-video-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.35rem;
    }

    .artcure-video-media {
        order: -1;
    }

    .artcure-video-thumb {
        aspect-ratio: 16 / 11;
    }

    .artcure-video-thumb-play {
        width: 3.5rem;
        height: 3.5rem;
    }

    .artcure-video-about {
        margin-top: 2.75rem;
        padding: 0 0.25rem;
    }
}

@media (max-width: 640px) {
    .artcure-video-modal-close {
        top: -2.4rem;
    }

    .whatsapp-float {
        bottom: 1.25rem;
    }
}


/* ==========================================================================
   How It Works
   ========================================================================== */

.how-it-works-section {
    padding: 6rem 0;
}

.how-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.how-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.how-image img {
    width: 100%;
    height: auto;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    font-weight: 600;
    font-size: 0.875rem;
}

.step-text {
    padding-top: 0.375rem;
    color: hsl(var(--foreground));
    line-height: 1.75;
}

.how-notice {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: hsl(var(--accent) / 0.1);
    border: 1px solid hsl(var(--accent) / 0.2);
}

.how-notice p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.how-notice strong {
    color: hsl(var(--foreground));
}

/* ==========================================================================
   MRI Partnership Banner
   ========================================================================== */

.mri-banner {
    padding: 4rem 0;
}

.mri-banner .section-label {
    color: hsl(var(--primary-foreground) / 0.6);
}

.mri-banner .section-title {
    color: hsl(var(--primary-foreground));
}

.mri-banner .section-description {
    color: hsl(var(--primary-foreground) / 0.8);
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

.mri-banner .discount-note {
    font-size: 0.75rem;
    color: hsl(var(--primary-foreground) / 0.5);
    margin-top: 1rem;
}

/* ==========================================================================
   Clinic Partner Banner
   ========================================================================== */

.clinic-banner {
    padding: 6rem 0;
    background: hsl(var(--secondary) / 0.3);
}

.clinic-cards {
    display: grid;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto 2.5rem;
}

.clinic-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.clinic-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.clinic-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.clinic-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.clinic-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

.clinic-footer-note {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-top: 1rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: 6rem 0;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 0 1.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: hsl(var(--foreground));
    line-height: 1.4;
}

.faq-question:hover {
    text-decoration: none;
}

.faq-chevron {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--muted-foreground));
    transition: transform 0.2s ease;
    margin-left: 1rem;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    font-size: 0.9375rem;
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* ==========================================================================
   Clinical Evidence Section
   ========================================================================== */

.evidence-section {
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.stat-card svg {
    margin: 0 auto 0.75rem;
    color: hsl(var(--accent));
}

.stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: 1.875rem;
    color: hsl(var(--foreground));
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

.study-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.study-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.study-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.study-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.75rem;
    font-weight: 600;
}

.study-year {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.study-journal {
    font-size: 0.75rem;
    color: hsl(var(--accent));
    font-weight: 500;
}

.study-institution {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.study-meta {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
}

.study-finding {
    color: hsl(var(--foreground));
    line-height: 1.75;
}

.study-pdf-actions {
    margin-top: 1rem;
}

.study-pdf-embed {
    margin-top: 0.75rem;
}

.study-pdf-embed summary {
    cursor: pointer;
    font-size: 0.875rem;
    color: hsl(var(--primary));
    font-weight: 600;
}

.study-pdf-embed iframe {
    margin-top: 0.75rem;
    width: 100%;
    height: 420px;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--card));
}

/* ==========================================================================
   Certifications Section
   ========================================================================== */

.certifications-section {
    padding: 6rem 0;
}

.cert-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease;
    display: flex;
    gap: 1.25rem;
}

.cert-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.cert-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 1.625rem;
    height: 1.625rem;
    color: hsl(var(--primary-foreground));
}

.cert-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.cert-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--accent));
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cert-detail {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    padding: 6rem 0;
}

.contact-section .section-label {
    color: hsl(var(--primary-foreground) / 0.6);
}

.contact-section .section-title {
    color: hsl(var(--primary-foreground));
}

.contact-section .section-description {
    color: hsl(var(--primary-foreground) / 0.8);
    max-width: 36rem;
    margin: 0 auto 3rem;
}

.contact-card {
    background: hsl(var(--primary-foreground) / 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid hsl(var(--primary-foreground) / 0.1);
    text-align: center;
}

.contact-card svg {
    margin: 0 auto 0.75rem;
    color: hsl(var(--primary-foreground) / 0.8);
}

.contact-card-label {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.9);
    font-weight: 500;
}

.contact-card-value {
    font-size: 0.75rem;
    color: hsl(var(--primary-foreground) / 0.6);
    margin-top: 0.25rem;
}

/* ==========================================================================
   Practitioners Section
   ========================================================================== */

.practitioners-section {
    padding: 6rem 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.ac-form {
    max-width: 36rem;
    margin: 0 auto;
}

.ac-form .form-group {
    margin-bottom: 1rem;
}

.ac-input,
.ac-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.ac-input:focus,
.ac-textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.ac-input::placeholder,
.ac-textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.ac-textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-error {
    font-size: 0.75rem;
    color: hsl(var(--destructive));
    margin-top: 0.25rem;
}

.partnership-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.partnership-message--success {
    background: hsl(var(--accent) / 0.12);
    border: 1px solid hsl(var(--accent) / 0.3);
    color: hsl(var(--foreground));
}

.partnership-message--error {
    background: hsl(var(--destructive) / 0.1);
    border: 1px solid hsl(var(--destructive) / 0.3);
    color: hsl(var(--destructive));
}

/* ==========================================================================
   Assessment Form (Multi-step)
   ========================================================================== */

.assessment-form,
.assessment-form-v2 {
    max-width: 42rem;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.assessment-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    align-items: center;
    flex: 1;
}

.progress-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.progress-dot.completed {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.progress-dot.active {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.progress-dot.inactive {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
}

.progress-line {
    flex: 1;
    height: 2px;
    margin: 0 0.5rem;
    background: hsl(var(--border));
}

.progress-line.completed {
    background: hsl(var(--accent));
}

.assessment-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 0.75rem;
}

.assessment-option:hover {
    border-color: hsl(var(--accent) / 0.5);
}

.assessment-option.selected {
    border-color: hsl(var(--accent));
    background: hsl(var(--accent) / 0.1);
}

.assessment-option.selected-danger {
    border-color: hsl(var(--destructive));
    background: hsl(var(--destructive) / 0.1);
}

.assessment-option .option-label {
    font-weight: 500;
    color: hsl(var(--foreground));
}

.assessment-option .option-desc {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

.assessment-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 0.75rem;
}

.assessment-checkbox-item:hover {
    border-color: hsl(var(--accent) / 0.5);
}

.assessment-checkbox-item.checked {
    border-color: hsl(var(--destructive));
    background: hsl(var(--destructive) / 0.05);
}

.assessment-checkbox-item--none.checked-none {
    border-color: hsl(var(--accent));
    background: hsl(var(--accent) / 0.08);
}

.assessment-checkbox-item input[type="checkbox"] {
    margin-top: 0.125rem;
    accent-color: hsl(var(--accent));
}

.assessment-warning {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: hsl(var(--destructive) / 0.1);
    border: 1px solid hsl(var(--destructive) / 0.2);
}

.assessment-warning p {
    font-size: 0.875rem;
    color: hsl(var(--destructive));
    font-weight: 500;
}

.terms-box {
    background: hsl(var(--muted));
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    max-height: 16rem;
    overflow-y: auto;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    line-height: 1.75;
}

.terms-box p {
    margin-bottom: 0.75rem;
}

.assessment-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.assessment-complete {
    text-align: center;
    padding: 2rem 0;
}

.assessment-complete svg {
    margin: 0 auto 1rem;
    color: hsl(var(--accent));
}

.assessment-complete h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.assessment-complete p {
    color: hsl(var(--muted-foreground));
    max-width: 28rem;
    margin: 0 auto 2rem;
}

.purchase-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    max-width: 24rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.assessment-cart {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.assessment-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.assessment-qty-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.assessment-qty-control {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--muted));
    overflow: hidden;
}

.assessment-qty-control .qty-btn {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: hsl(var(--foreground));
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.assessment-qty-control .qty-btn:hover {
    background: hsl(var(--accent) / 0.08);
    color: hsl(var(--accent));
}

.assessment-qty-control .qty-input {
    width: 3rem;
    height: 2rem;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    -moz-appearance: textfield;
}

.assessment-qty-control .qty-input::-webkit-outer-spin-button,
.assessment-qty-control .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.blocked-state {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.blocked-state svg {
    margin: 0 auto 1rem;
    color: hsl(var(--destructive));
}

/* ==========================================================================
   Assessment WhatsApp Modal
   ========================================================================== */

.assessment-whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: hsl(210 30% 8% / 0.75);
}

.assessment-whatsapp-modal.is-open {
    display: flex;
}

.assessment-whatsapp-modal-card {
    width: 100%;
    max-width: 34rem;
    background: hsl(var(--card));
    border-radius: var(--radius);
    box-shadow: var(--card-shadow-hover);
    padding: 2rem 1.5rem;
    position: relative;
}

.assessment-whatsapp-modal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.assessment-whatsapp-modal-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.assessment-whatsapp-modal-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.assessment-whatsapp-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="pop"] {
    transform: scale(0.96);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   WhatsApp Floating CTA
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.35);
    font-size: 0.875rem;
    font-weight: 600;
}

.whatsapp-float:hover {
    opacity: 0.95;
    color: #fff;
}

.whatsapp-float svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: hsl(var(--foreground));
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: hsl(var(--background) / 0.96);
    margin-bottom: 0.5rem;
}

.footer-brand .brand-name .accent {
    color: hsl(var(--accent));
}

.footer-brand .brand-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--background) / 0.72);
    margin-bottom: 0.25rem;
}

.footer-brand .brand-role {
    font-size: 0.8125rem;
    color: hsl(var(--background) / 0.64);
}

.footer-links-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: hsl(var(--background) / 0.88);
    margin-bottom: 0.75rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsl(var(--background) / 0.74);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links a:hover {
    color: hsl(var(--background) / 0.96);
}

.footer-legal-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: hsl(var(--background) / 0.88);
    margin-bottom: 0.75rem;
}

.footer-legal-text {
    font-size: 0.875rem;
    color: hsl(var(--background) / 0.68);
    line-height: 1.75;
}

.footer-bottom {
    border-top: 1px solid hsl(var(--background) / 0.18);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: hsl(var(--background) / 0.6);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.page-404 {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: hsl(var(--muted));
    text-align: center;
}

.page-404 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-404 p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.page-404 a {
    color: hsl(var(--primary));
    text-decoration: underline;
}

.page-404 a:hover {
    opacity: 0.9;
}

/* ==========================================================================
   SVG Icon Inline
   ========================================================================== */

.icon-inline {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 640px) {
    .grid-2-sm {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav-menu {
        display: flex;
        margin-left: 2rem;
    }

    .nav-toggle {
        display: none;
    }

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

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */

.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1400px;
}

.elementor-widget-artcure-hero .elementor-widget-container,
.elementor-widget-artcure-about .elementor-widget-container,
.elementor-widget-artcure-product .elementor-widget-container,
.elementor-widget-artcure-video .elementor-widget-container,
.elementor-widget-artcure-how-it-works .elementor-widget-container,
.elementor-widget-artcure-mri-banner .elementor-widget-container,
.elementor-widget-artcure-clinic-banner .elementor-widget-container,
.elementor-widget-artcure-faq .elementor-widget-container,
.elementor-widget-artcure-evidence .elementor-widget-container,
.elementor-widget-artcure-certifications .elementor-widget-container,
.elementor-widget-artcure-contact .elementor-widget-container,
.elementor-widget-artcure-practitioners .elementor-widget-container,
.elementor-widget-artcure-assessment .elementor-widget-container {
    max-width: 100%;
    padding: 0;
}

/* ==========================================================================
   WooCommerce – Cart & Checkout (theme-matched)
   ========================================================================== */

.woocommerce,
.woocommerce-page {
    font-family: 'DM Sans', sans-serif;
    color: hsl(var(--foreground));
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb a {
    color: hsl(var(--primary));
    text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover,
.woocommerce-page .woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

/* Cart table */
.woocommerce-cart-form,
.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--card));
    box-shadow: var(--card-shadow);
}

.woocommerce table.shop_table th,
.woocommerce-page table.shop_table th {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    background: hsl(var(--muted));
    border-bottom: 1px solid hsl(var(--border));
}

.woocommerce table.shop_table td,
.woocommerce-page table.shop_table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.woocommerce table.shop_table .product-name a,
.woocommerce-page table.shop_table .product-name a {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
}

.woocommerce table.shop_table .product-name a:hover,
.woocommerce-page table.shop_table .product-name a:hover {
    text-decoration: underline;
}

.woocommerce .cart_totals,
.woocommerce-page .cart_totals {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

.woocommerce .cart_totals h2,
.woocommerce-page .cart_totals h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td,
.woocommerce-page .cart_totals table th,
.woocommerce-page .cart_totals table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td,
.woocommerce-page .cart_totals .order-total th,
.woocommerce-page .cart_totals .order-total td {
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: none;
}

/* Buttons – match theme .btn (cart + checkout) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce input[type="submit"],
.woocommerce #place_order,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page input[type="submit"],
.woocommerce-page #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
    line-height: 1;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce input[type="submit"]:hover,
.woocommerce #place_order:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page input[type="submit"]:hover,
.woocommerce-page #place_order:hover {
    opacity: 0.9;
    color: hsl(var(--primary-foreground));
    background: hsl(var(--primary));
}

/* Primary CTA: Proceed to checkout, Place order – accent style like theme .btn-accent */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .checkout-button,
.woocommerce .wc-forward.button,
.woocommerce #place_order,
.woocommerce-page a.button.alt,
.woocommerce-page button.button.alt,
.woocommerce-page input.button.alt,
.woocommerce-page .checkout-button,
.woocommerce-page .wc-forward.button,
.woocommerce-page #place_order {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce .checkout-button:hover,
.woocommerce .wc-forward.button:hover,
.woocommerce #place_order:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce-page .checkout-button:hover,
.woocommerce-page .wc-forward.button:hover,
.woocommerce-page #place_order:hover {
    opacity: 0.9;
    color: hsl(var(--accent-foreground));
    background: hsl(var(--accent));
}

/* Secondary / back links – outline style like theme .btn-outline-default */
.woocommerce a.button.wc-backward,
.woocommerce-page a.button.wc-backward {
    background: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.woocommerce a.button.wc-backward:hover,
.woocommerce-page a.button.wc-backward:hover {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

/* Cart: Update cart + Proceed to checkout layout */
.woocommerce .cart_totals .wc-proceed-to-checkout,
.woocommerce-page .cart_totals .wc-proceed-to-checkout {
    padding-top: 1rem;
}

.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button,
.woocommerce-page .cart_totals .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Checkout: Place order button full width and prominent */
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* --- Proceed to checkout & Place order: force theme look (override WC defaults) --- */
body.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.button.alt.wc-forward,
body.woocommerce-cart .cart_totals a.checkout-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: 'DM Sans', sans-serif !important;
    background: hsl(var(--accent)) !important;
    color: hsl(var(--accent-foreground)) !important;
    border: none !important;
    text-decoration: none !important;
    transition: opacity 0.2s !important;
}

body.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.button.alt.wc-forward:hover,
body.woocommerce-cart .cart_totals a.checkout-button:hover {
    opacity: 0.9 !important;
    color: hsl(var(--accent-foreground)) !important;
    background: hsl(var(--accent)) !important;
}

body.woocommerce-checkout .woocommerce #payment button#place_order,
body.woocommerce-checkout #payment button#place_order,
body.woocommerce-checkout .woocommerce-checkout-payment button.button.alt {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: 'DM Sans', sans-serif !important;
    background: hsl(var(--accent)) !important;
    color: hsl(var(--accent-foreground)) !important;
    border: none !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
}

body.woocommerce-checkout .woocommerce #payment button#place_order:hover,
body.woocommerce-checkout #payment button#place_order:hover,
body.woocommerce-checkout .woocommerce-checkout-payment button.button.alt:hover {
    opacity: 0.9 !important;
    color: hsl(var(--accent-foreground)) !important;
    background: hsl(var(--accent)) !important;
}

/* WooCommerce Blocks: Proceed to checkout (cart) & Place order (checkout) – theme accent style */
.wc-block-components-button.wc-block-cart__submit-button,
.wc-block-cart__submit-button.wc-block-components-button.contained,
a.wc-block-components-button.wc-block-cart__submit-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: 'DM Sans', sans-serif !important;
    background: hsl(var(--accent)) !important;
    color: hsl(var(--accent-foreground)) !important;
    border: none !important;
    text-decoration: none !important;
    transition: opacity 0.2s !important;
}

.wc-block-components-button.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button.wc-block-components-button.contained:hover,
a.wc-block-components-button.wc-block-cart__submit-button:hover {
    opacity: 0.9 !important;
    color: hsl(var(--accent-foreground)) !important;
    background: hsl(var(--accent)) !important;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button.wc-block-components-button.contained,
button.wc-block-components-checkout-place-order-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: 'DM Sans', sans-serif !important;
    background: hsl(var(--accent)) !important;
    color: hsl(var(--accent-foreground)) !important;
    border: none !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-checkout-place-order-button.wc-block-components-button.contained:hover,
button.wc-block-components-checkout-place-order-button:hover {
    opacity: 0.9 !important;
    color: hsl(var(--accent-foreground)) !important;
    background: hsl(var(--accent)) !important;
}

/* Checkout */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    font-weight: 500;
    color: hsl(var(--foreground));
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row textarea:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.woocommerce .woocommerce-checkout-review-order-table,
.woocommerce-page .woocommerce-checkout-review-order-table {
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--card));
    box-shadow: var(--card-shadow);
}

.woocommerce .woocommerce-checkout-review-order-table th,
.woocommerce .woocommerce-checkout-review-order-table td,
.woocommerce-page .woocommerce-checkout-review-order-table th,
.woocommerce-page .woocommerce-checkout-review-order-table td {
    padding: 1rem 1.25rem;
    border-color: hsl(var(--border));
    color: hsl(var(--foreground));
}

.woocommerce #payment {
    background: hsl(var(--muted));
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid hsl(var(--border));
}

.woocommerce #payment ul.payment_methods {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.woocommerce #payment div.payment_box {
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 1rem;
    margin: 0.5rem 0 1rem;
    border: 1px solid hsl(var(--border));
}

.woocommerce #payment div.payment_box::before {
    border-bottom-color: hsl(var(--border));
}

.woocommerce .quantity input.qty {
    width: 4rem;
    padding: 0.5rem;
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    font-size: 0.875rem;
    text-align: center;
}

/* Cart empty / messages */
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    padding: 0.9rem 1rem 0.9rem 3rem;
    margin: 0 0 1.25rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--accent) / 0.28);
    border-left: 4px solid hsl(var(--accent));
    background: hsl(var(--accent) / 0.08);
    color: hsl(var(--foreground));
    line-height: 1.45;
    word-break: break-word;
}

.woocommerce-error {
    border-color: hsl(0 70% 45% / 0.28);
    border-left-color: hsl(0 70% 45%);
    background: hsl(0 70% 45% / 0.08);
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
    top: 50%;
    left: 0.95rem;
    transform: translateY(-50%);
    margin: 0;
    line-height: 1;
}

.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button {
    float: none;
    margin: 0 0 0 auto;
    flex-shrink: 0;
}

@media (max-width: 480px) {

    .woocommerce-info,
    .woocommerce-message,
    .woocommerce-error {
        padding: 0.85rem 0.85rem 0.85rem 2.75rem;
        gap: 0.55rem;
    }

    .woocommerce-info::before,
    .woocommerce-message::before,
    .woocommerce-error::before {
        left: 0.75rem;
    }

    .woocommerce .woocommerce-info .button,
    .woocommerce .woocommerce-message .button,
    .woocommerce .woocommerce-error .button,
    .woocommerce-page .woocommerce-info .button,
    .woocommerce-page .woocommerce-message .button,
    .woocommerce-page .woocommerce-error .button {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}

.woocommerce .woocommerce-notices-wrapper {
    margin-bottom: 1.5rem;
}

/* Page wrapper spacing for cart/checkout */
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content {
    padding-top: 0;
    padding-bottom: 0;
}

.artcure-commerce {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
    min-height: 70vh;
}

.artcure-commerce-container {
    max-width: 72rem;
}

.artcure-commerce-header {
    margin: 0 0 1.25rem;
}

.artcure-commerce-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: hsl(var(--foreground));
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.artcure-commerce-subtitle {
    margin: 0;
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
}

.artcure-commerce-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin: 0 0 1.5rem;
}

.artcure-commerce-trust span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
    font-weight: 500;
}

/* Hide default blog sidebar on WooCommerce views */
body.woocommerce #secondary,
body.woocommerce-page #secondary,
body.woocommerce .widget-area,
body.woocommerce-page .widget-area,
.woocommerce-page .sidebar {
    display: none !important;
}

body.woocommerce #primary,
body.woocommerce-page #primary,
body.woocommerce .content-area,
body.woocommerce-page .content-area {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* Empty cart */
.woocommerce-cart .cart-empty.woocommerce-info,
.woocommerce .cart-empty {
    text-align: center;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    border-left: 1px solid hsl(var(--border));
    box-shadow: var(--card-shadow);
    padding: 2rem 1.5rem;
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: hsl(var(--foreground));
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    margin: 1.25rem 0 2rem;
}

.woocommerce-cart .return-to-shop .button {
    min-width: 14rem;
}

/* Empty cart product suggestions: show full packaging (no crop) */
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image,
.woocommerce-cart .wc-block-grid__product-image,
.woocommerce-cart .wc-block-grid__product .wc-block-components-product-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 18rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: hsl(210 20% 98%);
    border-radius: var(--radius);
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img,
.woocommerce-cart .wc-block-grid__product-image img,
.woocommerce-cart .wc-block-grid__product .wc-block-components-product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center center !important;
}

/* Cross-sells / New in store */
.woocommerce .cross-sells,
.woocommerce-page .cross-sells {
    margin-top: 2.5rem;
}

.woocommerce .cross-sells>h2,
.woocommerce-page .cross-sells>h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--card-shadow);
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img,
.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
    object-fit: contain !important;
    object-position: center center !important;
    background: hsl(210 20% 98%);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link>img,
.woocommerce-page ul.products li.product .woocommerce-loop-product__link>img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    color: hsl(var(--primary));
    font-weight: 600;
}

/* Cart layout */
.woocommerce-cart .woocommerce {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .woocommerce-cart-form {
        margin-bottom: 0;
    }

    .woocommerce .cart-collaterals,
    .woocommerce-page .cart-collaterals {
        width: 100%;
    }

    .woocommerce .cart_totals,
    .woocommerce-page .cart_totals {
        float: none;
        width: 100%;
        max-width: 26rem;
        margin-left: auto;
    }
}

/* Checkout two-column feel */
.woocommerce-checkout .col2-set {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: start;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        width: 100%;
        float: none;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order {
        position: sticky;
        top: 5.5rem;
    }
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100%;
    float: none;
    max-width: none;
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 1rem;
}

.woocommerce form .form-row select,
.woocommerce-page form .form-row select,
.woocommerce form .form-row .select2-selection,
.woocommerce-page form .form-row .select2-selection {
    width: 100%;
    min-height: 2.75rem;
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
}

.woocommerce form .form-row .select2-selection--single {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-form-login-toggle .woocommerce-info {
    margin-bottom: 1rem;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login {
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--card));
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.woocommerce #order_review {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--card-shadow);
}

.woocommerce #order_review_heading {
    margin-top: 0;
}

.woocommerce .woocommerce-checkout-review-order-table {
    box-shadow: none;
    border: 0;
    margin-bottom: 1rem;
}

.woocommerce .blockUI.blockOverlay {
    background: hsl(var(--background) / 0.8) !important;
}

/* Product single polish */
.woocommerce div.product {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .woocommerce div.product {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
    }

    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .summary {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }
}

.woocommerce div.product .product_title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
}

.woocommerce div.product p.price {
    color: hsl(var(--primary));
    font-size: 1.35rem;
    font-weight: 600;
}

.woocommerce div.product form.cart {
    margin-top: 1rem;
}

.woocommerce .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 1rem;
}

/* ==========================================================================
   WooCommerce – My Account (boxed + side menu)
   ========================================================================== */

body.woocommerce-account .entry-content {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.woocommerce-account .woocommerce {
    max-width: 1180px;
    margin: 0 auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 0.875rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: calc(var(--radius) - 0.2rem);
    color: hsl(var(--foreground));
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: hsl(var(--accent) / 0.14);
    color: hsl(var(--accent));
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content {
    padding: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-family: 'DM Serif Display', serif;
    color: hsl(var(--foreground));
    margin-bottom: 0.9rem;
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content li,
.woocommerce-account .woocommerce-MyAccount-content label {
    color: hsl(var(--muted-foreground));
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    display: grid;
    gap: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
    background: hsl(var(--muted) / 0.45);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    margin-bottom: 0.75rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    border-radius: var(--radius);
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination {
    margin-top: 1rem;
}

@media (max-width: 980px) {

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100% !important;
        float: none !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 1rem;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul li {
        flex: 1 1 auto;
        min-width: 11rem;
    }
}

/* ==========================================================================
   WooCommerce Blocks – Cart & Checkout UI
   ========================================================================== */

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-checkout {
    font-family: 'DM Sans', sans-serif;
    color: hsl(var(--foreground));
}

.wc-block-components-title,
.wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading,
.wc-block-cart__sidebar .wc-block-cart__totals-title {
    font-family: 'DM Serif Display', serif !important;
    color: hsl(var(--foreground)) !important;
    letter-spacing: -0.02em;
}

.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-combobox input,
.wc-block-components-select select,
.wc-blocks-components-select__select {
    border: 1px solid hsl(var(--input)) !important;
    border-radius: var(--radius) !important;
    background: transparent !important;
    background-color: transparent !important;
    color: hsl(var(--foreground)) !important;
    min-height: 2.85rem;
    font-family: 'DM Sans', sans-serif !important;
}

.wc-block-components-text-input.is-active input,
.wc-block-components-text-input input:focus,
.wc-block-components-textarea textarea:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-select select:focus {
    border-color: hsl(var(--ring)) !important;
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.18) !important;
    outline: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Cart totals / sidebar card */
.wc-block-cart__sidebar,
.wc-block-components-sidebar {
    background: hsl(var(--card)) !important;
    border: 1px solid hsl(var(--border)) !important;
    border-radius: calc(var(--radius) + 0.15rem) !important;
    padding: 1.25rem !important;
    box-shadow: var(--card-shadow);
}

/* Checkout: one order-summary card only (no nested double box) */
.wp-block-woocommerce-checkout .wc-block-components-sidebar {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
    background: hsl(var(--card)) !important;
    border: 1px solid hsl(var(--border)) !important;
    border-radius: calc(var(--radius) + 0.15rem) !important;
    padding: 1.25rem !important;
    box-shadow: var(--card-shadow);
}

.wc-block-components-checkout-step {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 0.15rem);
    padding: 1.15rem 1.25rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--card-shadow);
}

.wc-block-components-checkout-step__description,
.wc-block-components-checkout-step__heading-content {
    color: hsl(var(--muted-foreground));
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    border-radius: var(--radius) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 600 !important;
}

.wc-block-cart-item__image img,
.wc-block-components-product-metadata,
.wc-block-components-product-name {
    color: hsl(var(--foreground));
}

/* Cart + checkout line-item thumbs: wide frame, full packaging, room for text */
.wc-block-cart-items .wc-block-cart-items__header-image,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image {
    width: 9.5rem !important;
}

.wc-block-cart-items .wc-block-cart-item__image,
table.wc-block-cart-items .wc-block-cart-item__image,
.is-large table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
    align-self: start !important;
    width: 8.75rem !important;
    max-width: 8.75rem !important;
    min-width: 8.75rem !important;
    padding-right: 1.5rem !important;
    vertical-align: top;
    box-sizing: content-box !important;
}

.wc-block-cart-item__image>a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 8.75rem !important;
    height: 5.75rem !important;
    max-width: 8.75rem !important;
    overflow: hidden;
    border-radius: var(--radius);
    background: hsl(210 20% 98%);
}

.wc-block-cart-item__image img,
table.wc-block-cart-items .wc-block-cart-item__image img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
}

.wc-block-cart-item__product {
    padding-left: 0.25rem !important;
}

.wc-block-components-order-summary-item {
    gap: 0.85rem;
    align-items: flex-start;
}

.wc-block-components-order-summary-item__image {
    width: 6.75rem !important;
    min-width: 6.75rem !important;
    height: 4.75rem !important;
    margin-top: 0.2rem !important;
    padding-bottom: 0 !important;
    overflow: visible;
    border-radius: var(--radius);
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: hsl(210 20% 98%);
}

.wc-block-components-order-summary-item__image>img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
    border-radius: var(--radius);
}

.wc-block-components-order-summary-item__description {
    padding-left: 0.85rem !important;
    padding-right: 0.5rem !important;
}

/* Mobile cart: match Woo grid (80px image col) — avoid text overlap */
@media (max-width: 781px) {

    .is-mobile table.wc-block-cart-items .wc-block-cart-items__row,
    .is-small table.wc-block-cart-items .wc-block-cart-items__row {
        grid-template-columns: 5rem minmax(0, 1fr) auto !important;
        column-gap: 0.85rem !important;
        row-gap: 0.75rem !important;
        padding: 1rem 0 !important;
    }

    .is-mobile table.wc-block-cart-items .wc-block-cart-item__image,
    .is-small table.wc-block-cart-items .wc-block-cart-item__image,
    .wc-block-cart-items .wc-block-cart-item__image,
    table.wc-block-cart-items .wc-block-cart-item__image {
        width: 5rem !important;
        max-width: 5rem !important;
        min-width: 5rem !important;
        padding-right: 0 !important;
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        align-self: start !important;
    }

    .wc-block-cart-item__image>a {
        width: 5rem !important;
        height: 4.25rem !important;
        max-width: 5rem !important;
    }

    .is-mobile table.wc-block-cart-items .wc-block-cart-item__product,
    .is-small table.wc-block-cart-items .wc-block-cart-item__product,
    .wc-block-cart-item__product {
        grid-column: 2 / 4 !important;
        grid-row: 1 !important;
        padding-left: 0 !important;
        min-width: 0 !important;
    }

    .is-mobile table.wc-block-cart-items .wc-block-cart-item__total,
    .is-small table.wc-block-cart-items .wc-block-cart-item__total {
        grid-column: 3 !important;
        grid-row: 1 !important;
        align-self: start !important;
        justify-self: end !important;
        padding-top: 0 !important;
    }

    .is-mobile table.wc-block-cart-items .wc-block-cart-item__quantity,
    .is-small table.wc-block-cart-items .wc-block-cart-item__quantity {
        grid-column: 2 !important;
        grid-row: 2 !important;
        padding-right: 0 !important;
        padding-top: 0.35rem !important;
        align-self: start !important;
    }

    .wc-block-components-product-name {
        padding-right: 0.35rem !important;
    }

    .wc-block-components-product-metadata {
        margin-top: 0.25rem !important;
    }
}

.wc-block-components-product-name {
    font-weight: 600 !important;
    text-decoration: none !important;
}

.wc-block-components-totals-item,
.wc-block-components-totals-footer-item {
    border-color: hsl(var(--border)) !important;
}

.wc-block-components-totals-footer-item-tax,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-weight: 700 !important;
    color: hsl(var(--foreground)) !important;
}

.wc-block-components-notice-banner,
.wc-block-components-panel {
    border-radius: var(--radius);
}

.wc-block-components-checkout-return-to-cart-button {
    color: hsl(var(--primary)) !important;
    font-weight: 500;
}

body.woocommerce-cart .artcure-commerce-header,
body.woocommerce-checkout .artcure-commerce-header {
    margin-bottom: 0.75rem;
}

body.woocommerce-cart .artcure-commerce-trust,
body.woocommerce-checkout .artcure-commerce-trust {
    margin-bottom: 1.35rem;
}

@media (max-width: 781px) {
    .wc-block-components-sidebar-layout {
        flex-direction: column;
    }
}

/* ==========================================================================
   Language Selector (blend into header)
   ========================================================================== */

.gt_float_switcher,
.gtranslate_wrapper,
.gt-current-lang,
#google_translate_element,
.trp-language-switcher,
.weglot-container,
.language-switcher {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.gt_float_switcher .gt-selected,
.gt_float_switcher .gt-current-lang,
.gtranslate_wrapper a,
.gtranslate_wrapper span,
#google_translate_element .goog-te-gadget-simple,
.trp-language-switcher>div,
.weglot-container .wgcurrent,
.language-switcher a,
.language-switcher select {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: hsl(var(--foreground)) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
}

#google_translate_element .goog-te-gadget-simple {
    padding: 0 !important;
}

.gt_float_switcher img,
.gtranslate_wrapper img,
.weglot-container img {
    display: none !important;
}

/* Keep floating switchers from looking like a white card over the hero */
.gt_float_switcher {
    opacity: 0.95;
}

/* ==========================================================================
   WooCommerce Thankyou / Order Confirmation Styles
   ========================================================================== */
.woocommerce-order-received .woocommerce-order {
    margin-top: 1.5rem;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--primary));
    margin-bottom: 2rem;
    padding: 1.15rem 1.35rem;
    background: hsl(142.1 76.2% 36.3% / 0.06);
    border: 1px solid hsl(142.1 76.2% 36.3% / 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details {
    list-style: none !important;
    margin: 2rem 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    float: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 991px) {
    .woocommerce-order-overview.woocommerce-thankyou-order-details {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-order-overview.woocommerce-thankyou-order-details {
        grid-template-columns: 1fr !important;
    }
}

.woocommerce-order-overview.woocommerce-thankyou-order-details li {
    background: hsl(var(--card)) !important;
    border: 1px solid hsl(var(--border)) !important;
    border-radius: var(--radius) !important;
    padding: 1.25rem 1.5rem !important;
    box-shadow: 0 4px 12px rgba(20, 40, 80, 0.02) !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
    color: hsl(var(--muted-foreground)) !important;
    letter-spacing: 0.05em !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.45rem !important;
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-right: 1px solid hsl(var(--border)) !important;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details li strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: hsl(var(--primary));
    text-transform: none;
    letter-spacing: normal;
    display: block;
}

.woocommerce-order-details h2,
.woocommerce-order-details h3,
.woocommerce-customer-details h2,
.woocommerce-customer-details h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    color: hsl(var(--primary));
    margin: 2.25rem 0 1.15rem;
    letter-spacing: -0.015em;
}

.woocommerce table.shop_table.woocommerce-table--order-details {
    border: 1px solid hsl(var(--border) / 0.8) !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 4px 12px rgba(20, 40, 80, 0.02) !important;
    overflow: hidden !important;
    width: 100% !important;
    margin-bottom: 2.5rem !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details th {
    background-color: hsl(var(--muted) / 0.4) !important;
    color: hsl(var(--primary)) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 1.15rem 1.35rem !important;
    border-bottom: 1.5px solid hsl(var(--border)) !important;
    border-top: none !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details td {
    padding: 1.15rem 1.35rem !important;
    border-bottom: 1px solid hsl(var(--border) / 0.6) !important;
    border-top: none !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details tbody tr:last-child td {
    border-bottom: 1.5px solid hsl(var(--border)) !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details tfoot th {
    font-weight: 600 !important;
    background-color: hsl(var(--muted) / 0.15) !important;
    border-right: 1px solid hsl(var(--border) / 0.6) !important;
    border-bottom: 1px solid hsl(var(--border) / 0.6) !important;
    text-transform: none;
    letter-spacing: normal;
}

.woocommerce table.shop_table.woocommerce-table--order-details tfoot td {
    font-weight: 700 !important;
    color: hsl(var(--primary)) !important;
    border-bottom: 1px solid hsl(var(--border) / 0.6) !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce table.shop_table.woocommerce-table--order-details tfoot tr:last-child td {
    border-bottom: none !important;
}

.woocommerce-columns--addresses,
.woocommerce-column-addresses {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 2.5rem !important;
    float: none !important;
}

@media (max-width: 767px) {
    .woocommerce-columns--addresses,
    .woocommerce-column-addresses {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

.woocommerce-columns--addresses .col-1,
.woocommerce-columns--addresses .col-2,
.woocommerce-column-addresses .col-1,
.woocommerce-column-addresses .col-2,
.woocommerce-customer-details address {
    background: hsl(var(--card)) !important;
    border: 1px solid hsl(var(--border)) !important;
    border-radius: var(--radius) !important;
    padding: 1.5rem 1.75rem !important;
    box-shadow: 0 4px 12px rgba(20, 40, 80, 0.02) !important;
    width: 100% !important;
    max-width: 36rem !important;
    float: none !important;
    box-sizing: border-box !important;
    font-style: normal !important;
    color: hsl(215 15% 30%) !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    margin-top: 0.5rem !important;
}

.woocommerce-column-addresses h3,
.woocommerce-column__title {
    margin-top: 0 !important;
    margin-bottom: 0.85rem !important;
}

.woocommerce-customer-details address p {
    margin: 0.5rem 0 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   MRI Scan Submission & V2 Lead elements
   ========================================================================== */

.mri-submission-box {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.mri-dropzone:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: hsl(var(--primary)) !important;
}

.mri-choice-btn.active {
    background-color: hsl(var(--primary)) !important;
    color: hsl(var(--primary-foreground)) !important;
    border-color: hsl(var(--primary)) !important;
}

.form-group input:focus {
    outline: none;
    border-color: hsl(var(--primary)) !important;
    box-shadow: 0 0 0 2px rgba(var(--primary), 0.15);
}