/* ============================================
   VOLUPTIA — CSS Principal
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

body.vol-body {
    margin: 0;
    padding: 0;
    font-family: var(--vol-sans);
    color: var(--vol-negro);
    background-color: var(--vol-marfil);
    font-weight: 300;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    padding: 0;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* CONTAINERS */
.vol-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.vol-container--narrow {
    max-width: 900px;
}

/* OVERRIDE Storefront */
.site-header, .site-footer, .storefront-breadcrumb { display: none !important; }

/* ============================================
   HEADER
   ============================================ */

.vol-header {
    background: var(--vol-marfil);
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.vol-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.vol-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.vol-logo__name {
    font-family: var(--vol-serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--vol-negro);
}

.vol-logo__tagline {
    font-family: var(--vol-serif);
    font-size: 0.7rem;
    font-style: italic;
    font-weight: 400;
    color: var(--vol-dorado);
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
}

.vol-nav { display: flex; justify-content: center; }

.vol-nav__list { display: flex; gap: 2.5rem; }

.vol-nav__list a {
    font-family: var(--vol-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vol-negro);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.vol-nav__list a:hover { color: var(--vol-borgona); }

.vol-nav__list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--vol-dorado);
    transition: width 0.3s ease, left 0.3s ease;
}

.vol-nav__list a:hover::after { width: 100%; left: 0; }

.vol-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vol-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--vol-negro);
    transition: background 0.3s ease;
    position: relative;
    text-decoration: none;
}

.vol-icon-btn:hover { background: rgba(10, 10, 10, 0.04); }

.vol-cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--vol-dorado);
    color: var(--vol-marfil);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.vol-menu-toggle { display: none; }

/* MOBILE MENU */
.vol-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--vol-marfil);
    z-index: 200;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.vol-mobile-menu.is-open { right: 0; }

.vol-mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.vol-mobile-menu__list a {
    display: block;
    padding: 1rem 0;
    font-family: var(--vol-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--vol-negro);
    text-decoration: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

/* ============================================
   BOTONES
   ============================================ */

.vol-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-family: var(--vol-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.vol-btn__arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.vol-btn:hover .vol-btn__arrow { transform: translateX(4px); }

.vol-btn--ghost {
    color: var(--vol-marfil);
    border-color: var(--vol-dorado);
    background: transparent;
}
.vol-btn--ghost:hover {
    background: var(--vol-dorado);
    color: var(--vol-negro);
}

.vol-btn--solid {
    color: var(--vol-marfil);
    background: var(--vol-negro);
    border-color: var(--vol-negro);
}
.vol-btn--solid:hover {
    background: var(--vol-borgona);
    border-color: var(--vol-borgona);
}

.vol-btn--link {
    padding: 0.5rem 0;
    color: var(--vol-negro);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--vol-dorado);
    border-radius: 0;
}
.vol-btn--link:hover {
    color: var(--vol-borgona);
    border-color: var(--vol-borgona);
}

/* ============================================
   SECCIÓN HEADERS
   ============================================ */

.vol-section-header {
    margin-bottom: 4rem;
}
.vol-section-header--center { text-align: center; }

.vol-section-header__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--vol-dorado);
    margin: 0 0 1rem;
    font-weight: 500;
}

.vol-section-header__title {
    font-family: var(--vol-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

/* ============================================
   HERO
   ============================================ */

.vol-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.vol-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%);
}

.vol-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--vol-marfil);
    max-width: 700px;
    padding: 0 2rem;
    animation: vol-fade-up 1.2s ease both;
}

.vol-hero__eyebrow {
    font-family: var(--vol-sans);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--vol-dorado);
    margin: 0 0 2rem;
    font-weight: 400;
}

.vol-hero__title {
    font-family: var(--vol-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 1.5rem;
    letter-spacing: 0.01em;
    color: var(--vol-blanco);
}
.vol-hero h1.vol-hero__title,
.vol-hero .vol-hero__title {
    color: #ffffff !important;
}

.vol-hero h1.vol-hero__title em,
.vol-hero .vol-hero__title em {
    color: var(--vol-dorado) !important;
}
.vol-hero__title em {
    font-style: italic;
    color: var(--vol-dorado);
}

.vol-hero__subtitle {
    font-family: var(--vol-sans);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: 0 0 3rem;
    opacity: 0.9;
}

.vol-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background: rgba(245, 239, 230, 0.3);
    overflow: hidden;
}
.vol-hero__scroll span {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--vol-dorado);
    animation: vol-scroll-down 2.5s ease-in-out infinite;
}

@keyframes vol-scroll-down {
    0%   { top: -50%; }
    100% { top: 100%; }
}

@keyframes vol-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CATEGORÍAS
   ============================================ */

.vol-categories {
    padding: 8rem 0;
}

.vol-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vol-cat-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    text-decoration: none;
    color: var(--vol-marfil);
}

.vol-cat-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

