/* ═══════════════════════════════════════════
   VeilVita - Main Stylesheet
   Premium Women's Fitness & Beauty Store
   ═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --vv-primary: #8B6F5E;
    --vv-secondary: #D4A89A;
    --vv-accent: #C4956A;
    --vv-dark: #2C2220;
    --vv-light: #FDF6F0;
    --vv-white: #FFFFFF;
    --vv-black: #1A1A1A;
    --vv-gray-100: #F8F7F5;
    --vv-gray-200: #EEEBE7;
    --vv-gray-300: #D5D0CA;
    --vv-gray-400: #A09890;
    --vv-gray-500: #6B6560;
    --vv-success: #4CAF50;
    --vv-error: #E53935;
    --vv-sale: #C62828;

    --vv-font-heading: 'Playfair Display', Georgia, serif;
    --vv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --vv-container: 1280px;
    --vv-radius: 4px;
    --vv-radius-lg: 8px;
    --vv-shadow: 0 2px 12px rgba(44, 34, 32, 0.08);
    --vv-shadow-lg: 0 8px 30px rgba(44, 34, 32, 0.12);
    --vv-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--vv-font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--vv-dark);
    background: var(--vv-white);
}
a { color: inherit; text-decoration: none; transition: color var(--vv-transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Container ─── */
.vv-container {
    width: 100%;
    max-width: var(--vv-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Buttons ─── */
.vv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--vv-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--vv-radius);
    transition: all var(--vv-transition);
    cursor: pointer;
}
.vv-btn--primary {
    background: var(--vv-dark);
    color: var(--vv-white);
    border: 2px solid var(--vv-dark);
}
.vv-btn--primary:hover {
    background: var(--vv-primary);
    border-color: var(--vv-primary);
}
.vv-btn--outline {
    background: transparent;
    color: var(--vv-dark);
    border: 2px solid var(--vv-dark);
}
.vv-btn--outline:hover {
    background: var(--vv-dark);
    color: var(--vv-white);
}
.vv-btn--hero {
    background: var(--vv-white);
    color: var(--vv-dark);
    border: 2px solid var(--vv-white);
    padding: 16px 48px;
    font-size: 14px;
}
.vv-btn--hero:hover {
    background: transparent;
    color: var(--vv-white);
}
.vv-btn--text {
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vv-primary);
    border-bottom: 1px solid currentColor;
}
.vv-btn--quick-add {
    background: var(--vv-white);
    color: var(--vv-dark);
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--vv-radius);
    transition: all var(--vv-transition);
}
.vv-btn--quick-add:hover {
    background: var(--vv-dark);
    color: var(--vv-white);
}

/* ─── Announcement Bar ─── */
.vv-announcement {
    background: var(--vv-dark);
    color: var(--vv-white);
    text-align: center;
    padding: 10px 0;
}
.vv-announcement__text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── Header ─── */
.vv-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--vv-white);
    border-bottom: 1px solid var(--vv-gray-200);
    transition: box-shadow var(--vv-transition);
}
.vv-header--scrolled {
    box-shadow: var(--vv-shadow);
}
.vv-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.vv-header__logo { flex: 1; text-align: center; }
.vv-logo-text {
    font-family: var(--vv-font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--vv-dark);
    letter-spacing: 1px;
}
.vv-logo-v {
    color: var(--vv-accent);
    font-weight: 700;
}
.vv-header__nav { flex: 1; }
.vv-nav-list {
    display: flex;
    gap: 32px;
}
.vv-nav-list li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vv-dark);
    padding: 8px 0;
    position: relative;
}
.vv-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--vv-accent);
    transition: width var(--vv-transition);
}
.vv-nav-list li a:hover::after,
.vv-nav-list li.current-menu-item a::after { width: 100%; }

