/* Home2 — fiel ao modelo https://interface-enhancer-1.replit.app/ */
.home2-body {
    --h2-page-max: 1280px;
    --h2-page-pad: 1.25rem;
    --h2-page-pad-md: 1.5rem;
    margin: 0;
    background: #FDFBF7;
    font-family: 'Inter', 'Poppins', sans-serif;
    box-sizing: border-box;
}

.home2-body *,
.home2-body *::before,
.home2-body *::after {
    box-sizing: inherit;
}

/* Mesma coluna para topbar, logo, menu HOME e conteúdo */
.h2-container {
    max-width: var(--h2-page-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--h2-page-pad);
    padding-right: var(--h2-page-pad);
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .h2-container {
        padding-left: var(--h2-page-pad-md);
        padding-right: var(--h2-page-pad-md);
    }
}

/* ── HEADER ── */
.h2-header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
}

.h2-topbar {
    background: #2f203c;
    color: #fff;
    border-bottom: 1px solid #F7E7E0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.h2-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    padding: 0.625rem 0;
}

.h2-topbar__link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.h2-topbar__link:hover {
    color: #DE6854;
    text-decoration: none;
}

.h2-topbar__link--icon {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.h2-header {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #F5E6E0;
    box-shadow: 0 1px 2px rgba(74, 59, 50, 0.05);
    padding: 1rem 0;
}

.h2-header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .h2-header__inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

.h2-header__logo img {
    height: 2rem;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .h2-header__logo img { height: 2.25rem; }
}

.h2-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 42rem;
    border: 1px solid #EAD5CC;
    border-radius: 999px;
    background: #fff;
    padding-left: 1.25rem;
    padding-right: 0.375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.h2-search:focus-within {
    border-color: #DE6854;
    box-shadow: 0 0 0 2px rgba(222, 104, 84, 0.1);
}

.h2-search:hover {
    border-color: rgba(222, 104, 84, 0.5);
}

.h2-search__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: #4A3B32;
    padding: 0.625rem 0;
}

.h2-search__input::placeholder {
    color: #BCA397;
}

.h2-search__select-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border-left: 1px solid #EAD5CC;
}

.h2-search__select {
    appearance: none;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: #8C6D60;
    padding: 0.625rem 1.75rem 0.625rem 1rem;
    cursor: pointer;
    outline: none;
}

.h2-search__select:hover {
    color: #DE6854;
}

.h2-search__chevron {
    position: absolute;
    right: 0.5rem;
    pointer-events: none;
    color: #BCA397;
}

.h2-search__btn {
    align-self: center;
    margin-left: 0.25rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #8C6D60;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.h2-search__btn:hover {
    background: #FFF6F2;
    color: #DE6854;
}

.h2-header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #6B554B;
}

.h2-header__sell-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    background: #FFF6F2;
    color: #DE6854;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #F2DDD4;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .h2-header__sell-btn { display: inline-flex; }
}

.h2-header__sell-btn:hover {
    background: #DE6854;
    border-color: #DE6854;
    color: #fff;
    text-decoration: none;
}

.h2-header__icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    border: none;
    background: none;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    position: relative;
}

.h2-header__icon-btn:hover {
    color: #DE6854;
    text-decoration: none;
}

.h2-header__cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #DE6854;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h2-account {
    position: relative;
}

.h2-account__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
}

.h2-account.is-open .h2-account__backdrop {
    display: block;
}

.h2-account__menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    width: 20rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #F0E2DB;
    box-shadow: 0 25px 50px -12px rgba(74, 59, 50, 0.15);
    padding: 1rem;
    z-index: 50;
}

.h2-account.is-open .h2-account__menu {
    display: block;
}

.h2-account__close {
    display: flex;
    margin-left: auto;
    border: none;
    background: none;
    color: #BCA397;
    cursor: pointer;
    padding: 0.25rem;
}

.h2-account__login-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: #FBF4F0;
    border-radius: 0.75rem;
    padding: 0.75rem;
    text-decoration: none;
    color: inherit;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.h2-account__login-card:hover {
    background: #F7ECE6;
    text-decoration: none;
    color: inherit;
}

.h2-account__avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #4A3B32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
}

