:root {
    --nh-forest-900: #1f3a2d;
    --nh-forest-800: #29523f;
    --nh-gold-500: #c9a24a;
    --nh-gold-400: #d9b968;
    --nh-sand-50: #f8f5ef;
    --nh-sand-100: #f2ebdf;
    --nh-text-900: #243127;
    --nh-text-700: #3f4f42;
}

html,
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--nh-text-900);
    background: linear-gradient(180deg, var(--nh-sand-50) 0%, #ffffff 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

a {
    color: var(--nh-forest-800);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--nh-forest-900);
}

.footer .social-links {
    gap: 10px;
}

.footer .social-link {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
    border-radius: 999px;
}

.footer .social-link svg {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--nh-text-900);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.navbar-menu .nav-link,
.navbar-menu .nav-link:visited {
    color: #f7f7f2 !important;
}

.navbar-menu .nav-link:hover {
    color: #ffffff !important;
}

.navbar-menu .nav-link.active {
    color: var(--nh-gold-400) !important;
}

.navbar-menu .nav-link .nav-text {
    color: inherit !important;
}

/* ── Navbar actions (search + cart + account) ────────────────── */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-search,
.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: #f7f7f2;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    text-decoration: none;
}

.btn-search:hover,
.btn-cart:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.btn-search svg,
.btn-cart svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.1rem;
    text-align: center;
    background: var(--nh-gold-500);
    color: #fff;
    border-radius: 999px;
    pointer-events: none;
}

.cart-count[data-count="0"],
.cart-count:empty {
    display: none;
}

/* ── Account menu in navbar ──────────────────────────────────── */
.nh-account-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nh-account-menu__name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #f7f7f2;
    white-space: nowrap;
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nh-account-menu__logout {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    color: #f7f7f2;
    cursor: pointer;
    transition: background 0.18s ease;
    white-space: nowrap;
}

.nh-account-menu__logout:hover {
    background: rgba(255,255,255,0.22);
}

.nh-link-login {
    font-size: 0.82rem;
    font-weight: 500;
    color: #f7f7f2 !important;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.18s ease;
    white-space: nowrap;
}

.nh-link-login:hover {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
}

@media (max-width: 768px) {
    .nh-account-menu__name {
        display: none;
    }
}

.btn-primary {
    color: #fff;
    background-color: var(--nh-forest-800);
    border-color: var(--nh-forest-800);
    border-radius: 10px;
    padding-inline: 1rem;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: var(--nh-forest-900);
    border-color: var(--nh-forest-900);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(31, 58, 45, 0.24);
}

.btn-outline-primary {
    color: var(--nh-forest-800);
    border-color: var(--nh-forest-800);
    border-radius: 10px;
    padding-inline: 1rem;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--nh-forest-800);
    border-color: var(--nh-forest-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(31, 58, 45, 0.18);
}

.btn:focus-visible,
a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 185, 104, 0.35);
}

/* ===== Scroll reveal animation ===== */
.nh-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.nh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .nh-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== Shared section layout ===== */
.nh-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.nh-section--light {
    background: var(--nh-sand-100);
    border-radius: 32px;
    max-width: 1240px;
}

.nh-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.nh-section__header h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.nh-section__header p {
    color: var(--nh-text-700);
    font-size: 1.05rem;
}

.nh-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 185, 104, 0.16);
    color: var(--nh-gold-500);
    border: 1px solid rgba(217, 185, 104, 0.35);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.nh-badge--dark {
    background: rgba(31, 58, 45, 0.08);
    color: var(--nh-forest-800);
    border-color: rgba(31, 58, 45, 0.18);
}

.nh-link {
    font-weight: 600;
    color: var(--nh-forest-800);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.nh-link:hover {
    border-color: var(--nh-forest-800);
}

/* ===== Hero ===== */
.nh-hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1240px;
    margin: 1.5rem auto 0;
    padding: 4rem 2.5rem;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--nh-forest-900) 0%, var(--nh-forest-800) 60%, #163627 100%);
    color: #fff;
}

.nh-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(217, 185, 104, 0.25), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(217, 185, 104, 0.12), transparent 50%);
    pointer-events: none;
}