/* Placeholders con gradientes mientras no haya fotos reales */
.vol-cat-card__image--1 {
    background: linear-gradient(135deg, #0A0A0A 0%, #5C1A1B 100%);
}
.vol-cat-card__image--2 {
    background: linear-gradient(135deg, #5C1A1B 0%, #B89968 100%);
}
.vol-cat-card__image--3 {
    background: linear-gradient(135deg, #B89968 0%, #D9C2A8 100%);
}

.vol-cat-card:hover .vol-cat-card__image {
    transform: scale(1.05);
}

.vol-cat-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.vol-cat-card__title {
    font-family: var(--vol-serif);
    font-size: 1.7rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.vol-cat-card__cta {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--vol-dorado);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    display: inline-block;
}

.vol-cat-card:hover .vol-cat-card__cta {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRODUCTOS DESTACADOS (HOME)
   ============================================ */

.vol-featured {
    padding: 6rem 0;
    background: rgba(217, 194, 168, 0.15);
}

.vol-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vol-product-card {
    text-decoration: none;
    color: var(--vol-negro);
    transition: transform 0.4s ease;
}

.vol-product-card:hover {
    transform: translateY(-4px);
}

.vol-product-card__image {
    aspect-ratio: 1;
    background: var(--vol-marfil);
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.vol-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vol-product-card:hover .vol-product-card__image img {
    transform: scale(1.05);
}

.vol-product-card__name {
    font-family: var(--vol-sans);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.4rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.vol-product-card__price {
    font-family: var(--vol-serif);
    font-size: 1rem;
    color: var(--vol-dorado);
    margin: 0;
    font-weight: 500;
}

.vol-products-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--vol-gris);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px dashed rgba(184, 153, 104, 0.3);
    margin-bottom: 3rem;
}

.vol-featured__cta {
    text-align: center;
}

/* ============================================
   BENEFICIOS
   ============================================ */

.vol-benefits {
    padding: 6rem 0;
}

.vol-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.vol-benefit {
    text-align: center;
    padding: 1.5rem;
}

.vol-benefit__icon {
    color: var(--vol-dorado);
    margin-bottom: 1.5rem;
}

.vol-benefit__title {
    font-family: var(--vol-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 1rem;
    color: var(--vol-negro);
}

.vol-benefit__text {
    font-size: 0.9rem;
    color: var(--vol-gris);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   HISTORIA
   ============================================ */

.vol-story {
    padding: 8rem 0;
}

.vol-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.vol-story__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.vol-story__image-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0A 0%, #5C1A1B 50%, #B89968 100%);
}

.vol-story__title {
    font-family: var(--vol-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 1rem 0 2rem;
}
.vol-story__title em {
    font-style: italic;
    color: var(--vol-dorado);
}

.vol-story__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--vol-negro);
    margin: 0 0 1.5rem;
    max-width: 480px;
}

/* ============================================
   FAQ
   ============================================ */

.vol-faq {
    padding: 6rem 0;
    background: rgba(217, 194, 168, 0.15);
}

.vol-faq__list {
    margin: 0;
}

.vol-faq__item {
    border-bottom: 1px solid rgba(184, 153, 104, 0.3);
    padding: 0;
}

.vol-faq__question {
    font-family: var(--vol-serif);
    font-size: 1.15rem;
    font-weight: 400;
    padding: 1.8rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.vol-faq__question::-webkit-details-marker { display: none; }
.vol-faq__question:hover { color: var(--vol-borgona); }

.vol-faq__icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.vol-faq__icon::before,
.vol-faq__icon::after {
    content: '';
    position: absolute;
    background: var(--vol-dorado);
    transition: transform 0.3s ease;
}
.vol-faq__icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    margin-top: -0.5px;
}
.vol-faq__icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    margin-left: -0.5px;
}

.vol-faq__item[open] .vol-faq__icon::after {
    transform: scaleY(0);
}

.vol-faq__answer {
    padding: 0 0 1.8rem;
    color: var(--vol-gris);
    line-height: 1.8;
    font-size: 0.95rem;
}
.vol-faq__answer p { margin: 0; }

.vol-faq__cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   CTA FINAL
   ============================================ */

.vol-final-cta {
    padding: 8rem 0;
    text-align: center;
}

.vol-final-cta__title {
    font-family: var(--vol-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 3rem;
}
.vol-final-cta__title em {
    font-style: italic;
    color: var(--vol-dorado);
}

.vol-final-cta__socials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.vol-final-cta__social {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--vol-negro);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}
.vol-final-cta__social:hover { color: var(--vol-dorado); }

/* ============================================
   PÁGINAS GENÉRICAS
   ============================================ */

.vol-page { padding: 5rem 0; }
.vol-page__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.vol-page__title {
    font-family: var(--vol-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin: 0 0 3rem;
    text-align: center;
}
.vol-page__content { font-size: 1rem; line-height: 1.8; }

/* ============================================
   FOOTER
   ============================================ */

.vol-footer {
    background: var(--vol-negro);
    color: var(--vol-marfil);
    padding: 5rem 0 2rem;
    margin-top: 0;
}

.vol-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vol-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.vol-footer__brand .vol-logo__name { color: var(--vol-marfil); }
.vol-footer__brand .vol-logo__tagline { color: var(--vol-dorado); }

.vol-footer__tagline-text {
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.7);
    margin-top: 1.5rem;
    line-height: 1.7;
    max-width: 280px;
}

.vol-footer__title {
    font-family: var(--vol-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vol-dorado);
    margin: 0 0 1.5rem;
}

.vol-footer__col ul li { margin-bottom: 0.8rem; }

.vol-footer__col a {
    color: rgba(245, 239, 230, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.vol-footer__col a:hover { color: var(--vol-dorado); }

.vol-footer__social a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.vol-footer__bottom {
    border-top: 1px solid rgba(184, 153, 104, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(245, 239, 230, 0.5);
}

.vol-footer__legal a {
    color: rgba(245, 239, 230, 0.5);
    text-decoration: none;
}
.vol-footer__legal a:hover { color: var(--vol-dorado); }

/* WHATSAPP FLOTANTE */
.vol-whatsapp-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 50;
    transition: transform 0.3s ease;
    text-decoration: none;
    animation: vol-pulse 2.5s ease-in-out infinite;
}
.vol-whatsapp-floating:hover { transform: scale(1.05); }

@keyframes vol-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* ============================================
   RESPONSIVE — HOME
   ============================================ */

@media (max-width: 1024px) {
    .vol-categories__grid { grid-template-columns: repeat(2, 1fr); }
    .vol-products-grid { grid-template-columns: repeat(2, 1fr); }
    .vol-story__grid { grid-template-columns: 1fr; gap: 3rem; }
    .vol-benefits__grid { gap: 2rem; }
    .vol-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .vol-container { padding: 0 1.5rem; }
    .vol-header__inner { padding: 1rem 1.5rem; gap: 1rem; }
    .vol-nav { display: none; }
    .vol-menu-toggle { display: inline-flex; }
    .vol-logo__name { font-size: 1.2rem; }
    .vol-logo__tagline { font-size: 0.6rem; }
    .vol-hero { min-height: 75vh; }
    .vol-categories { padding: 4rem 0; }
    .vol-categories__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .vol-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .vol-featured, .vol-benefits, .vol-faq { padding: 4rem 0; }
    .vol-story { padding: 4rem 0; }
    .vol-benefits__grid { grid-template-columns: 1fr; gap: 3rem; }
    .vol-final-cta { padding: 5rem 0; }
    .vol-final-cta__socials { flex-direction: column; gap: 1.5rem; }
    .vol-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .vol-footer__bottom { flex-direction: column; text-align: center; }
    .vol-whatsapp-floating { bottom: 1.5rem; right: 1.5rem; }
    .vol-section-header { margin-bottom: 2.5rem; }
}

/* ============================================
   SINGLE PRODUCT — EDITORIAL LAYOUT
   ============================================ */

/* --- STOREFRONT OVERRIDES (agresivo) --- */
body.single-product #secondary,
body.single-product .widget-area,
body.single-product .sidebar,
body.single-product .sidebar-container,
body.single-product aside.widget-area,
body.single-product .storefront-sticky-add-to-cart {
  display: none !important;
}

body.single-product .col-full,
body.single-product .storefront-full-width-content .col-full {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.single-product #content,
body.single-product .site-content,
body.single-product #primary,
body.single-product .content-area,
body.single-product #main,
body.single-product .site-main {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

body.single-product div.product {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* --- VOLUPTIA PRODUCT BASE --- */
.voluptia-product {
  background: var(--vol-marfil);
  color: var(--vol-negro);
  font-family: var(--vol-sans);
  width: 100%;
}
.voluptia-product .vol-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* --- BREADCRUMB --- */
.vol-breadcrumb {
  padding: 32px 0 16px;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.vol-breadcrumb .vol-container {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
}
.vol-breadcrumb a { color: rgba(10,10,10,0.5); text-decoration: none; transition: color 0.3s; }
.vol-breadcrumb a:hover { color: var(--vol-borgona); }
.vol-bread-sep { margin: 0 8px; color: var(--vol-dorado); }

/* --- MAIN GRID --- */
.vol-product-main { padding: 64px 0 96px; }
.vol-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  width: 100%;
}

/* --- GALLERY --- */
.vol-gallery { position: sticky; top: 100px; min-width: 0; }
.vol-gallery-main {
  position: relative;
  background: #fff;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 16px;
  cursor: zoom-in;
}
.vol-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.vol-gallery-main:hover .vol-gallery-main-img { transform: scale(1.5); }
.vol-gallery-placeholder {
  background: linear-gradient(135deg, var(--vol-nude), var(--vol-dorado));
  aspect-ratio: 3/4;
}
.vol-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.vol-thumb {
  background: none;
  border: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  transition: border-color 0.3s;
}
.vol-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vol-thumb:hover, .vol-thumb.is-active { border-color: var(--vol-dorado); }

/* --- INFO COLUMN --- */
.vol-product-info { padding-top: 24px; min-width: 0; }
.vol-product-cats {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  margin-bottom: 24px;
}
.vol-product-cats a { color: var(--vol-dorado); text-decoration: none; }
.vol-product-cats a:hover { color: var(--vol-borgona); }

.vol-product-title {
  font-family: var(--vol-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  word-break: normal;
  overflow-wrap: break-word;
}

.vol-product-price {
  font-family: var(--vol-serif);
  font-size: 24px;
  color: var(--vol-negro);
  margin-bottom: 32px;
}

.vol-product-short {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10,10,10,0.75);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}

/* --- CART --- */
.vol-cart-form { margin-bottom: 48px; }
.vol-qty-wrap { margin-bottom: 24px; }
.vol-qty-wrap label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  margin-bottom: 12px;
}
.vol-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10,10,10,0.15);
}
.vol-qty-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--vol-negro);
  transition: background 0.3s;
}
.vol-qty-btn:hover { background: rgba(10,10,10,0.04); }
.vol-qty-input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(10,10,10,0.15);
  border-right: 1px solid rgba(10,10,10,0.15);
  font-family: var(--vol-sans);
  font-size: 14px;
  background: none;
}
.vol-qty-input::-webkit-outer-spin-button,
.vol-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vol-add-cart {
  width: 100%;
  padding: 18px 32px;
  background: var(--vol-negro);
  color: var(--vol-marfil);
  border: none;
  font-family: var(--vol-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 12px;
}
.vol-add-cart:hover { background: var(--vol-borgona); }

.vol-wa-btn {
  display: block;
  width: 100%;
  padding: 18px 32px;
  background: transparent;
  color: var(--vol-negro);
  border: 1px solid var(--vol-negro);
  text-align: center;
  font-family: var(--vol-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-sizing: border-box;
}
.vol-wa-btn:hover { background: var(--vol-negro); color: var(--vol-marfil); }

.vol-out-stock {
  padding: 18px;
  background: rgba(10,10,10,0.04);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- ACCORDIONS --- */
.vol-accordions { border-top: 1px solid rgba(10,10,10,0.08); }
.vol-acc { border-bottom: 1px solid rgba(10,10,10,0.08); }
.vol-acc summary {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.vol-acc summary::-webkit-details-marker { display: none; }
.vol-acc-icon {
  font-size: 20px;
  color: var(--vol-dorado);
  font-weight: 300;
  transition: transform 0.3s;
}
.vol-acc[open] .vol-acc-icon { transform: rotate(45deg); }
.vol-acc-body {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(10,10,10,0.7);
}
.vol-acc-body p { margin: 0 0 8px; }

/* --- LONG DESCRIPTION --- */
.vol-product-description {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid rgba(10,10,10,0.05);
  border-bottom: 1px solid rgba(10,10,10,0.05);
}
.vol-desc-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.vol-desc-label span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  position: sticky;
  top: 100px;
  display: block;
}
.vol-desc-content {
  font-family: var(--vol-serif);
  font-size: 20px;
  line-height: 1.6;
  color: rgba(10,10,10,0.85);
  font-weight: 300;
}
.vol-desc-content p { margin: 0 0 24px; }
.vol-desc-content p:first-child::first-letter {
  font-size: 56px;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--vol-borgona);
  font-style: italic;
  font-weight: 400;
}

/* --- RELATED & ALSO LIKE (clases vol-sp-* para no chocar con HOME) --- */
.vol-related, .vol-also { padding: 96px 0; }
.vol-related { background: var(--vol-marfil); }
.vol-also { background: #fff; }

.vol-section-head { text-align: center; margin-bottom: 64px; }
.vol-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  display: block;
  margin-bottom: 16px;
}
.vol-section-title {
  font-family: var(--vol-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0;
  line-height: 1.2;
}
.vol-section-title em { font-style: italic; color: var(--vol-borgona); }

.vol-sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.vol-sp-card { text-decoration: none; color: var(--vol-negro); display: block; }
.vol-sp-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 16px;
}
.vol-sp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.vol-sp-card:hover .vol-sp-card-img img { transform: scale(1.05); }
.vol-sp-card-title {
  font-family: var(--vol-serif);
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.3;
}
.vol-sp-card-price {
  font-size: 14px;
  color: var(--vol-borgona);
  letter-spacing: 0.05em;
}

/* --- RESPONSIVE — SINGLE PRODUCT --- */
@media (max-width: 968px) {
  .vol-product-grid { grid-template-columns: 1fr; gap: 40px; }
  .vol-gallery { position: static; }
  .vol-desc-grid { grid-template-columns: 1fr; gap: 24px; }
  .vol-desc-label span { position: static; }
  .vol-sp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vol-product-title { font-size: 28px; }
  .vol-product-main { padding: 32px 0 64px; }
  .vol-related, .vol-also, .vol-product-description { padding: 64px 0; }
}

/* ============================================
   NUCLEAR FIX — Override grid heredado en main
   ============================================ */

main.voluptia-product {
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  grid-template-areas: none !important;
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

/* Por si el contenedor PADRE de main también tiene grid */
body.single-product .site-content,
body.single-product .site-main,
body.single-product #primary,
body.single-product #content {
  display: block !important;
  grid-template-columns: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ============================================
   ARCHIVE PRODUCT — Listado por categoría
   ============================================ */

/* --- STOREFRONT OVERRIDES (archive) --- */
body.post-type-archive-product main.voluptia-archive,
body.tax-product_cat main.voluptia-archive {
  display: block !important;
  grid-template-columns: none !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

body.post-type-archive-product #secondary,
body.post-type-archive-product .widget-area,
body.post-type-archive-product .sidebar,
body.tax-product_cat #secondary,
body.tax-product_cat .widget-area,
body.tax-product_cat .sidebar {
  display: none !important;
}

body.post-type-archive-product .col-full,
body.tax-product_cat .col-full {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.post-type-archive-product #content,
body.post-type-archive-product .site-content,
body.post-type-archive-product #primary,
body.post-type-archive-product .content-area,
body.tax-product_cat #content,
body.tax-product_cat .site-content,
body.tax-product_cat #primary,
body.tax-product_cat .content-area {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* --- ARCHIVE BASE --- */
.voluptia-archive {
  background: var(--vol-marfil);
  color: var(--vol-negro);
  font-family: var(--vol-sans);
  width: 100%;
}
.voluptia-archive .vol-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* --- HERO BANNER FULL-WIDTH --- */
.vol-archive-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
}
.vol-archive-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
}
.vol-archive-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--vol-marfil);
  max-width: 800px;
  padding: 4rem 2rem;
  animation: vol-fade-up 1s ease both;
}
.vol-archive-hero__eyebrow {
  font-family: var(--vol-sans);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  margin: 0 0 1.5rem;
  font-weight: 400;
  display: block;
}
.vol-archive-hero__title {
  font-family: var(--vol-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
  color: #ffffff;
}
.vol-archive-hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
}
}
.vol-archive-hero__desc p { margin: 0; }

/* --- FILTERS BAR HORIZONTAL --- */
.vol-archive-filters {
  background: var(--vol-marfil);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(245, 239, 230, 0.95);
}
.vol-filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vol-filters-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  margin-right: 16px;
}
.vol-filters-cats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.vol-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vol-filter-chip {
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vol-negro);
  text-decoration: none;
  border: 1px solid rgba(10,10,10,0.15);
  transition: all 0.3s ease;
  background: transparent;
  white-space: nowrap;
}
.vol-filter-chip:hover {
  border-color: var(--vol-dorado);
  color: var(--vol-borgona);
}
.vol-filter-chip.is-active {
  background: var(--vol-negro);
  color: var(--vol-marfil);
  border-color: var(--vol-negro);
}

/* Ordenar dropdown (WooCommerce default) */
.vol-filters-sort .woocommerce-ordering {
  margin: 0;
}
.vol-filters-sort select {
  font-family: var(--vol-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(10,10,10,0.15);
  background: transparent;
  color: var(--vol-negro);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23B89968' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.vol-filters-sort select:focus {
  outline: none;
  border-color: var(--vol-dorado);
}

/* --- PRODUCTS GRID --- */
.vol-archive-products {
  padding: 64px 0 96px;
}
.vol-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  margin-bottom: 64px;
}

.vol-archive-card {
  text-decoration: none;
  color: var(--vol-negro);
  display: block;
  transition: transform 0.4s ease;
}
.vol-archive-card:hover {
  transform: translateY(-4px);
}

.vol-archive-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 20px;
}
.vol-archive-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.vol-archive-card:hover .vol-archive-card__img img {
  transform: scale(1.05);
}
.vol-archive-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vol-nude), var(--vol-dorado));
}

