/* ============================================================
   Volodymyr Health — Master Stylesheet
   ============================================================ */

@import 'partials/_variables.css';

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    color: var(--color-heading);
}

/* ── Accessibility ──────────────────────────────────────────── */
.vh-skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    z-index: var(--z-toast);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
}
.vh-skip-link:focus { top: var(--space-4); }

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ── Container ──────────────────────────────────────────────── */
.vh-container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

/* ── Typography Utilities ───────────────────────────────────── */
.vh-section__title {
    font-size: var(--text-4xl);
    font-family: var(--font-heading);
    color: var(--color-heading);
    margin-bottom: var(--space-3);
}
.vh-section__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
}
.vh-section__header {
    text-align: center;
    margin-bottom: var(--space-12);
}
.vh-section__header .vh-section__subtitle {
    margin-inline: auto;
}
.vh-section__footer {
    text-align: center;
    margin-top: var(--space-10);
}

/* ── Section ────────────────────────────────────────────────── */
.vh-section {
    padding-block: var(--space-section);
}
.vh-section--light { background: var(--color-surface); }
.vh-section--green {
    background: var(--color-primary);
    color: var(--color-white);
}
.vh-section--green .vh-section__title,
.vh-section--green h2,
.vh-section--green h3 { color: var(--color-white); }
.vh-section--green .vh-section__subtitle { color: rgba(255,255,255,0.85); }

/* ── Badges ─────────────────────────────────────────────────── */
.vh-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    font-family: var(--font-ui);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-3);
}
.vh-badge--white { background: rgba(255,255,255,0.25); color: var(--color-white); }
.vh-badge--accent { background: var(--color-accent); color: var(--color-white); }
.vh-badge--light { background: var(--color-primary-light); color: var(--color-primary); }

/* ── Buttons ────────────────────────────────────────────────── */
.vh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-ui);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}
.vh-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }

.vh-btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.vh-btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45,122,79,0.35);
}

.vh-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.vh-btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
}

.vh-btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.6);
}
.vh-btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-white);
    color: var(--color-white);
}

.vh-btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}
.vh-btn--white:hover {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.vh-btn--sm { padding: 0.5rem 1rem; font-size: var(--text-sm); }
.vh-btn--lg { padding: 1rem 2rem; font-size: var(--text-lg); }
.vh-btn--block { width: 100%; }

/* ── Header ─────────────────────────────────────────────────── */
.vh-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition-base);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.vh-header.is-scrolled { box-shadow: var(--shadow-md); }

.vh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.vh-header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.vh-header__logo img { height: 48px; width: auto; }
.vh-header__logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    font-weight: var(--weight-bold);
}

.vh-nav { flex: 1; display: flex; justify-content: center; }
.vh-nav__list { display: flex; align-items: center; gap: var(--space-1); }
.vh-nav__list li a {
    display: block;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    letter-spacing: 0.01em;
}
.vh-nav__list li a:hover,
.vh-nav__list .current-menu-item a {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.vh-header__actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }

/* Hamburger */
.vh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}
.vh-hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}
.vh-hamburger[aria-expanded="true"] .vh-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vh-hamburger[aria-expanded="true"] .vh-hamburger__bar:nth-child(2) { opacity: 0; }
.vh-hamburger[aria-expanded="true"] .vh-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.vh-hero {
    padding-block: clamp(3rem, 8vw, 6rem);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 60%);
    overflow: hidden;
    position: relative;
}
.vh-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,122,79,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.vh-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.vh-hero__content { display: flex; flex-direction: column; align-items: flex-start; }
.vh-hero__heading {
    font-size: var(--text-5xl);
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.1;
    margin-bottom: var(--space-5);
}
.vh-hero__subheading {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 480px;
}
.vh-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-8); }
.vh-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-family: var(--font-ui);
}
.vh-hero__image {
    position: relative;
    display: flex;
    justify-content: center;
}
.vh-hero__photo {
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/5;
}
.vh-hero__photo-placeholder {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    background: var(--color-primary-light);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vh-hero__photo-placeholder svg { width: 60%; height: auto; }
.vh-hero__badge-card {
    position: absolute;
    bottom: var(--space-6);
    left: -var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4) var(--space-5);
}
.vh-hero__badge-card-inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-1); }
.vh-hero__badge-card-number { font-size: var(--text-3xl); font-weight: var(--weight-bold); color: var(--color-primary); font-family: var(--font-heading); line-height: 1; }
.vh-hero__badge-card-text { font-size: var(--text-xs); color: var(--color-text-muted); font-family: var(--font-ui); text-align: center; }

