:root {
    --color-bg: #fffaf2;
    --color-card: #ffffff;
    --color-primary: #d9b98f;
    --color-primary-dark: #a97842;
    --color-purple: #7d63d8;
    --color-purple-soft: #f2edff;
    --color-text: #17151a;
    --color-muted: #81768d;
    --color-border: rgba(225, 205, 180, 0.86);
    --color-whatsapp: #25d366;
    --shadow-soft: 0 18px 44px rgba(120, 84, 48, 0.09);
    --shadow-card: 0 16px 38px rgba(120, 73, 83, 0.10);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(214, 226, 246, 0.72), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(242, 221, 235, 0.64), transparent 25%),
        radial-gradient(circle at 50% 88%, rgba(247, 226, 196, 0.62), transparent 34%),
        var(--color-bg);
    color: var(--color-text);
    font-family: Arial, Helvetica, sans-serif;
}

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

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

/* =========================================================
   HEADER / MENU
   ========================================================= */

.hb-header {
    position: relative;
    z-index: 90;
    overflow: visible;
    border-bottom: 1px solid rgba(210, 200, 220, 0.42);
    background:
        linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    box-shadow: 0 12px 30px rgba(70, 58, 88, 0.06);
}

.hb-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(
        90deg,
        #efe9ff,
        #f7dfc8,
        #eaf3fb,
        #efe9ff
    );
}

.hb-logo-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 20px 90px 8px;
}

.hb-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a89ed8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 5.8vw, 86px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.05em;
    text-decoration: none;
}

.hb-logo img {
    width: var(--hb-logo-width, 180px);
    height: var(--hb-logo-height, 70px);
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(80, 70, 90, 0.10));
}

.hb-header-actions {
    position: absolute;
    right: 34px;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(-50%);
}

.hb-icon-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(210, 200, 220, 0.58);
    border-radius: 50%;
    background: #ffffff;
    color: #776c88;
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(80, 70, 90, 0.10);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.hb-icon-button:hover {
    border-color: #b6a8e6;
    color: var(--color-purple);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(80, 70, 90, 0.14);
}

.hb-search-panel {
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(540px, calc(100% - 40px));
    margin: 0 auto 18px;
    overflow: hidden;
    border: 1px solid rgba(200, 192, 215, 0.75);
    border-radius: 999px;
    background: #ffffff;
}

.hb-search-open .hb-search-panel {
    display: grid;
}

.hb-search-panel input {
    min-width: 0;
    border: 0;
    padding: 13px 18px;
    background: transparent;
    color: #312d35;
    font-size: 14px;
    outline: none;
}

.hb-search-panel button {
    margin: 4px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #b6a8e6;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.hb-menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 14px;
    max-width: 1260px;
    min-height: 58px;
    margin: 0 auto;
    padding: 0 28px 14px;
    overflow: visible;
}

.hb-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(720px, calc(100% - 32px));
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(210, 200, 220, 0.75),
        transparent
    );
    transform: translateX(-50%);
}

.hb-menu-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hb-menu-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    color: #756c83;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.hb-menu-link:hover,
.hb-menu-link.active {
    background: var(--color-purple-soft);
    color: var(--color-purple);
    transform: translateY(-1px);
}

.hb-submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    z-index: 40;
    display: none;
    min-width: 250px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(210, 200, 220, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(80, 70, 90, 0.15);
    backdrop-filter: blur(14px);
}

.hb-menu-item:hover .hb-submenu {
    display: grid;
}

.hb-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    top: -12px;
    width: 100%;
    height: 12px;
}

.hb-submenu a {
    display: block;
    padding: 11px 14px;
    border-radius: 13px;
    color: #756c83;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.hb-submenu a:hover {
    padding-left: 18px;
    background: #f8f5ff;
    color: var(--color-purple);
}

/* =========================================================
   HOME
   ========================================================= */

.hb-main {
    background: var(--color-bg);
}

.hb-hero {
    position: relative;
    width: 100%;
    height: var(--hb-banner-height-desktop, 520px);
    overflow: hidden;
    border: 0;
    background: #eee7dc;
}

.hb-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(18, 14, 12, 0.24), transparent 46%),
        linear-gradient(to right, rgba(255, 250, 242, 0.18), transparent 52%);
}

.hb-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.hb-hero-fake-banner {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: end center;
    width: 100%;
    height: 100%;
    padding: 60px 24px;
    background:
        linear-gradient(120deg, rgba(70, 48, 38, 0.36), rgba(70, 48, 38, 0.04)),
        radial-gradient(circle at 18% 35%, rgba(255, 255, 255, 0.26), transparent 28%),
        linear-gradient(135deg, #dac0ae, #b99a88);
}

.hb-hero-text {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
}

.hb-hero-text span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 62px);
    line-height: 1;
}

.hb-hero-text strong {
    display: block;
    margin-top: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 400;
    line-height: 0.95;
}

.hb-home-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 22px;
}

.hb-benefit-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 104px;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(246, 241, 255, 0.82), transparent 34%),
        #ffffff;
    color: #312d35;
    box-shadow: 0 16px 36px rgba(120, 84, 48, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hb-benefit-card:hover {
    border-color: #b6a8e6;
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(120, 84, 48, 0.12);
}

.hb-benefit-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f2edff, #fff3fb);
    color: var(--color-purple);
}

.hb-benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hb-benefit-card strong {
    display: block;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hb-benefit-card span {
    display: block;
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.hb-featured-section,
.hb-home-collections-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 22px 0;
}

.hb-featured-section:last-of-type {
    padding-bottom: 78px;
}

.hb-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.hb-section-title p {
    margin: 0 0 7px;
    color: #9f6d2e;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hb-section-title h1 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.hb-home-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hb-home-collection-card {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(246, 241, 255, 0.92), transparent 35%),
        #ffffff;
    color: #312d35;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hb-home-collection-card:hover {
    border-color: #b6a8e6;
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(120, 84, 48, 0.14);
}

.hb-home-collection-card.has-image {
    min-height: 250px;
    align-items: end;
    border: 0;
    background: #d9c9b8;
    color: #ffffff;
}

.hb-home-collection-card.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(18, 14, 12, 0.74), rgba(18, 14, 12, 0.12)),
        linear-gradient(to right, rgba(18, 14, 12, 0.38), transparent 60%);
}

.hb-home-collection-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hb-home-collection-card:hover .hb-home-collection-bg {
    transform: scale(1.05);
}

.hb-home-collection-card > div {
    position: relative;
    z-index: 2;
}

