/* ============================================================
   NAALI CONCEPT — Home Redesign
   Guía de Estilo: Cormorant Garamond + Montserrat
   Paleta: Terracota #C98473, Rosa #E6A8A8, Dorado #C99A61
   ============================================================ */

/* ── REVEAL ANIMATION ── */
.nh-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.nh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── SHARED TOKENS ── */
:root {
    --gold: #C99A61;
    --gold-light: #d4b06a;
    --gold-pale: rgba(201,154,97,0.12);
    --cream: #FAEEEE;
    --cream-dark: #F3D2D3;
    --terra: #C98473;
    --brown: #5B403B;
    --dark: #3E3533;
    --text: #3E3533;
    --muted: #7B706D;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.11);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
}

/* ── BUTTONS ── */
.nh-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: #fff;
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}
.nh-btn-primary:hover {
    background: #a8833d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193,154,74,0.4);
}
.nh-btn-primary.nh-btn-lg { padding: 15px 36px; font-size: 0.95rem; }

.nh-btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
}
.nh-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
}

.nh-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}
.nh-btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.nh-btn-gold {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: #fff;
    padding: 11px 24px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}
.nh-btn-gold:hover { background: #a8833d; color: #fff; transform: translateY(-2px); }

.nh-btn-dark {
    display: inline-flex;
    align-items: center;
    background: var(--dark);
    color: #fff;
    padding: 11px 24px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}
.nh-btn-dark:hover { background: #1a1010; color: #fff; transform: translateY(-2px); }

.nh-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #fff;
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s;
}
.nh-btn-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

/* ── SECTION SHARED ── */
.nh-section { padding: 80px 0; }
.nh-section-header { text-align: center; margin-bottom: 52px; }
.nh-section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.nh-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.25;
}
.nh-section-sub {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}
.nh-section-cta { text-align: center; margin-top: 44px; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.nh-hero {
    position: relative;
    overflow: hidden;
}
.nh-hero-slide {
    min-height: 640px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 0;
}
.nh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20,10,5,0.72) 0%, rgba(20,10,5,0.35) 60%, transparent 100%);
}
.nh-hero .container { height: 100%; }
.nh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 90px 0 40px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
.nh-hero-content.hero-animated {
    opacity: 1;
    transform: translateY(0);
}
.nh-hero-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    border-left: 2px solid var(--gold);
    padding-left: 10px;
}
.nh-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 18px;
}
.nh-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 32px;
}
.nh-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Carousel controls */
.nh-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.nh-carousel-btn:hover { background: var(--gold); border-color: var(--gold); }
.nh-carousel-prev { left: 24px; }
.nh-carousel-next { right: 24px; }

.nh-carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.nh-carousel-indicators button {
    width: 28px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.nh-carousel-indicators button.active { background: var(--gold); width: 44px; }

.nh-hero-cats { position: relative; z-index: 5; }

/* ════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════ */
.nh-trust {
    background: linear-gradient(135deg, #FAEEEE 0%, #F3D2D3 100%);
    padding: 20px 0;
}
.nh-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.nh-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-right: 1px solid rgba(193,154,74,0.15);
}
.nh-trust-item:last-child { border-right: none; }
.nh-trust-item i {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
}
.nh-trust-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3a2a1a;
    line-height: 1.3;
}
.nh-trust-item span {
    font-size: 0.72rem;
    color: #999;
}