/* ── Page Hero ──────────────────────────────────────────────── */
.vh-page-hero {
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-surface) 100%);
}
.vh-page-hero--green {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}
.vh-page-hero--green .vh-page-hero__title,
.vh-page-hero--green .vh-page-hero__subtitle { color: var(--color-white); }
.vh-page-hero--white { background: var(--color-surface); padding-block: var(--space-8); }
.vh-page-hero__title {
    font-size: var(--text-4xl);
    font-family: var(--font-heading);
    color: var(--color-heading);
    margin-bottom: var(--space-3);
    margin-top: var(--space-3);
}
.vh-page-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 640px;
    line-height: var(--leading-relaxed);
}
.vh-payment-success-icon { margin-bottom: var(--space-4); }

/* ── Services Grid ──────────────────────────────────────────── */
.vh-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: var(--space-6);
}
.vh-service-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    border: 1px solid var(--color-border);
}
.vh-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.vh-service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}
.vh-service-card__icon svg { width: 28px; height: 28px; }
.vh-service-card__title { font-size: var(--text-xl); color: var(--color-heading); margin: 0; }
.vh-service-card__desc { color: var(--color-text-muted); font-size: var(--text-sm); line-height: var(--leading-relaxed); flex: 1; }
.vh-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    margin-top: auto;
    transition: gap var(--transition-fast);
}
.vh-service-card__link:hover { gap: var(--space-3); color: var(--color-primary-dark); }

/* ── Products Grid ──────────────────────────────────────────── */
.vh-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: var(--space-6);
}
.vh-products-grid--books {
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
}

/* ── Product Card ───────────────────────────────────────────── */
.vh-product-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}
.vh-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.vh-product-card__badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    font-family: var(--font-ui);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    z-index: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.vh-product-card__image-link { display: block; overflow: hidden; aspect-ratio: 3/2; }
.vh-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.vh-product-card:hover .vh-product-card__image { transform: scale(1.03); }
.vh-product-card__image-placeholder {
    aspect-ratio: 3/2;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vh-product-card__image-placeholder svg { width: 40%; height: auto; }

.vh-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--space-5);
    gap: var(--space-3);
}
.vh-product-card__type {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}
.vh-product-card__title {
    font-size: var(--text-xl);
    font-family: var(--font-heading);
    line-height: var(--leading-snug);
    color: var(--color-heading);
}
.vh-product-card__title a { color: inherit; text-decoration: none; }
.vh-product-card__title a:hover { color: var(--color-primary); }
.vh-product-card__meta { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.vh-product-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-family: var(--font-ui);
}
.vh-product-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    flex: 1;
}
.vh-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-top: auto;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}
.vh-product-card__price {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    font-family: var(--font-heading);
    color: var(--color-primary);
}

/* ── About Doctor ───────────────────────────────────────────── */
.vh-about__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.vh-about__title {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}
.vh-about__specialty {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-ui);
    margin-bottom: var(--space-5);
}
.vh-about__bio {
    color: rgba(255,255,255,0.9);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    max-width: 560px;
}
.vh-about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    color: rgba(255,255,255,0.9);
    font-size: var(--text-sm);
    font-family: var(--font-ui);
}
.vh-about__photo {
    width: 320px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    flex-shrink: 0;
}

/* ── CTA Section ────────────────────────────────────────────── */
.vh-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.vh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.vh-cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-inline: auto;
}
.vh-cta__heading {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}
.vh-cta__text {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
}
.vh-cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4); }

/* ── CTA Small ──────────────────────────────────────────────── */
.vh-cta-small {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}
.vh-cta-small__text h3 { font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.vh-cta-small__text p { color: var(--color-text-muted); }

/* ── Features Strip ─────────────────────────────────────────── */
.vh-features-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: center;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-12);
}
.vh-features-strip__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: var(--weight-semibold);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: var(--color-heading);
}
.vh-features-strip__item svg { color: var(--color-primary); flex-shrink: 0; }

/* ── Consultations Layout ───────────────────────────────────── */
.vh-consultations-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.vh-booking-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}
.vh-booking-card__header {
    background: var(--color-primary);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vh-booking-card__header h3 { color: var(--color-white); font-size: var(--text-xl); margin: 0; }
.vh-booking-card__price { color: var(--color-white); font-size: var(--text-2xl); font-weight: var(--weight-bold); font-family: var(--font-heading); }
.vh-booking-card__schedule {
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border);
}
.vh-booking-card__schedule h4 { font-size: var(--text-sm); color: var(--color-text-muted); font-family: var(--font-ui); margin-bottom: var(--space-3); text-transform: uppercase; letter-spacing: 0.05em; font-weight: var(--weight-semibold); }
.vh-booking-card__schedule ul { display: flex; flex-direction: column; gap: var(--space-2); }
.vh-booking-card__schedule li { font-size: var(--text-sm); font-family: var(--font-ui); color: var(--color-text); }
.vh-booking-card__tz { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-2); font-family: var(--font-ui); }
.vh-booking-card__features {
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-family: var(--font-ui);
}
.vh-booking-card .vh-btn--primary { margin: var(--space-5) var(--space-6); width: calc(100% - var(--space-12)); }
.vh-booking-card__note {
    padding: 0 var(--space-6) var(--space-5);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: center;
    font-family: var(--font-ui);
}

