/* =============================================================
   LEMONIK ATELIER — tienda.css
   Dirección estética: atelier editorial suave
   Serif Fraunces + Hanken Grotesk · rosa & dorado · textura sutil
   Reemplazo directo. Conserva todos los nombres de clase.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* ---------- Variables derivadas (las 4 principales vienen del header) ---------- */
:root {
    --ink: #2c1f20;
    --cream: #fff9f5;
    --cream-2: #fff3ee;
    --line: rgba(74, 55, 55, .10);
    --line-soft: rgba(74, 55, 55, .06);
    --shadow-sm: 0 6px 20px rgba(120, 75, 90, .08);
    --shadow-md: 0 18px 44px rgba(120, 75, 90, .12);
    --shadow-lg: 0 34px 70px rgba(120, 75, 90, .18);
    --radius: 26px;
    --radius-lg: 34px;
    --display: 'Fraunces', Georgia, serif;
    --body: 'Hanken Grotesk', system-ui, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--color-texto);
    background-color: var(--cream);
    background-image:
        radial-gradient(60% 50% at 85% -5%, color-mix(in srgb, var(--color-principal) 30%, transparent), transparent 70%),
        radial-gradient(50% 45% at -10% 15%, color-mix(in srgb, var(--color-acento) 16%, transparent), transparent 70%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Grano sutil sobre todo el sitio */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .035;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--color-principal); color: #fff; }

h1, h2, h3, h4, h5, h6 { font-family: var(--display); color: var(--ink); }

a { transition: color .25s var(--ease); }

/* ============================ TOPBAR ============================ */
.shop-topbar {
    background: linear-gradient(100deg, var(--color-principal), color-mix(in srgb, var(--color-acento) 65%, var(--color-principal)));
    color: #fff;
    font-size: 12px;
    letter-spacing: .04em;
    font-weight: 600;
    padding: 9px 0;
}
.shop-topbar span { display: inline-flex; align-items: center; }

/* ============================ HEADER ============================ */
.shop-header {
    background: color-mix(in srgb, var(--cream) 82%, transparent);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line-soft);
    z-index: 1000;
}
.shop-header .navbar { padding-top: 10px; padding-bottom: 10px; }

.shop-logo {
    max-height: 64px;
    object-fit: contain;
    transition: transform .4s var(--ease);
}
.navbar-brand:hover .shop-logo { transform: scale(1.04) rotate(-1deg); }

.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { color: var(--color-texto); }

.shop-nav-link {
    font-family: var(--body);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-texto);
    text-transform: uppercase;
    letter-spacing: .12em;
    position: relative;
    padding: 6px 2px;
}
.shop-nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    border-radius: 2px;
    background: var(--color-acento);
    transition: width .3s var(--ease);
}
.shop-nav-link:hover { color: var(--ink); }
.shop-nav-link:hover::after { width: 100%; }

.shop-actions { display: flex; align-items: center; gap: 10px; }

.shop-icon {
    width: 44px; height: 44px;
    border: none;
    background: transparent;
    color: var(--color-texto);
    display: grid;
    place-items: center;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    border-radius: 50%;
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.shop-icon:hover {
    color: var(--ink);
    background: var(--color-secundario);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 4px; right: 2px;
    min-width: 19px; height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--color-acento);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid var(--cream);
}

/* ============================ HERO ============================ */
.home-hero { padding: 56px 0 24px; position: relative; }

.hero-box {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, var(--color-secundario) 100%);
    border-radius: 42px;
    padding: 60px 56px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, .6);
}
/* burbujas decorativas */
.hero-box::before,
.hero-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    z-index: 0;
}
.hero-box::before {
    width: 280px; height: 280px;
    right: -70px; top: -90px;
    background: radial-gradient(circle, color-mix(in srgb, var(--color-principal) 55%, transparent), transparent 70%);
}
.hero-box::after {
    width: 200px; height: 200px;
    left: -60px; bottom: -70px;
    background: radial-gradient(circle, color-mix(in srgb, var(--color-acento) 40%, transparent), transparent 70%);
}
.hero-box > .row { position: relative; z-index: 1; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-acento);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 30px; height: 2px;
    background: var(--color-acento);
    display: inline-block;
}