.h2-account__login-title {
    font-weight: 600;
    color: #4A3B32;
    line-height: 1.2;
}

.h2-account__login-sub {
    font-size: 0.875rem;
    color: #DE6854;
}

.h2-account__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.h2-account__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #F0E2DB;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #4A3B32;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    transition: all 0.2s;
    position: relative;
}

.h2-account__item svg {
    color: #DE6854;
}

.h2-account__item:hover {
    border-color: rgba(222, 104, 84, 0.4);
    background: #FFF9F6;
    text-decoration: none;
    color: #4A3B32;
}

.h2-account__badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.15rem;
    text-align: center;
}

.h2-account__divider {
    border-top: 1px solid #F0E2DB;
    margin: 1rem 0;
}

.h2-account__panel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem;
    text-decoration: none;
    color: #4A3B32;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.h2-account__panel svg {
    color: #8C6D60;
}

.h2-account__panel:hover {
    color: #DE6854;
    text-decoration: none;
}

.h2-account__panel--logout {
    margin-top: 0.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    color: #b42318;
    background: #fef3f2;
}

.h2-account__panel--logout svg {
    color: #b42318;
}

.h2-account__panel--logout:hover {
    color: #912018;
    background: #fee4e2;
    text-decoration: none;
}

.h2-subnav {
    background: #fff;
    border-bottom: 1px solid #F5E6E0;
}

.h2-subnav__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B554B;
}

.h2-subnav__link {
    color: inherit;
    text-decoration: none;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.h2-subnav__link:hover,
.h2-subnav__link--active {
    color: #DE6854;
    border-bottom-color: #DE6854;
    text-decoration: none;
}

.h2-subnav__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    margin-left: 0.15rem;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
}

.h2-subnav__dropdown {
    position: relative;
}

.h2-subnav__menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 14rem;
    max-height: 20rem;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #F0E2DB;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(74, 59, 50, 0.1);
    padding: 0.5rem;
    z-index: 60;
}

.h2-subnav__dropdown.is-open .h2-subnav__menu {
    display: block;
}

.h2-subnav__menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #4A3B32;
    text-decoration: none;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
}

.h2-subnav__menu a:hover {
    background: #FFF6F2;
    color: #DE6854;
    text-decoration: none;
}

.h2-subnav__toggle {
    display: none;
}

.h2-subnav__bar {
    display: block;
}