.vv-header__actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.vv-header__icon {
    color: var(--vv-dark);
    transition: color var(--vv-transition);
    position: relative;
}
.vv-header__icon:hover { color: var(--vv-accent); }
.vv-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--vv-accent);
    color: var(--vv-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Burger Menu */
.vv-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.vv-header__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--vv-dark);
    transition: all var(--vv-transition);
}

/* Search Overlay */
.vv-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--vv-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--vv-gray-200);
    display: none;
    box-shadow: var(--vv-shadow);
}
.vv-search-overlay.active { display: block; }
.vv-search-overlay .vv-container { display: flex; gap: 16px; align-items: center; }
.vv-search-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid var(--vv-gray-300);
    padding: 12px 0;
    font-size: 18px;
    font-family: var(--vv-font-body);
    outline: none;
    background: transparent;
}
.vv-search-input:focus { border-color: var(--vv-accent); }
.vv-search-close {
    font-size: 28px;
    color: var(--vv-gray-400);
}

/* Mobile Nav */
.vv-mobile-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--vv-white);
    z-index: 2000;
    transition: left var(--vv-transition);
    overflow-y: auto;
    padding: 24px;
}
.vv-mobile-nav.active { left: 0; }
.vv-mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--vv-gray-200);
}
.vv-mobile-nav__close { font-size: 28px; color: var(--vv-gray-400); }
.vv-mobile-nav__list li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--vv-gray-100);
}
.vv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--vv-transition);
}
.vv-overlay.active { opacity: 1; visibility: visible; }

/* ─── Hero ─── */
.vv-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--vv-dark);
    background-size: cover;
    background-position: center;
}
.vv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,34,32,0.7) 0%, rgba(139,111,94,0.5) 100%);
}
.vv-hero__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}
.vv-hero__title {
    font-family: var(--vv-font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 500;
    color: var(--vv-white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.vv-hero__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ─── Trust Badges ─── */
.vv-trust {
    padding: 40px 0;
    border-bottom: 1px solid var(--vv-gray-200);
}
.vv-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.vv-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}
.vv-trust__item svg { color: var(--vv-accent); flex-shrink: 0; }
.vv-trust__item strong { font-size: 13px; display: block; }
.vv-trust__item span { font-size: 12px; color: var(--vv-gray-500); }

/* ─── Section Styles ─── */
.vv-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.vv-section-title {
    font-family: var(--vv-font-heading);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    color: var(--vv-dark);
    margin-bottom: 8px;
}
.vv-section-subtitle {
    font-size: 15px;
    color: var(--vv-gray-500);
}
.vv-section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ─── Categories ─── */
.vv-categories {
    padding: 80px 0;
}
.vv-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vv-category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--vv-radius-lg);
    transition: transform var(--vv-transition);
}
.vv-category-card:hover { transform: translateY(-4px); }
.vv-category-card__image {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.vv-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.vv-category-card:hover .vv-category-card__image img { transform: scale(1.06); }
.vv-category-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vv-secondary), var(--vv-primary));
    display: flex;
    align-items: center;
    justify-content: center;
}
.vv-category-card__placeholder span {
    font-family: var(--vv-font-heading);
    font-size: 64px;
    color: rgba(255,255,255,0.3);
}
.vv-category-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--vv-white);
}
.vv-category-card__info h3 {
    font-family: var(--vv-font-heading);
    font-size: 22px;
    margin-bottom: 4px;
}
.vv-category-card__count {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ─── Product Grid ─── */
.vv-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.vv-featured, .vv-sale {
    padding: 80px 0;
}
.vv-sale { background: var(--vv-gray-100); }

/* ─── Product Card ─── */
.vv-product-card { position: relative; }
.vv-product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--vv-radius-lg);
    background: var(--vv-gray-100);
}
.vv-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.vv-product-card:hover .vv-product-card__img { transform: scale(1.05); }
.vv-product-card__placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vv-gray-200), var(--vv-gray-100));
}
.vv-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--vv-radius);
    z-index: 2;
}
.vv-product-card__badge--sale { background: var(--vv-sale); color: var(--vv-white); }
.vv-product-card__badge--new { background: var(--vv-dark); color: var(--vv-white); top: 12px; left: auto; right: 12px; }

