/* ========================================
   VIVIR LIGERO - ESTILOS PRINCIPALES
   Paleta: Verde Oliva Apagado, Beige, Crema, Café Topo, Terracota
   ======================================== */

:root {
    --color-header: #98A27B;
    --color-primary-bg: #F5F0E8;
    --color-secondary-bg: #E8DCCB;
    --color-primary-text: #5A4636;
    --color-secondary-text: #6E5B4B;
    --color-cream: #F0E8D8;
    --color-terracotta: #8B6F47;
    --color-button-green: #98A27B;
    --color-dark-text: #5A4636;
    --color-light-text: #6E5B4B;
}

/* ========================================
   RESET Y ESTILOS GLOBALES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-primary-bg);
    color: var(--color-dark-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-dark-text);
    margin-bottom: 1rem;
    font-weight: 500;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

p {
    font-size: 1rem;
    color: var(--color-secondary-text);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: var(--color-olive);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-taupe);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */

.navbar {
    background-color: #7BA4A1;
    padding: 10px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 190px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 170px;
    gap: 1rem;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 170px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block;
    flex-shrink: 0;
}

.navbar-logo {
    height: 170px !important;
    width: auto !important;
    min-width: unset !important;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-right: 0;
    flex-shrink: 0;
}

.navbar-logo img {
    height: 170px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block;
}

.navbar-title {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-item a {
    color: #F7F3EE;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.nav-item a:hover {
    color: #FFFFFF;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #F5F0E8;
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile slide-down menu */
.mobile-menu {
    display: none;
    background-color: #7BA4A1;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 1rem;
}

.mobile-menu ul li a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: #F5F0E8;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.mobile-menu ul li a:hover {
    background: rgba(255,255,255,0.12);
}

/* nav-right groups lang + cart */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-cart {
    font-size: 42px !important;
    width: 50px !important;
    height: 50px !important;
    color: #3D2817 !important;
    background-color: #F7F3EE !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    text-decoration: none;
}

.nav-cart:hover {
    transform: scale(1.1);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #A8B48A 0%, #98A27B 100%);
    color: var(--color-primary-text);
    padding: 5rem 4rem 7rem 4rem;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" preserveAspectRatio="none"><defs><linearGradient id="dune1" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23E8DCCB;stop-opacity:0" /><stop offset="100%" style="stop-color:%23E8DCCB;stop-opacity:0.6" /></linearGradient><linearGradient id="dune2" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23DCC8AD;stop-opacity:0" /><stop offset="100%" style="stop-color:%23DCC8AD;stop-opacity:0.5" /></linearGradient><linearGradient id="dune3" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23D0B89A;stop-opacity:0" /><stop offset="100%" style="stop-color:%23D0B89A;stop-opacity:0.4" /></linearGradient></defs><path d="M0,350 Q300,280 600,350 T1200,350 L1200,600 L0,600 Z" fill="url(%23dune1)"/><path d="M0,380 Q250,320 500,380 T1000,380 L1200,500 L1200,600 L0,600 Z" fill="url("#dune2#dune2")"/><path d="M0,420 Q400,350 800,420 T1200,420 L1200,600 L0,600 Z" fill="url("#dune3#dune3")"/></svg>');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-right {
    flex: 0 0 calc(50% - 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    max-width: 420px;
    height: 420px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-brand-name {
    display: none;
}

.hero-brand-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
    background-color: transparent;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #4A4A4A;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    font-style: italic;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #3A2A1F !important;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: block;
}

.hero h1 {
    display: block;
}

.hero-subtitle {
    display: none;
}

.hero-description {
    font-size: 20px;
    color: #5A5145 !important;
    margin-bottom: 2.4rem;
    font-style: italic;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-badge {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #6E5B4B !important;
}

.btn-primary {
    background-color: #7A6650;
    color: #F5EBDD;
    padding: 0.95rem 2.6rem;
    border: none;
    border-radius: 4px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    box-shadow: 0 3px 10px rgba(90, 70, 54, 0.12);
}

.btn-primary:hover {
    background-color: #7A6B57;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(90, 70, 54, 0.18);
}

.btn-secondary {
    background-color: transparent;
    color: #F5EFE5;
    padding: 0.95rem 2.6rem;
    border: 2px solid #D4C4B8;
    border-radius: 4px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(212, 196, 184, 0.25);
    color: #F5EFE5;
    border-color: #F5EFE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* HERO VISIBILITY OVERRIDE */
.hero-content,
.hero-content * {
    opacity: 1 !important;
    color: #5A4636 !important;
}

.hero-brand-name {
    color: #4A3B2F !important;
}

.hero-content .btn-primary,
.hero-content .btn-primary:hover {
    color: #F5EBDD !important;
}

.hero-title {
    color: #4A3B2F !important;
}

.hero-description {
    color: #6E5B4B !important;
}

/* ========================================
   SECCIÓN DE CATEGORÍAS
   ======================================== */

.categories-section {
    padding: 5rem 2rem;
    background-color: var(--color-light-cream);
}

.section-title {
    text-align: center;
    color: var(--color-dark-olive);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    background-color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-beige);
    font-size: 4rem;
}

.category-name {
    padding: 1.5rem;
    color: var(--color-olive);
    font-size: 1.2rem;
    font-weight: 400;
}

/* ========================================
   EXPERIENCIAS VIVIR LIGERO
   ======================================== */

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* category-media: wrapper ready for future slider */
.category-media {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.category-media video,
.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* category-title: card label */
.category-title {
    padding: 1.1rem 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--color-primary-text);
    text-align: center;
    letter-spacing: 0.3px;
}

.category-card-toggle.active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.category-expand-panel {
    display: none;
    max-width: 1200px;
    margin: 2.5rem auto 0;
}

.category-expand-panel.active {
    display: block;
    animation: slideIn 0.4s ease;
}

/* ========================================
   SECCIÓN PRODUCTOS DESTACADOS
   ======================================== */

.products-section {
    padding: 5rem 2rem;
    background-color: var(--color-cream);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.servicio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid #E5D9CB;
    transition: all 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.11);
}

.servicio-info {
    padding: 2.2rem 2rem;
}

.servicio-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-primary-text);
    margin-bottom: 1rem;
}

