/*
Theme Name: Artcure
Theme URI: https://artcure.co.uk
Author: Vlad Co Med
Author URI: https://artcure.co.uk
Description: Custom WordPress theme for Artcure® UK — Non-Invasive Disc Herniation Treatment by Vlad Co Med.
Version: 1.0.0
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');

: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;
    height: 4rem;
}

.site-logo {
    display: flex;
    flex-direction: column;
    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;
    padding: 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 cart link with count */
.site-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    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 {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
}

.site-cart-link-mobile .site-cart-count {
    margin-left: auto;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    padding: 8rem 0;
    max-width: 42rem;
}

.hero-badge {
    color: hsl(var(--accent-foreground) / 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-heading {
    font-size: 2.5rem;
    color: hsl(var(--primary-foreground));
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: hsl(var(--primary-foreground) / 0.8);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: hsl(var(--primary-foreground) / 0.6);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   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: 1rem;
    color: hsl(var(--muted-foreground));
}

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

.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;
}

.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.75;
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   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;
}

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

.assessment-form {
    max-width: 42rem;
    margin: 0 auto;
}

.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 {
    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 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));
}

/* ==========================================================================
   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.25rem;
    color: hsl(var(--background) / 0.9);
    margin-bottom: 0.5rem;
}

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

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

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

.footer-links-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--background) / 0.7);
    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.75rem;
    color: hsl(var(--background) / 0.5);
    transition: color 0.2s;
    text-decoration: none;
}

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

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

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

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

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

/* ==========================================================================
   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; }
    .nav-toggle { display: none; }

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

    .hero-heading { font-size: 3.75rem; }

    .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); }

    .hero-heading { font-size: 4.5rem; }

    .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-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 {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    border-left: 4px solid hsl(var(--accent));
    background: hsl(var(--accent) / 0.08);
    color: hsl(var(--foreground));
}

.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: 5rem;
    padding-bottom: 4rem;
}

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