/* Vinsark theme — uses unified tokens from app.css */

:root {
    --vf-green: var(--color-primary);
    --vf-green-dark: var(--color-primary-dark);
    --vf-green-light: var(--color-primary-light);
    --vf-gold: var(--color-accent);
    --vf-gold-soft: var(--color-accent-soft);
    --vf-ink: var(--color-text);
    --vf-muted: var(--color-muted);
    --vf-border: var(--color-border);
    --vf-bg: var(--color-bg);
    --vf-bg-alt: var(--color-surface-alt);
    --vf-white: var(--color-surface);
    --vf-radius: var(--radius);
    --vf-radius-lg: var(--radius-lg);
    --vf-shadow: var(--shadow-soft);
    --vf-shadow-lg: var(--shadow-lg);
    --vf-font: var(--font);
    --vf-display: var(--font-display);
    --vf-header-h: var(--header-h);
    --vf-topbar-h: 38px;
    --vf-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg);
}

/* Top bar */
.vf-topbar {
    background: var(--vf-green-dark);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vf-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--vf-topbar-h);
    gap: 1rem;
}

.vf-topbar__left,
.vf-topbar__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.vf-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s var(--vf-ease);
}

.vf-topbar__item:hover {
    opacity: 0.85;
}

.vf-topbar__item--muted {
    opacity: 0.75;
}

/* Header wrapper — sticky + transparent on home */
.site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.page-home .site-header-wrap {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
}

.page-home .site-header {
    background: #fff;
    border-bottom: 1px solid var(--vf-border);
    box-shadow: var(--vf-shadow);
    backdrop-filter: none;
}

.page-home .site-header .brand__logo {
    filter: none;
}

.page-home .site-header .nav > .nav-drawer-scroll > a,
.page-home .site-header .nav-dropdown__btn {
    color: var(--vf-ink);
    text-shadow: none;
}

.page-home .site-header-wrap.is-scrolled .site-header,
.page-home.is-nav-open .site-header,
.page-home .site-header.is-menu-open {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--vf-border);
    box-shadow: var(--vf-shadow);
}

.page-home .site-header-wrap.is-scrolled .nav > .nav-drawer-scroll > a,
.page-home .site-header-wrap.is-scrolled .nav-dropdown__btn,
.page-home.is-nav-open .site-header .nav > .nav-drawer-scroll > a,
.page-home.is-nav-open .site-header .nav-dropdown__btn {
    color: var(--vf-ink);
    text-shadow: none;
}

.page-home .site-header-wrap.is-scrolled .brand__logo,
.page-home.is-nav-open .site-header .brand__logo {
    filter: none;
}

.page-home .vf-topbar {
    background: var(--agron-deep, var(--vf-green-dark));
    backdrop-filter: none;
}

.page-home .site-header-wrap.is-scrolled .vf-topbar,
.page-home.is-nav-open .vf-topbar {
    background: var(--agron-deep, var(--vf-green-dark));
}

.page-home main {
    padding-top: 0;
}

.page-home .hero--slider {
    min-height: clamp(520px, 88vh, 860px);
    margin-top: 0;
}

@media (min-width: 961px) {
    .page-home .site-header {
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 960px) {
    .vf-topbar__right {
        display: none;
    }
    .page-home .site-header-wrap {
        position: sticky;
    }
    .page-home .site-header {
        background: #fff;
    }
    .page-home .site-header .nav > .nav-drawer-scroll > a,
    .page-home .site-header .nav-dropdown__btn {
        color: var(--vf-ink);
        text-shadow: none;
    }
}

/* Typography */
.vf-eyebrow,
.u-eyebrow,
.home-eyebrow {
    font-family: var(--vf-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vf-green);
    margin-bottom: 0.65rem;
}

.vf-section-head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 680px;
}

.vf-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vf-section-head--light .vf-eyebrow,
.vf-section-head--light .vf-section-head__title,
.vf-section-head--light .vf-section-head__lede {
    color: #fff;
}

.vf-section-head__title {
    font-family: var(--vf-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--vf-ink);
    margin: 0 0 0.75rem;
}

.vf-section-head__lede {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--vf-muted);
    margin: 0;
}