.servicio-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--color-secondary-text);
    line-height: 1.7;
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5D9CB;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--color-light-cream) 0%, var(--color-light-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-olive);
    font-size: 3.5rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    color: var(--color-olive);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--color-taupe);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.product-description {
    color: var(--color-light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    background-color: var(--color-olive);
    color: white;
    padding: 0.7rem;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background-color: var(--color-dark-olive);
}

/* ========================================
   SECCIÓN KITS DE REGALO
   ======================================== */

.gift-kits-section {
    padding: 5rem 2rem;
    background-color: var(--color-light-cream);
}

/* ========================================
   SECCIÓN PLANTAS
   ======================================== */

.plantas-section {
    padding: 5rem 2rem;
    background-color: var(--color-primary-bg);
}

.plantas-subtitle {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: var(--color-secondary-text);
    font-size: 1.05rem;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.plantas-service-text {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--color-secondary-text);
    font-size: 1.02rem;
    line-height: 1.7;
}

.plantas-shop-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--color-primary-text);
    font-size: 1.3rem;
    margin: 3rem 0 1.5rem;
}

.plantas-cta {
    text-align: center;
    margin: 2rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.plantas-cta-qr {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--color-text, #5C6B4A);
    font-size: 0.85rem;
}

.plantas-cta-qr img {
    width: 110px;
    height: 110px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-booking {
    font-size: 1.1rem;
    padding: 1.1rem 3.2rem;
    background-color: var(--color-button-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-booking:hover {
    background-color: #87926A;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   KIT GALLERY / CAROUSEL
   ======================================== */

.kit-gallery-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.kit-gallery {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.kit-gallery-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.kit-gallery-slide {
    flex: 0 0 100%;
    height: 420px;
}

.kit-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: var(--color-primary-bg);
}

/* Arrow buttons */
.kit-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: var(--color-primary-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.kit-gallery-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.08);
}

.kit-gallery-prev { left: 12px; }
.kit-gallery-next { right: 12px; }

/* Dot indicators */
.kit-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.kit-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C8B8A8;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.kit-gallery-dot.active {
    background: var(--color-primary-text);
    transform: scale(1.25);
}

/* Tarjetas de plantas dentro del carrusel */
.plant-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--color-cream);
}

.plant-slide-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-bg);
}