/* ── MOBILE HEADER / MENU ── */
@media (max-width: 767px) {
    .h2-topbar {
        display: none;
    }

    .h2-header {
        padding: 0.65rem 0;
    }

    .h2-header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo actions"
            "search search";
        gap: 0.65rem 0.75rem;
        align-items: center;
        width: 100%;
    }

    .h2-header__logo {
        grid-area: logo;
        justify-self: start;
    }

    .h2-header__logo img {
        height: 1.75rem;
    }

    .h2-header__actions {
        grid-area: actions;
        gap: 0.85rem;
    }

    .h2-search {
        grid-area: search;
        padding-left: 0.85rem;
        max-width: none;
    }

    .h2-search__input {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
    }

    .h2-search__select {
        font-size: 0.75rem;
        padding: 0.5rem 1.35rem 0.5rem 0.65rem;
    }

    .h2-account__menu {
        position: fixed;
        inset: auto 0 0 0;
        top: auto;
        width: 100%;
        max-height: min(85vh, 32rem);
        overflow-y: auto;
        border-radius: 1rem 1rem 0 0;
        padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -12px 40px rgba(74, 59, 50, 0.18);
    }

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

    .h2-subnav__toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        width: 100%;
        margin-bottom: 0;
        padding: 0.55rem 0.75rem;
        border: 1px solid #EAD5CC;
        border-radius: 0.65rem;
        background: #FFF6F2;
        color: #4A3B32;
        font-size: 0.8125rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .h2-subnav__bar {
        padding: 0.5rem 0;
    }

    .h2-subnav__inner {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 0.65rem;
    }

    .h2-subnav.is-open .h2-subnav__inner {
        display: flex;
    }

    .h2-subnav__link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.7rem 0.25rem;
        border-bottom: 1px solid #F5E6E0;
        border-left: none;
        border-right: none;
        border-top: none;
        font-size: 0.8125rem;
    }

    .h2-subnav__link--active,
    .h2-subnav__link:hover {
        border-bottom-color: #F5E6E0;
        background: #FFF6F2;
        padding-left: 0.5rem;
    }

    .h2-subnav__dropdown {
        width: 100%;
    }

    .h2-subnav__dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }

    .h2-subnav__menu {
        position: static;
        display: none;
        min-width: 0;
        max-height: none;
        margin: 0 0 0.35rem;
        padding: 0.25rem 0 0.5rem;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .h2-subnav__dropdown.is-open .h2-subnav__menu {
        display: block;
    }

    .h2-subnav__menu a {
        padding: 0.55rem 0.5rem 0.55rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* ── FOOTER ── */
.h2-footer {
    position: relative;
    overflow: hidden;
    background: #2f203c;
    color: #fff;
    margin-top: 0;
}

.h2-footer__watermark {
    pointer-events: none;
    user-select: none;
    position: absolute;
    left: 50%;
    bottom: -2rem;
    width: 130%;
    max-width: none;
    transform: translateX(-50%);
    opacity: 0.08;
    filter: brightness(0) invert(1);
    z-index: 0;
}

@media (min-width: 768px) {
    .h2-footer__watermark {
        bottom: -3.5rem;
        width: 95%;
    }
}

.h2-footer__tagline {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}

.h2-footer__tagline-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.h2-footer__leaf {
    color: #9BD3A0;
    flex-shrink: 0;
}

.h2-footer__main {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.h2-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .h2-footer__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.h2-footer__brand {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .h2-footer__brand {
        grid-column: span 1;
    }
}

.h2-footer__logo {
    height: 5rem;
    width: auto;
}

.h2-footer__app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.h2-footer__app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.h2-footer__col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1rem;
}

.h2-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.h2-footer__col li + li {
    margin-top: 0.75rem;
}

.h2-footer__col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.h2-footer__col a:hover {
    color: #DE6854;
    text-decoration: none;
}

.h2-footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.h2-footer__social a {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.h2-footer__social a:hover {
    opacity: 1;
}

.h2-footer__social img {
    width: 1.125rem;
    height: 1.125rem;
    display: block;
}

.h2-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}

.h2-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .h2-footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.h2-footer__locale {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.h2-footer__sep {
    color: rgba(255, 255, 255, 0.3);
}

.h2-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.h2-footer__legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.h2-footer__legal a:hover {
    color: #DE6854;
    text-decoration: none;
}

.home2-page {
    --h2-bg: #FDFBF7;
    --h2-plum: #2f203c;
    --h2-coral: #DE6854;
    --h2-coral-dark: #C95A48;
    --h2-brown: #4A3B32;
    --h2-muted: #BCA397;
    --h2-taupe: #6B554B;
    --h2-border: #F5E6E0;
    --h2-border-2: #EAD5CC;
    --h2-border-3: #F2DDD4;
    --h2-cream: #FBF3EF;
    --h2-peach: #FFF6F2;
    --h2-lilac: #EAE3F1;
    background: var(--h2-bg);
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--h2-brown);
    overflow-x: hidden;
}

.home2-main {
    padding-bottom: 3rem;
}

.home2-main > :first-child {
    margin-top: 2rem;
}

.home2-main > .store-page:first-child,
.home2-main > .store-page,
.home2-main:has(.store-page) > :first-child {
    margin-top: 0;
}

@media (min-width: 768px) {
    .home2-main > :first-child {
        margin-top: 2.5rem;
    }

    .home2-main > .store-page:first-child,
    .home2-main > .store-page,
    .home2-main:has(.store-page) > :first-child {
        margin-top: 0;
    }
}

/* Section header */
.h2-block { margin-bottom: 3.5rem; }
.h2-block:last-child { margin-bottom: 0; }

.h2-block__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--h2-border);
}

.h2-block__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--h2-plum);
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .h2-block__title { font-size: 1.5rem; }
}

.h2-block__subtitle {
    font-size: 0.875rem;
    color: var(--h2-muted);
    margin: 0;
}