.hb-home-collection-card strong {
    display: block;
    color: var(--color-text);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hb-home-collection-card p {
    max-width: 320px;
    margin: 7px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

.hb-home-collection-card.has-image strong,
.hb-home-collection-card.has-image p {
    color: #ffffff;
}

.hb-home-collection-card.has-image p {
    opacity: 0.92;
}

.hb-featured-grid,
.hb-category-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.hb-featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hb-empty-featured {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 160px;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: linear-gradient(135deg, #eaf3fb, #f4e7d3);
    color: #625a54;
    text-align: left;
}

.hb-empty-featured span {
    font-size: 42px;
}

.hb-empty-featured strong {
    display: block;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 900;
}

.hb-empty-featured p {
    margin: 6px 0 0;
    font-size: 14px;
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.product-photo {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, #dbe9f6, #f7e2c4);
    color: var(--color-muted);
    font-size: 58px;
}

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

.product-photo > span {
    display: grid;
    place-items: center;
}

.product-ribbon {
    position: absolute;
    top: 18px;
    right: -54px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 190px;
    height: 46px;
    min-height: 46px;
    padding: 0px 30px 10px;
    border-radius: 0;
    background:
        linear-gradient(135deg, #8f7bd6 0%, #7d63d8 48%, #5d45c8 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: 0.10em;
    text-align: center;
    text-transform: uppercase;
    white-space: pre-line;
    box-shadow: 0 12px 24px rgba(93, 69, 200, 0.28);
    transform: rotate(45deg);
    transform-origin: center;
}

.product-ribbon {
    text-wrap: balance;
}

.product-ribbon::before,
.product-ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.72);
}

.product-ribbon::before {
    left: 14px;
}

.product-ribbon::after {
    right: 14px;
}

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.product-name {
    margin: 0 0 7px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.product-collection-badge {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff3cf;
    color: #9f7b20;
    font-size: 11px;
    font-weight: 900;
}

.product-category-label {
    margin: -2px 0 10px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
}

.product-old-price {
    display: block;
    margin: 10px 0 0;
    color: #9b93a5;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: line-through;
    text-decoration-color: rgba(155, 147, 165, 0.55);
    text-decoration-thickness: 1px;
}

.product-price {
    display: block;
    margin: 10px 0 0;
    color: var(--color-primary-dark);
    font-size: 15px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.product-price.has-discount {
    margin-top: 3px;
}

.product-price-detail-label {
    color: var(--color-primary-dark);
}

.product-price-details {
    margin: 12px 0 0;
}

.product-price-details summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fffaf1;
    color: var(--color-primary-dark);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    list-style: none;
}

.product-price-details summary::-webkit-details-marker {
    display: none;
}

.product-price-details[open] summary {
    border-radius: 18px 18px 10px 10px;
    background: #ffffff;
}

.product-price-items {
    display: grid;
    max-height: 220px;
    margin-top: 8px;
    overflow-y: auto;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fffaf1;
}

.product-price-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.product-price-item:last-child {
    border-bottom: 0;
}

.product-price-item span {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.35;
}

.product-price-item strong {
    color: var(--color-text);
    font-size: 13px;
    white-space: nowrap;
}

.product-measures-box {
    display: grid;
    gap: 10px;
    margin: 14px 0 16px;
    padding: 16px 14px 12px;
    border: 1px solid rgba(225, 205, 180, 0.85);
    border-radius: 18px;
    background: #fffaf2;
}

.product-measure-line {
    display: grid;
    gap: 7px;
}

.product-measure-line + .product-measure-line {
    margin-top: 4px;
}

.product-measure-line strong {
    display: block;
    margin: 0;
    padding: 0;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-measure-values {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.product-measure-values span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--color-purple-soft);
    color: #735dc7;
    font-size: 13px;
    font-weight: 950;
}

.custom-product-box {
    display: grid;
    gap: 7px;
    margin: 0 0 14px;
    padding: 11px;
    border: 1px solid #d5eee4;
    border-radius: 16px;
    background: #f4fbf8;
}

.custom-product-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e1f7e8;
    color: #267a42;
    font-size: 12px;
    font-weight: 900;
}

.custom-product-box p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.4;
}

.product-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: auto;
    border-radius: 999px;
    background: var(--color-whatsapp);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.product-button:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
}

/* =========================================================
   CATEGORY / COLLECTION / SEARCH
   ========================================================= */

.hb-category-main,
.hb-search-main {
    min-height: 70vh;
    padding: 34px 22px 74px;
    background: var(--color-bg);
}

.hb-category-hero,
.hb-search-hero-panel {
    max-width: 1180px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(120, 84, 48, 0.07);
}

.hb-category-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: center;
    padding: 34px;
}

.hb-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: #958b9d;
    font-size: 13px;
    font-weight: 800;
}

.hb-breadcrumb a {
    color: #958b9d;
}

.hb-breadcrumb a:hover {
    color: #b6a8e6;
}

.hb-breadcrumb strong {
    color: #6f6578;
}

.hb-category-hero h1,
.hb-search-hero-panel h1,
.hb-store-info-hero h1 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.hb-category-hero p,
.hb-search-hero-panel p,
.hb-store-info-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #645d66;
    font-size: 15px;
    line-height: 1.7;
}

.hb-category-hero-image,
.hb-category-hero-icon {
    width: 220px;
    height: 170px;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, #edf5fb, #f5e6d2);
}

.hb-category-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hb-category-hero-icon {
    display: grid;
    place-items: center;
    font-size: 54px;
}

.hb-search-kicker {
    margin: 0 0 8px;
    color: #bf7f35;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hb-subcategory-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1180px;
    margin: 20px auto 0;
}

.hb-subcategory-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #ffffff;
    color: #706777;
    font-size: 13px;
    font-weight: 900;
}

.hb-subcategory-strip a:hover,
.hb-subcategory-strip a.active {
    border-color: #b6a8e6;
    color: #7d63d8;
}

.hb-category-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 26px;
    max-width: 1180px;
    margin: 28px auto 0;
}

.hb-filter-card {
    position: sticky;
    top: 20px;
    align-self: start;
    padding: 18px 20px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(120, 84, 48, 0.06);
}

.hb-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.hb-filter-title strong {
    color: var(--color-text);
    font-size: 24px;
    font-weight: 900;
}

.hb-filter-title a {
    color: #7d63d8;
    font-size: 12px;
    font-weight: 900;
}

.hb-filter-card form {
    display: grid;
}

.hb-filter-field {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 13px 0;
    border-top: 1px solid rgba(210, 200, 220, 0.55);
}

.hb-filter-field:first-child {
    border-top: 0;
    padding-top: 0;
}