.hero-title {
    font-family: var(--display);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 0;
}
.hero-title em { font-style: italic; color: var(--color-principal); font-weight: 500; }

.hero-text {
    font-size: 1.05rem;
    color: var(--color-texto);
    max-width: 460px;
    margin-top: 20px;
    opacity: .9;
}

.hero-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: var(--shadow-lg);
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px; height: 52px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow-sm);
    opacity: .95;
}
.carousel-control-prev { left: 18px; }
.carousel-control-next { right: 18px; }
.carousel-control-prev-icon,
.carousel-control-next-icon { filter: invert(1); width: 18px; height: 18px; }

/* ============================ SECCIONES ============================ */
.home-section { padding: 64px 0; }

.section-head {
    text-align: center;
    margin-bottom: 48px;
}
.section-head span {
    display: inline-block;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-acento);
    margin-bottom: 10px;
}
.section-head h2 {
    font-family: var(--display);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0;
    position: relative;
    display: inline-block;
}
.section-head h2::after {
    content: "";
    display: block;
    width: 54px; height: 3px;
    border-radius: 3px;
    background: var(--color-principal);
    margin: 16px auto 0;
}

/* ============================ CATEGORÍAS ============================ */
.category-card {
    display: block;
    text-decoration: none;
    color: var(--color-texto);
}
.category-circle {
    width: 118px; height: 118px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--color-secundario);
    color: var(--color-principal);
    font-size: 34px;
    padding: 5px;
    box-shadow: 0 0 0 1px var(--line), 0 14px 30px rgba(120, 75, 90, .12);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.category-circle img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.category-card:hover .category-circle {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 0 0 2px var(--color-principal), 0 22px 40px rgba(120, 75, 90, .2);
}
.category-card small {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .01em;
    color: var(--ink);
    transition: color .3s var(--ease);
}
.category-card:hover small { color: var(--color-principal); }

/* ============================ PRODUCTOS ============================ */
.product-card {
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.product-card > a {
    display: block;
    overflow: hidden;
    background: var(--color-secundario);
}
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--ease);
}
.product-card:hover img { transform: scale(1.07); }

.product-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-body h6 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 10px;
    min-height: 40px;
}

.price {
    font-family: var(--body);
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.old-price {
    font-weight: 600;
    font-size: 13.5px;
    color: #b7a5a5;
    text-decoration: line-through;
}

.agregar-carrito { margin-top: 14px !important; }

/* ============================ BOTONES ============================ */
.btn-pink {
    background: var(--color-principal);
    color: #fff;
    border-radius: 999px;
    border: none;
    font-family: var(--body);
    font-weight: 800;
    letter-spacing: .01em;
    padding: 13px 26px;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--color-principal) 45%, transparent);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn-pink:hover {
    background: var(--color-acento);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--color-acento) 45%, transparent);
}

.btn-light-pink {
    background: #fff;
    color: var(--color-principal);
    border: 1.5px solid var(--color-principal);
    border-radius: 999px;
    font-family: var(--body);
    font-weight: 800;
    padding: 12px 26px;
    transition: all .3s var(--ease);
}
.btn-light-pink:hover {
    background: var(--color-principal);
    color: #fff;
    transform: translateY(-2px);
}

/* Botones de las promo cards: rosa con texto blanco */
.promo-card .btn-light-pink{
    background: var(--color-principal);
    color: #fff;
    border-color: var(--color-principal);
}
.promo-card .btn-light-pink:hover{
    background: var(--color-acento);
    border-color: var(--color-acento);
    color: #fff;
}

/* ============================ PROMO CARDS ============================ */
.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.promo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--ease);
}
.promo-card:hover img { transform: scale(1.06); }
.promo-content {
    padding: 26px 28px 30px;
}
.promo-content h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 10px;
}
.promo-content p { color: var(--color-texto); opacity: .85; margin-bottom: 18px; }