.nh-hero__content {
    position: relative;
    flex: 1.1;
    z-index: 1;
}

.nh-hero__content h1 {
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin-bottom: 1.1rem;
}

.nh-hero__content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 1.75rem;
}

.nh-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.nh-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.nh-hero .btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.nh-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.nh-hero__image {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
}

.nh-hero__image img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* ===== Proof bar ===== */
.nh-proof {
    max-width: 1180px;
    margin: 3.5rem auto 0;
    padding: 2.25rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(31, 58, 45, 0.08);
}

.nh-proof__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.nh-proof__item strong {
    font-size: 1.6rem;
    color: var(--nh-forest-800);
}

.nh-proof__item span {
    color: var(--nh-text-700);
    font-size: 0.9rem;
}

/* ===== Categories ===== */
.nh-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.nh-category-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 28px rgba(31, 58, 45, 0.06);
    text-decoration: none;
    color: var(--nh-text-900);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nh-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31, 58, 45, 0.14);
    border-color: var(--nh-gold-400);
}

.nh-category-card__icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.nh-category-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.nh-category-card p {
    color: var(--nh-text-700);
    font-size: 0.92rem;
    margin: 0;
}

/* ===== Product cards (home highlights) ===== */
.nh-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.nh-product-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 28px rgba(31, 58, 45, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}

.nh-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(31, 58, 45, 0.14);
}

.nh-product-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--nh-gold-500);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 24px rgba(31, 58, 45, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(31, 58, 45, 0.12);
}

.product-card .card {
    border: none;
}

.product-card .price {
    font-weight: 700;
    color: var(--nh-forest-800);
}

.nh-product-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: var(--nh-sand-50);
    padding: 1.25rem;
    box-sizing: border-box;
}

.nh-product-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.nh-product-card__body h3 {
    font-size: 1.05rem;
    margin: 0;
}

.nh-product-card__body p {
    color: var(--nh-text-700);
    font-size: 0.88rem;
    flex: 1;
    margin: 0;
}

.nh-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.nh-product-card__footer strong {
    color: var(--nh-forest-800);
    font-size: 1.05rem;
}

/* ===== Brand story ===== */
.nh-story {
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nh-story__image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nh-story__image img {
    max-width: 100%;
    border-radius: 24px;
}

.nh-story__content {
    flex: 1.1;
}

.nh-story__content h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin-bottom: 1rem;
}

.nh-story__content p {
    color: var(--nh-text-700);
    margin-bottom: 1.25rem;
}

.nh-story__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nh-story__list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--nh-text-700);
}

.nh-story__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nh-gold-500);
    font-weight: 700;
}

/* ===== Testimonials ===== */
.nh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.nh-testimonial {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 28px rgba(31, 58, 45, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nh-testimonial__stars {
    color: var(--nh-gold-500);
    letter-spacing: 0.1em;
}

.nh-testimonial p {
    color: var(--nh-text-900);
    font-style: italic;
    margin: 0;
}

.nh-testimonial strong {
    margin-top: 0.5rem;
}

.nh-testimonial span {
    color: var(--nh-text-700);
    font-size: 0.85rem;
}

/* ===== Newsletter ===== */
.nh-newsletter {
    max-width: 1180px;
    margin: 2rem auto 3rem;
    padding: 3rem 2.5rem;
    border-radius: 28px;
    background: var(--nh-sand-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.nh-newsletter h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.nh-newsletter p {
    color: var(--nh-text-700);
    margin: 0;
    max-width: 420px;
}

.nh-newsletter__form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    min-width: 280px;
    max-width: 420px;
}

.nh-newsletter__form .form-control {
    border-radius: 10px;
}

/* ===== CTA ===== */
.nh-cta {
    max-width: 1180px;
    margin: 3rem auto 5rem;
    padding: 3rem 2.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--nh-forest-900), var(--nh-forest-800));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.nh-cta h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.nh-cta p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* ===== Carrinho ===== */
.nh-cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.nh-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nh-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid rgba(31, 58, 45, 0.08);
    border-radius: 14px;
    padding: 1rem;
}

.nh-cart-item__img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: var(--nh-sand-50);
    border-radius: 10px;
    padding: 6px;
    flex-shrink: 0;
}