.hb-filter-field label {
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hb-filter-field input,
.hb-filter-field select {
    width: 100%;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(210, 200, 220, 0.9);
    border-radius: 14px;
    background: #fffdfb;
    color: #312d35;
    font-size: 14px;
    outline: none;
}

.hb-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 13px 0;
    border-top: 1px solid rgba(210, 200, 220, 0.55);
}

.hb-filter-row .hb-filter-field {
    padding: 0;
    border-top: 0;
}

.hb-measure-filter-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 0;
}

.hb-measure-filter-option {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 23px;
    color: #1f1f1f;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.hb-measure-filter-option input {
    width: 13px;
    height: 13px;
    margin: 0;
    accent-color: #b6a8e6;
}

.hb-measure-filter-option span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hb-measure-filter-option small {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 500;
}

.hb-measure-filter-option.is-disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.hb-measure-filter-option.is-disabled span {
    color: #9d96a7;
    text-decoration: line-through;
}

.hb-measure-filter-option input:disabled {
    cursor: not-allowed;
}

.hb-filter-button {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #8f7bd6, #b26ad6);
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(143, 123, 214, 0.28);
}

.hb-filter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(143, 123, 214, 0.36);
}

.hb-products-toolbar,
.hb-search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.hb-products-toolbar strong,
.hb-search-results-header strong {
    display: block;
    color: var(--color-text);
    font-size: 22px;
    font-weight: 900;
}

.hb-products-toolbar span,
.hb-search-results-header span {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.hb-products-toolbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.hb-order-form {
    margin: 0;
}

.hb-order-input {
    display: none;
}

.hb-order-dropdown {
    position: relative;
    min-width: 235px;
}

.hb-order-dropdown summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 44px;
    padding: 0 16px 0 18px;
    border: 1px solid rgba(182, 168, 230, 0.95);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #fbf8ff);
    color: #756c83;
    cursor: pointer;
    font-size: 13px;
    font-weight: 950;
    list-style: none;
    box-shadow:
        0 12px 28px rgba(80, 70, 90, 0.08),
        0 0 0 4px rgba(182, 168, 230, 0.10);
    user-select: none;
}

.hb-order-dropdown summary::-webkit-details-marker {
    display: none;
}

.hb-order-dropdown summary strong {
    color: #9b8bd8;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.18s ease;
}

.hb-order-dropdown[open] summary strong {
    transform: rotate(180deg);
}

.hb-order-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 40;
    display: grid;
    width: 100%;
    min-width: 245px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(210, 200, 220, 0.85);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(80, 70, 90, 0.18);
    backdrop-filter: blur(14px);
}

.hb-order-dropdown-menu button {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #756c83;
    cursor: pointer;
    font-size: 13px;
    font-weight: 850;
    text-align: left;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.hb-order-dropdown-menu button:hover {
    background: var(--color-purple-soft);
    color: #735dc7;
    transform: translateX(2px);
}

.hb-order-dropdown-menu button.active {
    background: linear-gradient(135deg, var(--color-purple), #a94fd8);
    color: #ffffff;
}

.hb-search-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
    padding: 32px;
}

.hb-search-form-large {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(210, 200, 220, 0.9);
    border-radius: 999px;
    background: #fffdfb;
}

.hb-search-form-large input {
    min-width: 0;
    border: 0;
    padding: 0 18px;
    background: transparent;
    color: #312d35;
    font-size: 14px;
    outline: none;
}

.hb-search-form-large button {
    min-height: 46px;
    margin: 4px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #b6a8e6;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.hb-search-results-section {
    max-width: 1180px;
    margin: 0 auto;
}

.hb-search-back-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(210, 200, 220, 0.9);
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
}

.hb-category-empty,
.hb-search-empty {
    display: grid;
    place-items: center;
    min-height: 280px;
    padding: 36px;
    border: 1px dashed var(--color-border);
    border-radius: 26px;
    background: #ffffff;
    text-align: center;
}

.hb-category-empty span,
.hb-search-empty span {
    font-size: 42px;
}

.hb-category-empty strong,
.hb-search-empty strong {
    margin-top: 12px;
    color: var(--color-text);
    font-size: 22px;
    font-weight: 900;
}

.hb-category-empty p,
.hb-search-empty p {
    margin: 8px 0 18px;
    color: var(--color-muted);
}

.hb-category-empty a,
.hb-search-empty a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #b6a8e6;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

/* =========================================================
   LA TIENDA
   ========================================================= */

.hb-store-info-page {
    min-height: 70vh;
    padding: 34px 22px 74px;
    background: var(--color-bg);
}

.hb-store-info-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(246, 241, 255, 0.78), transparent 34%),
        #ffffff;
    box-shadow: var(--shadow-soft);
}

.hb-store-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hb-store-info-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid rgba(210, 200, 220, 0.9);
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 950;
}

.hb-store-info-actions a:first-child {
    border-color: var(--color-whatsapp);
    background: var(--color-whatsapp);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.hb-store-info-visual {
    display: grid;
    place-items: center;
    overflow: hidden;
    min-height: 260px;
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #eaf3fb, #f4e7d3);
    text-align: center;
    box-shadow: 0 18px 42px rgba(120, 84, 48, 0.10);
}

.hb-store-info-visual.has-image {
    padding: 0;
    background: #ffffff;
}

.hb-store-info-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.hb-store-info-visual span {
    font-size: 58px;
}

.hb-store-info-visual strong {
    display: block;
    margin-top: 14px;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hb-store-info-visual small {
    display: block;
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.hb-store-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 22px auto 0;
}

.hb-store-info-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    min-height: 90px;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(120, 84, 48, 0.07);
}

.hb-store-info-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #f8edff;
    font-size: 23px;
}

.hb-store-info-card h2 {
    margin: 0 0 8px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 950;
    line-height: 1.15;
}

.hb-store-info-card p {
    margin: 0 0 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

.hb-store-info-card a {
    display: inline-flex;
    width: fit-content;
    margin: 4px 8px 0 0;
    color: var(--color-purple);
    font-size: 13px;
    font-weight: 950;
}

.hb-store-info-card a:hover {
    text-decoration: underline;
}

.hb-store-map-section {
    max-width: 1180px;
    margin: 32px auto 0;
}

.hb-store-map-section .hb-section-title {
    flex-direction: row !important;
}

.hb-store-map-section .hb-section-title > div {
    order: 1;
}

.hb-store-map-section .hb-section-title > p {
    order: 2;
    text-align: right;
}

.hb-store-map-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(120, 84, 48, 0.09);
}

.hb-store-map-card iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

.hb-store-map-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-top: 1px solid var(--color-border);
}

.hb-store-map-info strong {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 950;
}