.vv-product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity var(--vv-transition);
    border-radius: var(--vv-radius-lg);
}
.vv-product-card:hover .vv-product-card__overlay { opacity: 1; }

.vv-product-card__info { padding: 16px 4px 0; }
.vv-product-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vv-gray-400);
    margin-bottom: 4px;
}
.vv-product-card__title {
    font-family: var(--vv-font-body);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}
.vv-product-card__title a:hover { color: var(--vv-accent); }
.vv-product-card__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--vv-dark);
}
.vv-product-card__price del {
    color: var(--vv-gray-400);
    font-weight: 400;
    margin-right: 6px;
}
.vv-product-card__price ins {
    text-decoration: none;
    color: var(--vv-sale);
}
.vv-product-card__rating { margin-top: 6px; }
.vv-star { color: var(--vv-gray-300); font-size: 14px; }
.vv-star--filled { color: var(--vv-accent); }
.vv-product-card__review-count { font-size: 12px; color: var(--vv-gray-400); margin-left: 4px; }

.vv-product-card--placeholder .vv-product-card__image {
    background: linear-gradient(135deg, var(--vv-gray-200), var(--vv-gray-100));
}

/* ─── Lifestyle Banner ─── */
.vv-lifestyle {
    padding: 100px 0;
    background: var(--vv-light);
}
.vv-lifestyle__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.vv-lifestyle__title {
    font-family: var(--vv-font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    margin-bottom: 20px;
}
.vv-lifestyle__title em {
    color: var(--vv-accent);
    font-style: italic;
}
.vv-lifestyle__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--vv-gray-500);
    margin-bottom: 32px;
}
.vv-lifestyle__placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--vv-secondary), var(--vv-primary));
    border-radius: var(--vv-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.vv-lifestyle__placeholder span {
    font-family: var(--vv-font-heading);
    font-size: 120px;
    color: rgba(255,255,255,0.15);
}

/* ─── Social Grid ─── */
.vv-social-proof { padding: 80px 0; }
.vv-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.vv-social-item__placeholder {
    aspect-ratio: 1;
    background: var(--vv-gray-100);
    border-radius: var(--vv-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vv-gray-300);
}

/* ─── Newsletter ─── */
.vv-newsletter {
    padding: 80px 0;
    background: var(--vv-dark);
    color: var(--vv-white);
}
.vv-newsletter__inner { text-align: center; max-width: 520px; margin: 0 auto; }
.vv-newsletter__title {
    font-family: var(--vv-font-heading);
    font-size: 32px;
    margin-bottom: 12px;
}
.vv-newsletter__text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
}
.vv-newsletter__form {
    display: flex;
    gap: 12px;
}
.vv-newsletter__input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--vv-radius);
    color: var(--vv-white);
    font-family: var(--vv-font-body);
    font-size: 14px;
    outline: none;
}
.vv-newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.vv-newsletter__input:focus { border-color: var(--vv-accent); }
.vv-newsletter .vv-btn--primary {
    background: var(--vv-accent);
    border-color: var(--vv-accent);
    white-space: nowrap;
}

/* ─── Footer ─── */
.vv-footer {
    background: var(--vv-black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.vv-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vv-footer__brand .vv-logo-text { color: var(--vv-white); font-size: 24px; display: inline-block; margin-bottom: 12px; }
.vv-footer__tagline { font-size: 14px; margin-bottom: 20px; }
.vv-footer__social { display: flex; gap: 16px; }
.vv-footer__social a { color: rgba(255,255,255,0.5); transition: color var(--vv-transition); }
.vv-footer__social a:hover { color: var(--vv-accent); }
.vv-footer__heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vv-white);
    margin-bottom: 20px;
}
.vv-footer__links li { margin-bottom: 10px; }
.vv-footer__links a { font-size: 14px; transition: color var(--vv-transition); }
.vv-footer__links a:hover { color: var(--vv-accent); }
.vv-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
}
.vv-footer__payments { display: flex; gap: 16px; }
.vv-footer__payments span {
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--vv-radius);
    font-size: 12px;
}