.vol-archive-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--vol-borgona);
  color: var(--vol-marfil);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}
.vol-archive-card__badge--out {
  background: rgba(10,10,10,0.7);
}

.vol-archive-card__info {
  text-align: center;
}
.vol-archive-card__title {
  font-family: var(--vol-serif);
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 8px;
  line-height: 1.3;
  color: var(--vol-negro);
}
.vol-archive-card__price {
  font-family: var(--vol-serif);
  font-size: 17px;
  color: var(--vol-borgona);
  letter-spacing: 0.02em;
}

/* --- PAGINATION --- */
.vol-archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.vol-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--vol-negro);
  text-decoration: none;
  border: 1px solid rgba(10,10,10,0.15);
  transition: all 0.3s ease;
  background: transparent;
}
.vol-archive-pagination .page-numbers:hover {
  border-color: var(--vol-dorado);
  color: var(--vol-borgona);
}
.vol-archive-pagination .page-numbers.current {
  background: var(--vol-negro);
  color: var(--vol-marfil);
  border-color: var(--vol-negro);
}
.vol-archive-pagination .page-numbers.dots {
  border: none;
}

/* --- EMPTY STATE --- */
.vol-archive-empty {
  text-align: center;
  padding: 96px 32px;
  border: 1px dashed rgba(184, 153, 104, 0.3);
  max-width: 600px;
  margin: 0 auto;
}
.vol-archive-empty__title {
  font-family: var(--vol-serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--vol-negro);
}
.vol-archive-empty__text {
  font-size: 14px;
  color: var(--vol-gris);
  margin: 0 0 32px;
  line-height: 1.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .vol-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 768px) {
  .voluptia-archive .vol-container { padding: 0 1.5rem; }
  .vol-archive-hero { min-height: 50vh; }
  .vol-archive-hero__content { padding: 3rem 1.5rem; }
  .vol-archive-filters {
    padding: 16px 0;
    position: relative;
  }
  .vol-filters-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .vol-filters-cats {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 8px;
  }
  .vol-filters-list {
    flex-wrap: nowrap;
  }
  .vol-archive-products {
    padding: 48px 0 64px;
  }
  .vol-archive-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vol-archive-card__title { font-size: 18px; }
}