.hb-store-map-info span {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 750;
}

.hb-store-map-info a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--color-purple-soft);
    color: #735dc7;
    font-size: 13px;
    font-weight: 950;
}

/* =========================================================
   FOOTER / WHATSAPP
   ========================================================= */

.hb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 30px 44px;
    border-top: 1px solid rgba(210, 200, 220, 0.45);
    background: #ffffff;
    color: var(--color-muted);
    font-size: 14px;
}

.hb-footer > div {
    display: grid;
    gap: 5px;
}

.hb-footer strong {
    color: #b6a8e6;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.hb-footer a {
    color: var(--color-muted);
    font-weight: 900;
}

.hb-footer-hours {
    display: grid;
    gap: 5px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 750;
}

.hb-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hb-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.hb-whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 42px rgba(37, 211, 102, 0.42);
}

.hb-whatsapp-float:active {
    transform: translateY(0) scale(0.98);
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1080px) {
    .hb-menu {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
    }

    .hb-submenu {
        display: none !important;
    }

    .hb-featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hb-store-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .hb-category-layout {
        grid-template-columns: 1fr;
    }

    .hb-filter-card {
        position: static;
    }

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

    .hb-store-info-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .hb-search-hero-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .hb-search-form-large {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .hb-search-form-large input {
        min-height: 46px;
    }
}

@media (max-width: 760px) {
    .hb-logo-area {
        justify-content: flex-start;
        min-height: 88px;
        padding: 14px 74px 6px 20px;
    }

    .hb-logo {
        font-size: 46px;
    }

    .hb-header-actions {
        right: 18px;
    }

    .hb-icon-button {
        width: 39px;
        height: 39px;
    }

    .hb-menu {
        gap: 7px;
        min-height: 50px;
        padding: 0 14px 10px;
    }

    .hb-menu-link {
        min-height: 36px;
        padding: 0 13px;
        font-size: 13px;
    }

    .hb-hero {
        height: var(--hb-banner-height-mobile, 360px);
    }

    .hb-home-benefits,
    .hb-home-collections-section,
    .hb-featured-section,
    .hb-category-main,
    .hb-search-main,
    .hb-store-info-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hb-home-benefits {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .hb-benefit-card {
        min-height: 92px;
        padding: 18px;
        border-radius: 22px;
    }

    .hb-section-title,
    .hb-products-toolbar,
    .hb-search-results-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .hb-home-collections-grid,
    .hb-featured-grid,
    .hb-category-product-grid,
    .hb-store-info-grid {
        grid-template-columns: 1fr;
    }

    .hb-category-hero {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .hb-category-hero-image,
    .hb-category-hero-icon {
        width: 100%;
    }

    .hb-products-toolbar-actions,
    .hb-order-form,
    .hb-order-dropdown {
        width: 100%;
    }

    .hb-order-dropdown {
        min-width: 0;
    }

    .hb-order-dropdown-menu {
        left: 0;
        right: 0;
        width: 100%;
        min-width: 0;
    }

    .hb-filter-row {
        grid-template-columns: 1fr;
    }

    .hb-store-info-hero {
        padding: 26px;
        border-radius: 26px;
    }

    .hb-store-info-visual {
        min-height: 220px;
        border-radius: 24px;
    }

    .hb-store-info-card {
        min-height: auto;
        border-radius: 22px;
    }

    .hb-store-map-card iframe {
        height: 300px;
    }

    .hb-store-map-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .hb-store-map-section .hb-section-title {
        align-items: flex-start;
        flex-direction: column !important;
    }

    .hb-store-map-section .hb-section-title > div,
    .hb-store-map-section .hb-section-title > p {
        order: initial;
        text-align: left;
    }

    .hb-footer {
        display: grid;
        padding: 28px 22px;
        text-align: center;
    }

    .hb-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

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

@media (max-width: 500px) {
    .hb-measure-filter-list {
        grid-template-columns: 1fr;
    }

    .hb-empty-featured {
        display: grid;
        text-align: center;
    }
}


/* =========================================================
   ORDEM DOS TÍTULOS DAS SEÇÕES - PC E CELULAR
   ========================================================= */

.hb-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.hb-section-title h1 {
    order: 1;
}

.hb-section-title p {
    order: 2;
    margin: 0 0 7px;
    text-align: right;
}

/* Celular: título grande em cima, título pequeno embaixo */
@media (max-width: 760px) {
    .hb-section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .hb-section-title h1 {
        order: 1;
    }

    .hb-section-title p {
        order: 2;
        margin: 0;
        text-align: left;
    }
}

/* =========================================================
   PRODUCT CARD - versão mais limpa e compacta
   ========================================================= */

.hb-featured-grid,
.hb-category-product-grid {
    align-items: start;
}

.product-card {
    height: auto;
    align-self: start;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
    box-shadow: 0 14px 34px rgba(120, 73, 83, 0.09);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.product-card:hover {
    border-color: rgba(182, 168, 230, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(120, 73, 83, 0.13);
}

.product-photo {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.38), transparent 28%),
        linear-gradient(135deg, #dbe9f6, #f7e2c4);
}

.product-photo > span {
    font-size: 44px;
    filter: drop-shadow(0 10px 16px rgba(80, 70, 90, 0.10));
}

.product-content {
    display: grid;
    flex: initial;
    gap: 12px;
    padding: 15px 16px 16px;
}

.product-card-main {
    display: grid;
    gap: 7px;
}

.product-title-row {
    display: grid;
    gap: 8px;
}

.product-name {
    margin: 0;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.product-collection-badge {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff3cf;
    color: #9f7b20;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
}

.product-category-label {
    margin: 0;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.35;
}

.product-price-block {
    display: grid;
    gap: 3px;
    margin-top: 3px;
}

.product-old-price {
    margin: 0;
    color: #9b93a5;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: line-through;
    text-decoration-color: rgba(155, 147, 165, 0.58);
    text-decoration-thickness: 1px;
}

.product-price {
    margin: 0;
    color: var(--color-primary-dark);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.product-mini-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.product-mini-info span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f7f3ff;
    color: #6f5bb9;
    font-size: 11px;
    font-weight: 900;
}

.product-measures-box {
    display: grid;
    gap: 9px;
    margin: 2px 0 0;
    padding: 12px;
    border: 1px solid rgba(225, 205, 180, 0.78);
    border-radius: 17px;
    background:
        radial-gradient(circle at top right, rgba(246, 241, 255, 0.82), transparent 38%),
        #fffaf4;
}

.product-measures-head strong {
    display: block;
    color: #9f6d2e;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.09em;
    line-height: 1.1;
    text-transform: uppercase;
}

.product-measure-line {
    display: grid;
    gap: 6px;
}

.product-measure-line + .product-measure-line {
    margin-top: 1px;
}

.product-measure-line strong {
    color: #81768d;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.07em;
    line-height: 1.1;
    text-transform: uppercase;
}

.product-measure-values {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-measure-values span {
    min-width: 26px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f2edff;
    color: #735dc7;
    font-size: 12px;
    font-weight: 950;
}

.product-price-details {
    margin: 0;
}

.product-price-details summary,
.custom-product-box summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(225, 205, 180, 0.78);
    border-radius: 999px;
    background: #fffaf1;
    color: var(--color-primary-dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 950;
    list-style: none;
}

.product-price-details summary::-webkit-details-marker,
.custom-product-box summary::-webkit-details-marker {
    display: none;
}

.product-price-items {
    max-height: 190px;
    margin-top: 8px;
}

.custom-product-box {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.custom-product-box p {
    margin: 0;
    padding: 11px;
    border: 1px solid #d5eee4;
    border-radius: 15px;
    background: #f4fbf8;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
}

.product-button {
    min-height: 42px;
    margin-top: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #19b957);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.20);
}

.product-button:hover {
    background: linear-gradient(135deg, #23c963, #16a94f);
}

@media (max-width: 760px) {
    .product-content {
        gap: 10px;
        padding: 14px;
    }

    .product-name {
        font-size: 17px;
    }

    .product-price {
        font-size: 15px;
    }

    .product-measures-box {
        padding: 11px;
    }

    .product-button {
        min-height: 40px;
    }
}

/* =========================================================
   PRODUCT CARD - detalles ocultos dentro del card
   ========================================================= */

.product-card-details {
    margin: 0;
}

.product-card-details summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(182, 168, 230, 0.62);
    border-radius: 999px;
    background: #f8f5ff;
    color: #735dc7;
    cursor: pointer;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    list-style: none;
}

.product-card-details summary::-webkit-details-marker {
    display: none;
}

.product-card-details summary::after {
    content: "⌄";
    margin-left: 8px;
    font-size: 13px;
    font-weight: 950;
}

.product-card-details[open] summary::after {
    content: "⌃";
}

.product-card-details-content {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.product-mini-info.inside-details {
    margin: 0;
}

.product-price-details-open {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(225, 205, 180, 0.78);
    border-radius: 17px;
    background: #fffaf4;
}

.product-price-details-open > strong,
.custom-product-box.open > strong {
    color: #9f6d2e;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.09em;
    line-height: 1.1;
    text-transform: uppercase;
}

.custom-product-box.open {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid #d5eee4;
    border-radius: 17px;
    background: #f4fbf8;
}

.custom-product-box.open p {
    padding: 0;
    border: 0;
    background: transparent;
}

.product-content > .product-measures-box,
.product-content > .product-price-details,
.product-content > .custom-product-box:not(.open) {
    display: none;
}

/* =========================================================
   PRODUCT CARD - flecha bonita no botão Ver detalles
   ========================================================= */

.product-card-details summary {
    position: relative;
    justify-content: center;
    padding: 0 42px 0 18px;
}

.product-card-details summary::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 7px;
    height: 7px;
    margin: 0;
    border-right: 2px solid #735dc7;
    border-bottom: 2px solid #735dc7;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.18s ease;
}

.product-card-details[open] summary::after {
    transform: translateY(-35%) rotate(225deg);
}

/* =========================================================
   PRODUCT CARD - centralizar Ver detalles + corrigir seta
   ========================================================= */

.product-card-details summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 100%;
    padding: 0 46px;
    text-align: center;
}

.product-card-details summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #735dc7;
    border-bottom: 2px solid #735dc7;
    transform: translateY(-65%) rotate(45deg);
    transform-origin: center;
    transition: transform 0.18s ease, top 0.18s ease;
}

.product-card-details[open] summary::after {
    top: 52%;
    transform: translateY(-35%) rotate(-135deg);
}

/* =========================================================
   PRODUCT CARD - seta fixa sem rotação bugada
   ========================================================= */

.product-card-details summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 100%;
    padding: 0 46px;
    text-align: center;
}

.product-card-details summary::after {
    content: "▾";
    position: absolute;
    right: 22px;
    top: 50%;
    width: auto;
    height: auto;
    border: 0;
    color: #735dc7;
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    transform: translateY(-50%);
}

.product-card-details[open] summary::after {
    content: "▴";
    top: 50%;
    transform: translateY(-50%);
}

/* =========================================================
   ORDENAR - centralizar texto + seta nova
   ========================================================= */

.hb-order-dropdown summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    padding: 0 46px;
    text-align: center;
}

.hb-order-dropdown summary span {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.hb-order-dropdown summary strong {
    display: none;
}

.hb-order-dropdown summary::after {
    content: "▾";
    position: absolute;
    right: 22px;
    top: 50%;
    color: #735dc7;
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    transform: translateY(-50%);
}

.hb-order-dropdown[open] summary::after {
    content: "▴";
}

/* =========================================================
   PAGINACIÓN DE PRODUCTOS
   ========================================================= */

.hb-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
}

.hb-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hb-page-button {
    display: grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 13px;
    border: 1px solid rgba(210, 200, 220, 0.62);
    border-radius: 7px;
    background: #f0eff2;
    color: #81768d;
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        border-color 0.18s ease;
}

.hb-page-button:hover {
    border-color: #b6a8e6;
    background: #f8f5ff;
    color: #735dc7;
    transform: translateY(-1px);
}

.hb-page-button.active {
    border-color: #d82018;
    background: #d82018;
    color: #ffffff;
}

.hb-pagination-summary {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(210, 200, 220, 0.62);
    border-radius: 4px;
    background: #ffffff;
    color: #81768d;
    font-size: 13px;
    font-weight: 750;
}

@media (max-width: 760px) {
    .hb-pagination-wrap {
        align-items: stretch;
        flex-direction: column;
        margin-top: 26px;
    }

    .hb-pagination {
        flex-wrap: wrap;
    }

    .hb-page-button {
        min-width: 38px;
        height: 38px;
    }

    .hb-pagination-summary {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   PAGINACIÓN - mostrar só quando tiver várias páginas
   ========================================================= */

.hb-pagination-wrap {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 36px;
}

/* =========================================================
   FILTROS MOBILE - fechado por padrão
   SOMENTE CELULAR
   ========================================================= */

@media (max-width: 760px) {
    .hb-filter-card {
        overflow: hidden;
        margin-bottom: 18px;
        padding: 0;
        border-radius: 24px;
    }

    .hb-filter-card .hb-filter-title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 66px;
        padding: 0 22px;
        border-bottom: 0;
        cursor: pointer;
    }

    .hb-filter-card .hb-filter-title strong {
        font-size: 28px;
        line-height: 1;
    }

    .hb-filter-card .hb-filter-title a {
        display: none;
    }

    .hb-filter-card .hb-filter-title::after {
        content: "▾";
        color: #735dc7;
        font-size: 17px;
        font-weight: 950;
        line-height: 1;
    }

    .hb-filter-card form {
        display: none;
        padding: 0 22px 22px;
    }

    .hb-filter-card.is-open .hb-filter-title {
        border-bottom: 1px solid rgba(210, 200, 220, 0.52);
    }

    .hb-filter-card.is-open .hb-filter-title::after {
        content: "▴";
    }

    .hb-filter-card.is-open .hb-filter-title a {
        display: inline-flex;
        color: #735dc7;
        font-size: 14px;
        font-weight: 950;
    }

    .hb-filter-card.is-open form {
        display: grid;
    }
}

/* =========================================================
   FILTROS MOBILE - medidas em 2 colunas
   ========================================================= */

@media (max-width: 760px) {
    .hb-measure-filter-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 22px;
        row-gap: 8px;
    }

    .hb-measure-filter-option {
        min-height: 30px;
        width: 100%;
    }
}

/* =========================================================
   BUSCA - RELACIONADOS
   ========================================================= */

.hb-search-related {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.hb-search-related > div {
    display: grid;
    gap: 9px;
}

.hb-search-related strong {
    color: #17151a;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hb-search-related > div > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hb-search-related a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(182, 168, 230, 0.72);
    border-radius: 999px;
    background: #f8f5ff;
    color: #735dc7;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.hb-search-related a:hover {
    background: #efe9ff;
}
/* =========================================================
   CABEÇALHO - FUNDO SUAVE PREMIUM
   ========================================================= */

.hb-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(248, 210, 220, 0.34), transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(219, 232, 246, 0.42), transparent 30%),
        radial-gradient(circle at 48% 100%, rgba(247, 226, 196, 0.38), transparent 36%),
        linear-gradient(135deg, #fffdf8 0%, #ffffff 48%, #fffaf2 100%);
}

.hb-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(143, 111, 232, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(180, 126, 82, 0.07) 1px, transparent 1px);
    background-size: 34px 34px, 52px 52px;
    background-position: 0 0, 18px 14px;
    opacity: 0.45;
}

.hb-header::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -160px;
    width: 420px;
    height: 420px;
    z-index: 0;
    pointer-events: none;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 231, 237, 0.62), transparent 66%);
}