.h2-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--h2-border-3);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--h2-coral);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.h2-block__cta:hover {
    background: var(--h2-coral);
    border-color: var(--h2-coral);
    color: #fff;
    text-decoration: none;
}

.h2-block__cta svg { flex-shrink: 0; }

/* Slider — setas e cards na mesma linha do conteúdo (sem transbordar) */
.h2-slider { position: relative; }

.h2-slider__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.h2-slider__track::-webkit-scrollbar { display: none; }

.h2-slider__item {
    width: 14rem;
    flex: 0 0 14rem;
    scroll-snap-align: start;
}

/* Desktop: 5 cards preenchem a largura até as setas */
@media (min-width: 1100px) {
    .h2-slider__item {
        width: calc((100% - 6rem) / 5);
        flex: 0 0 calc((100% - 6rem) / 5);
    }
}

.h2-slider__btn {
    position: absolute;
    top: 32%;
    transform: translateY(-50%);
    z-index: 30;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--h2-border-2);
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(74, 59, 50, 0.1);
    color: var(--h2-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.h2-slider__btn:hover {
    background: var(--h2-coral);
    border-color: var(--h2-coral);
    color: #fff;
}

.h2-slider__btn--prev { left: 0; }
.h2-slider__btn--next { right: 0; }

@media (max-width: 767px) {
    .h2-slider__btn { display: none; }
    .h2-slider__item { width: 11.5rem; flex: 0 0 11.5rem; }
    .h2-slider__track { gap: 1rem; }
    .h2-block__cta {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
        flex-shrink: 0;
    }
}

/* Product card */
.h2-card {
    background: #fff;
    border: 1px solid var(--h2-border);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}

.h2-card:hover {
    box-shadow: 0 20px 25px -5px rgba(222, 104, 84, 0.05);
}

.h2-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.h2-card__link:hover { text-decoration: none; color: inherit; }

.h2-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--h2-bg);
    overflow: hidden;
}

.h2-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.h2-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    max-width: calc(100% - 1.5rem);
}

.h2-card__badge {
    background: rgba(255, 246, 242, 0.95);
    backdrop-filter: blur(4px);
    color: var(--h2-coral);
    font-size: 0.625rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    border: 1px solid #F7E7E0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    line-height: 1.3;
    white-space: nowrap;
}

.h2-card__badge--production {
    color: var(--h2-coral);
    border-color: #F7E7E0;
    background: rgba(255, 246, 242, 0.95);
}

.h2-card__badge--digital,
.h2-card__badge--shipping {
    color: #2e7d32;
    border-color: #c8e6c9;
    background: rgba(237, 247, 237, 0.95);
}

.h2-card__badge--immediate {
    color: #0c5460;
    border-color: #bee5eb;
    background: rgba(232, 244, 247, 0.95);
}

.h2-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.h2-card__category {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--h2-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.h2-card__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--h2-brown);
    line-height: 1.35;
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.h2-card:hover .h2-card__title { color: var(--h2-coral); }

.h2-card__prices {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.h2-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--h2-coral);
    line-height: 1;
}

.h2-card__old-price {
    font-size: 0.875rem;
    color: var(--h2-muted);
    text-decoration: line-through;
    opacity: 0.8;
}

/* Promo banners */
.h2-promos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .h2-promos { grid-template-columns: 1fr 1fr; }
}

.h2-promo {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--h2-border);
    border-radius: 1rem;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    color: inherit;
    min-height: 14rem;
}

@media (min-width: 640px) {
    .h2-promo { grid-template-columns: 1fr 1fr; min-height: 16rem; }
}

.h2-promo:hover { text-decoration: none; color: inherit; }

.h2-promo__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.5rem 1.75rem;
}

.h2-promo__content--light { background: var(--h2-cream); order: 2; }
.h2-promo__content--dark { background: var(--h2-plum); order: 2; }
@media (min-width: 640px) {
    .h2-promo__content--light,
    .h2-promo__content--dark { order: 1; }
}

.h2-promo__eyebrow {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.h2-promo__content--light .h2-promo__eyebrow { color: var(--h2-coral); }
.h2-promo__content--dark .h2-promo__eyebrow { color: rgba(255,255,255,0.6); }

.h2-promo__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.3;
    margin: 0;
}