/* ============================ COLECCIONES ============================ */
.collection-card {
    display: block;
    text-decoration: none;
    text-align: center;
    color: var(--ink);
}
.collection-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.collection-card:hover img {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-md);
}

/* 7 colecciones por fila en pantallas grandes */
@media (min-width: 992px){
    .colecciones-row > [class*="col-"]{
        flex: 0 0 auto;
        width: 14.2857%;   /* 100 / 7 */
    }
}

.collection-card strong {
    display: block;
    margin-top: 12px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 15px;
    transition: color .3s var(--ease);
}
.collection-card:hover strong { color: var(--color-principal); }

/* ============================ BENEFICIOS ============================ */
.benefits {
    padding: 30px 0 12px;
}
.benefit-box {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 30px 18px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}
.benefit-box i {
    font-size: 34px;
    color: var(--color-acento);
    margin-bottom: 12px;
    display: inline-block;
}
.benefit-box p {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
}

/* ============================ BLOG ============================ */
.blog-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--ease);
}
.blog-card:hover img { transform: scale(1.05); }
.blog-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-body h5 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 10px;
}
.blog-body p {
    color: var(--color-texto);
    opacity: .82;
    font-size: 14.5px;
    margin-bottom: 18px;
    flex: 1;
}
.blog-body .btn-light-pink { align-self: flex-start; }

/* ============================ FOOTER ============================ */
.footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 60px 0 26px;
    overflow: hidden;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-principal), var(--color-acento), var(--color-principal));
}
.footer-logo { max-width: 180px; max-height: 90px; object-fit: contain; }
.footer p { color: var(--color-texto); opacity: .82; font-size: 14.5px; }
.footer h6 {
    font-family: var(--display);
    color: var(--ink);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}
.footer a { color: var(--color-texto); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--color-principal); }
.footer ul li { margin-bottom: 9px; }
.footer hr { border-color: var(--line); opacity: 1; margin: 36px 0 18px; }

.social-link {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-secundario);
    color: var(--color-principal);
    font-size: 18px;
    transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.social-link:hover {
    background: var(--color-principal);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================ WHATSAPP FLOTANTE ============================ */
.whatsapp-float {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 30px;
    z-index: 1500;
    box-shadow: 0 14px 30px rgba(37, 211, 102, .45);
    transition: transform .3s var(--ease);
}
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    animation: waPulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================ CART DRAWER ============================ */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(44, 31, 32, .5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: .3s;
    z-index: 1998;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0; right: -480px;
    width: min(480px, 100%);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;        /* fuerza a que el scroll lo maneje .cart-items */
    background: var(--cream);
    z-index: 1999;
    transition: right .4s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -24px 0 60px rgba(44, 31, 32, .18);
}
.cart-drawer.active { right: 0; }

.cart-drawer-header {
    padding: 28px 26px 18px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-bottom: 1px solid var(--line-soft);
}
.cart-drawer-header h4 {
    font-family: var(--display);
    font-weight: 600;
    margin: 0;
    font-size: 26px;
    color: var(--ink);
}
.cart-drawer-header small { color: #998; }

.cart-close {
    border: none;
    background: var(--color-secundario);
    width: 38px; height: 38px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--ink);
    display: grid; place-items: center;
    transition: background .3s var(--ease);
}
.cart-close:hover { background: var(--color-principal); color: #fff; }

.cart-free-shipping { padding: 16px 26px; font-size: 13.5px; font-weight: 600; }
.shipping-bar {
    height: 6px; background: var(--color-secundario);
    border-radius: 999px; margin-top: 12px; overflow: hidden;
}
.shipping-bar div {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--color-principal), var(--color-acento));
    border-radius: 999px; transition: width .4s var(--ease);
}