.hb-header > * {
    position: relative;
    z-index: 1;
}

/* =========================================================
   BANNER HOME CLICABLE
   ========================================================= */

.hb-hero-link {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    cursor: pointer;
    text-decoration: none;
}

.hb-hero-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.24s ease,
        filter 0.24s ease;
}

.hb-hero-link:hover img {
    transform: scale(1.015);
    filter: brightness(1.03);
}

.hb-hero-link:focus-visible {
    outline: 4px solid rgba(143, 111, 232, 0.42);
    outline-offset: 4px;
}

/* =========================================================
   CORREÇÃO - SUBMENU DO TOPO ACIMA DO BANNER
   ========================================================= */

.hb-header {
    overflow: visible;
    z-index: 200;
}

.hb-menu,
.hb-menu-item {
    position: relative;
    z-index: 220;
}

.hb-submenu {
    z-index: 300;
}

.hb-hero {
    position: relative;
    z-index: 1;
}

/* =========================================================
   CORREÇÃO - remover rolagem horizontal do site público
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    width: 100%;
}

.hb-header,
.hb-main,
.hb-hero,
.hb-section,
.hb-container,
.hb-footer {
    max-width: 100%;
}

.hb-hero {
    overflow: hidden;
}

.hb-hero img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* fallback para navegadores que não entendem overflow-x: clip */
@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

