/*
Theme Name: Silk Theme
Theme URI: http://example.com
Author: Usuario
Description: Tema elegante y minimalista para productos de belleza
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: silk-theme
*/

/* ========================================
   ESTILOS GENERALES
======================================== */

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background: var(--color-light);
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1400px;
    padding: 0 1rem;
    margin: 0 auto;
    width: 100%;
}

.section { padding: var(--spacing-xl) 0; }

.section-title {
    font-family: var(--font-accent);
    font-size: var(--fs-xl);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-dark);
    font-weight: 300;
}

.btn-primary {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: var(--fs-base);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    padding: 12px 28px;
    border: 2px solid var(--color-dark);
    border-radius: 50px;
    font-size: var(--fs-base);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-light);
}

/* ========================================
   HEADER
======================================== */

.header {
    background: var(--color-light);
    padding: var(--spacing-sm) 0;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: var(--fs-large);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-dark);
    transition: font-size 0.3s ease;
    overflow: hidden;
}

.logo img { width: auto; height: 56px; max-width: 180px; object-fit: contain; display: block; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav ul {
    display: flex;
    gap: 1.5rem;
    margin: 0; padding: 0;
    list-style: none;
}

.nav a {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text);
    transition: color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav a:hover { color: var(--color-accent); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-overlay.active { opacity: 1; visibility: visible; }

.nav-cuenta {
    background: transparent;
    padding: 8px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    border: 1.5px solid var(--color-accent);
    transition: background 0.25s ease, transform 0.2s ease !important;
}

.nav-cuenta:hover {
    background: var(--color-accent) !important;
    color: var(--color-light) !important;
    transform: translateY(-1px);
}

/* ========================================
   HERO
======================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    width: 100%;
    padding-top: 100px;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero .container { position: relative; z-index: 1; margin: 0; }

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    max-width: 650px;
    width: 100%;
    margin: 0; padding: 0;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.hero-text { z-index: 2; }

.hero-subtitle {
    font-size: var(--fs-small);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-main);
    font-size: var(--fs-hero);
    line-height: 1.2;
    color: var(--color-title);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.25);
}

.hero-description {
    font-size: var(--fs-medium);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    max-width: 500px;
    line-height: 1.8;
}

.hero-slogan {
    font-size: var(--fs-medium-large);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-text2);
    margin-bottom: var(--spacing-md);
}

.hero .btn-primary {
    padding: 16px 40px;
    font-size: var(--fs-medium);
    margin-top: 50px;
    background-color: var(--color-bottom);
}

/* ========================================
   VALORES
======================================== */

.valores {
    background: var(--color-light);
    padding: 4rem 0;
    overflow-x: hidden;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.valor-item { text-align: center; padding: 1rem 0.5rem; }

.valor-icon {
    width: 120px; height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.valor-icon img {
    width: 100%; height: 100%;
    object-fit: contain;
    transform: scale(1.8);
    max-width: none;
}

.valor-title {
    font-family: var(--font-accent);
    font-size: var(--fs-large);
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.3;
}

/* ========================================
   CARRUSEL
======================================== */

.carrusel-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-light);
    overflow: hidden;
}

.carrusel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.carrusel-header .section-title { margin-bottom: 0; }

/* ── BOTONES ALINEADOS EN FILA ── */
.carrusel-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-ver-todos {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    border: 1px solid rgba(44,44,44,0.2);
    padding: 10px 20px;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.btn-ver-todos:hover {
    background: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
}

.carrusel-btn {
    background: white;
    border: 1px solid rgba(44,44,44,0.15);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--color-dark);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.carrusel-btn:hover {
    background: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
}

.carrusel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carrusel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.carrusel-card {
    min-width: calc(25% - 1.125rem);
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.carrusel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.carrusel-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #faf8f6;
}

.carrusel-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carrusel-card:hover .carrusel-img img { transform: scale(1.04); }

.carrusel-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.carrusel-marca {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
}

.carrusel-info h3 {
    font-size: 0.92rem;
    color: var(--color-dark);
    font-weight: 500;
    line-height: 1.4;
}

.carrusel-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 1px;
    width: fit-content;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.carrusel-link:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.carrusel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carrusel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(44,44,44,0.2);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    border: none;
}

.carrusel-dot.active {
    background: var(--color-dark);
    transform: scale(1.2);
}

/* ── TABLET ── */
@media (max-width: 968px) {
    .carrusel-card { min-width: calc(48% - 0.75rem); }
}

/* ── MÓVIL ── */
@media (max-width: 640px) {
    .carrusel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .carrusel-header-right {
        flex-direction: row !important;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        justify-content: flex-end;
    }

    .carrusel-section .container {
        overflow: hidden;
        padding: 0 1rem;
    }

    .carrusel-wrapper { overflow: hidden; }

    .carrusel-card {
    min-width: unset !important;
    width: 78vw;
    flex-shrink: 0;
}

.carrusel-track {
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
}

.carrusel-img { height: 180px; }

    .carrusel-btn { width: 40px; height: 40px; }
}

/* ========================================
   CÓMO ELEGIMOS
======================================== */

.como-elegimos { background: #F5E6E8; padding: var(--spacing-xl) 0; }

.elegimos-grid {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    align-items: flex-start;
}

.elegimos-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    flex: 1;
}

.elegimos-item:nth-child(2),
.elegimos-item:nth-child(4) { margin-top: 60px; }

.elegimos-item:nth-child(2) .elegimos-image,
.elegimos-item:nth-child(4) .elegimos-image { order: 2; }

.elegimos-item:nth-child(2) .elegimos-text,
.elegimos-item:nth-child(4) .elegimos-text { order: 1; }

.elegimos-image {
    width: 100%;
    max-width: 280px;
    height: 280px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.elegimos-image img { width: 100%; height: 100%; object-fit: cover; }
.elegimos-text { padding: var(--spacing-sm) 0; }

.elegimos-text h3 {
    font-size: var(--fs-medium);
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
    font-weight: 400;
    line-height: 1.4;
}

/* ========================================
   TIPS & RUTINAS
======================================== */

.tips { padding: var(--spacing-xl) 0; background: var(--color-light); }

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.tip-card {
    position: relative;
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.tip-image { width: 100%; height: 100%; object-fit: cover; }

.tip-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: var(--spacing-md);
    color: var(--color-light);
}

.tip-overlay h3 { font-size: var(--fs-medium); font-weight: 500; }
.tip-card:focus-visible { outline: 2px solid var(--tip-accent); outline-offset: 4px; }

.tip-modal-overlay,
.prod-modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--tip-overlay-bg);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    backdrop-filter: blur(4px);
}

.tip-modal-overlay.active,
.prod-modal-overlay.active { opacity: 1; pointer-events: all; }

.tip-modal {
    background: var(--tip-modal-bg);
    border-radius: var(--tip-radius);
    width: min(720px, 96vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.4rem 2.4rem 2rem;
    position: relative;
    transform: translateY(30px) scale(.97);
    transition: transform .3s cubic-bezier(.22,.9,.36,1);
    box-shadow: 0 24px 64px rgba(0,0,0,.22);
}

.tip-modal-overlay.active .tip-modal { transform: translateY(0) scale(1); }

.tip-modal-close {
    position: absolute;
    top: 1.1rem; right: 1.3rem;
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    width: 34px; height: 34px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background .18s, color .18s;
}

.tip-modal-close:hover { background: var(--tip-accent2); color: #fff; border-color: var(--tip-accent2); }
.tip-modal-header { margin-bottom: 1.6rem; }

.tip-modal-badge {
    display: inline-block;
    background: var(--tip-accent);
    color: #fff;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .12em;
    padding: .28rem .8rem;
    border-radius: 100px;
    margin-bottom: .7rem;
    text-transform: uppercase;
}

.tip-modal-titulo {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 700;
    color: var(--tip-accent2);
    margin: 0 0 .5rem;
    line-height: 1.25;
}

.tip-modal-intro { font-size: .93rem; color: #666; line-height: 1.6; margin: 0; }

.tip-modal-pasos {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 2rem;
}

.tip-paso {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: .9rem 1rem;
    background: #f8f6f4;
    border-radius: 10px;
    border-left: 3px solid var(--tip-accent);
}

.tip-paso-num {
    min-width: 26px; height: 26px;
    background: var(--tip-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem; font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem;
}

.tip-paso-texto { font-size: .9rem; color: #444; line-height: 1.55; margin: 0; }

.tip-productos-titulo {
    font-size: 1rem; font-weight: 700;
    color: var(--tip-accent2);
    margin: 0 0 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tip-productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 520px) {
    .tip-productos-grid { grid-template-columns: 1fr 1fr; }
    .tip-modal { padding: 1.6rem 1.2rem 1.4rem; }
}

.tip-prod-card {
    background: #fafaf9;
    border: 1px solid #ece9e5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.tip-prod-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.tip-prod-img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #f3f1ef; padding: .5rem; }

.tip-prod-body {
    padding: .7rem .75rem .85rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.tip-prod-marca { font-size: .65rem; font-weight: 700; letter-spacing: .1em; color: var(--tip-accent); text-transform: uppercase; }
.tip-prod-nombre { font-size: .78rem; color: #333; font-weight: 600; line-height: 1.3; flex: 1; }
.tip-prod-precio { font-size: .82rem; font-weight: 700; color: var(--tip-accent2); margin-top: .3rem; }

.prod-modal {
    background: #fff;
    border-radius: var(--tip-radius);
    width: min(820px, 96vw);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(.97);
    transition: transform .3s cubic-bezier(.22,.9,.36,1);
    box-shadow: 0 24px 64px rgba(0,0,0,.22);
}

.prod-modal-overlay.active .prod-modal { transform: translateY(0) scale(1); }

.prod-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 360px;
}

@media (max-width: 580px) {
    .prod-modal-inner { grid-template-columns: 1fr; }
    .prod-modal-imagen { max-height: 220px; }
}

.prod-modal-imagen {
    background: #f5f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: var(--tip-radius) 0 0 var(--tip-radius);
    overflow: hidden;
}

.prod-modal-imagen img { width: 100%; max-height: 320px; object-fit: contain; }

.prod-modal-info {
    padding: 2.2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.prod-modal-marca { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tip-accent); }
.prod-modal-nombre { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 700; color: var(--tip-accent2); line-height: 1.25; margin: 0; }
.prod-modal-precio { font-size: 1.25rem; font-weight: 800; color: var(--tip-accent2); margin: .2rem 0; }
.prod-modal-desc { font-size: .85rem; color: #666; line-height: 1.6; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.prod-modal-beneficios { display: flex; flex-direction: column; gap: .3rem; margin: .3rem 0; }

.prod-modal-beneficio {
    font-size: .8rem; color: #555;
    line-height: 1.45;
    padding-left: 1rem;
    position: relative;
}

.prod-modal-beneficio::before {
    content: '✦';
    position: absolute;
    left: 0;
    font-size: .55rem;
    color: var(--tip-accent);
    top: .2rem;
}

.prod-modal-btn {
    display: inline-block;
    margin-top: auto;
    padding: .75rem 1.4rem;
    background: var(--tip-accent2);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: .85rem; font-weight: 600;
    text-align: center;
    transition: background .2s;
}

.prod-modal-btn:hover { background: var(--tip-accent); }

/* ========================================
   SOBRE NOSOTROS
======================================== */

.sobre-nosotros { padding: var(--spacing-xl) 0; background: white; }

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    margin-top: var(--spacing-lg);
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.sobre-image img { width: 100%; height: 500px; object-fit: cover; display: block; }

.sobre-text {
    border: 2px solid #2c3e50;
    background: white;
    padding: 40px;
    position: relative;
    z-index: 2;
    margin-top: 20vh;
    margin-left: -80px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sobre-text h3 { font-family: var(--font-secondary); font-size: var(--fs-xl); color: var(--color-dark); margin-bottom: var(--spacing-md); font-weight: 300; }
.sobre-text p { font-size: var(--fs-base); color: var(--color-text); line-height: 1.8; margin-bottom: var(--spacing-sm); }
.sobre-slogan { font-style: italic; color: var(--color-accent); font-size: var(--fs-medium); margin-top: var(--spacing-md); }

/* ========================================
   NUESTROS VALORES
======================================== */

.nuestros-valores { padding: var(--spacing-xl) 0; background: var(--color-light); }

.nuestros-valores-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.valores-image { width: 100%; }
.valores-image img { width: 150%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: block; }
.valores-list { display: flex; flex-direction: column; gap: var(--spacing-md); }
.valor-lista-item { display: flex; align-items: center; gap: var(--spacing-sm); }

.valor-lista-item:nth-child(2),
.valor-lista-item:nth-child(4) { margin-left: 200px; }

.valor-lista-icon { width: 250px; height: 120px; min-width: 120px; }
.valor-lista-icon img { width: 150%; height: 100%; object-fit: contain; }
.valor-lista-text { flex: 1; }
.valor-lista-text h4 { font-size: var(--fs-large); color: var(--color-dark); margin-bottom: var(--spacing-xs); font-weight: 500; }

/* ========================================
   CTA COMUNIDAD
======================================== */

.cta-comunidad {
    background-image: url('img/fondosectio.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: end;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
    background-color: rgba(0,0,0,0.15);
}

.cta-email-block { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; margin-top: var(--spacing-md); }
.cta-email-label { font-size: 0.9rem; color: var(--color-text3); letter-spacing: 0.02em; }
.cta-email-label span { font-weight: 700; color: var(--color-dark); border-bottom: 1.5px solid var(--color-dark); padding-bottom: 1px; }

.cta-email-btn {
    background: var(--color-dark);
    color: var(--color-light);
    border: none;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 0.78rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
}

.cta-email-btn:hover { background: #3a3a3a; transform: translateY(-1px); }
.cta-email-note { font-size: 0.72rem; color: var(--color-text3); letter-spacing: 0.03em; }

.cta-content h2 {
    font-family: var(--font-accent);
    font-size: var(--fs-hero);
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    max-width: 1000px;
    margin-left: auto;
    margin-right: 0;
    font-weight: 300;
    line-height: 1.3;
}

/* ========================================
   ASESORÍA
======================================== */

.asesoria {
    background: #F5E6E8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    overflow: hidden;
    margin: 0;
    align-items: end;
}

.asesoria-imagen { display: flex; align-items: flex-end; justify-content: center; line-height: 0; position: relative; }

.asesoria-imagen::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%; height: 90%;
    background: #E8D5C4;
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    z-index: 0;
}

.asesoria-imagen img { width: 75%; display: block; position: relative; z-index: 1; }

.asesoria-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2rem;
    gap: 2rem;
    text-align: left;
}

.asesoria-titulo { font-family: var(--font-accent); font-size: 4.5rem; color: var(--color-dark); font-weight: 300; line-height: 1.2; }

.asesoria-btn {
    display: inline-block;
    border: 1.5px solid var(--color-dark);
    color: var(--color-dark);
    padding: 16px 60px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border-radius: 2px;
}

.asesoria-redes { display: flex; gap: 1rem; }

.asesoria-red {
    width: 46px; height: 46px;
    background: var(--color-dark);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.asesoria-red:hover { background: var(--color-accent); color: var(--color-light); transform: translateY(-3px); }
.asesoria-btn:hover { background: var(--color-dark); color: var(--color-light); }

/* ========================================
   FOOTER
======================================== */

.footer { background: var(--color-dark); color: var(--color-light); padding: var(--spacing-lg) 0 var(--spacing-md); }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand { font-family: var(--font-secondary); font-size: var(--fs-xl); letter-spacing: 3px; }
.footer-section h4 { font-size: var(--fs-medium); margin-bottom: var(--spacing-sm); font-weight: 600; }
.footer-nav-title { font-size: var(--fs-medium); margin-bottom: var(--spacing-sm); font-weight: 600; }
.footer-section ul { display: flex; flex-direction: column; gap: var(--spacing-xs); }
.footer-section a { font-size: var(--fs-small); color: rgba(255,255,255,0.7); transition: color 0.3s ease; }
.footer-section a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: var(--spacing-sm); margin-top: var(--spacing-sm); }

.social-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover { background: var(--color-accent); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.5);
}

/* ========================================
   PRODUCTOS GRID
======================================== */

.productos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 2rem;
}

.producto-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.producto-card:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.producto-image {
    width: 100%; height: 200px;
    background: #faf8f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.producto-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.producto-card:hover .producto-image img { transform: scale(1.05); }

.producto-info { padding: 1rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.producto-marca { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.producto-nombre { font-size: 0.9rem; color: var(--color-dark); font-weight: 500; line-height: 1.4; }
.producto-precio { font-size: 1.1rem; font-weight: 700; color: var(--color-dark); }

.producto-card .btn-primary {
    margin-top: auto;
    padding: 10px 14px;
    font-size: 0.8rem;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */

@media (min-width: 1400px) {
    .valores-grid { max-width: 1300px; gap: 2.5rem; }
    .valor-icon { width: 140px; height: 140px; }
    .valor-title { font-size: 1.25rem; }
    .hero-content { max-width: 700px; margin-left: calc((100vw - 1600px) / 2 + 3rem); }
}

@media (min-width: 1800px) {
    .hero-content { margin-left: calc((100vw - 1800px) / 2 + 4rem); }
}

@media (min-width: 1200px) {
    .header .container { max-width: 1500px; padding: 0 2.5rem; }
    .nav ul { gap: 2.5rem; }
    .productos-grid { gap: 30px; }
}

@media (min-width: 1024px) {
    .header .container { max-width: 1400px; padding: 0 1rem; }
    .nav ul { gap: 2rem; }
    .nav a { font-size: 1.15rem; }
    .nav { margin-right: -5rem; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .productos-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .producto-image { height: 180px; }
}

@media (max-width: 968px) {
    .valores { padding: 3rem 0; }
    .valores-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 100%; }
    .valor-icon { width: 110px; height: 110px; }
    .valor-icon img { transform: scale(1.6); }
    .valor-title { font-size: 1rem; }

    .hero { min-height: 70vh; }
    .hero-content { padding: var(--spacing-md); gap: var(--spacing-xs); max-width: 600px; margin-left: 1.5rem; }
    .hero-title { font-size: clamp(5rem, 5vw, 7rem); margin-bottom: var(--spacing-sm); }
    .hero-description { font-size: var(--fs-base); max-width: 100%; }

    .carrusel-card { min-width: calc(48% - 0.75rem); }

    .elegimos-grid { flex-wrap: wrap; gap: var(--spacing-md); }
    .elegimos-item { flex: 1 1 45%; min-width: 280px; }
    .elegimos-item:nth-child(2), .elegimos-item:nth-child(4) { margin-top: 0; }
    .elegimos-item:nth-child(2) .elegimos-image, .elegimos-item:nth-child(4) .elegimos-image { order: 1; }
    .elegimos-item:nth-child(2) .elegimos-text, .elegimos-item:nth-child(4) .elegimos-text { order: 2; }
    .elegimos-image { max-width: 100%; height: 240px; }

    .nuestros-valores { padding: 3rem 0; }
    .nuestros-valores-content { gap: 2.5rem; }
    .valor-lista-item:nth-child(2), .valor-lista-item:nth-child(4) { margin-left: 60px; }
    .valor-lista-text h4 { font-size: var(--fs-medium); }

    .tips-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .productos-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .producto-image { height: 160px; }
    .producto-nombre { font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .logo { font-size: calc(var(--fs-large) * 0.85); letter-spacing: 1.5px; }
    .asesoria { grid-template-columns: 1fr; min-height: auto; }
    .asesoria-imagen { height: 500px; justify-content: center; }
    .asesoria-imagen::before { width: 60%; height: 85%; }
    .asesoria-imagen img { width: 60%; }
    .asesoria-info { padding: 3rem 2rem; gap: 1.5rem; align-items: center; text-align: center; }
    .asesoria-titulo { font-size: 2.5rem; }
    .asesoria-redes { justify-content: center; }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .sobre-content { grid-template-columns: 1fr 1fr; max-width: 900px; gap: 0; }
    .sobre-image img { height: 420px; }
    .sobre-text { margin-left: -50px; margin-top: 15vh; padding: 30px; }
    .sobre-text h3 { font-size: var(--fs-large); }
    .sobre-text p { font-size: var(--fs-small); line-height: 1.7; }
}

@media (max-width: 640px) {
    /* Header */
    .header { padding: calc(var(--spacing-sm) * 0.8) 0; }
    .header-content { padding: 0 1.5rem; }
    .logo { font-size: calc(var(--fs-large) * 0.75); letter-spacing: 1px; }
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 70px; right: -100%;
        width: 100%; max-width: 300px;
        background: var(--color-light);
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        height: calc(100vh - 70px);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.active { right: 0; }
    .nav ul { flex-direction: column; gap: 0; padding: 40px; align-items: flex-start; }
    .nav li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .nav li:last-child { border-bottom: none; }
    .nav a { display: block; padding: 1.2rem 0; font-size: var(--fs-base); font-weight: 400; }
    .nav a:hover { color: var(--color-accent); padding-left: 1rem; }

    /* Hero */
    .hero { min-height: 65vh; padding: 110px 1rem 2rem 1rem; width: 100%; margin: 0; }
    .hero .container { padding: 0; margin: 0; }
    .hero-content { padding: 0; text-align: start; gap: 0.75rem; max-width: 100%; margin: 0; width: 100%; }
    .hero-title { font-size: clamp(3rem, 10vw, 5rem); line-height: 1.2; margin-bottom: 0.75rem; }
    .hero-description { font-size: clamp(0.85rem, 3.5vw, 1rem); line-height: 1.5; margin-bottom: 0.75rem; }
    .hero-slogan { font-size: clamp(0.85rem, 3.5vw, 1.1rem); letter-spacing: 1.5px; margin-bottom: 1.25rem; }
    .hero .btn-primary { width: 100%; text-align: center; padding: 11px 18px; font-size: 0.9rem; margin-top: 0.7rem; }

    /* Valores */
    .valores { padding: 2.5rem 0; }
    .valores-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 0 1rem; max-width: 100%; }
    .valor-icon { width: 90px; height: 90px; }
    .valor-icon img { transform: scale(1.5); }
    .valor-title { font-size: 0.95rem; }

    /* Carrusel */
    .carrusel-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .carrusel-header-right { flex-direction: row !important; width: 100%; justify-content: space-between; }
    .carrusel-section .container { overflow: hidden; padding: 0 1rem; }
    .carrusel-wrapper { overflow: hidden; }
    .carrusel-card { min-width: 85%; }
    .carrusel-btn { width: 40px; height: 40px; }

    /* Productos */
    .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .producto-image { height: 140px; padding: 0.75rem; }
    .producto-info { padding: 0.75rem; gap: 0.4rem; }
    .producto-nombre { font-size: 0.85rem; }
    .producto-precio { font-size: 1.2rem; }
    .producto-card .btn-primary { padding: 8px 12px; font-size: 0.75rem; }

    /* Como elegimos */
    .como-elegimos { padding: 1rem 0; }
    .elegimos-grid { flex-direction: column; gap: 1rem; }
    .elegimos-item { flex: 1 1 100%; width: 100%; max-width: 100%; }
    .elegimos-item:nth-child(2), .elegimos-item:nth-child(4) { margin-top: 0; }
    .elegimos-item:nth-child(2) .elegimos-image, .elegimos-item:nth-child(4) .elegimos-image { order: 1; }
    .elegimos-item:nth-child(2) .elegimos-text, .elegimos-item:nth-child(4) .elegimos-text { order: 2; }
    .elegimos-image { max-width: 100%; width: 100%; height: 220px; margin: 0 auto; }
    .elegimos-text { padding: var(--spacing-sm) 0; width: 100%; }
    .elegimos-text h3 { font-size: var(--fs-base); line-height: 1.5; }

    /* Sobre */
    .sobre-nosotros { padding: 3rem 0; }
    .sobre-content { grid-template-columns: 1fr; max-width: 450px; gap: 0; padding: 0 1rem; }
    .sobre-image img { height: 380px; width: 100%; }
    .sobre-text { margin-left: 0; margin-top: -70px; padding: 75px 28px 28px; max-width: 90%; margin-left: auto; margin-right: auto; }
    .sobre-text h3 { font-size: var(--fs-medium); }
    .sobre-text p { font-size: 0.9rem; line-height: 1.6; }

    /* Valores lista */
    .nuestros-valores { padding: 2.5rem 0; }
    .nuestros-valores .container { padding: 0 1rem; }
    .nuestros-valores-content { grid-template-columns: 1fr; gap: 2rem; }
    .valores-image { width: 100%; max-width: 400px; margin: 0 auto; }
    .valores-list { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; }
    .valor-lista-item { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; width: 100%; max-width: 320px; }
    .valor-lista-item:nth-child(2), .valor-lista-item:nth-child(4) { margin-left: 0; }
    .valor-lista-text { width: 100%; text-align: center; }
    .valor-lista-text h4 { font-size: var(--fs-base); text-align: center; }

    /* CTA */
    .cta-comunidad { padding: 60px 1rem; text-align: center; }
    .cta-email-block { align-items: center; }
    .cta-content h2 { font-size: clamp(3rem, 6vw, 4rem); margin-left: 0; margin-right: 0; }

    /* Asesoria */
    .asesoria-imagen { height: 420px; }
    .asesoria-imagen img { width: 65%; }
    .asesoria-info { padding: 2.5rem 1.5rem; align-items: center; text-align: center; }
    .asesoria-titulo { font-size: 2rem; }
    .asesoria-btn { padding: 14px 40px; font-size: 0.9rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 375px) {
    .header-content { padding: 0 0.75rem; }
    .logo { font-size: calc(var(--fs-large) * 0.65); }
    .nav { width: 85%; }
    .hero { min-height: 60vh; padding: 100px 0.75rem 1.5rem; }
    .hero-title { font-size: clamp(2.5rem, 7vw, 3.5rem); line-height: 1.15; }
    .valores-grid { gap: 1.25rem; }
    .valor-icon { width: 80px; height: 80px; }
    .valor-icon img { transform: scale(1.4); }
    .valor-title { font-size: 0.9rem; }
    .carrusel-card { min-width: 90%; }
    .sobre-image img { height: 300px; }
    .sobre-text { margin-top: -50px; padding: 60px 20px 20px; max-width: 95%; border: 1.5px solid #2c3e50; }
}

@media (max-width: 320px) {
    .hero { padding: 90px 0.5rem 1.25rem; }
    .hero-title { font-size: 2.5rem; }
    .elegimos-image { height: 160px; }
}

/* ========================================
   WOOCOMMERCE CART
======================================== */

.woocommerce-cart .woocommerce,
.woocommerce-cart #page-content { padding: 60px 0 80px; }

.woocommerce-cart .woocommerce>form,
.woocommerce-cart .woocommerce { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.woocommerce-cart form.woocommerce-cart-form { flex: 1 1 580px; }
.woocommerce-cart .cart-collaterals { flex: 0 1 340px; position: sticky; top: 120px; }

.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.woocommerce-cart table.shop_table thead { background: transparent; border-bottom: 1px solid rgba(0,0,0,0.07); }

.woocommerce-cart table.shop_table thead th {
    font-family: var(--font-secondary);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: #999; padding: 1.2rem 1.5rem; border: none;
}

.woocommerce-cart table.shop_table tbody tr.cart_item { border-bottom: 1px solid rgba(0,0,0,0.06); transition: background 0.2s; }
.woocommerce-cart table.shop_table tbody tr.cart_item:last-child { border-bottom: none; }
.woocommerce-cart table.shop_table tbody tr.cart_item:hover { background: #fafaf8; }
.woocommerce-cart table.shop_table td { padding: 1.5rem; vertical-align: middle; border: none; }
.woocommerce-cart table.shop_table td.product-thumbnail { width: 90px; padding-right: 0.5rem; }
.woocommerce-cart table.shop_table td.product-thumbnail img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; display: block; }
.woocommerce-cart table.shop_table td.product-name { padding-left: 1rem; }
.woocommerce-cart table.shop_table td.product-name a { font-family: var(--font-secondary); font-size: 0.95rem; font-weight: 600; color: var(--color-dark); text-decoration: none; display: block; margin-bottom: 4px; transition: color 0.2s; }
.woocommerce-cart table.shop_table td.product-name a:hover { color: var(--color-accent); }
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal { font-family: var(--font-secondary); font-size: 1rem; font-weight: 600; color: var(--color-dark); white-space: nowrap; }

.woocommerce-cart table.shop_table td.product-quantity .quantity { display: flex; align-items: center; gap: 6px; background: #f5f4f0; border-radius: 50px; padding: 4px 10px; width: fit-content; }
.woocommerce-cart .quantity input.qty { width: 36px; border: none; background: transparent; text-align: center; font-size: 0.9rem; font-weight: 600; color: var(--color-dark); -moz-appearance: textfield; }
.woocommerce-cart .quantity input.qty::-webkit-outer-spin-button,
.woocommerce-cart .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.woocommerce-cart table.shop_table td.product-remove { width: 40px; text-align: center; }
.woocommerce-cart table.shop_table td.product-remove a.remove { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #f2f2f2; color: #aaa !important; font-size: 1.1rem; text-decoration: none; transition: background 0.2s, color 0.2s; margin: 0 auto; }
.woocommerce-cart table.shop_table td.product-remove a.remove:hover { background: #fde8e8; color: #e05252 !important; }

.woocommerce-cart table.shop_table tr.actions td { padding: 1.2rem 1.5rem; background: #f9f8f5; border-top: 1px solid rgba(0,0,0,0.06); }
.woocommerce-cart .coupon { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.woocommerce-cart .coupon label { display: none; }
.woocommerce-cart .coupon #coupon_code { flex: 1; min-width: 140px; max-width: 220px; padding: 10px 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 0.85rem; color: var(--color-dark); outline: none; }
.woocommerce-cart .coupon #coupon_code:focus { border-color: var(--color-accent); }
.woocommerce-cart .coupon .button { padding: 10px 20px; background: transparent; border: 1px solid var(--color-dark); color: var(--color-dark); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 6px; cursor: pointer; transition: all 0.2s; }
.woocommerce-cart .coupon .button:hover { background: var(--color-dark); color: #fff; }
.woocommerce-cart button[name="update_cart"] { float: right; padding: 10px 20px; background: transparent; border: 1px solid #ccc; color: #999; font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border-radius: 6px; cursor: pointer; transition: all 0.2s; }
.woocommerce-cart button[name="update_cart"]:not([disabled]):hover { border-color: var(--color-dark); color: var(--color-dark); }

.woocommerce-cart .cart_totals { background: #fff; border-radius: 12px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 2rem; }
.woocommerce-cart .cart_totals h2 { font-family: var(--font-secondary); font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #999; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
.woocommerce-cart .cart_totals table { width: 100%; border-collapse: collapse; }
.woocommerce-cart .cart_totals table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.woocommerce-cart .cart_totals table tr:last-child { border-bottom: none; }
.woocommerce-cart .cart_totals table th, .woocommerce-cart .cart_totals table td { padding: 0.9rem 0; border: none; vertical-align: middle; }
.woocommerce-cart .cart_totals table th { font-family: var(--font-secondary); font-size: 0.85rem; font-weight: 500; color: #888; text-align: left; }
.woocommerce-cart .cart_totals table td { text-align: right; font-size: 0.95rem; font-weight: 600; color: var(--color-dark); }
.woocommerce-cart .cart_totals tr.order-total th, .woocommerce-cart .cart_totals tr.order-total td { padding-top: 1.2rem; border-top: 2px solid rgba(0,0,0,0.1); }
.woocommerce-cart .cart_totals tr.order-total th { font-size: 0.95rem; font-weight: 700; color: var(--color-dark); }
.woocommerce-cart .cart_totals tr.order-total td { font-size: 1.25rem; color: var(--color-dark); }

.woocommerce-cart .wc-proceed-to-checkout { margin-top: 1.5rem; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart a.checkout-button { display: block; width: 100%; text-align: center; padding: 16px 24px; background: var(--color-dark); color: #fff !important; font-family: var(--font-secondary); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart a.checkout-button:hover { background: var(--color-accent); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error { border-radius: 8px; margin-bottom: 1.5rem; padding: 1rem 1.5rem; font-size: 0.9rem; }

@media (max-width: 768px) {
    .woocommerce-cart .woocommerce { flex-direction: column; gap: 2rem; padding: 0 1rem; }
    .woocommerce-cart form.woocommerce-cart-form, .woocommerce-cart .cart-collaterals { flex: 1 1 100%; position: static; }
    .woocommerce-cart table.shop_table thead { display: none; }
    .woocommerce-cart table.shop_table,
    .woocommerce-cart table.shop_table tbody,
    .woocommerce-cart table.shop_table tr,
    .woocommerce-cart table.shop_table td { display: block; width: 100%; }
    .woocommerce-cart table.shop_table tr.cart_item { display: grid; grid-template-columns: 80px 1fr 40px; grid-template-rows: auto auto; gap: 0.5rem 1rem; padding: 1.2rem; align-items: center; }
    .woocommerce-cart table.shop_table td { padding: 0; }
    .woocommerce-cart table.shop_table td.product-thumbnail { grid-row: 1 / 3; }
    .woocommerce-cart table.shop_table td.product-name { grid-column: 2; grid-row: 1; padding: 0; }
    .woocommerce-cart table.shop_table td.product-quantity { grid-column: 2; grid-row: 2; }
    .woocommerce-cart table.shop_table td.product-remove { grid-column: 3; grid-row: 1; }
    .woocommerce-cart table.shop_table td.product-price,
    .woocommerce-cart table.shop_table td.product-subtotal { display: none; }
    .woocommerce-cart table.shop_table tr.actions td { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
    .woocommerce-cart button[name="update_cart"] { float: none; }
}