.nh-cart-item__info {
    flex: 1;
    min-width: 0;
}

.nh-cart-item__info h5 {
    margin: 0;
    font-size: 1rem;
}

.nh-cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nh-cart-item__subtotal {
    font-weight: 700;
    color: var(--nh-forest-800);
    min-width: 90px;
    text-align: right;
}

.nh-cart-summary {
    background: var(--nh-sand-100);
    border-radius: 18px;
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.nh-cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--nh-text-700);
}

.nh-cart-summary__total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--nh-forest-900);
    border-top: 1px solid rgba(31, 58, 45, 0.15);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

/* ===== Checkout page ===== */
.nh-checkout-page {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.nh-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
}

.nh-checkout-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Cart items (left) */
.nh-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nh-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.nh-cart-item__img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--nh-sand-50);
    flex-shrink: 0;
}

.nh-cart-item__info {
    flex: 1;
    min-width: 0;
}

.nh-cart-item__info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nh-cart-item__price {
    font-size: 0.8rem;
    color: var(--nh-text-700);
}

.nh-cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nh-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #d0c9bc;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.nh-qty-btn:hover:not(:disabled) {
    background: var(--nh-sand-100);
}

.nh-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nh-qty-val {
    min-width: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.nh-cart-item__subtotal {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.nh-cart-item__remove {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: color 0.15s ease, background 0.15s ease;
    flex-shrink: 0;
}

.nh-cart-item__remove svg {
    width: 16px;
    height: 16px;
}

.nh-cart-item__remove:hover {
    color: #e74c3c;
    background: #fdecea;
}

.nh-back-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--nh-text-700);
    text-decoration: none;
}

.nh-back-link:hover {
    color: var(--nh-forest-800);
}

/* Order summary (right panel) */
.nh-checkout-right {
    position: sticky;
    top: 100px;
}

.nh-order-summary {
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 18px;
    padding: 1.5rem;
}

.nh-order-summary__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.nh-order-summary__item {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--nh-text-700);
    margin-bottom: 0.5rem;
}

.nh-summary-qty {
    color: #aaa;
    margin-left: 0.25rem;
}

.nh-order-summary__divider {
    border-top: 1px solid #ece7dd;
    margin: 0.75rem 0;
}

.nh-order-summary__total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Cupom de desconto no resumo do pedido */
.nh-coupon-row {
    margin-bottom: 0.25rem;
}

.nh-coupon-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nh-coupon-input-group .form-control {
    flex: 1;
    min-width: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.88rem;
    border-color: #ddd6ca;
    border-radius: 8px;
}

.nh-coupon-input-group .btn {
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 0.3rem 0.85rem;
}

.nh-order-summary__discount {
    font-size: 0.92rem;
}

/* Auth choice screen */
.nh-auth-choice {
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 18px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.nh-auth-choice h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--nh-text-900);
}

.nh-auth-choice__option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border: 1px solid #e0dbd2;
    border-radius: 12px;
    text-decoration: none;
    color: var(--nh-text-900);
    margin-bottom: 0.65rem;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.nh-auth-choice__option:hover {
    border-color: var(--nh-forest-800);
    background: var(--nh-sand-50);
    color: var(--nh-text-900);
}

.nh-auth-choice__icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--nh-sand-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.nh-auth-choice__option strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.nh-auth-choice__option span {
    font-size: 0.78rem;
    color: var(--nh-text-700);
}

.nh-auth-choice__guest {
    width: 100%;
    background: none;
    border: none;
    color: var(--nh-text-700);
    font-size: 0.82rem;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 0.5rem;
    padding: 0.25rem;
}

.nh-auth-choice__guest:hover {
    color: var(--nh-text-900);
}

/* Checkout form */
.nh-checkout-form {
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 18px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.nh-checkout-form h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.nh-address-section h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nh-text-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #ece7dd;
}

.nh-checkout-secure {
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    margin: 0.75rem 0 0;
}