/* ════════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════════ */
.nh-cats-section { background: var(--cream); }
.nh-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nh-cat-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.nh-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.nh-cat-link { text-decoration: none; display: block; }
.nh-cat-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.nh-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.nh-cat-card:hover .nh-cat-img { transform: scale(1.07); }
.nh-cat-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
}
.nh-cat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,10,5,0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.nh-cat-card:hover .nh-cat-overlay { opacity: 1; }
.nh-cat-cta {
    background: var(--gold);
    color: #fff;
    padding: 9px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.nh-cat-body { padding: 18px 20px 20px; }
.nh-cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}
.nh-cat-tagline {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ════════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════════ */
.nh-products-section { background: #fff; }
.nh-featured-section { background: var(--cream); }

.nh-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.nh-products-grid-3 { grid-template-columns: repeat(3, 1fr); }

.nh-product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.nh-product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}
.nh-product-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.nh-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.nh-product-card:hover .nh-product-img { transform: scale(1.06); }

.nh-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,10,5,0.48);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nh-product-card:hover .nh-product-overlay { opacity: 1; }
.nh-overlay-btn {
    background: #fff;
    color: var(--dark);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.nh-overlay-btn:hover { background: var(--gold); color: #fff; }

.nh-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.nh-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 3px;
    color: #fff;
    width: fit-content;
}
.nh-badge-seller { background: #2d7a3a; }
.nh-badge-sale { background: #c0392b; }
.nh-badge-featured { background: var(--gold); }

.nh-product-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.nh-product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nh-product-copy {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4;
}
.nh-product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.nh-price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: sans-serif;
}
.nh-price-old {
    font-size: 0.82rem;
    color: #bbb;
    text-decoration: line-through;
    font-family: sans-serif;
}
.nh-price-discount {
    font-size: 0.7rem;
    font-weight: 700;
    background: #fdecea;
    color: #c0392b;
    padding: 2px 7px;
    border-radius: 3px;
}
.nh-product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.nh-btn-buy {
    flex: 1;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.nh-btn-buy:hover { background: #a8833d; transform: translateY(-1px); }
.nh-btn-cart {
    background: var(--gold-pale);
    color: var(--gold);
    border: none;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.nh-btn-cart:hover { background: var(--gold); color: #fff; }

/* ════════════════════════════════════════════
   OFFERS BANNER
════════════════════════════════════════════ */
.nh-offers-banner { padding: 60px 0; background: #faf8f5; }
.nh-offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.nh-offer-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 230px;
    display: flex;
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.nh-offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.nh-offer-dark { background: linear-gradient(135deg, #F3D2D3 0%, #E6A8A8 100%); }
.nh-offer-light { background: linear-gradient(135deg, #F9F0EE 0%, #ead9d0 100%); border: 1.5px solid #e8ddd0; }
.nh-offer-content { position: relative; z-index: 2; padding: 40px 44px; }
.nh-offer-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.nh-offer-dark .nh-offer-eyebrow { color: #C98473; }
.nh-offer-light .nh-offer-eyebrow { color: var(--terra); }
.nh-offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 10px;
}
.nh-offer-dark .nh-offer-title { color: #5B403B; }
.nh-offer-light .nh-offer-title { color: var(--dark); }
.nh-offer-sub { font-size: 0.85rem; margin-bottom: 22px; }
.nh-offer-dark .nh-offer-sub { color: #7B706D; }
.nh-offer-light .nh-offer-sub { color: var(--muted); }
.nh-offer-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.nh-offer-deco-1 { width: 160px; height: 160px; right: -20px; top: -20px; }
.nh-offer-deco-2 { width: 100px; height: 100px; right: 20px; bottom: -30px; }
.nh-offer-dark .nh-offer-deco-1 { background: rgba(201,132,115,0.15); }
.nh-offer-dark .nh-offer-deco-2 { background: rgba(201,132,115,0.08); }
.nh-offer-light .nh-offer-deco-1 { background: rgba(199,130,101,0.12); }
.nh-offer-light .nh-offer-deco-2 { background: rgba(199,130,101,0.07); }

/* ════════════════════════════════════════════
   GIFT SECTION
════════════════════════════════════════════ */
.nh-gift-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #FAEEEE 0%, #F3D2D3 100%);
}
.nh-gift-inner {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.nh-gift-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--gold-pale);
    border: 1.5px solid rgba(193,154,74,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nh-gift-icon-wrap i { font-size: 1.8rem; color: var(--gold); }
.nh-gift-text { flex: 1; min-width: 260px; }
.nh-gift-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #3a2a1a;
    margin-bottom: 10px;
    line-height: 1.25;
}
.nh-gift-sub { font-size: 0.9rem; color: #888; line-height: 1.7; margin: 0; }
.nh-gift-cta { flex-shrink: 0; }

/* ════════════════════════════════════════════
   CATALOG BAND
════════════════════════════════════════════ */
.nh-catalog-band {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.nh-catalog-band-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.nh-catalog-band-bg::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(193,154,74,0.1);
}
.nh-catalog-band-bg::after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(193,154,74,0.07);
}
.nh-catalog-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.nh-catalog-band-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.25;
}
.nh-catalog-band-sub { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
.nh-reviews-section { background: #fff; }
.nh-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.nh-review-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--cream-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nh-review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.nh-review-stars { margin-bottom: 14px; }
.nh-review-stars i { color: #f0b429; font-size: 0.9rem; }
.nh-review-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
    min-height: 80px;
}
.nh-review-author { border-top: 1px solid var(--cream-dark); padding-top: 14px; }
.nh-review-name { display: block; font-size: 0.82rem; font-weight: 700; color: var(--gold); }
.nh-review-date { font-size: 0.72rem; color: var(--muted); }

/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.nh-final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #FAEEEE 0%, #F3D2D3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.nh-final-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(193,154,74,0.07);
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.nh-final-cta-inner { position: relative; z-index: 1; }
.nh-final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #3a2a1a;
    margin-bottom: 14px;
    line-height: 1.2;
}
.nh-final-cta-sub {
    font-size: 1rem;
    color: #888;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.nh-final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .nh-products-grid { grid-template-columns: repeat(3, 1fr); }
    .nh-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .nh-hero-slide { min-height: 520px; padding-bottom: 0; }
    .nh-hero-title { font-size: 2.3rem; }
    .nh-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .nh-products-grid { grid-template-columns: repeat(2, 1fr); }
    .nh-products-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .nh-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .nh-trust-item { border-right: none; border-bottom: 1px solid rgba(193,154,74,0.15); }
    .nh-trust-item:nth-child(odd) { border-right: 1px solid rgba(193,154,74,0.15); }
    .nh-trust-item:nth-last-child(-n+2) { border-bottom: none; }
    .nh-catalog-band-inner { flex-direction: column; text-align: center; }
    .nh-gift-inner { flex-direction: column; }
}

@media (max-width: 767px) {
    .nh-hero-slide { min-height: 480px; padding-bottom: 0; }
    .nh-hero-content { padding: 80px 0 60px; }
    .nh-hero-title { font-size: 1.85rem; }
    .nh-hero-sub { font-size: 0.9rem; }
    .nh-hero-ctas { flex-direction: column; gap: 10px; }
    .nh-btn-primary, .nh-btn-ghost { justify-content: center; }
    .nh-carousel-btn { display: none; }
    .nh-section { padding: 56px 0; }
    .nh-section-title { font-size: 1.6rem; }
    .nh-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .nh-cat-img-wrap { height: 180px; }
    .nh-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .nh-products-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .nh-product-img-wrap { height: 200px; }
    .nh-offers-grid { grid-template-columns: 1fr; }
    .nh-offer-content { padding: 30px 28px; }
    .nh-reviews-grid { grid-template-columns: 1fr; }
    .nh-final-cta { padding: 64px 0; }
    .nh-final-cta-title { font-size: 1.9rem; }
    .nh-final-cta-btns { flex-direction: column; align-items: center; }
    .nh-catalog-band { padding: 56px 0; }
    .nh-catalog-band-title { font-size: 1.55rem; }
    .nh-gift-title { font-size: 1.5rem; }
    .nh-trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .nh-hero-title { font-size: 1.55rem; }
    .nh-cats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .nh-cat-img-wrap { height: 150px; }
    .nh-cat-name { font-size: 0.95rem; }
    .nh-cat-tagline { display: none; }
    .nh-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .nh-product-img-wrap { height: 170px; }
    .nh-product-body { padding: 12px 12px 14px; }
    .nh-btn-buy { font-size: 0.72rem; padding: 8px 0; }
    .nh-trust-grid { grid-template-columns: 1fr; }
    .nh-trust-item { border-right: none !important; border-bottom: 1px solid rgba(193,154,74,0.15); }
    .nh-trust-item:last-child { border-bottom: none; }
}