.plant-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plant-slide-emoji {
    font-size: 4rem;
}

.plant-slide-info {
    padding: 1.5rem;
    text-align: center;
}

.plant-slide-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--color-primary-text);
    margin-bottom: 0.5rem;
}

.plant-slide-description {
    color: var(--color-secondary-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.plant-slide-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--color-terracotta);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.plant-slide-whatsapp {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.plant-slide-whatsapp:hover {
    text-decoration: underline;
}

.plant-cart-link {
    display: none;
    margin-top: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--color-primary-text);
    text-decoration: underline;
}

.plant-cart-link.visible {
    display: inline-block;
}

/* ========================================
   SECCIÓN SOBRE LA ARTESANA
   ======================================== */

.about-section {
    padding: 5rem 2rem;
    background-color: var(--color-cream);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-taupe) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-beige);
    font-size: 5rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    color: var(--color-dark-olive);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p:first-of-type {
    font-style: italic;
    color: var(--color-taupe);
}

/* ========================================
   SECCIÓN CONTACTO
   ======================================== */

.contact-section {
    padding: 5rem 2rem 6rem 2rem;
    background-color: var(--color-secondary-bg);
}

.contact-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem auto;
    font-size: 1rem;
    color: var(--color-secondary-text);
    line-height: 1.75;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

/* WhatsApp side */
.contact-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    gap: 1rem;
    height: 100%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #4A7C59;
    color: #FFFFFF !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(74, 124, 89, 0.25);
}

.btn-whatsapp:hover {
    background-color: #3D6B4A;
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

.btn-whatsapp-icon {
    flex-shrink: 0;
    display: flex;
}

.contact-whatsapp-note {
    font-size: 0.85rem;
    color: var(--color-secondary-text);
    margin: 0;
}

.contact-appointment-btn {
    margin-top: 1.2rem;
}

/* Form side */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-field label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary-text);
    letter-spacing: 0.3px;
}

.contact-field input,
.contact-field textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--color-primary-text);
    background: white;
    border: 1px solid #D8CCBC;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.25s ease;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--color-terracotta);
}

.contact-submit {
    align-self: flex-start;
    margin-top: 0.4rem;
}

.contact-success,
.contact-error {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
}

.contact-success {
    background-color: #e8f0e0;
    color: #4a6741;
    border: 1px solid #a8c49a;
}

.contact-error {
    background-color: #f5e8e0;
    color: #7a4a36;
    border: 1px solid #d4a090;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background-color: #E8DCCB;
    color: #5A4636;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #5A4636;
    margin-bottom: 1.6rem;
    letter-spacing: 0.3px;
}

.footer-section a {
    color: #5A4636;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7A5A3A;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Instagram brand color */
.social-links a:nth-child(1) {
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.3);
}