/* Empty cart */
.nh-cart-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.nh-cart-empty svg {
    width: 80px;
    height: 80px;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.nh-cart-empty h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.nh-cart-empty p {
    color: var(--nh-text-700);
    margin-bottom: 1.5rem;
}

/* Order success */
.nh-order-success {
    max-width: 520px;
    margin: 4rem auto;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 28px rgba(31, 58, 45, 0.08);
}

.nh-order-success__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #d4edda;
    color: #2e7d32;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.nh-order-success__total {
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
    padding: 0.75rem;
    background: var(--nh-sand-50);
    border-radius: 10px;
}

.nh-order-success__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Account dropdown ===== */
.nh-account-dropdown {
    position: relative;
}

.nh-account-menu__trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 0.3rem 0.8rem 0.3rem 0.6rem;
    color: #f7f7f2;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    transition: background 0.18s ease;
}

.nh-account-menu__trigger:hover {
    background: rgba(255,255,255,0.18);
}

.nh-chevron {
    transition: transform 0.2s ease;
}

.nh-account-dropdown:hover .nh-chevron,
.nh-account-dropdown.is-open .nh-chevron {
    transform: rotate(180deg);
}

.nh-account-dropdown__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    min-width: 180px;
    z-index: 200;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nh-account-dropdown:hover .nh-account-dropdown__menu,
.nh-account-dropdown.is-open .nh-account-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nh-account-dropdown__item {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    color: var(--nh-text-900);
    text-decoration: none;
    transition: background 0.15s ease;
}

.nh-account-dropdown__item:hover {
    background: var(--nh-sand-50);
    color: var(--nh-text-900);
}

.nh-account-dropdown__divider {
    border-top: 1px solid #ece7dd;
}

.nh-account-dropdown__logout {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #c0392b;
    font-size: 0.88rem;
}

.nh-account-dropdown__logout:hover {
    background: #fdecea;
    color: #c0392b;
}

/* ===== Rotina IA ===== */
.nh-rotina-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem 5rem;
}

/* Intro */
.nh-rotina-intro {
    text-align: center;
    max-width: 600px;
}

.nh-rotina-intro__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--nh-forest-800), var(--nh-forest-900));
    color: var(--nh-gold-400);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.nh-rotina-intro h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.nh-rotina-intro h1 span {
    color: var(--nh-forest-800);
}

.nh-rotina-intro p {
    font-size: 1.05rem;
    color: var(--nh-text-700);
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* Quiz */
.nh-rotina-quiz {
    width: 100%;
    max-width: 620px;
}

.nh-quiz-progress {
    height: 4px;
    background: #e8e3d9;
    border-radius: 99px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}

.nh-quiz-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--nh-forest-800), var(--nh-gold-500));
    border-radius: 99px;
    transition: width 0.4s ease;
}

.nh-quiz-step-label {
    font-size: 0.78rem;
    color: #aaa;
    margin-bottom: 1.75rem;
    text-align: center;
}

.nh-quiz-step {}

.nh-quiz-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.nh-quiz-opcoes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.nh-quiz-opcao {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 2px solid #e8e3d9;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nh-text-900);
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.15s ease;
}

.nh-quiz-opcao:hover {
    border-color: var(--nh-forest-800);
    background: var(--nh-sand-50);
    transform: translateY(-2px);
}

.nh-quiz-opcao.selected {
    border-color: var(--nh-forest-800);
    background: #f0f7f3;
}

.nh-quiz-opcao__emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nh-quiz-opcao__label {
    line-height: 1.3;
}

.nh-quiz-back {
    background: none;
    border: none;
    color: var(--nh-text-700);
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 1.25rem;
    padding: 0.4rem 0;
    display: block;
    text-align: center;
    width: 100%;
}

.nh-quiz-back:hover { color: var(--nh-text-900); }

/* Loading */
.nh-rotina-loading {
    text-align: center;
    max-width: 420px;
}

