:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-surface: #161616;
    --color-surface-hover: #1c1c1c;
    --color-border: rgba(212, 175, 55, 0.2);
    --color-border-strong: rgba(212, 175, 55, 0.38);
    --color-text: #f4f4f5;
    --color-text-muted: #a3a3a3;
    --color-red: #990000;
    --color-red-deep: #660000;
    --color-red-bright: #b01212;
    --color-red-glow: rgba(153, 0, 0, 0.38);
    --color-gold: #d4af37;
    --color-gold-light: #e8c766;
    --color-gold-dark: #a8862a;
    --color-gold-muted: rgba(212, 175, 55, 0.14);
    --color-brand-black: #0a0a0a;
    --color-header-bg: #222222;
    --color-brand-red: #990000;
    --color-brand-red-dark: #660000;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20bd5a;
    --color-danger: #ef4444;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-btn: 999px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.18);
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Montserrat', var(--font);
    --container: 1180px;
    --header-top-h: 76px;
    --header-cat-h: 48px;
    --header-h: calc(var(--header-top-h) + var(--header-cat-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: #f5f5f4;
    color: #1a1a1a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(153, 0, 0, 0.06), transparent 55%),
        radial-gradient(ellipse 40% 30% at 100% 0%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a { color: var(--color-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-gold-light); }

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

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* Header */
.site-top {
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header {
    position: relative;
    z-index: 1;
    background: transparent;
    transition: box-shadow 0.25s;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-main {
    background: var(--color-header-bg);
    border-bottom: 2px solid var(--color-brand-red);
}

.header-shell {
    padding: 0;
}

.header-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem 1.5rem;
    min-height: var(--header-top-h);
    padding: 0.7rem 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.logo:hover { opacity: 0.92; }

.logo-img,
.hero-logo,
.maintenance-page__logo {
    background: transparent;
}

.logo-img {
    display: block;
    width: auto;
    height: 56px;
    max-width: 160px;
    object-fit: contain;
}

.header-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border: none;
    border-radius: var(--radius-btn);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header-search input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 0.9rem;
    padding: 0.75rem 0.35rem 0.75rem 1.25rem;
    outline: none;
}

.header-search input::placeholder {
    color: #9ca3af;
}

.header-search__submit {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    transition: color 0.2s, opacity 0.2s;
}

.header-search__submit:hover {
    color: var(--color-gold-light);
    opacity: 0.9;
}

.header-search__submit svg {
    width: 18px;
    height: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.15rem 0.35rem;
    flex-shrink: 0;
}

.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.35rem 0.45rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    border-radius: var(--radius-btn);
    transition: opacity 0.2s;
}

.header-action:hover {
    opacity: 0.85;
}

.header-action__icon {
    display: block;
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.header-action--cart .header-action__icon-wrap {
    width: 22px;
    height: 22px;
}

.header-action__badge {
    position: absolute;
    top: -5px;
    right: -7px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: var(--color-gold);
    border-radius: 999px;
}

.header-action__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.2;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    color: #fff;
}

.header-action__text span:first-child {
    font-weight: 500;
    font-size: 0.72rem;
    opacity: 0.95;
}

.header-action__text span:last-child {
    font-weight: 800;
    font-size: 0.82rem;
    opacity: 1;
}

.header-action__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav-bar {
    background: var(--color-brand-red);
}

.header-nav-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: var(--header-cat-h);
}

.header-categories {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.1rem 0.15rem;
    min-height: var(--header-cat-h);
    padding: 0.35rem 0;
}

.header-categories__link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    border-radius: var(--radius-btn);
    transition: background 0.2s, opacity 0.2s, border-color 0.2s;
}

.header-categories__link:hover,
.header-categories__link.is-active {
    color: #fff;
    background: rgba(0, 0, 0, 0.14);
}

.header-categories__link--catalog {
    font-weight: 800;
    letter-spacing: 0.08em;
}

.header-categories__link--catalog.is-active {
    background: rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.header-categories__link--offers-mobile {
    display: none;
}

.header-offers-btn {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-brand-black);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: var(--radius-btn);
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.header-offers-btn:hover {
    background: #111;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.header-offers-btn.is-active {
    background: var(--color-brand-red-dark);
    border-color: var(--color-gold);
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-btn);
    cursor: pointer;
    z-index: 2;
}

.menu-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-backdrop {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.header-backdrop[hidden] {
    display: none;
}

body.header-nav-open {
    overflow: hidden;
}

/* Dev notice toast */
.dev-notice-toast {
    position: fixed;
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    left: 50%;
    z-index: 10001;
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    padding: 0.85rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: rgba(22, 22, 24, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Legacy search form (pages) */
.search-form {
    display: flex;
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-form:focus-within {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-gold);
}

.search-form input {
    background: transparent;
    border: none;
    color: var(--color-text);
    padding: 0.55rem 0.5rem 0.55rem 1rem;
    width: 200px;
    font-size: 0.875rem;
    outline: none;
}

.search-form input::placeholder { color: var(--color-text-muted); }

.search-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0.55rem 1rem;
    cursor: pointer;
    color: var(--color-gold);
    transition: color 0.2s;
}

.search-form button:hover { color: var(--color-gold-light); }

.search-form button svg { width: 18px; height: 18px; }

/* Hero */
.hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(153, 0, 0, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content { max-width: 540px; }

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: var(--color-gold-muted);
    border: 1px solid var(--color-border-strong);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero h1 span {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.35rem;
}

.hero-tagline {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    display: block;
    width: min(100%, 400px);
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.12));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Sections */
.section { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section-alt {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.65rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
}

.section-lead {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 360px;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
}

.category-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.35rem;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
    opacity: 0;
    transition: opacity 0.25s;
}

.category-card:hover {
    border-color: var(--color-border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--color-text);
}

.category-card:hover::before { opacity: 1; }

.category-card__link {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
}

.category-card:hover .category-card__link {
    opacity: 1;
    transform: translateY(0);
}

.category-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

.category-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-bg-alt);
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img { transform: scale(1.06); }

.badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-deep));
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge--out {
    background: rgba(15, 15, 18, 0.88);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.badge--order {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(161, 122, 18, 0.95));
    color: #1a1508;
    border: 1px solid rgba(212, 175, 55, 0.45);
}