.h2-promo__content--light .h2-promo__title { color: var(--h2-plum); }
.h2-promo__content--dark .h2-promo__title { color: #fff; }

.h2-promo__subtitle {
    font-size: 0.8125rem;
    margin: 0;
}

.h2-promo__content--light .h2-promo__subtitle { color: var(--h2-taupe); }
.h2-promo__content--dark .h2-promo__subtitle { color: rgba(255,255,255,0.75); }

.h2-promo__btn {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.h2-promo__btn--dark { background: var(--h2-plum); color: #fff; }
.h2-promo__btn--light { background: #fff; color: var(--h2-plum); }

.h2-promo__image {
    position: relative;
    overflow: hidden;
    min-height: 12rem;
    order: 1;
}

.h2-promo__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 640px) {
    .h2-promo__image {
        order: 2;
        min-height: 0;
        height: 100%;
        align-self: stretch;
    }
}

/* Mosaic grids */
.h2-mosaic {
    display: grid;
    gap: 0.75rem;
}

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

@media (min-width: 768px) {
    .h2-mosaic--selecao {
        height: auto;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 220px);
        gap: 1rem;
    }
}

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

@media (min-width: 768px) {
    .h2-mosaic--favoritos {
        height: 460px;
        grid-template-columns: 1.1fr 1fr 1.4fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
    }
    .h2-mosaic--favoritos .h2-tile:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
    .h2-mosaic--favoritos .h2-tile:nth-child(2) { grid-column: 2; grid-row: 1; }
    .h2-mosaic--favoritos .h2-tile:nth-child(3) { grid-column: 2; grid-row: 2; }
    .h2-mosaic--favoritos .h2-tile:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
    .h2-mosaic--favoritos .h2-tile:nth-child(5) { grid-column: 4; grid-row: 1; }
    .h2-mosaic--favoritos .h2-tile:nth-child(6) { grid-column: 4; grid-row: 2; }
}

.h2-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--h2-border);
    background: var(--h2-bg);
    min-height: 11rem;
    text-decoration: none;
}

.h2-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.h2-tile:hover img { transform: scale(1.05); }

.h2-tile__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(47, 32, 60, 0.75));
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.h2-tile__price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

.h2-tile__old-price {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-decoration: line-through;
}

.h2-tile__label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

/* Casa & decoração */
.h2-decor {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .h2-decor { flex-direction: row; align-items: stretch; }
}

.h2-decor__banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 20rem;
    text-decoration: none;
    flex: 0 0 40%;
}

.h2-decor__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 20rem;
}

.h2-decor__banner-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--h2-plum);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
}

.h2-decor__banner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(47,32,60,0.8));
    color: #fff;
}

.h2-decor__banner-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    margin: 0 0 0.35rem;
}

.h2-decor__banner-sub {
    font-size: 0.8125rem;
    margin: 0 0 0.75rem;
    opacity: 0.9;
}

.h2-decor__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 992px) {
    .h2-decor__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mid banners — 50/50 */
.h2-mid-banners {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .h2-mid-banners {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

.h2-mid-banners__card {
    position: relative;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 14rem;
    text-decoration: none;
    color: #fff;
    background: var(--h2-plum);
}

@media (min-width: 768px) {
    .h2-mid-banners__card { min-height: 18rem; }
}

.h2-mid-banners__card:hover {
    text-decoration: none;
    color: #fff;
}

.h2-mid-banners__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.h2-mid-banners__card:hover img {
    transform: scale(1.04);
}

.h2-mid-banners__overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    min-height: inherit;
    padding: 1.75rem;
    background: linear-gradient(to top, rgba(42, 28, 58, 0.82) 0%, rgba(42, 28, 58, 0.25) 55%, transparent 100%);
}

.h2-mid-banners__eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.75;
    margin: 0;
}

.h2-mid-banners__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

@media (min-width: 768px) {
    .h2-mid-banners__title { font-size: 1.75rem; }
}

.h2-mid-banners__btn {
    align-self: flex-start;
    margin-top: 0.35rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.h2-mid-banners__card:hover .h2-mid-banners__btn {
    background: rgba(255, 255, 255, 0.28);
}

/* Trends */
.h2-trends {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) { .h2-trends { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .h2-trends { grid-template-columns: repeat(5, 1fr); } }

.h2-trend {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.h2-trend:hover { text-decoration: none; color: inherit; }

.h2-trend__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--h2-border);
}

.h2-trend__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.h2-trend:hover .h2-trend__img img { transform: scale(1.05); }

.h2-trend__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--h2-brown);
    transition: color 0.2s;
}