/* =========================================================
   FOOTER FINAL - baixo, suave, mapa e sem conflito com WhatsApp
   ========================================================= */

.hb-footer {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 116px;
    margin-top: 0;
    padding: 26px clamp(44px, 7vw, 128px);
    border-top: 1px solid rgba(210, 200, 220, 0.48);
    background:
        radial-gradient(circle at 7% 30%, rgba(248, 210, 220, 0.30), transparent 26%),
        radial-gradient(circle at 86% 20%, rgba(219, 232, 246, 0.36), transparent 30%),
        radial-gradient(circle at 52% 105%, rgba(247, 226, 196, 0.32), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #fffdf8 52%, #fff8ef 100%);
    color: var(--color-muted);
}

.hb-footer::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(182, 168, 230, 0.16), transparent 68%);
    pointer-events: none;
}

.hb-footer::after {
    content: "";
    position: absolute;
    right: 40px;
    top: -130px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(247, 226, 196, 0.22), transparent 68%);
    pointer-events: none;
}

.hb-footer-store,
.hb-footer-contact {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
}

.hb-footer-store {
    max-width: 760px;
}

.hb-footer-contact {
    justify-items: end;
    text-align: right;
}

.hb-footer strong {
    color: #9c85e6;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.hb-footer span {
    color: #6f6578;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.hb-footer-hours {
    display: grid;
    gap: 4px;
    color: #6f6578;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
}

.hb-footer-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin-top: 6px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f2edff;
    color: #735dc7 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(80, 70, 90, 0.08);
}

.hb-footer-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin-top: 8px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f2edff;
    color: #735dc7 !important;
    font-size: 12px;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(80, 70, 90, 0.08);
}

.hb-footer-map-button:hover {
    background: #e9e0ff;
    color: #5d45c8 !important;
}

@media (max-width: 900px) {
    .hb-footer {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: 0;
        padding: 28px 18px 25px;
        text-align: center;
    }

    .hb-footer-store,
    .hb-footer-contact {
        justify-items: center;
        max-width: none;
        text-align: center;
    }

    .hb-footer strong {
        font-size: 36px;
    }

    .hb-footer span,
    .hb-footer-hours,
    .hb-footer-phone {
        font-size: 15px !important;
        line-height: 1.45;
    }

    .hb-footer-map-button {
        margin-top: 10px;
        min-height: 38px;
        padding: 0 17px;
        font-size: 13px;
    }
    .hb-footer-phone {
        min-height: 38px;
        margin-top: 8px;
        padding: 0 17px;
        font-size: 15px !important;
    }
}

/* =========================================================
   MOBILE - CABEÇALHO, MENU EM ETAPAS E BANNER
   ========================================================= */