.vol-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vol-contact-modal.is-open {
  display: block;
  opacity: 1;
}

.vol-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.vol-contact-modal__panel {
  position: relative;
  max-width: 720px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 64px);
  margin: 32px auto;
  background: var(--vol-marfil);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  transform: translateY(-20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.vol-contact-modal.is-open .vol-contact-modal__panel {
  transform: translateY(0);
}

.vol-contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--vol-negro);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}
.vol-contact-modal__close:hover {
  color: var(--vol-borgona);
}

.vol-contact-modal__content {
  padding: 56px 48px 48px;
}

.vol-contact-modal__head {
  text-align: center;
  margin-bottom: 40px;
}

.vol-contact-modal__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  margin-bottom: 12px;
  font-weight: 500;
}

.vol-contact-modal__title {
  font-family: var(--vol-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--vol-negro);
  line-height: 1.1;
}

.vol-contact-modal__subtitle {
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.65);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== FORM ===== */
.vol-contact-form {
  margin-bottom: 40px;
}

.vol-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.vol-contact-form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.vol-contact-form__row .vol-contact-form__field {
  margin-bottom: 0;
}

.vol-contact-form__field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vol-negro);
  margin-bottom: 10px;
  font-weight: 500;
}

.vol-contact-form__optional {
  color: rgba(10, 10, 10, 0.4);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.vol-contact-form__field input,
.vol-contact-form__field select,
.vol-contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--vol-sans);
  font-size: 14px;
  color: var(--vol-negro);
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.15);
  transition: border-color 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
}