.nh-rotina-loading__spinner {
    width: 3.5rem;
    height: 3.5rem;
    border: 3px solid #e8e3d9;
    border-top-color: var(--nh-forest-800);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.nh-rotina-loading h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.nh-rotina-loading p {
    color: var(--nh-text-700);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.nh-loading-dots {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nh-loading-dots span {
    font-size: 0.82rem;
    color: #aaa;
    padding: 0.3rem 0.8rem;
    background: var(--nh-sand-50);
    border-radius: 999px;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

.nh-loading-dots span:nth-child(2) { animation-delay: 0.4s; }
.nh-loading-dots span:nth-child(3) { animation-delay: 0.8s; }

@keyframes pulse-dot {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Resultado */
.nh-rotina-resultado {
    width: 100%;
    max-width: 720px;
}

.nh-resultado-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.nh-resultado-badge {
    display: inline-block;
    background: var(--nh-gold-500);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.nh-resultado-header h1 {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}

.nh-resultado-intro {
    color: var(--nh-text-700);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto;
}

.nh-resultado-slots {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.nh-slot {}

.nh-slot__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.nh-slot__icon { font-size: 1.3rem; }

.nh-slot__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nh-text-700);
}

/* Product card na rotina */
.nh-rotina-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: box-shadow 0.18s ease;
}

.nh-rotina-card:hover {
    box-shadow: 0 4px 16px rgba(31,58,45,0.08);
}

.nh-rotina-card__img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--nh-sand-50);
    flex-shrink: 0;
}

.nh-rotina-card__info {
    flex: 1;
    min-width: 0;
}

.nh-rotina-card__nome {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.3rem;
}

.nh-rotina-card__motivo {
    font-size: 0.82rem;
    color: var(--nh-text-700);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.nh-rotina-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nh-rotina-card__preco {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--nh-forest-800);
}

/* Dica extra */
.nh-resultado-dica {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0f7f3, #f8f5ef);
    border: 1px solid #c8e6c9;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.nh-resultado-dica__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.nh-resultado-dica strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.nh-resultado-dica p {
    font-size: 0.88rem;
    color: var(--nh-text-700);
    margin: 0;
    line-height: 1.55;
}

.nh-resultado-cart-notice {
    background: #d4edda;
    color: #155724;
    font-size: 0.88rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.nh-resultado-cart-notice a {
    color: #155724;
    font-weight: 600;
}

.nh-resultado-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

/* Mobile quiz */
@media (max-width: 500px) {
    .nh-quiz-opcoes { grid-template-columns: 1fr; }
    .nh-rotina-intro h1 { font-size: 1.8rem; }
}

/* ===== Minha Conta (perfil) ===== */
.nh-minha-conta {
    max-width: 780px;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.nh-minha-conta__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.nh-minha-conta__avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--nh-forest-800);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nh-minha-conta__nome {
    font-size: 1.4rem;
    margin: 0;
}

.nh-minha-conta__email {
    font-size: 0.85rem;
    color: var(--nh-text-700);
}

.nh-minha-conta__badges {
    display: flex;
    gap: 0.4rem;
}

.nh-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.nh-badge--google { background: #e8f0fe; color: #1a73e8; }
.nh-badge--senha  { background: #e6f4ea; color: #2e7d32; }

/* Tabs */
.nh-conta-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e3d9;
    margin-bottom: 1.75rem;
}

.nh-conta-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--nh-text-700);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.nh-conta-tab:hover {
    color: var(--nh-text-900);
}

.nh-conta-tab.active {
    color: var(--nh-forest-800);
    border-bottom-color: var(--nh-forest-800);
    font-weight: 600;
}

.nh-conta-section {
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 18px;
    padding: 1.75rem;
}

.nh-conta-section__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.nh-conta-form__actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.nh-save-alert {
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

/* ===== Meus Pedidos ===== */
.nh-meus-pedidos {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
    max-width: 800px;
}

.nh-meus-pedidos__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.nh-meus-pedidos__header h1 {
    font-size: 1.6rem;
    margin: 0;
}

.nh-meus-pedidos__unauthenticated,
.nh-meus-pedidos__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--nh-text-700);
}

.nh-pedido-card {
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.nh-pedido-card__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--nh-sand-50);
    border-bottom: 1px solid #e8e3d9;
    flex-wrap: wrap;
}

.nh-pedido-card__id {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nh-pedido-card__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}

.nh-pedido-card__num {
    font-weight: 700;
    font-size: 1rem;
}

.nh-pedido-card__date {
    font-size: 0.85rem;
    color: var(--nh-text-700);
}

.nh-pedido-card__status {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.nh-status--pendente { background: #fff3cd; color: #856404; }
.nh-status--pago    { background: #d4edda; color: #155724; }
.nh-status--enviado { background: #cce5ff; color: #004085; }
.nh-status--entregue { background: #d1ecf1; color: #0c5460; }
.nh-status--cancelado { background: #f8d7da; color: #721c24; }

.nh-pedido-card__total {
    margin-left: auto;
    font-weight: 700;
    font-size: 1rem;
}

.nh-pedido-card__items {
    padding: 0.75rem 1.25rem;
}

.nh-pedido-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0ece5;
    font-size: 0.88rem;
}

.nh-pedido-item:last-child {
    border-bottom: none;
}

.nh-pedido-item__name {
    flex: 1;
    color: var(--nh-text-900);
}

.nh-pedido-item__qty {
    color: #aaa;
    font-size: 0.82rem;
}

.nh-pedido-item__price {
    font-weight: 600;
}

/* Responsive checkout */
@media (max-width: 768px) {
    .nh-checkout-layout {
        grid-template-columns: 1fr;
    }
    .nh-checkout-right {
        position: static;
    }
}

/* ===== Detalhe do produto ===== */
.nh-detail {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.nh-detail__image {
    flex: 1;
}

.nh-detail__info {
    flex: 1;
}

.nh-detail__price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--nh-forest-800);
}

.nh-detail__qty {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.nh-detail__rating {
    color: var(--nh-gold-500);
    font-weight: 600;
    margin: 0.5rem 0;
}

.nh-detail__rating span {
    color: var(--nh-text-700);
    font-weight: 400;
    font-size: 0.9rem;
}

.nh-breadcrumb {
    color: var(--nh-text-700);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.nh-breadcrumb a {
    color: var(--nh-text-700);
    text-decoration: none;
}

.nh-breadcrumb a:hover {
    color: var(--nh-forest-800);
}

.nh-breadcrumb span {
    color: var(--nh-forest-900);
    font-weight: 600;
}

.nh-detail-tabs {
    max-width: 820px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nh-detail-section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--nh-gold-400);
    display: inline-block;
    padding-bottom: 4px;
}

.nh-detail-section p {
    color: var(--nh-text-700);
    line-height: 1.7;
}

.nh-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nh-benefits-list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--nh-text-700);
}

.nh-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nh-gold-500);
    font-weight: 700;
}

/* ===== Auth (login / cadastro) ===== */
.nh-auth-page {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
}

.nh-auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 16px 40px rgba(31, 58, 45, 0.1);
}

.nh-auth-card h1 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.nh-auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--nh-text-700);
    margin: 1.25rem 0;
    font-size: 0.85rem;
}