.product-card--on-order .product-image img {
    opacity: 0.92;
}

.product-card--out-of-stock .product-image img {
    opacity: 0.72;
    filter: grayscale(0.35);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.85rem 0 1rem;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.product-stock--available {
    color: #86efac;
}

.product-stock--out {
    color: #fca5a5;
}

.product-stock--order {
    color: #f0d48a;
}

.product-stock__dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
    flex-shrink: 0;
}

.product-stock__dot--out {
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.product-stock__dot--order {
    background: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.product-unavailable {
    margin: 0;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-radius: var(--radius);
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    font-size: 0.95rem;
    text-align: center;
}

.product-info { padding: 1.15rem 1.25rem 1.25rem; }

.product-category {
    font-size: 0.7rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0.35rem 0 0.5rem;
    line-height: 1.35;
}

.product-name a { color: var(--color-text); }
.product-name a:hover { color: var(--color-gold); }

.product-manufacturer {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.15rem;
}

.product-caliber {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: var(--color-gold-muted);
    border: 1px solid var(--color-border);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    margin-bottom: 0.35rem;
}

.product-caliber--detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem;
    padding: 0;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-muted);
    background: none;
    border: none;
    border-radius: 0;
}

.product-caliber--detail span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

.product-caliber--detail strong {
    color: var(--color-gold);
    font-weight: 600;
}

.product-manufacturer--detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0 1rem;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-muted);
}

.product-manufacturer--detail span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

.product-manufacturer--detail strong {
    color: var(--color-text);
    font-weight: 600;
}

.product-price-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.85rem;
}

.product-price-wrap--lg {
    margin-bottom: 1.25rem;
}

.product-price-wrap--lg .product-price {
    font-size: 1.85rem;
}