/* Buttons */
.btn {
    border-radius: 999px;
    font-family: var(--vf-display);
    font-weight: 600;
    transition: transform 0.25s var(--vf-ease), box-shadow 0.25s var(--vf-ease), background 0.25s;
}

.btn--primary {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-light) 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.28);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.35);
}

.btn--ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.page-home .site-header.is-scrolled .btn--ghost,
body:not(.page-home) .btn--ghost {
    border-color: var(--vf-border);
    color: var(--vf-ink);
}

/* Hero enhancements */
.hero--slider .hero__overlay {
    background: var(--hero-overlay);
}

.hero--slider .hero__content h1 {
    font-family: var(--vf-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    max-width: 14ch;
}

.hero--slider .pill {
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.45);
    color: var(--vf-gold-soft);
    font-family: var(--vf-display);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.hero__arrow {
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: transform 0.25s var(--vf-ease), background 0.25s;
}

.hero__arrow:hover {
    transform: scale(1.08);
}

/* Trust strip */
.home-trust {
    background: var(--vf-white);
    border-bottom: 1px solid var(--vf-border);
    padding: 0.85rem 0;
}

.home-trust__item {
    font-family: var(--vf-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vf-muted);
}

/* Sections */
.vf-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.vf-section--alt {
    background: var(--vf-bg-alt);
}

.vf-section--dark {
    background: linear-gradient(160deg, var(--vf-green-dark) 0%, var(--vf-green) 100%);
    color: #fff;
}

/* Stats counter row */
.vf-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vf-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--vf-white);
    border-radius: var(--vf-radius);
    box-shadow: var(--vf-shadow);
}

.vf-stat__num {
    font-family: var(--vf-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--vf-green);
    line-height: 1;
}

.vf-stat__label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--vf-muted);
}

@media (max-width: 768px) {
    .vf-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Category cards */
.vf-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.vf-cat-card {
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    background: var(--vf-white);
    box-shadow: var(--vf-shadow);
    transition: transform 0.35s var(--vf-ease), box-shadow 0.35s var(--vf-ease);
}

.vf-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vf-shadow-lg);
}

.vf-cat-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vf-cat-card__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.vf-cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--vf-ease);
}

.vf-cat-card:hover .vf-cat-card__media img {
    transform: scale(1.08);
}

.vf-cat-card__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--vf-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    background: var(--vf-green);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-cat-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.vf-cat-card__title {
    font-family: var(--vf-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.vf-cat-card__desc {
    font-size: 0.875rem;
    color: var(--vf-muted);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.vf-cat-card__arrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-green);
}

/* Product cards */
.vf-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
}

.vf-product-card {
    background: var(--vf-white);
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    box-shadow: var(--vf-shadow);
    transition: transform 0.35s var(--vf-ease), box-shadow 0.35s var(--vf-ease);
    display: flex;
    flex-direction: column;
}

.vf-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vf-shadow-lg);
}

.vf-product-card__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--vf-bg-alt);
}

.vf-product-card__img-link {
    display: block;
    height: 100%;
}

.vf-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--vf-ease);
}

.vf-product-card:hover .vf-product-card__media img {
    transform: scale(1.1);
}

.vf-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    z-index: 2;
}

.vf-badge--stock {
    background: rgba(139, 69, 19, 0.92);
    color: #fff;
}

.vf-badge--featured {
    left: auto;
    right: 0.75rem;
    background: var(--vf-gold);
    color: var(--vf-green-dark);
}

.vf-product-card__actions {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s var(--vf-ease), transform 0.3s var(--vf-ease);
    z-index: 3;
}

.vf-product-card:hover .vf-product-card__actions {
    opacity: 1;
    transform: translateY(0);
}

.vf-product-card__action {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: none;
    background: var(--vf-white);
    color: var(--vf-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--vf-shadow);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.vf-product-card__action:hover {
    background: var(--vf-green);
    color: #fff;
}

.vf-product-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vf-product-card__cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vf-green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vf-product-card__title {
    font-family: var(--vf-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.35rem 0 0.5rem;
    line-height: 1.3;
}

.vf-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.vf-product-card__title a:hover {
    color: var(--vf-green);
}

.vf-product-card__desc {
    font-size: 0.875rem;
    color: var(--vf-muted);
    line-height: 1.5;
    margin: 0 0 0.75rem;
    flex: 1;
}

.vf-product-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-green);
    text-decoration: none;
}

