:root {
    --color-primary: #0f3d3e;
    --color-primary-dark: #082f30;
    --color-charcoal: #1f1f1f;
    --color-charcoal-soft: #353535;
    --color-coral: #ff6b57;
    --color-coral-dark: #e95543;
    --color-gold: #c8a15a;
    --color-sand: #e7dfd4;
    --color-cream: #fbf7ef;
    --color-white: #ffffff;
    --color-muted: #6b7280;
    --color-border: #ece5da;
    --color-gray: #f4f4f2;
    --shadow-soft: 0 18px 50px rgba(15, 61, 62, 0.11);
    --shadow-card: 0 12px 35px rgba(15, 61, 62, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1240px;
    --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.45;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 25px rgba(15, 61, 62, 0.2);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-primary);
    border-color: rgba(15, 61, 62, 0.25);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
}

.btn-gold {
    background: var(--color-gold);
    color: #231a0d;
}

.btn-footer {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-footer:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 239, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(236, 229, 218, 0.9);
}

.header-main {
    min-height: 86px;
    display: grid;
    grid-template-columns: 260px minmax(320px, 1fr) 260px;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-bag {
    position: relative;
    width: 56px;
    height: 48px;
    display: inline-block;
    background: linear-gradient(135deg, #0f3d3e, #083233);
    border-radius: 12px 12px 14px 14px;
    box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.08);
}

.brand-bag::before,
.brand-bag::after {
    content: "";
    position: absolute;
    top: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f9fafb;
}

.brand-bag::before {
    left: 16px;
}

.brand-bag::after {
    right: 16px;
}

.brand-bag__handle {
    position: absolute;
    left: 13px;
    top: -18px;
    width: 30px;
    height: 26px;
    border: 5px solid var(--color-gold);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
}

.brand-bag__dot {
    position: absolute;
    top: 9px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--color-coral);
    border: 3px solid var(--color-cream);
    border-radius: 50%;
}

.brand-bag__smile {
    position: absolute;
    left: 16px;
    top: 30px;
    width: 24px;
    height: 13px;
    border: 4px solid #f9fafb;
    border-top: 0;
    border-radius: 0 0 22px 22px;
}

.brand-bag--large {
    width: 178px;
    height: 152px;
    border-radius: 28px 28px 34px 34px;
}

.brand-bag--large::before,
.brand-bag--large::after {
    width: 16px;
    height: 16px;
    top: 56px;
}

.brand-bag--large::before {
    left: 55px;
}

.brand-bag--large::after {
    right: 55px;
}

.brand-bag--large .brand-bag__handle {
    width: 88px;
    height: 78px;
    left: 45px;
    top: -56px;
    border-width: 12px;
    border-bottom: 0;
    border-radius: 70px 70px 0 0;
}

.brand-bag--large .brand-bag__dot {
    width: 42px;
    height: 42px;
    right: -18px;
    top: 22px;
    border-width: 6px;
}

.brand-bag--large .brand-bag__smile {
    width: 78px;
    height: 44px;
    left: 50px;
    top: 78px;
    border-width: 10px;
    border-top: 0;
    border-radius: 0 0 70px 70px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--color-charcoal);
}

.brand-text span:first-child {
    font-size: 1.45rem;
}

.brand-text span:last-child {
    font-size: 1.25rem;
}

.brand-text strong {
    color: var(--color-coral);
    font-weight: 900;
}

.search-bar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 190px 56px;
    min-height: 54px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 61, 62, 0.06);
}

.search-bar input,
.search-bar select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 20px;
    color: var(--color-charcoal);
}

.search-bar select {
    border-left: 1px solid var(--color-border);
    color: var(--color-muted);
}