/* ── Steps ──────────────────────────────────────────────────── */
.vh-steps { display: flex; flex-direction: column; gap: var(--space-6); margin-block: var(--space-8); }
.vh-steps__item {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}
.vh-steps__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    font-family: var(--font-ui);
}
.vh-steps__item strong { display: block; font-size: var(--text-base); color: var(--color-heading); margin-bottom: var(--space-1); }
.vh-steps__item p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ── Checklist ──────────────────────────────────────────────── */
.vh-checklist { display: flex; flex-direction: column; gap: var(--space-3); }
.vh-checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: var(--leading-relaxed);
    padding-left: var(--space-2);
    position: relative;
}
.vh-checklist li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: var(--weight-bold);
    flex-shrink: 0;
    width: 20px;
}

/* ── Single Product ─────────────────────────────────────────── */
.vh-single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-bottom: var(--space-16);
}
.vh-single-product__image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.vh-single-product__image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--color-primary-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vh-single-product__image-placeholder svg { width: 50%; height: auto; }
.vh-single-product__title { font-size: var(--text-4xl); margin: var(--space-3) 0; }
.vh-single-product__price {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--space-5);
}
.vh-single-product__specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-6);
}
.vh-spec-item { display: flex; flex-direction: column; gap: var(--space-1); }
.vh-spec-item__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); font-family: var(--font-ui); font-weight: var(--weight-semibold); }
.vh-spec-item__value { font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--color-heading); font-family: var(--font-ui); }
.vh-single-product__payment-note {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-3);
    font-family: var(--font-ui);
}
.vh-single-product__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    margin-top: var(--space-5);
}
.vh-single-product__author-info strong { display: block; font-size: var(--text-sm); color: var(--color-heading); }
.vh-single-product__author-info span { font-size: var(--text-xs); color: var(--color-text-muted); font-family: var(--font-ui); }
.vh-single-product__description {
    max-width: 740px;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--color-text);
}
.vh-single-product__description h2,
.vh-single-product__description h3 { margin-block: var(--space-6) var(--space-3); }
.vh-single-product__description p { margin-bottom: var(--space-4); }
.vh-single-product__description ul,
.vh-single-product__description ol { margin-bottom: var(--space-4); padding-left: var(--space-6); list-style: revert; }

/* ── Page Content ───────────────────────────────────────────── */
.vh-page-content { max-width: 760px; }
.vh-page-content h2 { font-size: var(--text-3xl); margin-block: var(--space-8) var(--space-4); color: var(--color-heading); }
.vh-page-content h3 { font-size: var(--text-2xl); margin-block: var(--space-6) var(--space-3); color: var(--color-heading); }
.vh-page-content p { margin-bottom: var(--space-4); line-height: var(--leading-relaxed); color: var(--color-text); }
.vh-page-content ul, .vh-page-content ol { margin-bottom: var(--space-4); padding-left: var(--space-6); list-style: revert; }

/* ── Booking Success ────────────────────────────────────────── */
.vh-booking-success-layout { max-width: 720px; margin-inline: auto; }
.vh-booking-success-summary {
    padding: var(--space-6);
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
}
.vh-booking-success-summary h3 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.vh-booking-success-summary p { margin-bottom: var(--space-2); font-size: var(--text-sm); }
.vh-booking-calendar h2 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.vh-booking-calendar__hint { color: var(--color-text-muted); margin-bottom: var(--space-8); }
.vh-booking-fallback {
    text-align: center;
    padding: var(--space-12);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
}
.vh-booking-fallback__icon { font-size: 3rem; margin-bottom: var(--space-4); }
.vh-booking-fallback__note { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-6); max-width: 400px; margin-inline: auto; }

/* ── Breadcrumbs ────────────────────────────────────────────── */
.vh-breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-family: var(--font-ui);
    margin-bottom: var(--space-4);
}
.vh-breadcrumbs a { color: var(--color-text-muted); }
.vh-breadcrumbs a:hover { color: var(--color-primary); }

/* ── Social Links ───────────────────────────────────────────── */
.vh-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.vh-social__link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: all var(--transition-base);
    border: 1px solid rgba(255,255,255,0.15);
}
.vh-social__link:hover { background: rgba(255,255,255,0.2); color: var(--color-white); }
.vh-social__link svg { width: 18px; height: 18px; }