.vf-product-card__link:hover {
    text-decoration: underline;
}

/* Process timeline */
.vf-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    counter-reset: vf-step;
}

.vf-process__step {
    position: relative;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--vf-white);
    border-radius: var(--vf-radius);
    box-shadow: var(--vf-shadow);
}

.vf-process__step::before {
    counter-increment: vf-step;
    content: counter(vf-step, decimal-leading-zero);
    display: block;
    font-family: var(--vf-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vf-gold);
    margin-bottom: 0.5rem;
}

.vf-process__title {
    font-family: var(--vf-display);
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.vf-process__text {
    font-size: 0.8125rem;
    color: var(--vf-muted);
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .vf-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vf-process {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.vf-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vf-testimonial {
    background: var(--vf-white);
    border-radius: var(--vf-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--vf-shadow);
    border: 1px solid var(--vf-border);
}

.vf-testimonial__quote {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--vf-ink);
    margin: 0 0 1.25rem;
}

.vf-testimonial__author {
    font-family: var(--vf-display);
    font-weight: 700;
    font-size: 0.9375rem;
}

.vf-testimonial__role {
    font-size: 0.8125rem;
    color: var(--vf-muted);
}

@media (max-width: 900px) {
    .vf-testimonials {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.vf-faq {
    max-width: 760px;
    margin: 0 auto;
}

.vf-faq__item {
    border: 1px solid var(--vf-border);
    border-radius: var(--vf-radius);
    background: var(--vf-white);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.vf-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: none;
    background: none;
    font-family: var(--vf-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--vf-ink);
}

.vf-faq__q svg {
    flex-shrink: 0;
    transition: transform 0.3s var(--vf-ease);
}

.vf-faq__item.is-open .vf-faq__q svg {
    transform: rotate(180deg);
}

.vf-faq__a {
    display: none;
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--vf-muted);
}

.vf-faq__item.is-open .vf-faq__a {
    display: block;
}

/* Blog cards */
.vf-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vf-blog-card {
    background: var(--vf-white);
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    box-shadow: var(--vf-shadow);
    transition: transform 0.35s var(--vf-ease);
}

.vf-blog-card:hover {
    transform: translateY(-4px);
}

.vf-blog-card__media {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.vf-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--vf-ease);
}

.vf-blog-card:hover .vf-blog-card__media img {
    transform: scale(1.06);
}

.vf-blog-card__body {
    padding: 1.25rem;
}

.vf-blog-card__date {
    font-size: 0.75rem;
    color: var(--vf-muted);
    margin-bottom: 0.35rem;
}

.vf-blog-card__title {
    font-family: var(--vf-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.vf-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.vf-blog-card__title a:hover {
    color: var(--vf-green);
}

@media (max-width: 900px) {
    .vf-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter band */
.vf-newsletter {
    background: linear-gradient(135deg, var(--vf-green-dark) 0%, var(--vf-green) 100%);
    border-radius: var(--vf-radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.vf-newsletter__title {
    font-family: var(--vf-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.vf-newsletter__form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vf-newsletter__form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1.15rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
}

.vf-newsletter__form .btn--primary {
    background: var(--vf-gold);
    color: var(--vf-green-dark);
    box-shadow: none;
}

@media (max-width: 768px) {
    .vf-newsletter {
        grid-template-columns: 1fr;
    }
}

/* Cert logos */
.vf-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--vf-white);
    border-radius: var(--vf-radius-lg);
    box-shadow: var(--vf-shadow);
}

.vf-logos img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: opacity 0.3s, filter 0.3s;
}

.vf-logos img:hover {
    filter: none;
    opacity: 1;
}

/* Catalog toolbar */
.vf-catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--vf-white);
    border-radius: var(--vf-radius);
    box-shadow: var(--vf-shadow);
}

.vf-catalog-toolbar label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vf-muted);
    display: block;
    margin-bottom: 0.35rem;
}

.vf-catalog-toolbar select {
    min-width: 200px;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--vf-border);
}

/* Product detail gallery */
.vf-gallery__main {
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    background: var(--vf-bg-alt);
    aspect-ratio: 1;
}

.vf-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--vf-ease);
}