.search-bar button {
    border: 0;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.header-action {
    position: relative;
    border: 0;
    background: transparent;
    color: var(--color-charcoal);
    display: grid;
    justify-items: center;
    gap: 2px;
    min-width: 58px;
}

.header-action span {
    font-size: 1.35rem;
    line-height: 1;
}

.header-action small {
    font-size: 0.74rem;
    font-weight: 700;
}

.header-action em,
.mobile-cart em {
    position: absolute;
    top: -8px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-grid;
    place-items: center;
    background: var(--color-coral);
    color: var(--color-white);
    font-size: 0.68rem;
    font-style: normal;
    border-radius: 999px;
    font-weight: 900;
}

.mobile-cart {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: 50%;
}

.category-nav-wrap {
    border-top: 1px solid rgba(236, 229, 218, 0.75);
}

.category-nav {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav button {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: var(--color-charcoal);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.category-nav button:hover,
.category-nav button.is-active,
.category-nav__offer {
    color: var(--color-coral);
}

.category-nav__all {
    color: var(--color-primary) !important;
}

.hero {
    padding: 34px 0 22px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.hero-slider__track {
    display: flex;
    transition: transform 0.35s ease;
}

.hero-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 460px;
    background:
        radial-gradient(circle at 20% 20%, rgba(200, 161, 90, 0.12), transparent 30%),
        linear-gradient(135deg, #fffaf2, #f4ecdf);
}

.hero-slide__content {
    padding: 58px 48px 58px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide h1 {
    margin: 0;
    max-width: 560px;
    font-size: clamp(3rem, 5.8vw, 5.7rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
    color: var(--color-charcoal);
}

.hero-slide h1 span {
    color: var(--color-coral);
}

.hero__lead {
    max-width: 540px;
    margin: 24px 0 0;
    color: var(--color-charcoal-soft);
    font-size: 1.08rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(236, 229, 218, 0.95);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-slide__media {
    position: relative;
    min-height: 460px;
    overflow: hidden;
}

.hero-slide__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(251, 247, 239, 0.9), rgba(251, 247, 239, 0.08) 38%, rgba(15, 61, 62, 0.06)),
        radial-gradient(circle at 60% 42%, rgba(255, 255, 255, 0.08), transparent 38%);
    pointer-events: none;
}

.hero-slide__media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider__controls {
    position: absolute;
    left: 58px;
    bottom: 24px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-slider__controls button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 61, 62, 0.25);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider__controls button.is-active {
    width: 32px;
    background: var(--color-primary);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.trust-strip article {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 22px;
    border-right: 1px solid var(--color-border);
}

.trust-strip article:last-child {
    border-right: 0;
}

.trust-strip span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f6efe4;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.trust-strip h3 {
    margin: 0 0 4px;
    font-size: 0.98rem;
}

.trust-strip p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.categories-section,
.catalog-section,
.discover-section,
.confidence-section {
    padding: 36px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -0.045em;
}

.section-head a {
    color: var(--color-primary);
    font-weight: 900;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-cards--image button {
    position: relative;
    min-height: 190px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    display: block;
    text-align: left;
    box-shadow: 0 10px 28px rgba(15, 61, 62, 0.055);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-cards--image button:hover,
.category-cards--image button.is-active {
    transform: translateY(-4px);
    border-color: rgba(15, 61, 62, 0.28);
    box-shadow: var(--shadow-card);
}

.category-card__image {
    position: absolute;
    inset: 0;
    display: block;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.category-cards--image button:hover .category-card__image img {
    transform: scale(1.06);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    display: block;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(8, 47, 48, 0.78)),
        linear-gradient(90deg, rgba(15, 61, 62, 0.72), rgba(15, 61, 62, 0.08));
}

.category-card__content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 4px;
}

.category-card__content strong {
    font-size: 1.15rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.category-card__content small {
    max-width: 220px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.25;
}

.category-cards--image button[data-category="ofertas"] .category-card__overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(255, 107, 87, 0.78)),
        linear-gradient(90deg, rgba(15, 61, 62, 0.52), rgba(255, 107, 87, 0.22));
}

.section-head--catalog {
    align-items: center;
}

.catalog-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-tools select,
.btn-filter-reset {
    min-height: 42px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: 999px;
    padding: 0 14px;
    color: var(--color-charcoal);
    font-weight: 800;
}

.btn-filter-reset {
    color: var(--color-primary);
}

.active-filter {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(15, 61, 62, 0.08);
    color: var(--color-primary);
    font-size: 0.86rem;
    font-weight: 900;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 61, 62, 0.055);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(15, 61, 62, 0.2);
}

.product-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    background: #f7efe4;
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transition: transform 0.25s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.04);
}

.product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--color-white);
}

.badge--new {
    background: var(--color-gold);
    color: #241a0d;
}

.badge--offer {
    background: var(--color-coral);
}

.badge--featured {
    background: var(--color-primary);
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-coral);
    z-index: 3;
}

.favorite-btn.is-active {
    background: var(--color-coral);
    color: var(--color-white);
    border-color: var(--color-coral);
}

.product-card__body {
    padding: 18px;
}