.h2-trend:hover .h2-trend__label { color: var(--h2-coral); }

/* Categories */
.h2-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) { .h2-cats { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .h2-cats { grid-template-columns: repeat(6, 1fr); } }

.h2-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.h2-cat:hover { text-decoration: none; }

.h2-cat__circle {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--h2-border);
    background: var(--h2-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--h2-plum);
}

@media (min-width: 640px) {
    .h2-cat__circle { width: 6rem; height: 6rem; }
}

.h2-cat__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h2-cat__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--h2-brown);
    text-align: center;
    transition: color 0.2s;
}

.h2-cat:hover .h2-cat__label { color: var(--h2-coral); }

/* Pro banner */
.h2-pro {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--h2-plum);
    min-height: 250px;
    margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
    .h2-pro { grid-template-columns: 1.05fr 0.95fr; }
}

.h2-pro__content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #F5E6E0;
}

.h2-pro__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 700;
}

.h2-pro__logo {
    height: 28px;
    width: auto;
    display: block;
}

.h2-pro__text {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.h2-pro__btn {
    align-self: flex-start;
    background: #F5E6E0;
    color: var(--h2-plum);
    border: none;
    border-radius: 999px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}

.h2-pro__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.h2-pro__image {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: none;
}

.h2-pro__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 640px) {
    .h2-pro__image {
        display: block;
        min-height: 0;
        height: 100%;
        align-self: stretch;
    }
}

/* Deferred second half */
.h2-deferred {
    min-height: 12rem;
}

.h2-deferred__skeleton {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.h2-deferred__bar {
    height: 1.5rem;
    width: 40%;
    max-width: 14rem;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #efe8f2 25%, #f7f2f8 50%, #efe8f2 75%);
    background-size: 200% 100%;
    animation: h2-skeleton 1.2s ease-in-out infinite;
}

.h2-deferred__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .h2-deferred__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.h2-deferred__card {
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
    background: linear-gradient(90deg, #efe8f2 25%, #f7f2f8 50%, #efe8f2 75%);
    background-size: 200% 100%;
    animation: h2-skeleton 1.2s ease-in-out infinite;
}

.h2-deferred__error {
    text-align: center;
    color: var(--h2-taupe);
    padding: 2rem 1rem;
    margin: 0 0 2rem;
}

.h2-deferred__retry {
    display: inline-block;
    margin-left: 0.35rem;
    border: none;
    background: transparent;
    color: var(--h2-plum);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

@keyframes h2-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Newsletter */
.h2-newsletter {
    background: var(--h2-lilac);
    padding: 2rem 1.25rem;
}

@media (min-width: 768px) {
    .h2-newsletter { padding: 2rem 1.5rem; }
}

.h2-newsletter__inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.h2-newsletter__text {
    font-size: 0.8125rem;
    color: #3A2E27;
    margin: 0 0 1rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .h2-newsletter__text { font-size: 1rem; }
}

.h2-newsletter__form {
    display: flex;
    max-width: 28rem;
    margin: 0 auto;
    gap: 0.5rem;
    align-items: center;
}

.h2-newsletter__input {
    flex: 1;
    border: 1px solid #D6C9DD;
    border-radius: 999px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--h2-brown);
    outline: none;
}

.h2-newsletter__input:focus {
    border-color: var(--h2-coral);
    box-shadow: 0 0 0 2px rgba(222, 104, 84, 0.1);
}

.h2-newsletter__btn {
    background: var(--h2-coral);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.h2-newsletter__btn:hover { background: var(--h2-coral-dark); }

.h2-newsletter__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.h2-newsletter__feedback {
    margin: 0.85rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

.h2-newsletter__feedback.is-success { color: #2f6b4f; }
.h2-newsletter__feedback.is-error { color: #b43a2f; }

/* Category hub */
.h2-hub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 640px) { .h2-hub { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .h2-hub { grid-template-columns: repeat(3, 1fr); } }

.h2-hub__card {
    background: #fff;
    border: 1px solid var(--h2-border);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.h2-hub__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--h2-plum);
    margin: 0 0 1rem;
}

.h2-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .h2-hub__grid { grid-template-columns: repeat(3, 1fr); }
}

.h2-hub__item {
    text-decoration: none;
    color: inherit;
}

.h2-hub__item:hover { text-decoration: none; }

.h2-hub__thumb {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--h2-cream);
    border: 1px solid var(--h2-border);
    margin-bottom: 0.375rem;
}

.h2-hub__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.h2-hub__item:hover .h2-hub__thumb img { transform: scale(1.05); }

.h2-hub__label {
    font-size: 0.75rem;
    color: var(--h2-brown);
    transition: color 0.2s;
}

.h2-hub__item:hover .h2-hub__label { color: var(--h2-coral); }

.h2-hub__thumb--price {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--h2-cream) 0%, #fff 100%);
    border: 1px solid var(--h2-border);
    transition: border-color 0.2s, background 0.2s;
}

.h2-hub__price {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--h2-plum);
    text-align: center;
    line-height: 1.25;
    padding: 0.35rem;
}

.h2-hub__item--price:hover .h2-hub__thumb--price {
    border-color: var(--h2-coral);
    background: linear-gradient(135deg, #fff5f3 0%, #fff 100%);
}

.h2-hub__item--price:hover .h2-hub__price { color: var(--h2-coral); }

.h2-hub__more {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--h2-border);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--h2-coral);
    text-decoration: none;
}