.nh-auth-divider::before,
.nh-auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(31, 58, 45, 0.15);
}

.nh-auth-divider span {
    padding: 0 0.75rem;
}

.nh-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid rgba(31, 58, 45, 0.18);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    color: var(--nh-text-900);
}

.nh-btn-google:hover {
    background: var(--nh-sand-50);
}

/* ===== Conta (navbar) ===== */
.nh-account-menu {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nh-account-menu__name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    white-space: nowrap;
}

.nh-account-menu__logout {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nh-account-menu__logout:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.nh-link-login {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(217, 185, 104, 0.5);
    border-radius: 8px;
    padding: 6px 14px;
    white-space: nowrap;
}

.nh-link-login:hover {
    background-color: rgba(217, 185, 104, 0.15);
    color: var(--nh-gold-400);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .nh-cart-layout,
    .nh-detail {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .nh-cart-summary {
        position: static;
    }

    .nh-hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .nh-hero__content p {
        margin-inline: auto;
    }

    .nh-hero__actions,
    .nh-hero__badges {
        justify-content: center;
    }

    .nh-proof {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-story {
        flex-direction: column;
        text-align: center;
    }

    .nh-story__list {
        text-align: left;
    }

    .nh-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nh-newsletter,
    .nh-cta {
        flex-direction: column;
        text-align: center;
    }

    .nh-newsletter__form {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .nh-categories-grid,
    .nh-products-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== AI Chat Widget ===== */
.nh-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
}

.nh-chat-bubble {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nh-forest-800), var(--nh-forest-900));
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(31, 58, 45, 0.35);
    transition: transform 0.18s ease;
}

.nh-chat-bubble:hover {
    transform: scale(1.06);
}

.nh-chat-bubble svg {
    width: 26px;
    height: 26px;
}

.nh-chat-bubble__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--nh-gold-500);
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-chat-panel {
    width: 360px;
    max-width: calc(100vw - 2rem);
    height: 520px;
    max-height: calc(100vh - 3rem);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(31, 58, 45, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: nh-chat-pop 0.2s ease;
}

@keyframes nh-chat-pop {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.nh-chat-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--nh-forest-800), var(--nh-forest-900));
    color: #fff;
    padding: 0.9rem 1.1rem;
    flex-shrink: 0;
}