.product-price-wrap--lg .product-price--promo {
    font-size: 2rem;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.product-price--old {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: line-through;
    opacity: 0.75;
}

.product-price--promo {
    color: #ef6b6b;
}

.product-price-lg { font-size: 1.85rem; }

.badge--promo {
    background: #d64545;
    color: #fff;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.product-card__actions .btn-whatsapp,
.product-card__actions .btn-outline {
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-brand-black);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-brand-black);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-gold-muted);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    width: 100%;
}

.btn-whatsapp:hover {
    background: var(--color-whatsapp-hover);
    color: #fff;
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 0.95rem; width: auto; }

/* Product detail */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-gold); }

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-detail-image {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-detail-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-btn);
    overflow: hidden;
    background: var(--color-surface);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.product-detail-thumb:hover,
.product-detail-thumb.is-active {
    border-color: var(--color-gold);
}

.product-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.product-description {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.product-description h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 0.65rem;
}

.product-summary {
    margin: 0.85rem 0 1rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.product-full-description {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.product-full-description__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.product-full-description__content {
    line-height: 1.7;
    color: var(--color-text-muted);
}

.whatsapp-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

.related-products h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.page-header { margin-bottom: 2rem; }

.page-header h1 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
}

.page-subtitle { color: var(--color-text-muted); margin-top: 0.5rem; }

.search-form-page {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    max-width: 520px;
}

.search-form-page input {
    flex: 1;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    padding: 0.65rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-form-page input:focus {
    border-color: var(--color-border-strong);
}

.search-results-count {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.empty-state {
    text-align: center;
    color: var(--color-text-muted);
    padding: 3rem 2rem;
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    background: var(--color-header-bg);
    border-top: 3px solid var(--color-brand-red);
    margin-top: auto;
    color: #fff;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 52%, var(--color-gold-light) 100%);
}

.newsletter__bar {
    display: grid;
    grid-template-columns: auto minmax(130px, 160px) minmax(180px, 1fr) auto;
    align-items: center;
    gap: 0.65rem 0.75rem;
    padding: 1.1rem 0;
}

.newsletter__intro {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.newsletter__icon {
    flex-shrink: 0;
    display: block;
    width: 24px;
    height: 24px;
    color: var(--color-brand-black);
}

.newsletter__copy {
    min-width: 0;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 800;
    color: var(--color-brand-black);
    margin: 0 0 0.1rem;
    line-height: 1.2;
}

.newsletter__text {
    margin: 0;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.3;
    color: rgba(10, 10, 10, 0.82);
}

.newsletter__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.newsletter__input {
    min-width: 0;
    width: 100%;
    height: 42px;
    padding: 0 1rem;
    font-family: var(--font);
    font-size: 0.8125rem;
    color: #333;
    background: #fff;
    border: none;
    border-radius: 999px;
    outline: none;
    transition: box-shadow 0.2s;
}

.newsletter__input:focus {
    box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.22);
}

.newsletter__input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.newsletter__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    height: 42px;
    padding: 0 1.15rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-brand-red);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.newsletter__submit svg {
    flex-shrink: 0;
}

.newsletter__submit:hover {
    background: var(--color-brand-red-dark);
}

.newsletter__submit:active {
    transform: translateY(1px);
}

.newsletter__feedback {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
}

.newsletter__feedback.is-success {
    color: var(--color-brand-black);
}

.newsletter__feedback.is-error {
    color: var(--color-brand-red-dark);
}

.newsletter__legal {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.45;
    color: rgba(10, 10, 10, 0.72);
}

.newsletter__legal a {
    color: var(--color-brand-red-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.newsletter__legal a:hover {
    opacity: 0.85;
}

.newsletter__bar.is-loading .newsletter__submit {
    opacity: 0.7;
    pointer-events: none;
}

.site-footer > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1.3fr);
    column-gap: 2.25rem;
    row-gap: 2.5rem;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding: 3rem 0 2.5rem;
    align-items: start;
    isolation: isolate;
}

.footer-col {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.footer-col--brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col--brand .footer-logo {
    display: block;
    margin-inline: auto;
}

.footer-col--brand .footer-social {
    justify-content: center;
    width: 100%;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.footer-heading--spaced {
    margin-top: 1.35rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.15rem;
}

.footer-logo img {
    display: block;
    width: min(140px, 100%);
    height: auto;
    max-height: 56px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--color-gold);
    opacity: 0.92;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-social__svg,
.footer-social__link svg {
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-social__link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.45rem;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.75;
}

.footer-links--uppercase a {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-support {
    list-style: none;
}

.footer-support li {
    max-width: 100%;
}

.footer-support li + li {
    margin-top: 0.55rem;
}

.footer-support__item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    color: #fff;
    font-size: 0.8125rem;
    line-height: 1.45;
    transition: opacity 0.2s;
}

.footer-support__item span {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-support__item:hover {
    opacity: 0.8;
}

.footer-support__icon {
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.footer-divider {
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-hours__label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
}

.footer-hours__label span {
    flex: 1 1 auto;
    min-width: 0;
}

.footer-hours__text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    padding: 1.25rem 0 1.75rem;
    background: rgba(0, 0, 0, 0.18);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-legal-ids {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-legal-ids p {
    margin: 0;
}

.footer-credit {
    margin-top: 1rem;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-credit strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-legal {
    margin-top: 0.85rem;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.content-page {
    max-width: 720px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.content-page h2,
.content-page h3,
.content-page h4 {
    font-family: var(--font-display);
    color: var(--color-text);
    margin: 1.75rem 0 0.75rem;
    line-height: 1.3;
}

.content-page h2 { font-size: 1.35rem; }
.content-page h3 { font-size: 1.15rem; }
.content-page h4 { font-size: 1rem; }

.content-page ul,
.content-page ol {
    margin: 0.75rem 0 0.75rem 1.25rem;
}

.content-page li + li {
    margin-top: 0.35rem;
}

.content-page a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-page blockquote {
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--color-gold);
    background: var(--color-bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--color-text);
}

.content-page p + p {
    margin-top: 1rem;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    right: 1.25rem;
    bottom: 5.5rem;
    z-index: 300;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-btn);
    background: #ffffff;
    color: #5c5c64;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.scroll-top:hover {
    color: var(--color-gold-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
}

.scroll-top[hidden] {
    display: none;
}

.site-main {
    --color-bg: #f5f5f4;
    --color-bg-alt: #ececea;
    --color-surface: #ffffff;
    --color-surface-hover: #f3f3f1;
    --color-border: rgba(212, 175, 55, 0.28);
    --color-border-strong: rgba(212, 175, 55, 0.45);
    --color-text: #1a1a1a;
    --color-text-muted: #5c5c64;
    --color-red-glow: rgba(153, 0, 0, 0.08);
    --color-gold-muted: rgba(212, 175, 55, 0.12);
    --shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.14);

    position: relative;
    z-index: 1;
    flex: 1;
    background: var(--color-bg);
    color: var(--color-text);
}

.site-main .badge--out {
    background: rgba(0, 0, 0, 0.06);
    color: #b91c1c;
    border: 1px solid rgba(185, 28, 28, 0.22);
}

.site-main .product-stock--available {
    color: #15803d;
}

.site-main .product-stock--out {
    color: #b91c1c;
}

.site-main .product-stock--order {
    color: #a16207;
}

.site-main .product-unavailable-msg {
    background: rgba(239, 68, 68, 0.08);
    color: #b91c1c;
}

.site-main .product-share {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.9));
}

.site-main .product-share__btn {
    border-color: var(--color-border);
}

.site-main .product-share__btn:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

/* Trust strip */
.trust-strip {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.35rem 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.trust-item__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--color-gold-muted);
    border: 1px solid var(--color-border);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* CTA section */
.cta-section {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(135deg, rgba(153, 0, 0, 0.14) 0%, var(--color-bg-alt) 45%, rgba(212, 175, 55, 0.08) 100%);
}

.cta-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-section__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    margin: 0.75rem 0 0.5rem;
}

.cta-section__content p {
    color: var(--color-text-muted);
    max-width: 420px;
}

.cta-section__btn {
    width: auto;
    min-width: 200px;
}

/* Page banner (inner pages) */
.page-banner {
    padding: 2.25rem 0 2rem;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, transparent 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}

.page-banner__subtitle {
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    max-width: 560px;
}

.breadcrumb--banner {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.breadcrumb__sep {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.section--compact {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}

.results-meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.search-form-page--wide {
    max-width: 100%;
    margin-bottom: 2rem;
}

/* Catalog filters */
.catalog-layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.catalog-layout__inner {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-toolbar__toggle {
    display: none;
}

.catalog-toolbar__meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.catalog-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    transition: color 0.2s, border-color 0.2s;
}

.catalog-chip:hover {
    color: var(--color-gold);
    border-color: var(--color-border-strong);
}

.catalog-filters {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.catalog-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.catalog-filters__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}

.catalog-filters__close {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
}

.catalog-filters__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.catalog-filters__group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
}

.catalog-filters__group input,
.catalog-filters__group select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font: inherit;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.catalog-filters__group input:focus,
.catalog-filters__group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.catalog-filters__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
}

.catalog-filters__sep {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.catalog-filters__checks {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.catalog-filters__checks .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.catalog-filters__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.catalog-filters__actions .btn {
    width: 100%;
    justify-content: center;
}

.catalog-results {
    min-width: 0;
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.catalog-pagination__info {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.catalog-filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 250;
    background: rgba(0, 0, 0, 0.65);
}

.catalog-filters-backdrop[hidden] {
    display: none;
}

body.catalog-filters-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .catalog-layout__inner {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar__toggle {
        display: inline-flex;
    }

    .catalog-filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 300;
        width: min(320px, 88vw);
        border-radius: 0;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform 0.25s ease;
    }

    .catalog-filters.is-open {
        transform: translateX(0);
    }

    .catalog-filters__close {
        display: block;
    }
}

/* Product buy box */
.product-buybox {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.product-category--link {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.product-category--link:hover {
    text-decoration: underline;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.product-share {
    padding: 1rem 1.1rem 1.1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.product-share__label {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.product-share__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.product-share.has-native .product-share__buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-share__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 96px;
    padding: 0.85rem 0.5rem;
    font-family: inherit;
    text-decoration: none;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.product-share__btn:hover {
    transform: translateY(-3px);
    border-color: var(--color-border-strong);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.product-share__btn:active {
    transform: translateY(-1px);
}

.product-share__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-share__btn:hover .product-share__icon-wrap {
    transform: scale(1.06);
}

.product-share__btn-text {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.product-share__btn--whatsapp .product-share__icon-wrap {
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.product-share__btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
}

.product-share__btn--copy .product-share__icon-wrap {
    color: var(--color-gold-light);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
}

.product-share__btn--copy:hover {
    background: var(--color-gold-muted);
}

.product-share__btn--copy.is-success .product-share__icon-wrap {
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

.product-share__btn--copy.is-success .product-share__svg-copy {
    display: none;
}

.product-share__btn--copy.is-success .product-share__svg-check {
    display: block;
}

.product-share__btn--copy .product-share__svg-check {
    display: none;
}

.product-share__btn--native .product-share__icon-wrap {
    color: var(--color-text);
    background: var(--color-gold-muted);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.product-share__btn--native:hover {
    background: var(--color-bg-alt);
}

.product-share__feedback {
    margin: 0.75rem 0 0;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gold-light);
    text-align: center;
    background: var(--color-gold-muted);
    border-radius: var(--radius);
}

.product-detail-info {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: start;
}

.related-products {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
}

.related-products .section-header {
    margin-bottom: 1.5rem;
}

.related-products .section-title {
    margin-bottom: 0;
}

.related-products .section-title::after {
    display: none;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3.5rem 2rem;
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
}

.empty-state__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--color-gold);
    opacity: 0.85;
}

.empty-state__icon svg {
    width: 100%;
    height: 100%;
}

.empty-state__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.empty-state__text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 300;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 1180px) {
    .footer-grid {
        max-width: 920px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 2.5rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 240px);
    }
}

@media (max-width: 1024px) {
    .newsletter__bar {
        grid-template-columns: 1fr;
    }

    .newsletter__intro,
    .newsletter__input--name,
    .newsletter__input--email,
    .newsletter__submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content { max-width: none; margin: 0 auto; }
    .hero-tagline { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo { width: min(300px, 75vw); }

    .footer-grid {
        max-width: 680px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2.5rem;
        row-gap: 2rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 360px);
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal-ids {
        text-align: center;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-section__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-section__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .product-detail-info {
        position: static;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-top-h: 72px;
        --header-search-h: 48px;
        --header-cat-h: 0px;
        --header-h: calc(var(--header-top-h) + var(--header-search-h));
    }

    .header-top {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.65rem 0.75rem;
        padding: 0.5rem 0 0.65rem;
    }

    .logo {
        order: 0;
    }

    .header-actions {
        order: 1;
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .header-search {
        order: 3;
        width: 100%;
        max-width: none;
        flex: 1 1 100%;
    }

    .header-action--help .header-action__text,
    .header-action--account .header-action__text {
        display: none;
    }

    .header-nav-bar {
        background: transparent;
        height: 0;
        overflow: visible;
    }

    .header-nav-bar__inner {
        display: block;
        min-height: 0;
        height: 0;
        overflow: visible;
    }

    .header-categories {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 195;
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.5rem;
        min-height: 0;
        padding: 1rem 1.25rem 2rem;
        background: var(--color-header-bg);
        overflow-y: auto;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    }

    .header-categories.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .header-categories__link {
        justify-content: center;
        padding: 0.85rem 1.25rem;
        font-size: 0.78rem;
        border-radius: var(--radius-btn);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }

    .header-categories__link:hover,
    .header-categories__link.is-active {
        background: rgba(0, 0, 0, 0.22);
        border-color: rgba(212, 175, 55, 0.35);
    }

    .header-categories__link--catalog.is-active {
        box-shadow: none;
        border-color: rgba(212, 175, 55, 0.45);
    }

    .header-categories__link--offers-mobile {
        display: inline-flex;
        margin: 0.5rem 0 0;
        padding: 0.75rem 1.25rem;
        justify-content: center;
        background: var(--color-brand-black);
        border: 1px solid rgba(212, 175, 55, 0.45);
        border-radius: var(--radius-btn);
        font-weight: 800;
    }

    .header-categories__link--offers-mobile:hover,
    .header-categories__link--offers-mobile.is-active {
        background: var(--color-brand-red);
        border-color: var(--color-gold);
    }

    .header-offers-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 48px;
        max-width: 120px;
    }

    .header-action__icon {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .header-action--cart .header-action__icon-wrap {
        width: 20px;
        height: 20px;
    }

    .newsletter__icon {
        width: 24px;
        height: 24px;
        max-width: 24px;
        max-height: 24px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .product-buybox {
        padding: 1.35rem;
    }

    .hero { padding: 2.5rem 0 3rem; }

    .footer-grid {
        max-width: 360px;
        grid-template-columns: 1fr;
        row-gap: 2rem;
        justify-items: center;
        text-align: center;
    }

    .footer-col--brand {
        width: 100%;
    }

    .footer-support__item {
        justify-content: center;
    }

    .footer-hours__label {
        justify-content: center;
    }

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

/* Age gate (+18) */
.age-gate {
    --age-accent: #d64545;
    --age-accent-hover: #e05555;
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

html.age-gate-pending .age-gate {
    display: flex;
}

html.age-verified .age-gate {
    display: none;
}

body.age-gate-locked {
    overflow: hidden;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.age-gate__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 2.25rem 2rem 2rem;
    text-align: center;
    background: #1c1c1f;
    border: 1px solid rgba(214, 69, 69, 0.55);
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.age-gate__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 1rem;
    color: var(--age-accent);
}

.age-gate__icon svg {
    width: 100%;
    height: 100%;
}

.age-gate__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.age-gate__content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.age-gate__content strong {
    color: #fff;
    font-weight: 700;
}

.age-gate__note {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.age-gate__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: var(--radius-btn);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.age-gate__btn-icon {
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.95;
}

.age-gate__btn--accept {
    color: #fff;
    background: var(--age-accent);
    border-color: var(--age-accent);
}

.age-gate__btn--accept:hover {
    background: var(--age-accent-hover);
    border-color: var(--age-accent-hover);
}

.age-gate__btn--exit {
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
}

.age-gate__btn--exit:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

/* Site notices (modal) */
.notice-gate {
    --notice-accent: var(--color-gold);
    --notice-accent-hover: #e4c04a;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.notice-gate.is-active {
    display: flex;
}

body.notice-gate-locked {
    overflow: hidden;
}

.notice-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.notice-gate__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 2.25rem 2rem 2rem;
    text-align: center;
    background: #1c1c1f;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.notice-gate--warning {
    --notice-accent: #d64545;
    --notice-accent-hover: #e05555;
}

.notice-gate--warning .notice-gate__panel {
    border-color: rgba(214, 69, 69, 0.55);
}

.notice-gate--promo {
    --notice-accent: var(--color-gold);
    --notice-accent-hover: #dbb030;
}

.notice-gate--promo .notice-gate__panel {
    border-color: rgba(212, 175, 55, 0.65);
}

.notice-gate--info {
    --notice-accent: var(--color-gold);
    --notice-accent-hover: #e4c04a;
}

.notice-gate__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 1rem;
    color: var(--notice-accent);
}

.notice-gate__icon svg {
    width: 100%;
    height: 100%;
}

.notice-gate__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.notice-gate__content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.notice-gate__content p + p {
    margin-top: 0.85rem;
}

.notice-gate__link-wrap {
    margin-top: 1rem;
}

.notice-gate__link {
    color: var(--notice-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.notice-gate__link:hover {
    color: var(--notice-accent-hover);
}

.notice-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.notice-gate__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: var(--radius-btn);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.notice-gate__btn-icon {
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.95;
}

.notice-gate__btn--accept {
    color: #fff;
    background: var(--notice-accent);
    border-color: var(--notice-accent);
}

.notice-gate__btn--accept:hover {
    background: var(--notice-accent-hover);
    border-color: var(--notice-accent-hover);
}

/* Maintenance mode */
.maintenance-page {
    min-height: 100vh;
    background: var(--color-bg);
}

.maintenance-page__main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
}

.maintenance-page__panel {
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.maintenance-page__logo {
    width: auto;
    height: 120px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 1.5rem;
}

.maintenance-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.maintenance-page__message {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.maintenance-page__hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.75rem;
}

.maintenance-page__admin-link {
    min-width: 200px;
}

.maintenance-page__panel--countdown {
    max-width: 520px;
}

.inauguration-countdown {
    margin: 1.5rem 0 1.25rem;
    padding: 1.35rem 1rem 1.15rem;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius);
    background: var(--color-gold-muted);
}

.inauguration-countdown__label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 0.35rem;
}

.inauguration-countdown__days {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 12vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-gold);
    margin-bottom: 0.2rem;
}

.inauguration-countdown__unit {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.65rem;
}

.inauguration-countdown__today {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 5vw, 1.65rem);
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 0.65rem;
}

.inauguration-countdown__date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.maintenance-preview-bar {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.25), rgba(153, 0, 0, 0.2));
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    color: #f8f4e8;
    font-size: 0.82rem;
}

.maintenance-preview-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.55rem 0;
}

.maintenance-preview-bar a {
    color: var(--color-gold-light);
    font-weight: 600;
    white-space: nowrap;
}

.maintenance-preview-bar a:hover {
    color: #fff;
}