/* ── Footer ─────────────────────────────────────────────────── */
.vh-footer {
    background: var(--color-heading);
    color: rgba(255,255,255,0.8);
    padding-top: var(--space-16);
}
.vh-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vh-footer__logo-text { font-family: var(--font-heading); font-size: var(--text-xl); color: var(--color-white); display: block; margin-bottom: var(--space-3); }
.vh-footer__tagline { font-size: var(--text-sm); margin-bottom: var(--space-2); }
.vh-footer__license { font-size: var(--text-xs); color: rgba(255,255,255,0.5); margin-bottom: var(--space-4); font-family: var(--font-ui); }
.vh-footer__nav-title { color: var(--color-white); font-size: var(--text-sm); font-weight: var(--weight-semibold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-5); font-family: var(--font-ui); }
.vh-footer__nav-list { display: flex; flex-direction: column; gap: var(--space-3); }
.vh-footer__nav-list a { font-size: var(--text-sm); color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.vh-footer__nav-list a:hover { color: var(--color-white); }
.vh-footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-3);
    transition: color var(--transition-fast);
}
.vh-footer__contact-item:hover { color: var(--color-white); }
.vh-footer__hours { margin-top: var(--space-5); }
.vh-footer__hours-title { font-size: var(--text-xs); font-weight: var(--weight-semibold); text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); margin-bottom: var(--space-2); font-family: var(--font-ui); }
.vh-footer__hours p { font-size: var(--text-xs); color: rgba(255,255,255,0.6); font-family: var(--font-ui); line-height: 1.8; }
.vh-footer__tz { color: rgba(255,255,255,0.4) !important; }
.vh-footer__bottom {
    padding-block: var(--space-5);
}
.vh-footer__bottom .vh-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.vh-footer__bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.4); font-family: var(--font-ui); }
.vh-footer__bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.vh-footer__bottom a:hover { color: var(--color-white); }

/* ── 404 ─────────────────────────────────────────────────────── */
.vh-404 { min-height: 60vh; display: flex; align-items: center; }
.vh-404__inner { text-align: center; max-width: 480px; margin-inline: auto; }
.vh-404__number { font-size: clamp(4rem, 15vw, 10rem); font-family: var(--font-heading); color: var(--color-primary-light); line-height: 1; font-weight: var(--weight-bold); }
.vh-404__title { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.vh-404__text { color: var(--color-text-muted); margin-bottom: var(--space-8); }
.vh-404__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

/* ── Two Col ─────────────────────────────────────────────────── */
.vh-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* ── Empty State ────────────────────────────────────────────── */
.vh-empty-state {
    text-align: center;
    padding: var(--space-16);
    color: var(--color-text-muted);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .vh-hero__inner { grid-template-columns: 1fr; }
    .vh-hero__image { display: none; }
    .vh-about__inner { grid-template-columns: 1fr; }
    .vh-about__image { display: none; }
    .vh-single-product { grid-template-columns: 1fr; }
    .vh-footer__inner { grid-template-columns: 1fr 1fr; }
    .vh-consultations-layout { grid-template-columns: 1fr; }
    .vh-booking-card { position: static; }
    .vh-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .vh-nav { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--color-white); z-index: var(--z-overlay); flex-direction: column; justify-content: flex-start; padding: var(--space-6); overflow-y: auto; }
    .vh-nav.is-open { display: flex; }
    .vh-nav__list { flex-direction: column; gap: var(--space-2); width: 100%; }
    .vh-nav__list li a { font-size: var(--text-base); padding: var(--space-3) var(--space-4); }
    .vh-hamburger { display: flex; }
    .vh-header__actions .vh-btn { display: none; }

    .vh-hero__actions { flex-direction: column; }
    .vh-hero__actions .vh-btn { width: 100%; justify-content: center; }

    .vh-cta__buttons { flex-direction: column; align-items: stretch; }
    .vh-cta__buttons .vh-btn { width: 100%; }

    .vh-cta-small { flex-direction: column; text-align: center; }

    .vh-footer__inner { grid-template-columns: 1fr; gap: var(--space-8); }
    .vh-footer__bottom .vh-container { flex-direction: column; text-align: center; }

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

    .vh-features-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .vh-products-grid--books { grid-template-columns: 1fr; }
    .vh-hero__trust { flex-direction: column; gap: var(--space-2); }
}

/* ── Admin Settings Page ────────────────────────────────────── */
.vh-settings-wrap { max-width: 800px; }
.vh-settings-title { display: flex; align-items: center; gap: var(--space-3); font-size: 1.5rem; margin-bottom: var(--space-6); }
.vh-settings-icon { font-size: 1.5rem; }
.vh-settings-card { background: var(--color-white); padding: var(--space-8); border: 1px solid #e2e8f0; border-radius: var(--radius-lg); margin-top: var(--space-6); }
.vh-settings-card ol { padding-left: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); }
.vh-settings-card li { font-size: 14px; line-height: 1.6; }