.nh-chat-panel__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nh-chat-panel__icon {
    color: var(--nh-gold-400);
    font-size: 1.1rem;
}

.nh-chat-panel__title strong {
    display: block;
    font-size: 0.92rem;
}

.nh-chat-panel__title span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.8;
}

.nh-chat-panel__close {
    background: none;
    border: none;
    color: #fff;
    opacity: 0.8;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
}

.nh-chat-panel__close:hover { opacity: 1; }

.nh-chat-panel__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--nh-sand-50);
}

.nh-chat-msg {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.nh-chat-msg--user {
    align-items: flex-end;
}

.nh-chat-msg--assistant {
    align-items: flex-start;
}

.nh-chat-msg__bubble {
    max-width: 85%;
    padding: 0.6rem 0.85rem;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.nh-chat-msg--user .nh-chat-msg__bubble {
    background: var(--nh-forest-800);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.nh-chat-msg--assistant .nh-chat-msg__bubble {
    background: #fff;
    color: var(--nh-text-900);
    border: 1px solid #e8e3d9;
    border-bottom-left-radius: 4px;
}

.nh-chat-typing {
    display: flex;
    gap: 4px;
    padding: 0.8rem 1rem;
}

.nh-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bbb;
    animation: nh-chat-blink 1.2s infinite ease-in-out;
}

.nh-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.nh-chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes nh-chat-blink {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

.nh-chat-msg__produtos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 85%;
}

.nh-chat-produto-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 12px;
    padding: 0.5rem;
    text-decoration: none;
    transition: border-color 0.15s ease;
}

.nh-chat-produto-card:hover {
    border-color: var(--nh-forest-800);
}

.nh-chat-produto-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--nh-sand-50);
    flex-shrink: 0;
}

.nh-chat-produto-card__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nh-chat-produto-card__info span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--nh-text-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nh-chat-produto-card__info strong {
    font-size: 0.78rem;
    color: var(--nh-forest-800);
}

.nh-chat-panel__footer {
    flex-shrink: 0;
    border-top: 1px solid #e8e3d9;
    padding: 0.6rem 0.8rem 0.8rem;
    background: #fff;
}