/* ─── Shop Page ─── */
.vv-shop-header {
    background: var(--vv-light);
    padding: 48px 0;
    text-align: center;
}
.vv-shop-header__title {
    font-family: var(--vv-font-heading);
    font-size: 36px;
    font-weight: 500;
}
.vv-shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding: 48px 0;
}
.vv-shop-filters { border-right: 1px solid var(--vv-gray-200); padding-right: 32px; }
.vv-shop-filters__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.vv-shop-filters__header h3 { font-size: 18px; font-weight: 600; }
.vv-shop-filters__close { display: none; font-size: 24px; }
.vv-filter-group { margin-bottom: 24px; }
.vv-filter-group__title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.vv-filter-group__list li a { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--vv-gray-500); }
.vv-filter-group__list li a:hover { color: var(--vv-dark); }
.vv-filter-group__list li a span { color: var(--vv-gray-400); }
.vv-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--vv-gray-200);
}
.vv-shop-toolbar__filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}
.vv-shop-toolbar__right { display: flex; align-items: center; gap: 16px; }
.vv-shop-toolbar__count { font-size: 13px; color: var(--vv-gray-400); }

/* ─── Single Product ─── */
.vv-product-main { padding: 32px 0 80px; }
.vv-breadcrumbs { font-size: 13px; color: var(--vv-gray-400); margin-bottom: 32px; }
.vv-breadcrumbs a:hover { color: var(--vv-dark); }
.vv-breadcrumbs span { margin: 0 8px; }

.vv-product-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}
.vv-product-gallery { position: relative; }
.vv-product-gallery__main {
    border-radius: var(--vv-radius-lg);
    overflow: hidden;
    background: var(--vv-gray-100);
    margin-bottom: 12px;
}
.vv-product-gallery__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.vv-product-gallery__thumbs { display: flex; gap: 8px; }
.vv-product-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--vv-radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--vv-transition);
}
.vv-product-gallery__thumb--active,
.vv-product-gallery__thumb:hover { border-color: var(--vv-accent); }
.vv-product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.vv-product-details__category { font-size: 12px; color: var(--vv-gray-400); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.vv-product-details__category a:hover { color: var(--vv-accent); }
.vv-product-details__title { font-family: var(--vv-font-heading); font-size: 32px; font-weight: 500; margin-bottom: 12px; }
.vv-product-details__rating { margin-bottom: 16px; }
.vv-product-details__rating span:last-child { font-size: 13px; color: var(--vv-gray-400); margin-left: 6px; }
.vv-product-details__price { font-size: 24px; font-weight: 600; margin-bottom: 20px; }
.vv-product-details__price del { color: var(--vv-gray-400); font-weight: 400; }
.vv-product-details__price ins { text-decoration: none; color: var(--vv-sale); }
.vv-product-details__desc { font-size: 15px; line-height: 1.8; color: var(--vv-gray-500); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--vv-gray-200); }
.vv-product-details__meta { padding: 20px 0; border-top: 1px solid var(--vv-gray-200); font-size: 13px; color: var(--vv-gray-500); }
.vv-product-details__meta p { margin-bottom: 6px; }
.vv-product-details__meta strong { color: var(--vv-dark); }

/* Accordion */
.vv-accordion { border-top: 1px solid var(--vv-gray-200); margin-top: 16px; }
.vv-accordion__item { border-bottom: 1px solid var(--vv-gray-200); }
.vv-accordion__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: var(--vv-dark);
}
.vv-accordion__icon { font-size: 20px; color: var(--vv-gray-400); transition: transform var(--vv-transition); }
.vv-accordion__item.active .vv-accordion__icon { transform: rotate(45deg); }
.vv-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.vv-accordion__item.active .vv-accordion__content { max-height: 300px; }
.vv-accordion__content p { padding-bottom: 18px; font-size: 14px; line-height: 1.7; color: var(--vv-gray-500); }