.hb-mobile-menu-button,
.hb-mobile-menu-head,
.hb-submenu-mobile-head,
.hb-mobile-submenu-trigger {
    display: none;
}

@media (max-width: 760px) {
    body.hb-mobile-menu-open {
        overflow: hidden;
    }

    body.hb-mobile-menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 120;
        background: rgba(20, 18, 24, 0.18);
        pointer-events: none;
    }

    .hb-header {
        position: relative;
        z-index: 300;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        background:
            radial-gradient(circle at 10% 20%, rgba(248, 210, 220, 0.28), transparent 28%),
            radial-gradient(circle at 84% 12%, rgba(219, 232, 246, 0.34), transparent 30%),
            linear-gradient(135deg, #fffdf8 0%, #ffffff 52%, #fffaf2 100%);
    }

    .hb-header > .hb-logo-area,
    .hb-header > .hb-search-panel {
        position: relative;
        z-index: 1;
    }

    .hb-logo-area {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) 58px;
        align-items: center;
        min-height: 86px !important;
        padding: 9px 16px 8px !important;
    }

    .hb-mobile-menu-button {
        display: inline-flex;
        grid-column: 1;
        justify-self: start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .hb-mobile-menu-button span {
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 999px;
        background: #17151a;
    }

    .hb-logo {
        grid-column: 2;
        justify-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 78px !important;
        height: 78px !important;
        max-width: 78px !important;
        max-height: 78px !important;
        text-align: center;
    }

    .hb-logo img {
        width: auto !important;
        height: auto !important;
        max-width: 72px !important;
        max-height: 72px !important;
        object-fit: contain !important;
    }

    .hb-header-actions {
        position: static;
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 0;
        transform: none;
    }

    .hb-header-actions .hb-icon-button {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        color: #81768d;
        font-size: 40px;
        box-shadow: 0 14px 30px rgba(80, 70, 90, 0.13);
    }

    .hb-header-actions a[href*="wa.me"] {
        display: none;
    }

    .hb-search-panel {
        width: calc(100% - 24px);
        margin: 0 auto 12px;
    }

    /* Menu lateral */
    .hb-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 320 !important;
        display: block !important;
        width: min(78vw, 340px) !important;
        max-width: calc(100vw - 58px) !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(100dvh - 12px) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border-right: 1px solid rgba(210, 200, 220, 0.62);
        border-radius: 0 0 24px 0;
        background:
            linear-gradient(180deg, #ffffff 0%, #fffdf8 58%, #fff8ef 100%) !important;
        box-shadow: 18px 0 38px rgba(30, 24, 36, 0.16);
        overscroll-behavior: contain;
        transform: translateX(-110%);
        transition: transform 0.24s ease;
        pointer-events: none;
    }

    body.hb-mobile-menu-open .hb-menu {
        transform: translateX(0);
        pointer-events: auto;
    }

    .hb-mobile-menu-head {
        position: static !important;
        top: auto !important;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 58px;
        align-items: center;
        min-height: 64px;
        border-bottom: 1px solid rgba(210, 200, 220, 0.58);
        background:
            radial-gradient(circle at 18% 20%, rgba(248, 210, 220, 0.42), transparent 34%),
            radial-gradient(circle at 88% 18%, rgba(219, 232, 246, 0.48), transparent 36%),
            linear-gradient(135deg, #fffdf8, #ffffff);
    }

    .hb-mobile-menu-head strong {
        padding-left: 20px;
        color: #17151a;
        font-size: 16px;
        font-weight: 950;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .hb-mobile-menu-close,
    .hb-submenu-back {
        display: grid;
        place-items: center;
        width: 58px;
        height: 64px;
        border: 0;
        background: transparent;
        color: #17151a;
        cursor: pointer;
        font-family: inherit;
        font-size: 30px;
        font-weight: 400;
        line-height: 1;
    }

    .hb-mobile-menu-close {
        border-left: 1px solid rgba(210, 200, 220, 0.58);
    }

    .hb-submenu-back {
        border-right: 1px solid rgba(210, 200, 220, 0.58);
    }

    .hb-menu::before {
        display: none;
    }

    .hb-menu-item {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(210, 200, 220, 0.44);
        background: rgba(255, 255, 255, 0.74);
    }

    .hb-menu-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 62px;
        padding: 0 20px !important;
        border-radius: 0;
        color: #17151a;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.02em;
        text-decoration: none;
        white-space: normal;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.74));
    }

    .hb-menu-link:hover,
    .hb-menu-link.active {
        color: #735dc7;
        background:
            radial-gradient(circle at 12% 50%, rgba(182, 168, 230, 0.28), transparent 34%),
            linear-gradient(90deg, #f8f5ff, #fffdf8);
        transform: none;
    }

    /* Link pai + botão de submenu separado */
    .hb-menu-item.has-mobile-submenu {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 54px;
        align-items: stretch;
    }

    .hb-menu-item.has-mobile-submenu > .hb-menu-link {
        grid-column: 1;
        min-width: 0;
        padding-right: 10px !important;
    }

    .hb-menu-item.has-mobile-submenu > .hb-menu-link::after {
        display: none;
        content: none;
    }

    .hb-mobile-submenu-trigger {
        display: grid;
        grid-column: 2;
        place-items: center;
        width: 54px;
        min-height: 62px;
        border: 0;
        border-left: 1px solid rgba(210, 200, 220, 0.52);
        background:
            linear-gradient(135deg, #f8f5ff, #fffaf2);
        color: #735dc7;
        cursor: pointer;
        font-family: inherit;
        font-size: 32px;
        font-weight: 300;
        line-height: 1;
    }

    .hb-mobile-submenu-trigger:active,
    .hb-mobile-submenu-trigger:hover {
        background: #efe9ff;
    }

    /* Modo segunda tela */
    .hb-menu.is-submenu-mode .hb-mobile-menu-head {
        display: none !important;
    }

    .hb-menu.is-submenu-mode {
        height: 100dvh !important;
        min-height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
    }

    .hb-menu.is-submenu-mode .hb-menu-item:not(.is-mobile-submenu-open) {
        display: none !important;
    }

    .hb-menu.is-submenu-mode .hb-menu-item.is-mobile-submenu-open {
        display: block !important;
    }

    .hb-menu.is-submenu-mode .hb-menu-item.is-mobile-submenu-open > .hb-menu-link,
    .hb-menu.is-submenu-mode .hb-menu-item.is-mobile-submenu-open > .hb-mobile-submenu-trigger {
        display: none !important;
    }

    .hb-menu .hb-submenu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        max-height: 100dvh !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border: 0;
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        overscroll-behavior: contain;
    }

    .hb-menu-item.is-mobile-submenu-open > .hb-submenu {
        display: block !important;
    }

    .hb-submenu::before {
        display: none;
    }

    .hb-submenu-mobile-head {
        position: static !important;
        top: auto !important;
        z-index: 1;
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr) 58px;
        align-items: center;
        min-height: 64px;
        border-bottom: 1px solid rgba(210, 200, 220, 0.58);
        background:
            radial-gradient(circle at 18% 20%, rgba(248, 210, 220, 0.42), transparent 34%),
            radial-gradient(circle at 88% 18%, rgba(219, 232, 246, 0.48), transparent 36%),
            linear-gradient(135deg, #fffdf8, #ffffff);
    }

    .hb-submenu-mobile-head strong {
        overflow: hidden;
        color: #17151a;
        font-size: 16px;
        font-weight: 950;
        letter-spacing: 0.04em;
        text-align: center;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .hb-submenu a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 62px;
        padding: 0 20px !important;
        border-bottom: 1px solid rgba(210, 200, 220, 0.44);
        color: #17151a;
        background: rgba(255, 255, 255, 0.84);
        font-size: 18px;
        font-weight: 900;
        line-height: 1.2;
        text-decoration: none;
        white-space: normal;
    }

    .hb-submenu a:hover {
        padding-left: 20px !important;
        background: #f8f5ff;
        color: #735dc7;
    }

    /* Banner home no mobile */
    .hb-main {
        overflow: hidden;
    }

    .hb-hero {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 1600 / 620;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        border-radius: 0 !important;
        background: #fffaf2;
    }

    .hb-hero img,
    .hb-hero-link,
    .hb-hero-link img {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
    }

    .hb-hero img,
    .hb-hero-link img {
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
        background: #fffaf2;
    }
}