/* WhatsApp brand color */
.social-links a:nth-child(2) {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.social-links a svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

.footer-divider {
    border-top: 1px solid rgba(90, 70, 54, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: #7A6B5B;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-item a {
        font-size: 15px;
    }

    .navbar-brand {
        height: 100px;
    }

    .navbar-brand img,
    .navbar-logo,
    .navbar-logo img {
        height: 100px !important;
        max-height: none !important;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 2rem 5rem 2rem;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero-left {
        flex: none;
        width: 100%;
        gap: 1.2rem;
    }

    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 0.8rem;
        justify-content: flex-start;
    }

    .btn-primary, .btn-secondary {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .experiencias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .category-media {
        height: 220px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .categories-section,
    .products-section,
    .gift-kits-section,
    .about-section,
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-submit {
        align-self: stretch;
    }
}

@media (max-width: 600px) {
    .hamburger {
        display: flex;
        order: 1;
    }

    .navbar-brand {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-menu {
        display: none !important;
    }

    .nav-right {
        order: 3;
        margin-left: auto;
    }

    .navbar {
        padding: 0.75rem 1rem;
        position: relative;
        min-height: unset;
    }

    .navbar-title {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .categories-grid,
    .products-grid,
    .experiencias-grid,
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ── PRODUCT DETAIL PAGE ── */
.pd-section {
    padding: 4rem 2rem;
    background-color: var(--color-primary-bg);
    min-height: 80vh;
}

.pd-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Gallery */
.pd-gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: #EDE5D8;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 20px rgba(90, 70, 54, 0.10);
}

.pd-gallery-track {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}

.pd-gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDE5D8;
}

.pd-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    border-radius: 12px;
}

.pd-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 240, 232, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #5A4636;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pd-gallery-nav:hover {
    background: rgba(245, 240, 232, 1);
}

.pd-gallery-prev { left: 10px; }
.pd-gallery-next { right: 10px; }

/* Thumbnails */
.pd-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.pd-thumb {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background-color: var(--color-secondary-bg);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.pd-thumb.active,
.pd-thumb:hover {
    border-color: #7A6650;
}

/* Info panel */
.pd-breadcrumb {
    font-size: 13px;
    color: #6E5B4B;
    margin-bottom: 0.75rem;
}

.pd-breadcrumb a {
    color: #6E5B4B;
    text-decoration: none;
}

.pd-breadcrumb a:hover {
    text-decoration: underline;
}

.pd-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #5A4636;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.pd-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #7A6650;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.pd-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.pd-block {
    border-left: 3px solid #7A6650;
    padding-left: 1.1rem;
}

.pd-block-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #5A4636;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.pd-block-text {
    font-size: 1rem;
    color: #6E5B4B;
    line-height: 1.75;
}

.pd-includes {
    margin-bottom: 2rem;
}

.pd-includes .pd-block-label {
    margin-bottom: 0.6rem;
}

.pd-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-includes-list li {
    font-size: 1rem;
    color: #6E5B4B;
    padding: 0.35rem 0;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.7;
}

.pd-includes-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #7A6650;
    font-size: 0.65rem;
    top: 0.45rem;
}

.pd-cart-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.pd-cart-note {
    font-size: 0.8rem;
    color: #6E5B4B;
    text-align: center;
}

.pd-back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 0.75rem 1.5rem;
    font-size: 18px;
    font-weight: 600;
    color: #5A4636;
    background-color: #E8DCCB;
    border: 2px solid #7A6650;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background-color 0.2s, color 0.2s;
}

.pd-back-link:hover {
    background-color: #7A6650;
    color: #F5F0E8;
    text-decoration: none;
}

/* Product detail responsive */
@media (max-width: 768px) {
    .pd-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pd-title {
        font-size: 1.6rem;
    }

    .pd-section {
        padding: 2rem 1rem;
    }
}

/* ── STORE / CATALOG PAGE ── */
.store-section {
    padding: 4rem 2rem 6rem;
    background-color: var(--color-primary-bg);
    min-height: 80vh;
}

.store-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #5A4636;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.store-subtitle {
    font-size: 1rem;
    color: #6E5B4B;
    letter-spacing: 0.3px;
}

.store-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.store-card {
    background-color: #FDFAF6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(90, 70, 54, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(90, 70, 54, 0.16);
}

.store-card-image-link {
    display: block;
    text-decoration: none;
}

.store-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #EDE5D8;
    overflow: hidden;
}

.store-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.2rem;
    transition: transform 0.3s ease;
}

.store-card:hover .store-card-image img {
    transform: scale(1.04);
}

.store-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.store-card-title-link {
    text-decoration: none;
}

.store-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #5A4636;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.store-card-title-link:hover .store-card-title {
    color: #7A6650;
}

.store-card-price {
    font-size: 1rem;
    font-weight: 600;
    color: #7A6650;
    margin: 0;
}

.store-card-description {
    font-size: 0.9rem;
    color: #6b5d4f;
    line-height: 1.5;
    margin: 0;
}