.cart-items { flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 8px 26px; }
.cart-item {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
}
.cart-item-img {
    width: 82px; height: 82px;
    border-radius: 16px;
    object-fit: cover;
    background: var(--color-secundario);
}
.cart-item-info h6 { font-weight: 800; margin: 0 0 6px; font-size: 14.5px; color: var(--ink); }
.cart-item-info small { display: block; color: #998; margin-bottom: 6px; }
.cart-item-price { font-weight: 800; color: var(--ink); }
.cart-remove { border: none; background: transparent; color: #b8a; align-self: start; }
.cart-remove:hover { color: var(--color-principal); }

.qty-control {
    display: inline-flex; align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px; overflow: hidden; margin-top: 10px;
}
.qty-control button { width: 34px; height: 32px; border: none; background: #fff; font-size: 18px; color: var(--ink); }
.qty-control button:hover { background: var(--color-secundario); }
.qty-control span { min-width: 32px; text-align: center; font-weight: 700; }

.cart-empty { text-align: center; padding: 70px 20px; color: #998; }
.cart-empty i { font-size: 56px; color: var(--color-principal); }
.cart-empty h5 { margin-top: 16px; color: var(--ink); font-family: var(--display); font-weight: 600; }

.cart-suggestion { padding: 16px 26px 20px; }
.cart-suggestion h6 { font-family: var(--display); font-weight: 600; margin-bottom: 14px; color: var(--ink); }
.suggestion-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    padding: 14px;
    display: flex; align-items: center; gap: 14px;
}
.suggestion-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--color-secundario);
    display: grid; place-items: center;
    color: var(--color-principal); font-size: 24px;
}
.suggestion-card small { display: block; font-size: 11px; color: #998; text-transform: uppercase; letter-spacing: .08em; }
.suggestion-card strong { display: block; color: var(--ink); font-size: 14px; }
.suggestion-card span { font-size: 13px; color: var(--color-texto); }

.cart-footer { border-top: 1px solid var(--line-soft); padding: 18px 26px calc(24px + env(safe-area-inset-bottom)); background: #fff; }
.coupon-toggle { border: none; background: transparent; font-weight: 700; padding: 0; margin-bottom: 16px; color: var(--color-texto); }
.coupon-toggle:hover { color: var(--color-principal); }
.cart-total-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; color: var(--ink); }
.cart-total-line strong:last-child { font-family: var(--display); font-size: 20px; }

.cart-buttons { display: grid; grid-template-columns: 1fr 1.45fr; gap: 10px; }
.btn-cart-light, .btn-cart-dark {
    border-radius: 999px; padding: 14px 18px; text-align: center;
    text-decoration: none; font-weight: 800; transition: all .3s var(--ease);
}
.btn-cart-light { background: var(--color-secundario); color: var(--ink); }
.btn-cart-light:hover { background: #f6e3e8; }
.btn-cart-dark { background: var(--ink); color: #fff; }
.btn-cart-dark:hover { background: var(--color-principal); }

/* ============================ ANIMACIONES DE ENTRADA ============================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
.home-hero, .home-section, .benefits { animation: fadeUp .8s var(--ease) both; }
.home-section:nth-of-type(odd) { animation-delay: .05s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 991px) {
    .shop-actions { margin-top: 16px; padding-bottom: 12px; justify-content: center; }
    .shop-logo { max-height: 54px; }
    .navbar-nav { text-align: center; }
    .hero-box { padding: 40px 26px; border-radius: 32px; text-align: center; }
    .eyebrow, .hero-text { margin-left: auto; margin-right: auto; }
    .hero-box .d-flex { justify-content: center; }
    .hero-image { margin-top: 30px; max-height: 340px; }
    .cart-drawer { width: 100%; }
    .home-section { padding: 48px 0; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2.1rem; }
    .product-card img { height: 200px; }
    .category-circle { width: 92px; height: 92px; font-size: 26px; }
    .section-head { margin-bottom: 34px; }
}

main img { max-width: 100%; }
.hero-image      { max-height: 460px !important; object-fit: cover; }
.product-card img{ height: 250px; object-fit: cover; }            /* tarjetas antiguas */
.product-thumb img{ height: 100% !important; object-fit: cover; } /* tarjetas cuadradas del home */
.promo-card img  { height: 300px !important; object-fit: cover; }
.blog-card img   { height: 230px !important; object-fit: cover; }
.collection-card img { aspect-ratio: 1; height: auto !important; object-fit: cover; }
.category-circle img { width: 100%; height: 100%; object-fit: cover; }