/* Related Products */
.vv-related { padding-top: 48px; border-top: 1px solid var(--vv-gray-200); }

/* ─── Page / Post ─── */
.vv-main { padding: 60px 0; }
.vv-page__title, .vv-single__title { font-family: var(--vv-font-heading); font-size: 36px; font-weight: 500; margin-bottom: 24px; }
.vv-page__body, .vv-single__body { max-width: 720px; font-size: 16px; line-height: 1.8; }
.vv-page__body p, .vv-single__body p { margin-bottom: 20px; }
.vv-single__meta { font-size: 13px; color: var(--vv-gray-400); margin-bottom: 8px; }
.vv-single__featured { margin-bottom: 32px; border-radius: var(--vv-radius-lg); overflow: hidden; }

/* ─── 404 ─── */
.vv-404 { text-align: center; padding: 120px 0; }
.vv-404__title { font-family: var(--vv-font-heading); font-size: 120px; color: var(--vv-gray-200); }
.vv-404__text { font-size: 18px; color: var(--vv-gray-500); margin-bottom: 32px; }

/* ─── WooCommerce Form Overrides ─── */
.woocommerce .quantity .qty {
    width: 60px;
    padding: 10px;
    border: 1px solid var(--vv-gray-300);
    border-radius: var(--vv-radius);
    text-align: center;
    font-family: var(--vv-font-body);
}
.woocommerce .single_add_to_cart_button {
    background: var(--vv-dark) !important;
    color: var(--vv-white) !important;
    padding: 16px 40px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-radius: var(--vv-radius) !important;
    border: 2px solid var(--vv-dark) !important;
    transition: all var(--vv-transition) !important;
}
.woocommerce .single_add_to_cart_button:hover {
    background: var(--vv-accent) !important;
    border-color: var(--vv-accent) !important;
}
.woocommerce .orderby {
    padding: 8px 12px;
    border: 1px solid var(--vv-gray-300);
    border-radius: var(--vv-radius);
    font-family: var(--vv-font-body);
    font-size: 13px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .vv-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .vv-categories__grid { grid-template-columns: repeat(2, 1fr); }
    .vv-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .vv-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .vv-lifestyle__grid { grid-template-columns: 1fr; gap: 40px; }
    .vv-shop-layout { grid-template-columns: 1fr; }
    .vv-shop-filters { display: none; position: fixed; top: 0; left: 0; width: 300px; height: 100vh; background: var(--vv-white); z-index: 2000; padding: 24px; overflow-y: auto; border-right: none; }
    .vv-shop-filters.active { display: block; }
    .vv-shop-filters__close { display: block; }
    .vv-shop-toolbar__filter-btn { display: flex; }
    .vv-product-single { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .vv-header__nav { display: none; }
    .vv-header__burger { display: flex; }
    .vv-header__inner { height: 60px; }
    .vv-hero { min-height: 70vh; }
    .vv-hero__title { font-size: 36px; }
    .vv-trust__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .vv-trust__item { flex-direction: column; text-align: center; }
    .vv-categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .vv-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .vv-social-grid { grid-template-columns: repeat(2, 1fr); }
    .vv-newsletter__form { flex-direction: column; }
    .vv-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .vv-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .vv-categories, .vv-featured, .vv-sale, .vv-social-proof, .vv-lifestyle { padding: 48px 0; }
}

@media (max-width: 480px) {
    .vv-container { padding: 0 16px; }
    .vv-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .vv-product-card__info { padding: 10px 2px 0; }
    .vv-product-card__title { font-size: 13px; }
    .vv-product-card__price { font-size: 13px; }
    .vv-product-card__overlay { display: none; }
}