/* =========================================================
   HOME - espaço final quando não há produtos destacados
   ========================================================= */

.hb-home-collections-section.is-last-home-section {
    padding-bottom: 76px;
}

@media (max-width: 760px) {
    .hb-home-collections-section.is-last-home-section {
        padding-bottom: 54px;
    }
}

/* =========================================================
   MOBILE - BOTÃO VOLVER ARRIBA
   ========================================================= */

.hb-back-to-top {
    display: none;
}

@media (max-width: 760px) {
    .hb-back-to-top {
        position: fixed;
        right: 18px;
        bottom: 86px;
        z-index: 9998;
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(210, 200, 220, 0.72);
        border-radius: 999px;
        background: #f2edff;
        color: #735dc7;
        cursor: pointer;
        font-size: 22px;
        font-weight: 950;
        line-height: 1;
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 14px 30px rgba(80, 70, 90, 0.16);
        transform: translateY(10px);
        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            background 0.18s ease;
    }

    .hb-back-to-top.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hb-back-to-top:hover {
        background: #e9e0ff;
    }
}

/* =========================================================
   PC - submenu acima das outras categorias do menu
   ========================================================= */

@media (min-width: 761px) {
    .hb-header {
        z-index: 500;
        overflow: visible;
    }

    .hb-menu {
        overflow: visible;
        position: relative;
        z-index: 20;
    }

    .hb-menu-item {
        position: relative;
        z-index: 1;
    }

    .hb-menu-item:hover,
    .hb-menu-item:focus-within {
        z-index: 999;
    }

    .hb-submenu {
        z-index: 1000;
    }
}

/* =========================================================
   ESTADOS VACÍOS PÚBLICOS
   ========================================================= */

.hb-public-empty-state {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 230px;
    padding: 28px;
    border: 1px solid rgba(225, 205, 180, 0.86);
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 18%, rgba(248, 210, 220, 0.34), transparent 30%),
        radial-gradient(circle at 92% 16%, rgba(219, 232, 246, 0.44), transparent 32%),
        radial-gradient(circle at 54% 105%, rgba(247, 226, 196, 0.38), transparent 38%),
        #ffffff;
    box-shadow: 0 18px 44px rgba(120, 84, 48, 0.08);
}

.hb-public-empty-icon {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 32%),
        linear-gradient(135deg, #f2edff, #fff3dc);
    font-size: 44px;
    box-shadow: 0 16px 34px rgba(80, 70, 90, 0.10);
}

.hb-public-empty-content {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.hb-public-empty-kicker {
    margin: 0;
    color: #9f6d2e;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hb-public-empty-content h2 {
    margin: 0;
    color: #17151a;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hb-public-empty-content > p:not(.hb-public-empty-kicker) {
    max-width: 620px;
    margin: 0;
    color: #6f6578;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
}

.hb-public-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.hb-public-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(182, 168, 230, 0.72);
    border-radius: 999px;
    background: #f8f5ff;
    color: #735dc7;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.hb-public-empty-button.primary {
    border-color: #b6a8e6;
    background: linear-gradient(135deg, #8f7bd6, #b26ad6);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(143, 123, 214, 0.22);
}

.hb-public-empty-button:hover {
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .hb-public-empty-state {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 0;
        padding: 26px 18px;
        border-radius: 26px;
        text-align: center;
    }

    .hb-public-empty-icon {
        width: 82px;
        height: 82px;
        border-radius: 26px;
        font-size: 38px;
    }

    .hb-public-empty-content {
        justify-items: center;
    }

    .hb-public-empty-actions {
        justify-content: center;
        width: 100%;
    }

    .hb-public-empty-button {
        width: 100%;
        max-width: 260px;
    }
}

/* =========================================================
   PRODUCT CARD - fallback quando imagem não carrega
   ========================================================= */

.product-photo.is-image-broken {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 25% 18%, rgba(248, 210, 220, 0.42), transparent 34%),
        radial-gradient(circle at 80% 25%, rgba(219, 232, 246, 0.48), transparent 36%),
        linear-gradient(135deg, #fffdf8, #f8f5ff);
}

.product-photo.is-image-broken::before {
    content: "🛍️";
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 38px;
    box-shadow: 0 14px 30px rgba(80, 70, 90, 0.10);
}

/* =========================================================
   LA TIENDA - logo solto quando não há foto da loja
   ========================================================= */

.hb-store-info-visual.has-logo {
    overflow: visible;
    min-height: 260px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hb-store-info-visual.has-logo img {
    display: block;
    width: min(220px, 100%);
    height: auto;
    max-height: 260px;
    min-height: 0;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 14px 24px rgba(80, 70, 90, 0.10));
}

@media (max-width: 760px) {
    .hb-store-info-visual.has-logo {
        min-height: 210px;
    }

    .hb-store-info-visual.has-logo img {
        width: min(260px, 100%);
        max-height: 210px;
    }
}