.vf-gallery__thumbs {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

.vf-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: none;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.vf-gallery__thumb.is-active,
.vf-gallery__thumb:hover {
    opacity: 1;
    border-color: var(--vf-green);
}

.vf-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product tabs */
.vf-tabs__nav {
    display: flex;
    gap: 0.25rem;
    border-bottom: 1px solid var(--vf-border);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.vf-tabs__btn {
    padding: 0.85rem 1.25rem;
    border: none;
    background: none;
    font-family: var(--vf-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--vf-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.vf-tabs__btn.is-active {
    color: var(--vf-green);
    border-bottom-color: var(--vf-green);
}

.vf-tabs__panel {
    display: none;
}

.vf-tabs__panel.is-active {
    display: block;
    animation: vfFadeIn 0.35s var(--vf-ease);
}

@keyframes vfFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating labels */
.vf-field {
    position: relative;
    margin-bottom: 1.25rem;
}

.vf-field input,
.vf-field textarea,
.vf-field select {
    width: 100%;
    padding: 1.1rem 1rem 0.55rem;
    border: 1.5px solid var(--vf-border);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--vf-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vf-field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--vf-muted);
    pointer-events: none;
    transition: top 0.2s, font-size 0.2s, color 0.2s;
    background: var(--vf-white);
    padding: 0 0.25rem;
}

.vf-field textarea + label {
    top: 1.1rem;
    transform: none;
}

.vf-field input:focus,
.vf-field textarea:focus,
.vf-field select:focus {
    outline: none;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.12);
}

.vf-field input:focus + label,
.vf-field input:not(:placeholder-shown) + label,
.vf-field textarea:focus + label,
.vf-field textarea:not(:placeholder-shown) + label,
.vf-field select:focus + label,
.vf-field select:valid + label {
    top: 0;
    font-size: 0.75rem;
    color: var(--vf-green);
    font-weight: 600;
}

.vf-field textarea + label {
    transform: none;
}

.vf-field textarea:focus + label,
.vf-field textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    transform: none;
}

/* Modal quick view */
.vf-modal[hidden] {
    display: none !important;
}

.vf-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.vf-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.vf-modal__dialog {
    position: relative;
    background: var(--vf-white);
    border-radius: var(--vf-radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: var(--vf-shadow-lg);
    animation: vfModalIn 0.35s var(--vf-ease);
}

@keyframes vfModalIn {
    from { opacity: 0; transform: scale(0.96) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.vf-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: var(--vf-bg);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.vf-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.vf-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.vf-modal__body {
    padding: 2rem;
}

.vf-modal__title {
    font-family: var(--vf-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.vf-modal__desc {
    color: var(--vf-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vf-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .vf-modal__grid {
        grid-template-columns: 1fr;
    }
}

/* Toast */
.vf-toast-stack {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.vf-toast {
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: var(--vf-ink);
    color: #fff;
    font-size: 0.9375rem;
    box-shadow: var(--vf-shadow-lg);
    animation: vfToastIn 0.35s var(--vf-ease);
    pointer-events: auto;
}

.vf-toast--success {
    background: var(--vf-green);
}

.vf-toast--error {
    background: #b91c1c;
}

@keyframes vfToastIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

/* Skeleton */
.vf-skeleton {
    background: linear-gradient(90deg, #e8eee9 25%, #f4f7f5 50%, #e8eee9 75%);
    background-size: 200% 100%;
    animation: vfShimmer 1.4s infinite;
    border-radius: var(--vf-radius);
}

@keyframes vfShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* CTA band refresh */
.cta-band {
    border-radius: var(--vf-radius-lg);
    background: linear-gradient(135deg, var(--vf-green-dark) 0%, var(--vf-green) 55%, var(--vf-green-light) 100%);
    box-shadow: var(--vf-shadow-lg);
}

/* Footer polish */
.site-footer {
    background: var(--vf-green-dark);
}

.site-footer__heading {
    font-family: var(--vf-display);
}

/* Split section */
.u-split__grid {
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.u-split__media img {
    border-radius: var(--vf-radius-lg);
    box-shadow: var(--vf-shadow-lg);
}

.u-feature-grid {
    gap: 1rem;
}

.u-feature {
    background: var(--vf-white);
    border-radius: var(--vf-radius);
    padding: 1rem;
    box-shadow: var(--vf-shadow);
    border: 1px solid var(--vf-border);
}

/* Pagination */
.pagination {
    margin-top: 2.5rem;
    justify-content: center;
}

.pagination a,
.pagination span {
    border-radius: 10px;
}

/* Recently viewed bar */
.vf-recent {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vf-border);
}

.vf-recent__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.vf-recent__item {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.vf-recent__item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.vf-recent__item span {
    font-size: var(--text-sm);
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

/* ========== GLOBAL DESIGN UNIFY ========== */

.section,
.vf-section,
.front-home .section {
    padding: var(--section-y) 0;
    background: var(--color-bg);
}

.section--alt,
.vf-section--alt,
.section--mesh,
.page-qa-shell,
.home-certs,
.home-featured,
.product-related,
.about-emotional {
    background: var(--color-bg);
}

.vf-section--dark {
    background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.card,
.vf-product-card,
.vf-cat-card,
.vf-testimonial,
.vf-blog-card,
.catalog-card,
.home-product-card,
.home-cat-card,
.u-feature {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border-color: var(--color-border);
}

.vf-eyebrow,
.u-eyebrow,
.home-eyebrow,
.pill,
.page-qa-hero__kicker,
.vf-product-card__cat {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vf-eyebrow,
.u-eyebrow,
.home-eyebrow {
    color: var(--color-primary-light);
}

.vf-section-head__title,
.home-block-head__title,
.u-split__body h2,
.page-qa-hero__title,
.hero--slider .hero__content h1,
.vf-modal__title,
.product-detail__title,
.product-related__title,
.contact-hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--color-text);
}

.vf-section-head__title,
.home-block-head__title {
    font-size: var(--heading-lg);
}

.vf-section-head__lede,
.home-block-head__lede,
.page-qa-hero__lede,
.hero--slider .hero__content p,
.contact-hero__lede,
.muted,
.card p,
.vf-product-card__desc {
    font-size: var(--text-lede);
    /* color: var(--color-muted); */
    line-height: 1.65;
}

.card h3,
.vf-product-card__title,
.vf-cat-card__title,
.catalog-card__title {
    font-family: var(--font-display);
    font-size: var(--heading-md);
    font-weight: 700;
}

.btn,
.nav a,
.nav-dropdown__btn,
.nav-cta {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    border-color: transparent;
}

.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.92);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
}

.page-qa-hero__title {
    font-size: var(--heading-xl);
    color: beige;
}

.page-qa-hero__bg {
    background: var(--hero-overlay), var(--page-breadcrumb-hero-image, var(--hero-bg-image)) center / cover no-repeat;
}

.cta-band,
.vf-newsletter {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-primary-light) 100%);
}

.contact-shell,
.product-sample__panel,
.vf-catalog-toolbar {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

input,
textarea,
select {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--color-text);
    border-color: var(--color-border);
    border-radius: var(--radius);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgb(var(--rgb-primary) / 0.12);
}

label {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--color-muted);
}

.prose,
.product-detail__prose,
.page-qa-prose {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.7;
}

.prose h2,
.prose h3,
.page-qa-prose h2,
.page-qa-prose h3 {
    font-family: var(--font-display);
    color: var(--color-text);
}

a {
    color: var(--color-primary);
}

a:hover {
    color: var(--color-primary-light);
}

/* ========== UNIFIED ANIMATIONS ========== */

[data-aos] {
    animation-duration: var(--anim-reveal-duration) !important;
    animation-timing-function: var(--anim-reveal-easing) !important;
}

.hero__content {
    animation: fade-up var(--anim-reveal-duration) var(--anim-reveal-easing) 0.15s both;
}

.u-split__media img,
.home-why__figure img,
.vf-cat-card__media img,
.vf-product-card__media img,
.vf-blog-card__media img {
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.home-industry,
.vf-process__step,
.vf-testimonial,
.vf-stat,
.u-feature {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.contact-hero__bg,
.page-breadcrumb-hero__bg,
.page-qa-hero__bg {
    background: var(--hero-overlay), var(--page-breadcrumb-hero-image, var(--hero-bg-image)) center / cover no-repeat;
}

.contact-hero__bg::after,
.page-breadcrumb-hero__bg::after,
.page-qa-hero__bg::after,
.hero__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay-radial);
    pointer-events: none;
}