.nh-chat-escalate {
    display: block;
    font-size: 0.72rem;
    color: var(--nh-forest-800);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.nh-chat-escalate:hover { text-decoration: underline; }

.nh-chat-input-row {
    display: flex;
    gap: 0.5rem;
}

.nh-chat-input {
    flex: 1;
    border: 1px solid #e8e3d9;
    border-radius: 10px;
    padding: 0.55rem 0.8rem;
    font-size: 0.85rem;
    outline: none;
}

.nh-chat-input:focus {
    border-color: var(--nh-forest-800);
}

.nh-chat-send {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: none;
    border-radius: 10px;
    background: var(--nh-forest-800);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.nh-chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .nh-chat-widget {
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .nh-chat-panel {
        width: calc(100vw - 1.5rem);
        height: calc(100vh - 6rem);
    }
}

/* ===== Agendar Consulta ===== */
.nh-agendar-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem 5rem;
}

.nh-agendar-card {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(31, 58, 45, 0.1);
    padding: 2rem;
}

.nh-agendar-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.nh-agendar-badge {
    display: inline-block;
    background: var(--nh-gold-500);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.nh-agendar-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.nh-agendar-header p {
    color: var(--nh-text-700);
    font-size: 0.9rem;
    line-height: 1.55;
}

.nh-agendar-sucesso {
    text-align: center;
    max-width: 480px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(31, 58, 45, 0.1);
    padding: 2.5rem 2rem;
}

.nh-agendar-sucesso__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--nh-forest-800);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.nh-agendar-sucesso h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.nh-agendar-sucesso p {
    color: var(--nh-text-700);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.nh-agendar-sucesso .btn {
    margin-top: 1rem;
}

/* ===== Admin Dashboard ===== */
.nh-admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.nh-admin-card {
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.nh-admin-card--highlight {
    background: linear-gradient(135deg, var(--nh-forest-800), var(--nh-forest-900));
    border: none;
    color: #fff;
}

.nh-admin-card--highlight .nh-admin-card__label {
    color: rgba(255, 255, 255, 0.75);
}

.nh-admin-card--highlight .nh-admin-card__value {
    color: #fff;
}

.nh-admin-card--highlight .nh-admin-card__sub {
    color: var(--nh-gold-400);
}

.nh-admin-card__label {
    font-size: 0.78rem;
    color: var(--nh-text-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nh-admin-card__value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--nh-text-900);
}

.nh-admin-card__sub {
    font-size: 0.78rem;
    color: var(--nh-text-700);
}

.nh-admin-card__link {
    font-size: 0.78rem;
    color: var(--nh-forest-800);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.3rem;
}

.nh-admin-card__link:hover { text-decoration: underline; }

.nh-chat-agendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--nh-gold-500);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    max-width: 85%;
    transition: background 0.15s ease;
}

.nh-chat-agendar-btn:hover {
    background: var(--nh-gold-400);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM 3D — tilt, glare, float, glass
   ═══════════════════════════════════════════════════════════════ */

/* Fundo premium: orbes de luz suaves atrás de tudo (dá vida ao vidro) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(600px circle at 12% 18%, rgba(217, 185, 104, 0.14), transparent 60%),
        radial-gradient(700px circle at 88% 30%, rgba(41, 82, 63, 0.10), transparent 60%),
        radial-gradient(650px circle at 50% 95%, rgba(217, 185, 104, 0.10), transparent 60%);
}

.nh-product-card,
.product-card,
.nh-category-card,
.nh-testimonial {
    position: relative;
}

/* Imagem do produto: leve zoom suave no hover */
.nh-product-card .nh-product-img,
.product-card .nh-product-img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nh-product-card:hover .nh-product-img,
.product-card:hover .nh-product-img {
    transform: scale(1.06);
}

/* Ícones de categoria: avançam para frente, centralizados */
.nh-category-card__icon {
    display: inline-block;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nh-category-card:hover .nh-category-card__icon {
    transform: scale(1.3);
}

/* Aura dourada suave e estática atrás do produto no hero */
.nh-hero__image {
    position: relative;
}

.nh-hero__image::before {
    content: '';
    position: absolute;
    inset: 8% 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 185, 104, 0.30), transparent 68%);
    filter: blur(28px);
    pointer-events: none;
}


/* Borda superior dourada revelada no hover */
.nh-product-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--nh-gold-400), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.nh-product-card:hover::before,
.product-card:hover::before {
    opacity: 1;
}

/* Botões premium com brilho deslizante */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 130%;
}

/* ── Glassmorphism premium ──────────────────────────────────── */
.nh-proof {
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.nh-product-card,
.product-card,
.nh-category-card,
.nh-testimonial {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 10px 28px rgba(31, 58, 45, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nh-product-img {
    background: rgba(248, 245, 239, 0.55);
}

.nh-newsletter {
    background: rgba(242, 235, 223, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Página de detalhe: sombra premium na imagem */
.nh-detail__image img {
    filter: drop-shadow(0 24px 32px rgba(31, 58, 45, 0.18));
}