.h2-hub__more:hover {
    color: var(--h2-coral-dark);
    text-decoration: none;
}

/* Página de categorias */
.h2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--h2-brown);
    margin: 1.25rem 0 0.5rem;
}

.h2-breadcrumb a {
    color: var(--h2-brown);
    text-decoration: none;
    transition: color 0.2s;
}

.h2-breadcrumb a:hover { color: var(--h2-coral); }

.h2-breadcrumb span:last-child {
    color: var(--h2-plum);
    font-weight: 600;
}

.h2-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem 1.25rem;
}

.h2-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.h2-cat-card:hover { text-decoration: none; }

.h2-cat-card__media {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--h2-cream);
    border: 1px solid var(--h2-border);
}

.h2-cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.h2-cat-card:hover .h2-cat-card__media img { transform: scale(1.05); }

.h2-cat-card__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--h2-brown);
    text-align: center;
    transition: color 0.2s;
}

.h2-cat-card:hover .h2-cat-card__label { color: var(--h2-coral); }

@media (max-width: 900px) {
    .h2-cat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 680px) {
    .h2-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem 0.875rem; }
}

@media (max-width: 460px) {
    .h2-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .h2-cat-card__label { font-size: 0.8125rem; }
}

/* Tendência (página) — hero compacto */
.h2-tendency-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.h2-tendency-hero__media {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--h2-border);
    background: var(--h2-cream);
}

@media (min-width: 640px) {
    .h2-tendency-hero__media {
        width: 88px;
        height: 88px;
    }
}

.h2-tendency-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.h2-tendency-hero__content {
    min-width: 0;
}

.h2-tendency-hero__eyebrow {
    margin: 0 0 0.15rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--h2-muted, #8a7a6e);
}

.h2-tendency-hero__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--h2-brown);
}

@media (min-width: 640px) {
    .h2-tendency-hero__title { font-size: 1.5rem; }
}

.h2-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .h2-products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

@media (min-width: 900px) {
    .h2-products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
    .h2-products-grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
}

/* Listagens (busca/categoria): máximo 4 por linha */
.h2-products-grid--4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .h2-products-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
    .h2-products-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
    .h2-products-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.h2-empty {
    color: var(--h2-muted, #8a7a6e);
    font-size: 0.9375rem;
    margin: 0;
}