.vol-contact-form__field input:focus,
.vol-contact-form__field select:focus,
.vol-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--vol-dorado);
  background: rgba(255, 255, 255, 0.5);
}

.vol-contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--vol-sans);
}

.vol-contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23B89968' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Status messages */
.vol-contact-form__status {
  margin: 16px 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  display: none;
}
.vol-contact-form__status.is-success {
  display: block;
  padding: 12px 16px;
  background: rgba(184, 153, 104, 0.1);
  border-left: 3px solid var(--vol-dorado);
  color: var(--vol-negro);
}
.vol-contact-form__status.is-error {
  display: block;
  padding: 12px 16px;
  background: rgba(92, 26, 27, 0.08);
  border-left: 3px solid var(--vol-borgona);
  color: var(--vol-borgona);
}

/* Buttons */
.vol-contact-form__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.vol-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--vol-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.vol-contact-btn--email {
  background: var(--vol-negro);
  color: var(--vol-marfil);
}
.vol-contact-btn--email:hover {
  background: var(--vol-borgona);
}
.vol-contact-btn--email:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.vol-contact-btn--whatsapp {
  background: transparent;
  color: var(--vol-negro);
  border: 1px solid #25D366;
}
.vol-contact-btn--whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.vol-contact-btn--whatsapp svg {
  color: #25D366;
  transition: color 0.3s ease;
}
.vol-contact-btn--whatsapp:hover svg {
  color: #fff;
}