.product-card__category {
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-card h3 {
    min-height: 44px;
    margin: 8px 0 8px;
    font-size: 1rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.product-card__desc {
    min-height: 39px;
    margin: 0 0 12px;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.product-card__price strong {
    font-size: 1.05rem;
}

.product-card__price del {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-muted);
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.stars {
    color: var(--color-gold);
    letter-spacing: -0.04em;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 9px;
}

.product-card__actions button {
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(15, 61, 62, 0.25);
    background: #fdfbf8;
    color: var(--color-primary);
    font-weight: 900;
}

.product-card__actions button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-card__actions .whatsapp-card {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.05rem;
}

.product-card__details {
    width: 100%;
    margin-top: 9px;
    min-height: 38px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    font-weight: 800;
}

.product-card__details:hover {
    color: var(--color-primary);
}

.empty-state {
    padding: 48px 20px;
    text-align: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.empty-state h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.empty-state p {
    color: var(--color-muted);
}


.editorial-banner__inner {
    min-height: 265px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(15, 61, 62, 0.18);
    background:
        linear-gradient(115deg, var(--color-primary) 0 42%, transparent 42%),
        linear-gradient(135deg, #efe4d1, #fffaf2);
    box-shadow: var(--shadow-soft);
}

.editorial-banner__content {
    padding: 44px;
    color: var(--color-white);
}

.editorial-banner__content h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.editorial-banner__content p:not(.eyebrow) {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.84);
}

.editorial-banner__visual {
    position: relative;
    min-height: 265px;
}

.decor {
    position: absolute;
    bottom: 40px;
    border-radius: 18px;
    box-shadow: 0 22px 36px rgba(31, 31, 31, 0.12);
}

.decor--one {
    width: 95px;
    height: 115px;
    left: 15%;
    background:
        radial-gradient(circle at 50% 35%, #ffca7a 0 13%, transparent 14%),
        linear-gradient(180deg, #8e6238, #4e2d18);
}

.decor--two {
    width: 120px;
    height: 70px;
    left: 36%;
    background:
        radial-gradient(circle at 50% 50%, #fff8e8 0 48%, transparent 49%),
        var(--color-gold);
    border-radius: 50%;
}

.decor--three {
    width: 190px;
    height: 150px;
    right: 14%;
    background:
        radial-gradient(circle at 50% 18%, #d9e5c2 0 23%, transparent 24%),
        linear-gradient(180deg, #fff, #f2eadf);
}

.mini-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.mini-product {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.mini-product img {
    width: 78px;
    height: 72px;
    object-fit: contain;
    background: #f7efe4;
    border-radius: 12px;
    padding: 8px;
}

.mini-product h3 {
    margin: 0 0 6px;
    font-size: 0.88rem;
    line-height: 1.15;
}

.mini-product strong {
    color: var(--color-primary);
    font-size: 0.86rem;
}

.confidence-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.confidence-card article {
    padding: 24px;
    border-right: 1px solid var(--color-border);
}

.confidence-card article:last-child {
    border-right: 0;
}

.confidence-card span {
    font-size: 1.6rem;
}

.confidence-card strong {
    display: block;
    margin: 10px 0 6px;
}

.confidence-card p {
    margin: 0;
    color: var(--color-muted);
}

.site-footer {
    margin-top: 36px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(135deg, #092f30, #062526);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 34px;
    padding: 48px 0;
}

.brand--footer .brand-text {
    color: var(--color-white);
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid h3 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.footer-grid a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
    color: var(--color-white);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    margin: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
    transform: translateY(-2px);
}

.social-links svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer-location {
    font-size: 0.9rem;
}

.footer-bottom {
    min-height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
}

.cart-drawer,
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cart-drawer.is-open,
.modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.cart-drawer__overlay,
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 47, 48, 0.42);
    backdrop-filter: blur(4px);
}

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 430px);
    height: 100%;
    background: var(--color-cream);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.16);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.is-open .cart-drawer__panel {
    transform: translateX(0);
}

.cart-drawer__head {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border);
}

.cart-drawer__head h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.cart-drawer__head button,
.modal__close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.cart-item img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 8px;
}

.cart-item h3 {
    margin: 0 0 5px;
    font-size: 0.95rem;
}

.cart-item strong {
    color: var(--color-primary);
}

.cart-item__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    overflow: hidden;
    background: var(--color-white);
}

.qty-control button {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-weight: 900;
    color: var(--color-primary);
}

.qty-control span {
    min-width: 28px;
    text-align: center;
    font-weight: 900;
}

.remove-item {
    border: 0;
    background: transparent;
    color: var(--color-coral);
    font-weight: 800;
}

.cart-empty {
    display: none;
    padding: 28px 24px;
    text-align: center;
}

.cart-empty.is-visible {
    display: block;
}

.cart-summary {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.65);
}

.cart-summary > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cart-summary small {
    display: block;
    margin-bottom: 16px;
    color: var(--color-muted);
}

.cart-summary .btn + .btn {
    margin-top: 10px;
}

.modal {
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal__panel {
    position: relative;
    width: min(100%, 560px);
    max-height: min(90vh, 780px);
    overflow-y: auto;
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.2s ease;
}

.modal.is-open .modal__panel {
    transform: translateY(0) scale(1);
}

.modal__panel--product {
    width: min(100%, 900px);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
}

.product-detail {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    padding: 28px;
}

.product-detail__media {
    min-height: 430px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.82), transparent 38%),
        linear-gradient(135deg, #f7efe4, #efede8);
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    padding: 28px;
}

.product-detail__media img {
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
}

.product-detail__content {
    padding: 18px 10px 18px 0;
}

.product-detail__content h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.product-detail__content p {
    color: var(--color-muted);
}

.product-detail__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 18px 0;
}

.product-detail__price strong {
    color: var(--color-primary);
    font-size: 1.8rem;
}

.product-detail__price del {
    color: var(--color-muted);
}

.product-detail__features {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.product-detail__features span {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 61, 62, 0.08);
    color: var(--color-primary);
    font-weight: 800;
}

.product-detail__actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.checkout-head {
    padding: 28px 28px 0;
}

.checkout-head h2 {
    margin: 0 0 8px;
    font-size: 2.25rem;
    letter-spacing: -0.055em;
}

.checkout-head p:not(.eyebrow) {
    color: var(--color-muted);
}

.checkout-form {
    padding: 20px 28px 28px;
}

.form-row {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.form-row label {
    font-weight: 900;
    font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
    color: var(--color-charcoal);
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: rgba(15, 61, 62, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 61, 62, 0.08);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin: 16px 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.checkout-total strong {
    color: var(--color-primary);
    font-size: 1.15rem;
}

.checkout-form small {
    display: block;
    margin-top: 12px;
    color: var(--color-muted);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 200;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    min-width: min(92vw, 380px);
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--color-charcoal);
    color: var(--color-white);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: 800;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 18px 35px rgba(15, 61, 62, 0.26);
    font-size: 1.5rem;
}

@media (max-width: 1100px) {
    .header-main {
        grid-template-columns: 230px 1fr 70px;
    }

    .header-actions {
        display: none;
    }

    .mobile-cart {
        display: grid;
        place-items: center;
        justify-self: end;
    }

    .trust-strip__grid,
    .confidence-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip article:nth-child(2),
    .confidence-card article:nth-child(2) {
        border-right: 0;
    }

    .trust-strip article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--color-border);
    }

.category-cards {
    grid-template-columns: repeat(3, 1fr);
}

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mini-products {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    
    .hero-slide {
    grid-template-columns: 1fr;
}

.hero-slide__content {
    padding: 38px 24px 24px;
}

.hero-slide__media,
.hero-slide__media img {
    min-height: 300px;
}

.hero-slider__controls {
    left: 24px;
    bottom: 18px;
}

    .header-main {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 14px 0;
    }

    .brand-text span:first-child {
        font-size: 1.2rem;
    }

    .brand-text span:last-child {
        font-size: 1.05rem;
    }

    .search-bar {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 48px;
        order: 3;
    }

    .search-bar select {
        display: none;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__content {
        padding: 38px 24px 8px;
    }

    .hero__visual {
        min-height: 310px;
    }

    .hero-card {
        inset: 18px;
    }

    .brand-bag--large {
        transform: scale(0.78);
    }

    .section-head,
    .section-head--catalog {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-tools {
        width: 100%;
        flex-wrap: wrap;
    }

    .catalog-tools select,
    .btn-filter-reset {
        flex: 1;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-banner__inner {
        grid-template-columns: 1fr;
        background:
            linear-gradient(180deg, var(--color-primary) 0 58%, transparent 58%),
            linear-gradient(135deg, #efe4d1, #fffaf2);
    }

    .editorial-banner__visual {
        min-height: 210px;
    }

    .mini-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail__media {
        min-height: 290px;
    }

    .product-detail__content {
        padding: 0;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .brand-bag {
        width: 48px;
        height: 42px;
        border-radius: 10px 10px 12px 12px;
    }

    .brand-bag__handle {
        left: 12px;
        top: -15px;
        width: 25px;
        height: 22px;
        border-width: 4px;
        border-bottom: 0;
    }

    .brand-bag__dot {
        width: 16px;
        height: 16px;
    }

    .brand-bag__smile {
        width: 20px;
        height: 11px;
        left: 15px;
        top: 22px;
        border-width: 3px;
        border-top: 0;
    }

    .brand-bag::before,
    .brand-bag::after {
        width: 6px;
        height: 6px;
        top: 17px;
    }

    .brand-bag::before {
        left: 14px;
    }

    .brand-bag::after {
        right: 14px;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .trust-strip__grid,
    .confidence-card,
    .category-cards,
    .product-grid,
    .mini-products,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip article,
    .confidence-card article {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-strip article:last-child,
    .confidence-card article:last-child {
        border-bottom: 0;
    }

    .product-card__media {
        min-height: 210px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
    }
    .category-cards {
    grid-template-columns: 1fr;
}

.category-cards--image button {
    min-height: 170px;
}

.hero-slide h1 {
    font-size: 3.1rem;
}

.hero__actions .btn {
    width: 100%;
}
}
.footer-bottom a {
    color: var(--color-white);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 4px;
}

.footer-bottom a:hover {
    color: var(--color-gold);
    text-decoration-color: var(--color-gold);
}
.developer-credit {
    color: rgba(255, 255, 255, 0.58);
}

.developer-credit a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.developer-credit a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}
/* Loader inicial */
/* Loader inicial premium con logo en código */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.10), transparent 26%),
        radial-gradient(circle at 50% 38%, rgba(200, 161, 90, 0.18), transparent 38%),
        radial-gradient(circle at 18% 22%, rgba(255, 107, 87, 0.12), transparent 28%),
        linear-gradient(135deg, #061f20 0%, #0f3d3e 46%, #062526 100%);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-loader::before {
    content: "";
    position: absolute;
    width: min(620px, 86vw);
    height: min(620px, 86vw);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 48%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: loaderOrb 3.2s ease-in-out infinite;
}

.site-loader::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__card {
    position: relative;
    z-index: 2;
    width: min(720px, 92vw);
    text-align: center;
    animation: loaderEntrance 0.9s cubic-bezier(.2,.8,.2,1) both;
}

.site-loader__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 34px;
    animation: logoFloat 2.4s ease-in-out infinite;
}

.loader-brand-bag {
    position: relative;
    width: 96px;
    height: 82px;
    display: inline-block;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #ffffff, #eaf3ef);
    border-radius: 22px 22px 26px 26px;
    box-shadow:
        0 26px 54px rgba(0, 0, 0, 0.28),
        inset 0 -14px 20px rgba(15, 61, 62, 0.10);
}

.loader-brand-bag::before,
.loader-brand-bag::after {
    content: "";
    position: absolute;
    top: 31px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0f3d3e;
}

.loader-brand-bag::before {
    left: 28px;
}

.loader-brand-bag::after {
    right: 28px;
}

.loader-brand-bag__handle {
    position: absolute;
    left: 24px;
    top: -31px;
    width: 48px;
    height: 44px;
    border: 7px solid #c8a15a;
    border-bottom: 0;
    border-radius: 38px 38px 0 0;
}

.loader-brand-bag__dot {
    position: absolute;
    top: 15px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: #ff6b57;
    border: 5px solid #0f3d3e;
    border-radius: 50%;
}

.loader-brand-bag__smile {
    position: absolute;
    left: 30px;
    top: 46px;
    width: 38px;
    height: 22px;
    border: 6px solid #0f3d3e;
    border-top: 0;
    border-radius: 0 0 34px 34px;
}

.loader-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.92;
    font-weight: 950;
    letter-spacing: -0.06em;
    color: #ffffff;
    text-align: left;
    text-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.loader-brand-text span:first-child {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.loader-brand-text span:last-child {
    font-size: clamp(1.7rem, 4.5vw, 3rem);
}

.loader-brand-text strong {
    color: #ff6b57;
    font-weight: 950;
}

.site-loader__text {
    animation: textFadeUp 0.9s ease 0.12s both;
}

.site-loader__text h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: -0.08em;
    text-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

.site-loader__text p {
    margin: 0 auto;
    max-width: 460px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 2vw, 1.22rem);
    font-weight: 750;
    letter-spacing: -0.025em;
}

.site-loader__bar {
    position: relative;
    overflow: hidden;
    width: min(390px, 76vw);
    height: 5px;
    margin: 36px auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.site-loader__bar span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #ffffff, #c8a15a, #ffffff, transparent);
    animation: loaderBar 1.2s ease-in-out infinite;
}

@keyframes loaderEntrance {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes textFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes loaderBar {
    0% {
        left: -52%;
    }
    100% {
        left: 110%;
    }
}

@keyframes loaderOrb {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.58;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.92;
    }
}

@media (max-width: 640px) {
    .site-loader {
        padding: 22px;
    }

    .site-loader__brand {
        gap: 14px;
        margin-bottom: 28px;
    }

    .loader-brand-bag {
        width: 74px;
        height: 64px;
        border-radius: 17px 17px 20px 20px;
    }

    .loader-brand-bag::before,
    .loader-brand-bag::after {
        top: 25px;
        width: 8px;
        height: 8px;
    }

    .loader-brand-bag::before {
        left: 22px;
    }

    .loader-brand-bag::after {
        right: 22px;
    }

    .loader-brand-bag__handle {
        left: 18px;
        top: -24px;
        width: 38px;
        height: 34px;
        border-width: 6px;
        border-bottom: 0;
    }

    .loader-brand-bag__dot {
        top: 11px;
        right: -10px;
        width: 22px;
        height: 22px;
        border-width: 4px;
    }

    .loader-brand-bag__smile {
        left: 23px;
        top: 37px;
        width: 30px;
        height: 17px;
        border-width: 5px;
        border-top: 0;
    }

    .loader-brand-text span:first-child {
        font-size: clamp(1.45rem, 8vw, 2.1rem);
    }

    .loader-brand-text span:last-child {
        font-size: clamp(1.25rem, 7vw, 1.85rem);
    }

    .site-loader__text h1 {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .site-loader__text p {
        font-size: 1rem;
    }

    .site-loader__bar {
        margin-top: 30px;
    }
}

/* WhatsApp flotante más llamativo */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 48px rgba(37, 211, 102, 0.48);
}

.floating-whatsapp::after {
    content: "Escríbenos";
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 9px 13px;
    border-radius: 999px;
    background: #ffffff;
    color: #101828;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.16);
}

@media (max-width: 640px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 27px;
    }

    .floating-whatsapp::after {
        display: none;
    }

    .site-loader__card {
        padding: 30px 22px 28px;
    }

    .site-loader__logo-wrap {
        width: 116px;
        height: 116px;
    }

    .site-loader__logo {
        max-width: 84px;
        max-height: 84px;
    }
}
body.no-scroll .floating-whatsapp {
    pointer-events: none;
}
.hero__lead {
    margin-bottom: 28px;
}

.hero__actions {
    margin-top: 0;
}
/* Logo del footer en versión clara para fondo oscuro */
.brand--footer {
    display: inline-flex;
    align-items: flex-start;
    gap: 14px;
}

.brand--footer .brand-bag {
    background: linear-gradient(135deg, #ffffff, #eef3ef);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.22),
        inset 0 -8px 14px rgba(15, 61, 62, 0.08);
}

.brand--footer .brand-bag::before,
.brand--footer .brand-bag::after {
    background: #0f3d3e;
}

.brand--footer .brand-bag__smile {
    border-color: #0f3d3e;
    border-top: 0;
}

.brand--footer .brand-bag__handle {
    border-color: var(--color-gold);
    border-bottom: 0;
}

.brand--footer .brand-bag__dot {
    background: var(--color-coral);
    border-color: #0b2f30;
}

.brand--footer .brand-text {
    color: #ffffff;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.brand--footer .brand-text strong {
    color: var(--color-coral);
}

.brand--footer .brand-text span:first-child {
    font-size: 1.45rem;
}

.brand--footer .brand-text span:last-child {
    font-size: 1.25rem;
}

@media (max-width: 620px) {
    .brand--footer {
        gap: 12px;
    }

    .brand--footer .brand-text span:first-child {
        font-size: 1.3rem;
    }

    .brand--footer .brand-text span:last-child {
        font-size: 1.12rem;
    }
}