.store-card-actions {
    margin-top: auto;
    padding-top: 0.75rem;
}

.store-card-btn {
    display: block;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

@media (max-width: 900px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .store-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .store-title {
        font-size: 2rem;
    }
}

/* ── CART PAGE ── */
.cart-section {
    padding: 4rem 2rem 6rem;
    background-color: var(--color-primary-bg);
    min-height: 70vh;
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #5A4636;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

/* Items list */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ========================================
   BOTONES FLOTANTES (WhatsApp / Kelly)
   ======================================== */

.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 1100;
}

.floating-actions-left {
    right: auto;
    left: 24px;
    align-items: flex-start;
}

.floating-actions-left .floating-btn-tooltip {
    right: auto;
    left: 70px;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.floating-btn-whatsapp {
    background-color: #25D366;
}

.floating-btn-kelly {
    background-color: #5f7141;
    font-size: 1.6rem;
}

.floating-btn-icon {
    line-height: 1;
}

.floating-btn-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary-text);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
}

/* ========================================
   MODAL (Agendamiento AppointSuite / Kelly)
   ======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background-color: var(--color-primary-bg);
    border-radius: 12px;
    width: 100%;
    max-width: 720px;
    height: 80vh;
    max-height: 640px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background-color: var(--color-secondary-bg);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary-text);
    font-size: 1.1rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--color-primary-text);
    cursor: pointer;
}

.modal-body {
    flex: 1;
    position: relative;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.modal-fallback {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-primary-bg);
}

.modal-fallback.show {
    display: flex;
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 16px;
        right: 16px;
    }

    .floating-actions-left {
        right: auto;
        left: 16px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
    }

    .floating-btn-tooltip {
        display: none;
    }
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: #FDFAF6;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 10px rgba(90, 70, 54, 0.08);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #EDE5D8;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.cart-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #5A4636;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #7A6650;
    margin-bottom: 0.6rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-form {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #7A6650;
    background: transparent;
    color: #5A4636;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #E8DCCB;
}

.qty-value {
    font-size: 1rem;
    color: #5A4636;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-remove-link {
    font-size: 0.8rem;
    color: #9E8070;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.cart-remove-link:hover {
    color: #5A4636;
    border-bottom-color: #5A4636;
}

.cart-item-subtotal {
    font-size: 1rem;
    font-weight: 600;
    color: #7A6650;
    text-align: right;
    white-space: nowrap;
}

/* Summary panel */
.cart-summary {
    background: #FDFAF6;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 18px rgba(90, 70, 54, 0.10);
    position: sticky;
    top: 180px;
}

.cart-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #5A4636;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #6E5B4B;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E8DCCB;
}

.cart-total {
    font-weight: 700;
    color: #5A4636;
    font-size: 1.1rem;
}

.cart-summary-note {
    font-size: 0.8rem;
    color: #6E5B4B;
    margin: 0.75rem 0 1.25rem;
    text-align: center;
}

.cart-checkout-btn {
    display: block;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 0;
}

.cart-back-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7A6652;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cart-back-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* Empty cart */
.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

.cart-empty-text {
    font-size: 1.1rem;
    color: #6E5B4B;
    margin-bottom: 1.5rem;
}

/* Cart responsive */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }

    .cart-item-subtotal {
        grid-column: 2;
        text-align: left;
    }
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.cart-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 0.8rem;
    transition: color 0.2s;
}

.cart-icon-link:hover {
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -8px;
    background-color: var(--color-terracotta);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
    color: #fff;
}

.lang-active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.18);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

/* ── SHOP pill en el navbar ── */
.nav-shop {
    background-color: rgba(0, 0, 0, 0.25) !important;
    border-radius: 999px !important;
    padding: 0.35rem 1.1rem !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.nav-shop:hover {
    background-color: rgba(0, 0, 0, 0.40) !important;
    border-bottom: none !important;
    color: #fff !important;
}

/* En el menú móvil también */
.mobile-menu a.nav-shop {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 999px;
    margin: 0.25rem 1.5rem;
    padding: 0.7rem 1.5rem;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    border-bottom: none !important;
}