/* Datos de contacto */
.vol-contact-modal__info {
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.vol-contact-modal__info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vol-contact-modal__info-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  font-weight: 500;
}

.vol-contact-modal__info-item a {
  font-family: var(--vol-serif);
  font-size: 0.95rem;
  color: var(--vol-negro);
  text-decoration: none;
  transition: color 0.3s ease;
}
.vol-contact-modal__info-item a:hover {
  color: var(--vol-borgona);
}

/* Bloquear scroll del body cuando el modal está abierto */
body.vol-modal-open {
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .vol-contact-modal__panel {
    margin: 16px auto;
    max-height: calc(100vh - 32px);
    width: calc(100% - 16px);
  }
  .vol-contact-modal__content {
    padding: 48px 24px 32px;
  }
  .vol-contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vol-contact-form__row .vol-contact-form__field {
    margin-bottom: 20px;
  }
  .vol-contact-form__actions {
    grid-template-columns: 1fr;
  }
  .vol-contact-modal__info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   AGE GATE — Verificación +18
   ============================================ */

/* Bloquear scroll del body cuando el age gate está visible */
html:not(.vol-age-confirmed) body {
  overflow: hidden;
}

.vol-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--vol-negro);
  animation: vol-fade-in 0.6s ease both;
}

/* Si ya confirmó la edad, ocultar el age gate */
html.vol-age-confirmed .vol-age-gate {
  display: none !important;
}

/* Si está saliendo, animar fade out */
.vol-age-gate.is-leaving {
  animation: vol-fade-out 0.4s ease forwards;
}

/* Fondo con imagen sutil + overlay */
.vol-age-gate__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 100%),
                    radial-gradient(ellipse at center, rgba(184,153,104,0.15) 0%, transparent 60%);
  z-index: 0;
}

.vol-age-gate__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  text-align: center;
  color: var(--vol-marfil);
  padding: 56px 32px;
  animation: vol-fade-up 1s ease 0.2s both;
}

.vol-age-gate__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.vol-age-gate__brand {
  font-family: var(--vol-serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--vol-marfil);
  line-height: 1;
}

.vol-age-gate__tagline {
  font-family: var(--vol-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--vol-dorado);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.vol-age-gate__divider {
  width: 60px;
  height: 1px;
  background: var(--vol-dorado);
  margin: 0 auto 32px;
}

.vol-age-gate__title {
  font-family: var(--vol-serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.3;
  color: var(--vol-marfil);
}

.vol-age-gate__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.75);
  margin: 0 0 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.vol-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.vol-age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--vol-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  width: 100%;
}

.vol-age-gate__btn--enter {
  background: var(--vol-dorado);
  color: var(--vol-negro);
  border-color: var(--vol-dorado);
}
.vol-age-gate__btn--enter:hover {
  background: var(--vol-marfil);
  border-color: var(--vol-marfil);
}

.vol-age-gate__btn--leave {
  background: transparent;
  color: rgba(245, 239, 230, 0.7);
  border-color: rgba(245, 239, 230, 0.3);
}
.vol-age-gate__btn--leave:hover {
  color: var(--vol-marfil);
  border-color: var(--vol-marfil);
}

.vol-age-gate__legal {
  font-size: 0.75rem;
  color: rgba(245, 239, 230, 0.5);
  line-height: 1.6;
  margin: 0;
}

.vol-age-gate__legal a {
  color: var(--vol-dorado);
  text-decoration: none;
  transition: color 0.3s ease;
}
.vol-age-gate__legal a:hover {
  color: var(--vol-marfil);
}

@keyframes vol-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vol-fade-out {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

@media (max-width: 640px) {
  .vol-age-gate__content {
    padding: 40px 20px;
  }
  .vol-age-gate__brand {
    font-size: 2rem;
  }
  .vol-age-gate__title {
    font-size: 1.3rem;
  }
  .vol-age-gate__text {
    font-size: 0.9rem;
  }
}

/* ============================================
   BLOG (GUÍA) — Listado de posts
   ============================================ */

/* Storefront overrides para blog */
body.blog main.voluptia-blog,
body.single-post main.voluptia-post,
body.home main.voluptia-blog {
  display: block !important;
  grid-template-columns: none !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

body.blog #secondary,
body.single-post #secondary,
body.blog .widget-area,
body.single-post .widget-area {
  display: none !important;
}

body.blog .col-full,
body.single-post .col-full {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.blog #content,
body.blog .site-content,
body.blog #primary,
body.single-post #content,
body.single-post .site-content,
body.single-post #primary {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* --- BLOG BASE --- */
.voluptia-blog,
.voluptia-post {
  background: var(--vol-marfil);
  color: var(--vol-negro);
  font-family: var(--vol-sans);
  width: 100%;
}

/* --- HERO --- */
.vol-blog-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vol-negro) 0%, var(--vol-borgona) 100%);
  overflow: hidden;
  padding: 4rem 2rem;
}
.vol-blog-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(184,153,104,0.2) 0%, transparent 70%);
  z-index: 0;
}
.vol-blog-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--vol-marfil);
  max-width: 700px;
  animation: vol-fade-up 1s ease both;
}
.vol-blog-hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.vol-blog-hero__title {
  font-family: var(--vol-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  color: var(--vol-marfil);
}
.vol-blog-hero__title em {
  font-style: italic;
  color: var(--vol-dorado);
}
.vol-blog-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.85);
  margin: 0;
}

/* --- BLOG SECTION --- */
.vol-blog-section {
  padding: 96px 0;
}
.vol-blog-section .vol-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.vol-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
  margin-bottom: 64px;
}
.vol-blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* --- POST CARD --- */
.vol-blog-card {
  background: transparent;
}
.vol-blog-card__link {
  text-decoration: none;
  color: var(--vol-negro);
  display: block;
  transition: transform 0.4s ease;
}
.vol-blog-card__link:hover {
  transform: translateY(-4px);
}

.vol-blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f5f5f5;
}
.vol-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.vol-blog-card__link:hover .vol-blog-card__img img {
  transform: scale(1.05);
}
.vol-blog-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vol-nude), var(--vol-dorado));
}

.vol-blog-card__body {
  padding: 0 8px;
}

.vol-blog-card__date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  display: block;
  margin-bottom: 12px;
}

.vol-blog-card__title {
  font-family: var(--vol-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin: 0 0 16px;
  line-height: 1.25;
  color: var(--vol-negro);
}

.vol-blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.65);
  margin: 0 0 20px;
}

.vol-blog-card__cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vol-borgona);
  font-weight: 500;
  transition: color 0.3s ease;
}
.vol-blog-card__link:hover .vol-blog-card__cta {
  color: var(--vol-dorado);
}

/* --- PAGINATION --- */
.vol-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.vol-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--vol-negro);
  text-decoration: none;
  border: 1px solid rgba(10, 10, 10, 0.15);
  transition: all 0.3s ease;
  background: transparent;
}
.vol-blog-pagination .page-numbers:hover {
  border-color: var(--vol-dorado);
  color: var(--vol-borgona);
}
.vol-blog-pagination .page-numbers.current {
  background: var(--vol-negro);
  color: var(--vol-marfil);
  border-color: var(--vol-negro);
}

/* --- EMPTY STATE --- */
.vol-blog-empty {
  text-align: center;
  padding: 96px 32px;
  border: 1px dashed rgba(184, 153, 104, 0.3);
  max-width: 600px;
  margin: 0 auto;
}
.vol-blog-empty__title {
  font-family: var(--vol-serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--vol-negro);
}
.vol-blog-empty__text {
  font-size: 14px;
  color: var(--vol-gris);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   SINGLE POST — Artículo individual
   ============================================ */

.voluptia-post {
  background: var(--vol-marfil);
}

.vol-post-article {
  padding-top: 64px;
}

.vol-post-header {
  text-align: center;
  padding-bottom: 48px;
}
.vol-post-header .vol-container {
  max-width: 800px;
}

.vol-post-back {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.3s ease;
}
.vol-post-back:hover {
  color: var(--vol-borgona);
}

.vol-post-meta {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  margin-bottom: 24px;
}

.vol-post-title {
  font-family: var(--vol-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--vol-negro);
}

.vol-post-excerpt {
  font-family: var(--vol-serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.65);
  margin: 0;
  font-weight: 300;
  font-style: italic;
}

.vol-post-hero-img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 64px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.vol-post-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vol-post-content {
  padding-bottom: 96px;
}
.vol-post-content .vol-container {
  max-width: 760px;
}

.vol-post-body {
  font-family: var(--vol-sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--vol-negro);
}
.vol-post-body p {
  margin: 0 0 28px;
}
.vol-post-body p:first-of-type::first-letter {
  font-family: var(--vol-serif);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  margin: 8px 16px 0 0;
  color: var(--vol-borgona);
  font-style: italic;
  font-weight: 400;
}
.vol-post-body h2 {
  font-family: var(--vol-serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 56px 0 24px;
  line-height: 1.2;
  color: var(--vol-negro);
}
.vol-post-body h3 {
  font-family: var(--vol-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 40px 0 16px;
  line-height: 1.3;
}
.vol-post-body a {
  color: var(--vol-borgona);
  text-decoration: underline;
  text-decoration-color: var(--vol-dorado);
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
.vol-post-body a:hover {
  color: var(--vol-dorado);
}
.vol-post-body strong {
  font-weight: 600;
  color: var(--vol-negro);
}
.vol-post-body blockquote {
  border-left: 3px solid var(--vol-dorado);
  padding: 16px 0 16px 32px;
  margin: 40px 0;
  font-family: var(--vol-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(10, 10, 10, 0.75);
  line-height: 1.5;
}
.vol-post-body ul,
.vol-post-body ol {
  margin: 0 0 28px;
  padding-left: 28px;
}
.vol-post-body ul li,
.vol-post-body ol li {
  margin-bottom: 12px;
  line-height: 1.7;
}
.vol-post-body ul {
  list-style: none;
  padding-left: 0;
}
.vol-post-body ul li {
  position: relative;
  padding-left: 28px;
}
.vol-post-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--vol-dorado);
}
.vol-post-body img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  display: block;
}
.vol-post-body hr {
  border: none;
  height: 1px;
  background: rgba(184, 153, 104, 0.3);
  margin: 56px auto;
  width: 60px;
}

/* CTA al final */
.vol-post-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--vol-negro) 0%, var(--vol-borgona) 100%);
  color: var(--vol-marfil);
}
.vol-post-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.vol-post-cta__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vol-dorado);
  display: block;
  margin-bottom: 16px;
}
.vol-post-cta__title {
  font-family: var(--vol-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--vol-marfil);
}
.vol-post-cta__text {
  font-size: 1rem;
  color: rgba(245, 239, 230, 0.8);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* Posts relacionados */
.vol-post-related {
  padding: 96px 0;
  background: #fff;
}
.vol-post-related .vol-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
  .vol-blog-grid,
  .vol-blog-grid--3 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vol-blog-section {
    padding: 64px 0;
  }
  .vol-blog-hero {
    min-height: 40vh;
    padding: 3rem 1.5rem;
  }
  .vol-post-title {
    font-size: 2rem;
  }
  .vol-post-body {
    font-size: 1rem;
  }
  .vol-post-body p:first-of-type::first-letter {
    font-size: 3.5rem;
  }
  .vol-post-body h2 {
    font-size: 1.5rem;
  }
}
/* Ocultar destino y cambio de dirección en carrito */
.woocommerce-cart .woocommerce-shipping-destination,
.woocommerce-cart .woocommerce-shipping-calculator,
.woocommerce-cart .shipping-calculator-button,
.woocommerce-cart .shipping-calculator-form {
    display: none !important;
}