:root {
    --nn-primary: #2C402E;
    --nn-secondary: #B86B35;
    --nn-accent: #4D7856;
    --nn-accent-warm: #E3A857;
    --nn-bg-default: #FAF7F2;
    --nn-bg-subtle: #F3ECE2;
    --nn-bg-surface: #FFFFFF;
    --nn-bg-muted: #EFE8DC;
    --nn-text-primary: #1C1917;
    --nn-text-secondary: #5F554B;
    --nn-text-muted: #8C8074;
    --nn-border-subtle: #EBE2D5;
    --nn-border-strong: #D5C8B8;
    --nn-font-headings: 'Fraunces', Georgia, serif;
    --nn-font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --nn-radius-pill: 9999px;
    --nn-radius-card: 20px;
    --nn-radius-lg: 24px;
    --nn-shadow-sm: 0 2px 8px rgba(44, 64, 46, 0.04);
    --nn-shadow-md: 0 8px 24px rgba(44, 64, 46, 0.06);
    --nn-shadow-lg: 0 16px 40px rgba(44, 64, 46, 0.09);
    --nn-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--nn-font-body);
    background-color: var(--nn-bg-default);
    color: var(--nn-text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--nn-font-headings);
    color: var(--nn-primary);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: var(--nn-primary);
    text-decoration: none;
    transition: var(--nn-transition);
}

a:hover {
    color: var(--nn-secondary);
}

.text-muted {
    color: #8C8074 !important;
}

.novo-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.btn-novo-primary {
    background-color: var(--nn-primary);
    color: #FAF7F2 !important;
    border-radius: var(--nn-radius-pill);
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 14px rgba(44, 64, 46, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--nn-transition);
    cursor: pointer;
}

.btn-novo-primary:hover {
    background-color: #233425;
    color: #FAF7F2 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(44, 64, 46, 0.28);
}

.btn-novo-secondary {
    background-color: transparent;
    color: var(--nn-primary) !important;
    border: 1.5px solid var(--nn-primary);
    border-radius: var(--nn-radius-pill);
    padding: 0.8rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--nn-transition);
    cursor: pointer;
}

.btn-novo-secondary:hover {
    background-color: var(--nn-primary);
    color: #FAF7F2 !important;
    transform: translateY(-2px);
}

.btn-novo-accent {
    background-color: var(--nn-secondary);
    color: #FFFFFF !important;
    border-radius: var(--nn-radius-pill);
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 14px rgba(184, 107, 53, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--nn-transition);
    cursor: pointer;
}

.btn-novo-accent:hover {
    background-color: #A35A28;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 107, 53, 0.35);
}

.novo-badge {
    background-color: var(--nn-bg-muted);
    color: var(--nn-primary);
    border-radius: var(--nn-radius-pill);
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-block;
    text-transform: uppercase;
}

/* ===== header ===== */
.novo-header-section {
    background-color: #FAF7F2;
    border-bottom: 1px solid #EBE2D5;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 12px rgba(44, 64, 46, 0.05);
}

.novo-header-section .novo-navbar {
    padding: 0.85rem 0;
    background-color: #FAF7F2;
}

.novo-header-section .novo-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.novo-header-section .novo-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.novo-header-section .novo-brand-logo {
    width: 42px;
    height: 42px;
    max-width: 44px;
    object-fit: contain;
}

.novo-header-section .novo-brand-text {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C402E;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.novo-header-section .novo-toggler {
    border: 1px solid #D5C8B8;
    background-color: #FFFFFF;
    color: #2C402E;
    font-size: 1.35rem;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(44, 64, 46, 0.04);
}

.novo-header-section .novo-toggler:focus {
    box-shadow: 0 0 0 3px rgba(44, 64, 46, 0.15);
    outline: none;
}

.novo-header-section .novo-cart-btn {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #2C402E;
    font-size: 1.3rem;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
    padding: 0;
}

.novo-header-section .novo-cart-btn:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
    transform: translateY(-2px);
}

.novo-header-section .novo-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #B86B35;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9999px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #FAF7F2;
    line-height: 1;
}

.novo-header-section .novo-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C402E;
    padding: 0.5rem 1rem !important;
    border-radius: 9999px;
    transition: all 0.25s ease;
}

.novo-header-section .novo-nav-link:hover,
.novo-header-section .novo-nav-link:focus {
    color: #B86B35;
    background-color: rgba(184, 107, 53, 0.08);
}

@media (min-width: 992px) {
    .novo-header-section .novo-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .novo-header-section .novo-nav-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .novo-header-section .novo-nav-left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-right: auto;
        padding-right: 120px;
    }

    .novo-header-section .novo-nav-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
        padding-left: 120px;
        margin-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .novo-header-section .novo-navbar {
        padding: 0.65rem 0;
    }

    .novo-header-section .novo-brand-text {
        font-size: 1.25rem;
    }

    .novo-header-section .navbar-collapse {
        background-color: #FFFFFF;
        border: 1px solid #EBE2D5;
        border-radius: 18px;
        padding: 1.25rem;
        margin-top: 0.85rem;
        box-shadow: 0 12px 30px rgba(44, 64, 46, 0.08);
        width: 100%;
    }

    .novo-header-section .novo-nav-left,
    .novo-header-section .novo-nav-right {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        width: 100%;
    }

    .novo-header-section .novo-nav-right {
        margin-top: 0.35rem;
        padding-top: 0.35rem;
        border-top: 1px solid #F3ECE2;
    }

    .novo-header-section .novo-nav-link {
        font-size: 0.9rem;
        padding: 0.65rem 1rem !important;
    }
}

/* ===== welcometonovonuts ===== */
.novo-hero-section {
    background-color: #FAF7F2;
    color: #1C1917;
    overflow: hidden;
    position: relative;
}

.novo-hero-section .novo-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #EFE8DC;
    color: #2C402E;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.novo-hero-section .novo-hero-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 3.8vw + 0.5rem, 3.25rem);
    line-height: 1.2;
    font-weight: 700;
    color: #2C402E;
    hyphens: auto;
}

.novo-hero-section .novo-hero-desc {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #5F554B;
    max-width: 580px;
}

.novo-hero-section .novo-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #2C402E;
    color: #FAF7F2;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.85rem 1.85rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1.5px solid #2C402E;
    box-shadow: 0 4px 14px rgba(44, 64, 46, 0.2);
    transition: all 0.3s ease;
}

.novo-hero-section .novo-btn-primary:hover {
    background-color: #1f3021;
    color: #FAF7F2;
    border-color: #1f3021;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(44, 64, 46, 0.28);
}

.novo-hero-section .novo-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #FFFFFF;
    color: #2C402E;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1.5px solid #D5C8B8;
    box-shadow: 0 2px 8px rgba(44, 64, 46, 0.04);
    transition: all 0.3s ease;
}

.novo-hero-section .novo-btn-secondary:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 64, 46, 0.15);
}

.novo-hero-section .novo-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background-color: #EFE8DC;
    color: #2C402E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.novo-hero-section .novo-feature-text strong {
    font-size: 0.875rem;
    color: #1C1917;
    line-height: 1.3;
}

.novo-hero-section .novo-feature-text span {
    font-size: 0.75rem;
    color: #5F554B;
    line-height: 1.3;
}

.novo-hero-section .novo-hero-visual {
    position: relative;
    padding: 1.5rem 0.5rem;
    max-width: 480px;
    margin: 0 auto;
}

.novo-hero-section .novo-hero-shape {
    background: linear-gradient(145deg, #F3ECE2 0%, #E8DFC8 100%);
    border-radius: 36px;
    padding: 1rem;
    box-shadow: 0 16px 40px rgba(44, 64, 46, 0.08);
    border: 1px solid #E5DACB;
}

.novo-hero-section .novo-hero-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    background-color: #FAF7F2;
    aspect-ratio: 1 / 1;
    width: 100%;
}

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

.novo-hero-section .novo-floating-card {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 16px;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 24px rgba(44, 64, 46, 0.12);
    z-index: 2;
}

.novo-hero-section .novo-card-top {
    top: 0.5rem;
    right: -0.5rem;
}

.novo-hero-section .novo-card-bottom {
    bottom: 0.5rem;
    left: -0.5rem;
}

.novo-hero-section .novo-card-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background-color: #EFE8DC;
    color: #2C402E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.novo-hero-section .novo-card-icon.novo-icon-warm {
    background-color: #F8E6D3;
    color: #B86B35;
}

.novo-hero-section .novo-card-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1C1917;
    line-height: 1.2;
}

.novo-hero-section .novo-card-sub {
    display: block;
    font-size: 0.6875rem;
    color: #5F554B;
    line-height: 1.2;
}

@media (max-width: 767.98px) {
    .novo-hero-section .novo-hero-title {
        font-size: 1.75rem;
    }

    .novo-hero-section .novo-hero-desc {
        font-size: 0.9375rem;
    }

    .novo-hero-section .novo-hero-actions .novo-btn-primary,
    .novo-hero-section .novo-hero-actions .novo-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .novo-hero-section .novo-card-top {
        top: -0.5rem;
        right: 0.5rem;
    }

    .novo-hero-section .novo-card-bottom {
        bottom: -0.5rem;
        left: 0.5rem;
    }
}

/* ===== originandsourcing ===== */
.nn-origin-section {
    background-color: #FAF7F2;
    color: #1C1917;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.nn-origin-section .nn-origin-section__badge {
    background-color: #F3ECE2;
    color: #2C402E;
    border: 1px solid #EBE2D5;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nn-origin-section .nn-origin-section__title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    line-height: 1.25;
}

.nn-origin-section .nn-origin-section__subtitle {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    line-height: 1.3;
}

.nn-origin-section .nn-origin-section__lead {
    color: #5F554B;
    font-size: 1.125rem;
    line-height: 1.6;
}

.nn-origin-section .nn-origin-section__card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.nn-origin-section .nn-origin-section__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(44, 64, 46, 0.08);
    border-color: #D5C8B8;
}

.nn-origin-section .nn-origin-section__card--featured {
    background-color: #F3ECE2;
    border-color: #E5DACB;
}

.nn-origin-section .nn-origin-section__pill-tag {
    background-color: #FAF7F2;
    color: #B86B35;
    border: 1px solid #EBE2D5;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
}

.nn-origin-section .nn-origin-section__text {
    color: #5F554B;
    font-size: 0.95rem;
    line-height: 1.65;
}

.nn-origin-section .nn-origin-section__text-sm {
    color: #5F554B;
    font-size: 0.875rem;
    line-height: 1.5;
}

.nn-origin-section .nn-origin-section__mini-stat {
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
}

.nn-origin-section .nn-origin-section__mini-stat-title {
    color: #2C402E;
    font-size: 0.9rem;
}

.nn-origin-section .nn-origin-section__mini-stat-desc {
    color: #5F554B;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.nn-origin-section .nn-origin-section__icon-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2C402E;
    color: #FAF7F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nn-origin-section .nn-origin-section__image {
    object-fit: cover;
    border: 1px solid #EBE2D5;
    max-height: 240px;
}

.nn-origin-section .nn-origin-section__location-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nn-origin-section .nn-origin-section__location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(44, 64, 46, 0.07);
}

.nn-origin-section .nn-origin-section__flag-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #F3ECE2;
    color: #B86B35;
    font-size: 1.25rem;
}

.nn-origin-section .nn-origin-section__loc-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: 1.2rem;
}

.nn-origin-section .nn-origin-section__loc-region {
    color: #B86B35;
    font-size: 0.85rem;
    font-weight: 600;
}

.nn-origin-section .nn-origin-section__loc-desc {
    color: #5F554B;
    font-size: 0.9rem;
    line-height: 1.55;
}

@media (max-width: 767.98px) {
    .nn-origin-section .nn-origin-section__title {
        font-size: 1.5rem;
    }

    .nn-origin-section .nn-origin-section__subtitle {
        font-size: 1.25rem;
    }

    .nn-origin-section .nn-origin-section__lead {
        font-size: 0.95rem;
    }

    .nn-origin-section .nn-origin-section__image {
        max-height: 180px;
    }
}

/* ===== storageandhandling ===== */
.novo-care-section {
    background-color: #FAF7F2;
    color: #1C1917;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.novo-care-section .care-pill-badge {
    background-color: #EFE8DC;
    color: #2C402E;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid #EBE2D5;
}

.novo-care-section .care-main-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.novo-care-section .care-lead-text {
    color: #5F554B;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.novo-care-section .care-nav-pill-group {
    background-color: #F3ECE2;
    border: 1px solid #E5DACB;
    border-radius: 9999px;
}

.novo-care-section .care-tab-btn {
    border: none;
    background: transparent;
    color: #5F554B;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.novo-care-section .care-tab-btn i {
    font-size: 1.15rem;
}

.novo-care-section .care-tab-btn:hover {
    color: #2C402E;
}

.novo-care-section .care-tab-btn.active {
    background-color: #2C402E;
    color: #FAF7F2;
    box-shadow: 0 4px 14px rgba(44, 64, 46, 0.2);
}

.novo-care-section .care-tab-panel {
    display: none;
    animation: careFadeIn 0.35s ease;
}

.novo-care-section .care-tab-panel.active {
    display: block;
}

@keyframes careFadeIn {
    from {
        opacity: 0.3;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.novo-care-section .care-bento-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(44, 64, 46, 0.04);
}

.novo-care-section .care-tag {
    background-color: #2C402E;
    color: #FAF7F2;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
}

.novo-care-section .care-tag-secondary {
    background-color: #EFE8DC;
    color: #2C402E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
}

.novo-care-section .care-panel-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: clamp(1.35rem, 2vw + 0.3rem, 1.85rem);
    font-weight: 600;
    line-height: 1.3;
}

.novo-care-section .care-panel-desc {
    color: #5F554B;
    font-size: 1rem;
    line-height: 1.6;
}

.novo-care-section .care-check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-color: #F3ECE2;
    color: #2C402E;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-top: 2px;
}

.novo-care-section .care-list-title {
    color: #1C1917;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-block;
    margin-right: 4px;
}

.novo-care-section .care-list-sub {
    color: #5F554B;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.novo-care-section .care-highlight-box {
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    border-radius: 18px;
}

.novo-care-section .care-box-icon {
    width: 52px;
    height: 52px;
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    color: #B86B35;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(44, 64, 46, 0.04);
}

.novo-care-section .care-highlight-title {
    color: #2C402E;
    font-size: 1.125rem;
    font-weight: 600;
}

.novo-care-section .care-highlight-text {
    color: #5F554B;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.novo-care-section .care-stat-badge {
    background-color: #FFFFFF;
    color: #2C402E;
    border: 1px solid #D5C8B8;
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.novo-care-section .care-rule-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.novo-care-section .care-rule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 64, 46, 0.08);
    border-color: #D5C8B8;
}

.novo-care-section .care-icon-badge {
    width: 48px;
    height: 48px;
    background-color: #F3ECE2;
    color: #2C402E;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.novo-care-section .care-card-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: 1.15rem;
    font-weight: 600;
}

.novo-care-section .care-card-desc {
    color: #5F554B;
    font-size: 0.875rem;
    line-height: 1.55;
}

.novo-care-section .care-matrix-wrapper {
    background-color: #F3ECE2;
    border: 1px solid #E5DACB;
    border-radius: 24px;
}

.novo-care-section .care-matrix-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: clamp(1.25rem, 1.8vw + 0.3rem, 1.65rem);
    font-weight: 600;
}

.novo-care-section .care-matrix-subtitle {
    color: #5F554B;
    font-size: 0.9375rem;
}

.novo-care-section .care-chip-btn {
    border: 1px solid #D5C8B8;
    background-color: #FFFFFF;
    color: #5F554B;
    border-radius: 9999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.novo-care-section .care-chip-btn:hover {
    border-color: #2C402E;
    color: #2C402E;
}

.novo-care-section .care-chip-btn.active {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-care-section .care-variety-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.novo-care-section .care-variety-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 64, 46, 0.06);
}

.novo-care-section .care-variety-name {
    color: #2C402E;
    font-size: 1rem;
    font-weight: 700;
}

.novo-care-section .care-dense-badge {
    background-color: #EFE8DC;
    color: #2C402E;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
}

.novo-care-section .care-oil-badge {
    background-color: #F8EFE7;
    color: #B86B35;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    border: 1px solid #F0D9C8;
}

.novo-care-section .care-variety-note {
    color: #5F554B;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.novo-care-section .care-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    background-color: #FAF7F2;
    border-radius: 12px;
    padding: 0.65rem;
    border: 1px solid #EBE2D5;
}

.novo-care-section .care-timeline-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.novo-care-section .timeline-label {
    font-size: 0.6875rem;
    color: #8C8074;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.novo-care-section .timeline-value {
    font-size: 0.8125rem;
    color: #2C402E;
    font-weight: 700;
}

.novo-care-section .care-notice-banner {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(44, 64, 46, 0.04);
}

.novo-care-section .care-notice-icon-circle {
    width: 54px;
    height: 54px;
    background-color: #EFE8DC;
    color: #2C402E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.novo-care-section .care-notice-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: 1.15rem;
    font-weight: 600;
}

.novo-care-section .care-notice-text {
    color: #5F554B;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.novo-care-section .care-action-link {
    background-color: #2C402E;
    color: #FAF7F2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 12px rgba(44, 64, 46, 0.15);
    white-space: nowrap;
}

.novo-care-section .care-action-link:hover {
    background-color: #233425;
    color: #FAF7F2;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 64, 46, 0.22);
}

@media (max-width: 767.98px) {
    .novo-care-section .care-nav-pill-group {
        border-radius: 18px;
    }

    .novo-care-section .care-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .novo-care-section .care-timeline-grid {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        text-align: left;
    }

    .novo-care-section .care-timeline-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .novo-care-section .care-main-title {
        font-size: 1.35rem;
    }

    .novo-care-section .care-panel-title {
        font-size: 1.25rem;
    }

    .novo-care-section .care-card-title {
        font-size: 1rem;
    }
}

/* ===== in-storeavailability ===== */
.novo-availability-section {
    background-color: #FAF7F2;
    color: #1C1917;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.novo-availability-section .novo-availability-badge {
    background-color: #F3ECE2;
    color: #2C402E;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
}

.novo-availability-section .novo-availability-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
}

.novo-availability-section .novo-availability-subtitle {
    color: #5F554B;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

.novo-availability-section .novo-stat-card {
    background: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44, 64, 46, 0.04);
}

.novo-availability-section .novo-stat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #F3ECE2;
    color: #2C402E;
    border-radius: 50%;
    font-size: 1.25rem;
}

.novo-availability-section .novo-stat-label {
    font-size: 0.75rem;
    color: #8C8074;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.novo-availability-section .novo-stat-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1C1917;
}

.novo-availability-section .novo-filter-bar {
    background: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(44, 64, 46, 0.03);
}

.novo-availability-section .novo-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2C402E;
}

.novo-availability-section .novo-loc-btn,
.novo-availability-section .novo-status-filter-btn {
    background: #FAF7F2;
    border: 1px solid #EBE2D5;
    color: #5F554B;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.novo-availability-section .novo-loc-btn:hover,
.novo-availability-section .novo-status-filter-btn:hover {
    background: #EFE8DC;
    color: #2C402E;
    border-color: #D5C8B8;
}

.novo-availability-section .novo-loc-btn.active,
.novo-availability-section .novo-status-filter-btn.active {
    background: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-availability-section .novo-stock-card {
    background: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.novo-availability-section .novo-stock-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(44, 64, 46, 0.08);
    border-color: #D5C8B8;
}

.novo-availability-section .novo-thumb-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #F7F3ED;
    border: 1px solid #EBE2D5;
}

.novo-availability-section .novo-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.novo-availability-section .novo-item-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.3;
}

.novo-availability-section .novo-item-title a {
    color: #1C1917;
    text-decoration: none;
    transition: color 0.2s ease;
}

.novo-availability-section .novo-item-title a:hover {
    color: #B86B35;
}

.novo-availability-section .novo-item-price {
    font-weight: 700;
    color: #B86B35;
    font-size: 0.9375rem;
}

.novo-availability-section .novo-badge-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.novo-availability-section .novo-badge-status.in-stock {
    background: #E8F2EB;
    color: #366347;
}

.novo-availability-section .novo-location-row {
    border-bottom: 1px dashed #EBE2D5;
    font-size: 0.8125rem;
}

.novo-availability-section .novo-location-row:last-child {
    border-bottom: none;
}

.novo-availability-section .novo-loc-name {
    color: #5F554B;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.novo-availability-section .novo-loc-name i {
    color: #8C8074;
}

.novo-availability-section .novo-loc-detail strong {
    color: #2C402E;
}

.novo-availability-section .novo-loc-detail small {
    color: #8C8074;
    font-size: 0.75rem;
}

.novo-availability-section .novo-loc-detail .novo-empty-stock {
    color: #B86B35;
    font-weight: 600;
}

.novo-availability-section .novo-pickup-hint {
    font-size: 0.75rem;
    color: #8C8074;
}

.novo-availability-section .novo-detail-btn {
    background: transparent;
    border: 1.5px solid #2C402E;
    color: #2C402E;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.novo-availability-section .novo-detail-btn:hover {
    background: #2C402E;
    color: #FAF7F2;
}

.novo-availability-section .novo-notice-box {
    background: #F3ECE2;
    border: 1px solid #E5DACB;
    border-radius: 20px;
}

.novo-availability-section .novo-notice-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #2C402E;
    color: #FAF7F2;
    border-radius: 50%;
    font-size: 1.25rem;
}

.novo-availability-section .novo-notice-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    font-size: 1.125rem;
    font-weight: 600;
}

.novo-availability-section .novo-notice-text {
    color: #5F554B;
    font-size: 0.875rem;
}

.novo-availability-section .novo-notice-link {
    background: #2C402E;
    color: #FAF7F2;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.novo-availability-section .novo-notice-link:hover {
    background: #1f2e21;
    color: #FAF7F2;
}

@media (max-width: 767.98px) {
    .novo-availability-section .novo-availability-title {
        font-size: 1.375rem;
        hyphens: auto;
    }

    .novo-availability-section .novo-item-title {
        font-size: 0.9375rem;
        hyphens: auto;
    }

    .novo-availability-section .novo-notice-title {
        font-size: 1rem;
        hyphens: auto;
    }
}

/* ===== productselector ===== */
.novo-selector-section {
    background-color: #FAF7F2;
    color: #1C1917;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.novo-selector-section .novo-badge {
    background-color: #F3ECE2;
    color: #2C402E;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.novo-selector-section .novo-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #2C402E;
    line-height: 1.2;
}

@media (max-width: 767.98px) {
    .novo-selector-section .novo-title {
        font-size: 16px;
        hyphens: auto;
    }
}

.novo-selector-section .novo-subtitle {
    color: #5F554B;
    font-size: 1rem;
    line-height: 1.6;
}

.novo-selector-section .novo-selector-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(44, 64, 46, 0.05);
}

.novo-selector-section .novo-stepper {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.novo-selector-section .novo-progress-track {
    height: 3px;
    background-color: #EFE8DC;
    z-index: 1;
}

.novo-selector-section .novo-progress-bar {
    height: 3px;
    background-color: #2C402E;
    width: 0%;
    z-index: 2;
    transition: width 0.35s ease;
}

.novo-selector-section .novo-step-node {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.novo-selector-section .node-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid #D5C8B8;
    color: #8C8074;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.novo-selector-section .node-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #8C8074;
    transition: color 0.3s ease;
}

.novo-selector-section .novo-step-node.active .node-number {
    background-color: #2C402E;
    border-color: #2C402E;
    color: #FAF7F2;
    box-shadow: 0 0 0 4px rgba(44, 64, 46, 0.15);
}

.novo-selector-section .novo-step-node.active .node-label {
    color: #2C402E;
}

.novo-selector-section .novo-step-node.completed .node-number {
    background-color: #4D7856;
    border-color: #4D7856;
    color: #FAF7F2;
}

.novo-selector-section .novo-step-pane {
    display: none;
}

.novo-selector-section .novo-step-pane.active {
    display: block;
}

.novo-selector-section .novo-step-tag {
    background-color: #F3ECE2;
    color: #B86B35;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    display: inline-block;
}

.novo-selector-section .novo-step-question {
    font-family: 'Fraunces', Georgia, serif;
    color: #1C1917;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .novo-selector-section .novo-step-question {
        font-size: 14px;
        hyphens: auto;
    }
}

.novo-selector-section .novo-step-desc {
    color: #5F554B;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.novo-selector-section .novo-choice-card {
    background: #FFFFFF;
    border: 1.5px solid #EBE2D5;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    height: 100%;
}

.novo-selector-section .novo-choice-card:hover {
    border-color: #2C402E;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 64, 46, 0.08);
}

.novo-selector-section .choice-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: #F3ECE2;
    color: #2C402E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.3s ease;
}

.novo-selector-section .novo-choice-card:hover .choice-icon-box {
    background-color: #2C402E;
    color: #FAF7F2;
}

.novo-selector-section .choice-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #1C1917;
    font-size: 1.05rem;
    font-weight: 600;
}

.novo-selector-section .choice-desc {
    color: #5F554B;
    font-size: 0.875rem;
    line-height: 1.5;
}

.novo-selector-section .novo-btn-back {
    background: transparent;
    border: none;
    color: #5F554B;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.novo-selector-section .novo-btn-back:hover {
    color: #2C402E;
    background-color: #F3ECE2;
}

.novo-selector-section .novo-btn-restart {
    background: #F3ECE2;
    border: 1.5px solid #D5C8B8;
    color: #2C402E;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.novo-selector-section .novo-btn-restart:hover {
    background: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-selector-section .novo-product-card {
    background: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(44, 64, 46, 0.04);
}

.novo-selector-section .novo-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(44, 64, 46, 0.1);
    border-color: #D5C8B8;
}

.novo-selector-section .novo-card-img-link {
    display: block;
    text-decoration: none;
}

.novo-selector-section .novo-img-wrapper {
    position: relative;
    background: #F7F3ED;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.novo-selector-section .novo-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.novo-selector-section .novo-product-card:hover .novo-card-img {
    transform: scale(1.05);
}

.novo-selector-section .novo-badge-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(4px);
    color: #2C402E;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9999px;
    padding: 0.25rem 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.novo-selector-section .novo-product-meta {
    font-size: 0.75rem;
    color: #8C8074;
    font-weight: 600;
}

.novo-selector-section .novo-weight-tag {
    background: #F3ECE2;
    color: #5F554B;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.novo-selector-section .novo-origin-tag {
    color: #5F554B;
}

.novo-selector-section .novo-product-link {
    color: #1C1917;
    text-decoration: none;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.novo-selector-section .novo-product-link:hover {
    color: #B86B35;
}

.novo-selector-section .novo-product-desc {
    color: #5F554B;
    font-size: 0.845rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.novo-selector-section .novo-price-label {
    font-size: 0.6875rem;
    color: #8C8074;
    text-transform: uppercase;
    font-weight: 600;
}

.novo-selector-section .novo-price-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C402E;
}

.novo-selector-section .novo-btn-cart {
    background-color: #2C402E;
    color: #FAF7F2;
    border-radius: 9999px;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.novo-selector-section .novo-btn-cart:hover {
    background-color: #1c2a1e;
    color: #FAF7F2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 64, 46, 0.25);
}

.novo-selector-section .novo-result-item {
    display: flex;
}

/* ===== ourcatalog ===== */
.catalog-grid-section {
    background-color: #FAF7F2;
    color: #1C1917;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.catalog-grid-section .catalog-grid-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #2C402E;
    background-color: #EFE8DC;
    border-radius: 9999px;
}

.catalog-grid-section .catalog-grid-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: #2C402E;
    hyphens: auto;
}

.catalog-grid-section .catalog-grid-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #5F554B;
    max-width: 580px;
}

.catalog-grid-section .catalog-product-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.catalog-grid-section .catalog-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(44, 64, 46, 0.1);
    border-color: #D5C8B8;
}

.catalog-grid-section .catalog-image-wrap {
    background-color: #F7F3ED;
    border-top-left-radius: 19px;
    border-top-right-radius: 19px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.catalog-grid-section .catalog-image-link {
    width: 100%;
    height: 100%;
}

.catalog-grid-section .catalog-product-img {
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-grid-section .catalog-product-card:hover .catalog-product-img {
    transform: scale(1.06);
}

.catalog-grid-section .catalog-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2C402E;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(28, 25, 23, 0.08);
}

.catalog-grid-section .catalog-star-icon {
    color: #E3A857;
    font-size: 0.875rem;
    margin-right: 2px;
}

.catalog-grid-section .catalog-rating-score {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5F554B;
}

.catalog-grid-section .catalog-product-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1C1917;
}

.catalog-grid-section .catalog-product-link {
    color: #1C1917;
    text-decoration: none;
    transition: color 0.2s ease;
}

.catalog-grid-section .catalog-product-link:hover {
    color: #B86B35;
}

.catalog-grid-section .catalog-product-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5F554B;
}

.catalog-grid-section .catalog-card-footer {
    border-top: 1px solid #F3ECE2;
}

.catalog-grid-section .catalog-price-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5F554B;
}

.catalog-grid-section .catalog-price-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C402E;
    font-feature-settings: 'lnum';
}

.catalog-grid-section .catalog-cart-btn {
    background-color: #2C402E;
    color: #FAF7F2;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(44, 64, 46, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.catalog-grid-section .catalog-cart-btn:hover {
    background-color: #233425;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(44, 64, 46, 0.28);
}

.catalog-grid-section .catalog-cart-btn:active {
    transform: translateY(0);
}

.catalog-grid-section .catalog-explore-link {
    background-color: transparent;
    border: 1.5px solid #2C402E;
    color: #2C402E;
    border-radius: 9999px;
    padding: 0.8rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.catalog-grid-section .catalog-explore-link:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 64, 46, 0.16);
}

@media (max-width: 767.98px) {
    .catalog-grid-section .catalog-grid-title {
        font-size: 16px;
    }

    .catalog-grid-section .catalog-product-name {
        font-size: 14px;
    }
}

/* ===== footer ===== */
.novo-nuts-footer {
    background-color: #F3ECE2;
    border-top: 1px solid #EBE2D5;
    color: #5F554B;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    padding-top: clamp(3.5rem, 6vw, 5rem);
    padding-bottom: 2rem;
}

.novo-nuts-footer__top {
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid #E5DACB;
}

.novo-nuts-footer__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 0.875rem;
    line-height: 1.25;
}

.novo-nuts-footer__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F554B;
    margin-bottom: 1.25rem;
}

.novo-nuts-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    color: #2C402E;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.novo-nuts-footer__col-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.novo-nuts-footer__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.novo-nuts-footer__link {
    color: #5F554B;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.novo-nuts-footer__link:hover,
.novo-nuts-footer__link:focus {
    color: #B86B35;
    text-decoration: none;
    transform: translateX(2px);
}

.novo-nuts-footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.novo-nuts-footer__contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #5F554B;
}

.novo-nuts-footer__contact-icon {
    color: #2C402E;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.novo-nuts-footer__contact-text {
    color: #5F554B;
}

.novo-nuts-footer__map-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E5DACB;
    box-shadow: 0 2px 8px rgba(44, 64, 46, 0.04);
    background-color: #FAF7F2;
}

.novo-nuts-footer__map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.novo-nuts-footer__bottom {
    padding-top: 1.75rem;
    font-size: 0.875rem;
    color: #8C8074;
}

.novo-nuts-footer__copyright {
    color: #8C8074;
    font-size: 0.875rem;
}

.novo-nuts-footer__tagline {
    font-size: 0.875rem;
    color: #5F554B;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .novo-nuts-footer__title {
        font-size: 1.5rem;
    }

    .novo-nuts-footer__col-heading {
        font-size: 1.05rem;
        margin-bottom: 0.875rem;
    }

    .novo-nuts-footer__top {
        padding-bottom: 2rem;
    }

    .novo-nuts-footer__map-wrapper {
        height: 130px;
    }
}

.novo-header-section {
    background-color: #FAF7F2;
    border-bottom: 1px solid #EBE2D5;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 12px rgba(44, 64, 46, 0.05);
}

.novo-header-section .novo-navbar {
    padding: 0.85rem 0;
    background-color: #FAF7F2;
}

.novo-header-section .novo-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.novo-header-section .novo-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.novo-header-section .novo-brand-logo {
    width: 42px;
    height: 42px;
    max-width: 44px;
    object-fit: contain;
}

.novo-header-section .novo-brand-text {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C402E;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.novo-header-section .novo-toggler {
    border: 1px solid #D5C8B8;
    background-color: #FFFFFF;
    color: #2C402E;
    font-size: 1.35rem;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(44, 64, 46, 0.04);
}

.novo-header-section .novo-toggler:focus {
    box-shadow: 0 0 0 3px rgba(44, 64, 46, 0.15);
    outline: none;
}

.novo-header-section .novo-cart-btn {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #2C402E;
    font-size: 1.3rem;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
    padding: 0;
}

.novo-header-section .novo-cart-btn:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
    transform: translateY(-2px);
}

.novo-header-section .novo-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #B86B35;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9999px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #FAF7F2;
    line-height: 1;
}

.novo-header-section .novo-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C402E;
    padding: 0.5rem 1rem !important;
    border-radius: 9999px;
    transition: all 0.25s ease;
}

.novo-header-section .novo-nav-link:hover,
.novo-header-section .novo-nav-link:focus {
    color: #B86B35;
    background-color: rgba(184, 107, 53, 0.08);
}

@media (min-width: 992px) {
    .novo-header-section .novo-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .novo-header-section .novo-nav-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .novo-header-section .novo-nav-left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-right: auto;
        padding-right: 120px;
    }

    .novo-header-section .novo-nav-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
        padding-left: 120px;
        margin-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .novo-header-section .novo-navbar {
        padding: 0.65rem 0;
    }

    .novo-header-section .novo-brand-text {
        font-size: 1.25rem;
    }

    .novo-header-section .navbar-collapse {
        background-color: #FFFFFF;
        border: 1px solid #EBE2D5;
        border-radius: 18px;
        padding: 1.25rem;
        margin-top: 0.85rem;
        box-shadow: 0 12px 30px rgba(44, 64, 46, 0.08);
        width: 100%;
    }

    .novo-header-section .novo-nav-left,
    .novo-header-section .novo-nav-right {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        width: 100%;
    }

    .novo-header-section .novo-nav-right {
        margin-top: 0.35rem;
        padding-top: 0.35rem;
        border-top: 1px solid #F3ECE2;
    }

    .novo-header-section .novo-nav-link {
        font-size: 0.9rem;
        padding: 0.65rem 1rem !important;
    }
}

.novo-catalog-hero {
    background: linear-gradient(180deg, #FAF7F2 0%, #F3ECE2 100%);
    border-bottom: 1px solid #EBE2D5;
}

.novo-catalog-hero .novo-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.novo-catalog-hero .novo-breadcrumb-item+.novo-breadcrumb-item::before {
    content: "/";
    padding-right: 0.5rem;
    color: #8C8074;
}

.novo-catalog-hero .novo-breadcrumb-link {
    color: #5F554B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.novo-catalog-hero .novo-breadcrumb-link:hover {
    color: #2C402E;
}

.novo-catalog-hero .novo-breadcrumb-item.active {
    color: #2C402E;
    font-weight: 600;
}

.novo-catalog-hero .novo-catalog-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
    color: #2C402E;
    font-weight: 700;
    line-height: 1.2;
}

.novo-catalog-hero .novo-catalog-subtitle {
    font-size: 1.05rem;
    color: #5F554B;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

.novo-catalog-section {
    background-color: #FAF7F2;
    min-height: 50vh;
}

.novo-catalog-section .novo-catalog-toolbar {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 16px rgba(44, 64, 46, 0.03);
}

.novo-catalog-section .novo-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.novo-catalog-section .novo-search-icon {
    position: absolute;
    left: 1rem;
    color: #8C8074;
    font-size: 1.15rem;
    pointer-events: none;
}

.novo-catalog-section .novo-search-input {
    background-color: #FAF7F2;
    border: 1px solid #D5C8B8;
    border-radius: 9999px;
    padding: 0.65rem 1rem 0.65rem 2.65rem;
    color: #1C1917;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.novo-catalog-section .novo-search-input::placeholder {
    color: #8C8074;
    opacity: 1;
}

.novo-catalog-section .novo-search-input:focus {
    background-color: #FFFFFF;
    border-color: #2C402E;
    box-shadow: 0 0 0 3px rgba(44, 64, 46, 0.15);
    outline: none;
}

.novo-catalog-section .novo-filter-btn {
    background-color: #FAF7F2;
    border: 1px solid #D5C8B8;
    color: #2C402E;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.novo-catalog-section .novo-filter-btn:hover {
    background-color: #EFE8DC;
    border-color: #2C402E;
}

.novo-catalog-section .novo-filter-btn.active {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-catalog-section .novo-product-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.novo-catalog-section .novo-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(44, 64, 46, 0.1);
    border-color: #D5C8B8;
}

.novo-catalog-section .novo-card-badge-wrap {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.novo-catalog-section .novo-card-badge {
    background-color: rgba(250, 247, 242, 0.95);
    color: #2C402E;
    border: 1px solid #EBE2D5;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.novo-catalog-section .novo-product-img-link {
    display: block;
    background-color: #F7F3ED;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
}

.novo-catalog-section .novo-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.novo-catalog-section .novo-product-card:hover .novo-product-img {
    transform: scale(1.05);
}

.novo-catalog-section .novo-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #8C8074;
    font-weight: 500;
}

.novo-catalog-section .novo-product-status {
    color: #366347;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.novo-catalog-section .novo-product-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2C402E;
    margin-bottom: 0.35rem;
}

.novo-catalog-section .novo-product-title-link {
    color: #2C402E;
    text-decoration: none;
    transition: color 0.25s ease;
}

.novo-catalog-section .novo-product-title-link:hover {
    color: #B86B35;
}

.novo-catalog-section .novo-product-spec {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #5F554B;
}

.novo-catalog-section .novo-product-footer {
    border-color: #F3ECE2 !important;
}

.novo-catalog-section .novo-product-price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2C402E;
    line-height: 1;
}

.novo-catalog-section .novo-add-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background-color: #2C402E;
    color: #FAF7F2;
    border: 1px solid #2C402E;
    border-radius: 9999px;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.novo-catalog-section .novo-add-cart-btn:hover {
    background-color: #B86B35;
    border-color: #B86B35;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.novo-catalog-section .novo-empty-icon {
    font-size: 2.5rem;
    color: #8C8074;
}

.novo-catalog-section .novo-empty-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.4rem;
    color: #2C402E;
    font-weight: 700;
}

.novo-catalog-section .novo-empty-desc {
    font-size: 0.9375rem;
    color: #5F554B;
}

.novo-catalog-section .novo-btn-reset {
    background-color: #2C402E;
    color: #FAF7F2;
    border: 1px solid #2C402E;
    border-radius: 9999px;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.novo-catalog-section .novo-btn-reset:hover {
    background-color: #B86B35;
    border-color: #B86B35;
}

.novo-cart-dialog {
    max-width: 520px;
    margin: 1.5rem auto;
}

.novo-cart-modal-content {
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(44, 64, 46, 0.15);
    overflow: hidden;
}

.novo-cart-modal-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EBE2D5;
    padding: 1.25rem 1.5rem;
}

.novo-cart-modal-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2C402E;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.novo-cart-close-btn:focus {
    box-shadow: none;
}

.novo-cart-modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.novo-cart-empty-icon {
    font-size: 3rem;
    color: #8C8074;
}

.novo-cart-empty-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C402E;
}

.novo-cart-empty-subtitle {
    font-size: 0.875rem;
    color: #5F554B;
}

.novo-cart-item-row {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.novo-cart-item-info strong {
    font-size: 0.9rem;
    color: #2C402E;
    display: block;
}

.novo-cart-item-info span {
    font-size: 0.8125rem;
    color: #B86B35;
    font-weight: 600;
}

.novo-cart-item-remove {
    background: none;
    border: none;
    color: #8C8074;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.novo-cart-item-remove:hover {
    color: #B83A2E;
}

.novo-cart-modal-footer {
    background-color: #FFFFFF;
    border-top: 1px solid #EBE2D5;
    padding: 1.25rem 1.5rem;
}

.novo-cart-total-label {
    font-size: 1rem;
    font-weight: 600;
    color: #5F554B;
}

.novo-cart-total-amount {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2C402E;
}

.novo-cart-checkout-btn {
    background-color: #2C402E;
    color: #FAF7F2;
    border: 1px solid #2C402E;
    border-radius: 9999px;
    padding: 0.85rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.novo-cart-checkout-btn:hover {
    background-color: #1f3021;
}

.novo-nuts-footer {
    background-color: #F3ECE2;
    border-top: 1px solid #EBE2D5;
    color: #5F554B;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    padding-top: clamp(3.5rem, 6vw, 5rem);
    padding-bottom: 2rem;
}

.novo-nuts-footer__top {
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid #E5DACB;
}

.novo-nuts-footer__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 0.875rem;
    line-height: 1.25;
}

.novo-nuts-footer__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F554B;
    margin-bottom: 1.25rem;
}

.novo-nuts-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    color: #2C402E;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.novo-nuts-footer__col-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.novo-nuts-footer__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.novo-nuts-footer__link {
    color: #5F554B;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.novo-nuts-footer__link:hover,
.novo-nuts-footer__link:focus {
    color: #B86B35;
    text-decoration: none;
    transform: translateX(2px);
}

.novo-nuts-footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.novo-nuts-footer__contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #5F554B;
}

.novo-nuts-footer__contact-icon {
    color: #2C402E;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.novo-nuts-footer__contact-text {
    color: #5F554B;
}

.novo-nuts-footer__map-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E5DACB;
    box-shadow: 0 2px 8px rgba(44, 64, 46, 0.04);
    background-color: #FAF7F2;
}

.novo-nuts-footer__map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.novo-nuts-footer__bottom {
    padding-top: 1.75rem;
    font-size: 0.875rem;
    color: #8C8074;
}

.novo-nuts-footer__copyright {
    color: #8C8074;
    font-size: 0.875rem;
}

.novo-nuts-footer__tagline {
    font-size: 0.875rem;
    color: #5F554B;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .novo-catalog-hero .novo-catalog-title {
        font-size: 1.75rem;
    }

    .novo-nuts-footer__title {
        font-size: 1.5rem;
    }

    .novo-nuts-footer__col-heading {
        font-size: 1.05rem;
        margin-bottom: 0.875rem;
    }

    .novo-nuts-footer__top {
        padding-bottom: 2rem;
    }

    .novo-nuts-footer__map-wrapper {
        height: 130px;
    }
}


/* ===== PAGE: blog ===== */
.novo-blog-section{background-color:#FAF7F2;color:#1C1917;font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif}.novo-blog-badge{background-color:#EFE8DC;color:#2C402E;font-size:0.8125rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;padding:0.4rem 0.95rem;border-radius:9999px}.novo-blog-main-title{font-family:'Fraunces',Georgia,serif;font-size:clamp(1.75rem,3.2vw+0.5rem,2.75rem);color:#2C402E;line-height:1.25;font-weight:700}.novo-blog-lead-text{font-size:1.0625rem;color:#5F554B;line-height:1.6}.novo-blog-card{background-color:#FFFFFF;border:1px solid #EBE2D5;border-radius:20px;overflow:hidden;box-shadow:0 4px 20px rgba(44,64,46,0.04);transition:transform 0.35s cubic-bezier(0.2,0.8,0.2,1),box-shadow 0.35s cubic-bezier(0.2,0.8,0.2,1),border-color 0.35s ease}.novo-blog-card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(44,64,46,0.1);border-color:#D5C8B8}.novo-blog-media-wrapper{height:240px;background-color:#F7F3ED;overflow:hidden}.novo-blog-img{object-fit:cover;transition:transform 0.6s cubic-bezier(0.16,1,0.3,1)}.novo-blog-card:hover .novo-blog-img{transform:scale(1.05)}.novo-blog-category-tag{position:absolute;top:1rem;left:1rem;background-color:rgba(255,255,255,0.92);color:#2C402E;font-size:0.75rem;font-weight:700;letter-spacing:0.04em;text-transform:uppercase;padding:0.35rem 0.8rem;border-radius:9999px;box-shadow:0 2px 8px rgba(28,25,23,0.08);backdrop-filter:blur(4px)}.novo-blog-meta{font-size:0.8125rem;color:#8C8074}.novo-blog-meta-item{color:#5F554B}.novo-blog-meta-item i{color:#B86B35}.novo-blog-card-title{font-family:'Fraunces',Georgia,serif;font-size:1.375rem;line-height:1.3;font-weight:600}.novo-blog-title-link{color:#2C402E;text-decoration:none;transition:color 0.25s ease}.novo-blog-title-link:hover{color:#B86B35}.novo-blog-card-excerpt{color:#5F554B;font-size:0.9375rem;line-height:1.65}.novo-blog-footer{border-color:#EBE2D5!important}.novo-blog-btn-action{background-color:#2C402E;color:#FAF7F2;padding:0.65rem 1.35rem;border-radius:9999px;font-size:0.875rem;font-weight:600;text-decoration:none;transition:all 0.3s cubic-bezier(0.25,0.8,0.25,1);box-shadow:0 3px 10px rgba(44,64,46,0.18)}.novo-blog-btn-action:hover{background-color:#233425;color:#FAF7F2;transform:translateY(-2px);box-shadow:0 6px 16px rgba(44,64,46,0.25)}.novo-blog-btn-action i{transition:transform 0.25s ease}.novo-blog-btn-action:hover i{transform:translateX(3px)}@media(max-width:767.98px){.novo-blog-main-title{font-size:1.375rem;hyphens:auto}.novo-blog-card-title{font-size:1.125rem}.novo-blog-media-wrapper{height:200px}.novo-blog-lead-text{font-size:0.9375rem}}

/* ===== PAGE: about ===== */
.novo-about-section {
  background-color: #FAF7F2;
  color: #1C1917;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.novo-about-section .novo-about-badge {
  display: inline-flex;
  align-items: center;
  background-color: #EFE8DC;
  color: #2C402E;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.novo-about-section .novo-about-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  color: #2C402E;
  font-weight: 700;
}

.novo-about-section .novo-about-subheading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
  line-height: 1.25;
  color: #2C402E;
  font-weight: 600;
}

.novo-about-section .novo-about-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #2C402E;
  font-weight: 500;
}

.novo-about-section .novo-about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #5F554B;
}

.novo-about-section .novo-btn-primary {
  background-color: #2C402E;
  color: #FAF7F2;
  border-radius: 9999px;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 14px rgba(44, 64, 46, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.novo-about-section .novo-btn-primary:hover,
.novo-about-section .novo-btn-primary:focus {
  background-color: #233425;
  color: #FAF7F2;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(44, 64, 46, 0.28);
}

.novo-about-section .novo-btn-outline {
  background-color: transparent;
  border: 1.5px solid #2C402E;
  color: #2C402E;
  border-radius: 9999px;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.novo-about-section .novo-btn-outline:hover,
.novo-about-section .novo-btn-outline:focus {
  background-color: #2C402E;
  color: #FAF7F2;
  transform: translateY(-2px);
}

.novo-about-section .novo-btn-text {
  color: #B86B35;
  font-weight: 600;
  padding: 0.8rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease;
}

.novo-about-section .novo-btn-text:hover {
  color: #A35A28;
  text-decoration: underline;
}

.novo-about-section .novo-about-image-wrap {
  position: relative;
}

.novo-about-section .novo-about-main-img {
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 480px;
  object-fit: cover;
  border: 1px solid #EBE2D5;
}

.novo-about-section .novo-about-stat-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #FFFFFF;
  border: 1px solid #EBE2D5;
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.novo-about-section .novo-stat-icon-box {
  width: 44px;
  height: 44px;
  background-color: #F3ECE2;
  color: #B86B35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.novo-about-section .novo-stat-number {
  font-weight: 700;
  font-size: 1rem;
  color: #2C402E;
}

.novo-about-section .novo-stat-label {
  font-size: 0.8125rem;
  color: #8C8074;
}

.novo-about-section .novo-value-card {
  background-color: #FFFFFF;
  border: 1px solid #EBE2D5;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.novo-about-section .novo-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 64, 46, 0.08);
  border-color: #D5C8B8;
}

.novo-about-section .novo-value-icon {
  width: 52px;
  height: 52px;
  background-color: #F3ECE2;
  color: #2C402E;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.novo-about-section .novo-value-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  color: #2C402E;
  font-weight: 600;
}

.novo-about-section .novo-value-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5F554B;
}

.novo-about-section .novo-story-box {
  background-color: #F3ECE2;
  border: 1px solid #E5DACB;
}

.novo-about-section .novo-story-box img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .novo-about-section .novo-about-heading {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .novo-about-section .novo-about-subheading {
    font-size: 1.35rem;
    hyphens: auto;
  }
  .novo-about-section .novo-about-stat-card {
    position: static;
    margin-top: 1rem;
  }
}

/* ===== PAGE: contact ===== */
.novo-contact-section{background-color:#FAF7F2;color:#1C1917;font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif}.novo-contact-section .novo-contact-badge{background:#F3ECE2;color:#2C402E;padding:0.4rem 1rem;border-radius:9999px;font-size:0.8125rem;font-weight:600;letter-spacing:0.04em;border:1px solid #EBE2D5}.novo-contact-section .novo-contact-title{font-family:'Fraunces',Georgia,serif;font-size:clamp(1.75rem,3vw + 0.5rem,2.5rem);font-weight:700;color:#2C402E;line-height:1.2}.novo-contact-section .novo-contact-subtitle{max-width:680px;color:#5F554B;font-size:1.0625rem;line-height:1.6}.novo-contact-section .novo-contact-card{background:#FFFFFF;border:1px solid #EBE2D5;border-radius:20px;box-shadow:0 4px 20px rgba(44,64,46,0.04);transition:all 0.3s cubic-bezier(0.25,0.8,0.25,1);display:flex;flex-direction:column}.novo-contact-section .novo-contact-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(44,64,46,0.09);border-color:#D5C8B8}.novo-contact-section .novo-contact-icon{width:48px;height:48px;border-radius:12px;background:#F3ECE2;color:#2C402E;display:flex;align-items:center;justify-content:center;font-size:1.5rem}.novo-contact-section .novo-contact-card-title{font-family:'Fraunces',Georgia,serif;font-size:1.125rem;font-weight:700;color:#2C402E;line-height:1.3}.novo-contact-section .novo-contact-card-desc{font-size:0.875rem;color:#5F554B;line-height:1.5;margin-bottom:auto}.novo-contact-section .novo-contact-card-value{font-weight:600;color:#B86B35;font-size:0.9375rem;word-break:break-word;padding-top:0.75rem;border-top:1px dashed #EBE2D5}.novo-contact-section .novo-map-wrapper{background:#FFFFFF;border:1px solid #EBE2D5;border-radius:24px;box-shadow:0 4px 20px rgba(44,64,46,0.04);display:flex;flex-direction:column}.novo-contact-section .novo-map-header{padding:0.5rem 0.75rem 0}.novo-contact-section .novo-map-header-icon{color:#2C402E;font-size:1.375rem}.novo-contact-section .novo-map-title{font-family:'Fraunces',Georgia,serif;font-size:1.25rem;font-weight:700;color:#2C402E}.novo-contact-section .novo-map-caption{font-size:0.875rem;color:#8C8074;display:block;margin-top:0.25rem}.novo-contact-section .novo-map-frame-container{position:relative;width:100%;min-height:360px;flex-grow:1;border-radius:16px;overflow:hidden;background:#EFE8DC}.novo-contact-section .novo-map-frame-container iframe{width:100%!important;height:100%!important;min-height:360px;border:0;display:block}.novo-contact-section .novo-hours-wrapper{background:#F3ECE2;border:1px solid #E5DACB;border-radius:24px;box-shadow:0 4px 20px rgba(44,64,46,0.04)}.novo-contact-section .novo-hours-tag{color:#B86B35;font-weight:700;font-size:0.8125rem;text-transform:uppercase;letter-spacing:0.08em}.novo-contact-section .novo-hours-heading{font-family:'Fraunces',Georgia,serif;font-size:1.375rem;font-weight:700;color:#2C402E;line-height:1.3}.novo-contact-section .novo-hours-text{font-size:0.9375rem;color:#5F554B;line-height:1.6}.novo-contact-section .novo-schedule-item{border-color:#E5DACB!important;font-size:0.9375rem}.novo-contact-section .novo-day{font-weight:600;color:#2C402E}.novo-contact-section .novo-day i{color:#4D7856;font-size:1.125rem}.novo-contact-section .novo-time{color:#5F554B;font-weight:500}.novo-contact-section .novo-service-notes{border-color:#E5DACB!important}.novo-contact-section .novo-notes-icon{width:40px;height:40px;border-radius:50%;background:#FFFFFF;color:#2C402E;display:flex;align-items:center;justify-content:center;font-size:1.25rem;flex-shrink:0;border:1px solid #E5DACB}.novo-contact-section .novo-notes-title{font-family:'Fraunces',Georgia,serif;font-size:1.0625rem;font-weight:700;color:#2C402E}.novo-contact-section .novo-notes-desc{font-size:0.875rem;color:#5F554B;line-height:1.5}@media (max-width:767.98px){.novo-contact-section .novo-contact-title{font-size:1.125rem;hyphens:auto}.novo-contact-section .novo-contact-card-title{font-size:1rem}.novo-contact-section .novo-map-title{font-size:1rem}.novo-contact-section .novo-hours-heading{font-size:1rem}.novo-contact-section .novo-notes-title{font-size:0.875rem}.novo-contact-section .novo-map-frame-container{min-height:280px}}

/* ===== PAGE: privacy ===== */
.privacy-section { background-color: #FAF7F2; color: #1C1917; font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; }
.privacy-section .privacy-header-card { background: #FFFFFF; border: 1px solid #EBE2D5; border-radius: 24px; box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04); }
.privacy-section .privacy-badge { background: #EFE8DC; color: #2C402E; font-size: 0.8125rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 9999px; display: inline-flex; align-items: center; }
.privacy-section .privacy-date { color: #5F554B; font-size: 0.875rem; font-weight: 500; display: inline-flex; align-items: center; }
.privacy-section .privacy-main-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); color: #2C402E; font-weight: 700; line-height: 1.25; }
.privacy-section .privacy-lead-text { color: #5F554B; font-size: 1.0625rem; line-height: 1.6; max-width: 850px; }
.privacy-section .privacy-sidebar { top: 2rem; z-index: 10; }
.privacy-section .privacy-nav-card { background: #FFFFFF; border: 1px solid #EBE2D5; border-radius: 20px; box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04); }
.privacy-section .privacy-nav-heading { font-family: 'Fraunces', Georgia, serif; font-size: 1.125rem; color: #2C402E; font-weight: 600; display: flex; align-items: center; }
.privacy-section .privacy-nav-item { color: #5F554B; font-size: 0.9375rem; font-weight: 500; padding: 0.65rem 0.9rem; border-radius: 12px; text-decoration: none; display: flex; align-items: center; transition: all 0.25s ease; }
.privacy-section .privacy-nav-item:hover { color: #2C402E; background: #F3ECE2; transform: translateX(3px); }
.privacy-section .privacy-nav-item.active { background: #2C402E; color: #FAF7F2; font-weight: 600; }
.privacy-section .privacy-help-box { background: #F3ECE2; border: 1px solid #E5DACB; border-radius: 16px; }
.privacy-section .privacy-help-icon { width: 36px; height: 36px; border-radius: 50%; background: #2C402E; color: #FAF7F2; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.privacy-section .privacy-help-title { font-size: 0.9375rem; font-weight: 700; color: #2C402E; }
.privacy-section .privacy-help-text { font-size: 0.8125rem; color: #5F554B; line-height: 1.45; }
.privacy-section .privacy-link-action { font-size: 0.875rem; font-weight: 600; color: #B86B35; text-decoration: none; display: inline-flex; align-items: center; transition: color 0.2s ease; }
.privacy-section .privacy-link-action:hover { color: #A35A28; text-decoration: underline; }
.privacy-section .privacy-content-card { background: #FFFFFF; border: 1px solid #EBE2D5; border-radius: 24px; box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04); }
.privacy-section .privacy-section-number { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: #F3ECE2; color: #B86B35; font-family: 'Fraunces', Georgia, serif; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.privacy-section .privacy-section-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.25rem, 1.8vw + 0.3rem, 1.625rem); color: #2C402E; font-weight: 700; }
.privacy-section .privacy-paragraph { font-size: 0.95rem; line-height: 1.7; color: #5F554B; }
.privacy-section .privacy-highlight-box { background: #FAF7F2; border: 1px solid #EBE2D5; border-radius: 16px; }
.privacy-section .privacy-box-title { font-size: 0.9375rem; font-weight: 700; color: #2C402E; }
.privacy-section .privacy-highlight-icon { color: #B86B35; font-size: 1.125rem; }
.privacy-section .privacy-highlight-desc { font-size: 0.875rem; line-height: 1.55; color: #5F554B; }
.privacy-section .privacy-checklist { padding-left: 1.25rem; margin-bottom: 0; color: #5F554B; font-size: 0.9rem; line-height: 1.65; }
.privacy-section .privacy-bullet-list { padding-left: 1.25rem; color: #5F554B; font-size: 0.95rem; line-height: 1.7; }
.privacy-section .privacy-subcard { background: #FAF7F2; border: 1px solid #EBE2D5; border-radius: 16px; }
.privacy-section .privacy-subcard-icon { width: 38px; height: 38px; border-radius: 10px; background: #EFE8DC; color: #2C402E; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.privacy-section .privacy-subcard-title { font-size: 0.9375rem; font-weight: 700; color: #2C402E; }
.privacy-section .privacy-subcard-desc { font-size: 0.85rem; color: #5F554B; line-height: 1.5; }
.privacy-section .privacy-inline-link { color: #B86B35; font-weight: 600; text-decoration: none; }
.privacy-section .privacy-inline-link:hover { color: #A35A28; text-decoration: underline; }
.privacy-section .privacy-table { border: 1px solid #EBE2D5; border-radius: 12px; overflow: hidden; font-size: 0.875rem; }
.privacy-section .privacy-table thead { background: #F3ECE2; color: #2C402E; font-weight: 600; }
.privacy-section .privacy-table th, .privacy-section .privacy-table td { padding: 0.75rem 1rem; border-color: #EBE2D5; vertical-align: middle; }
.privacy-section .privacy-table tbody tr:nth-of-type(even) { background: #FAF7F2; }
.privacy-section .privacy-right-item { background: #FAF7F2; border: 1px solid #EBE2D5; border-radius: 16px; height: 100%; }
.privacy-section .privacy-right-title { font-size: 0.9375rem; font-weight: 700; color: #2C402E; margin-bottom: 0.35rem; display: flex; align-items: center; }
.privacy-section .privacy-right-text { font-size: 0.85rem; color: #5F554B; line-height: 1.5; }
.privacy-section .privacy-contact-panel { background: #F3ECE2; border: 1px solid #E5DACB; border-radius: 20px; }
.privacy-section .privacy-contact-icon { width: 40px; height: 40px; border-radius: 12px; background: #2C402E; color: #FAF7F2; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.privacy-section .privacy-contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: #5F554B; margin-bottom: 0.15rem; }
.privacy-section .privacy-contact-value { font-size: 0.9375rem; font-weight: 600; color: #1C1917; word-break: break-word; }
.privacy-section .privacy-sub-border { border-color: #E5DACB !important; }
.privacy-section .privacy-small-note { font-size: 0.85rem; color: #5F554B; }
.privacy-section .privacy-btn-contact { background: #2C402E; color: #FAF7F2; border-radius: 9999px; padding: 0.65rem 1.4rem; font-size: 0.875rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(44, 64, 46, 0.18); }
.privacy-section .privacy-btn-contact:hover { background: #233425; color: #FAF7F2; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(44, 64, 46, 0.25); }
@media (max-width: 767.98px) {
  .privacy-section .privacy-main-title { font-size: 1.125rem; hyphens: auto; }
  .privacy-section .privacy-section-title { font-size: 1rem; hyphens: auto; }
  .privacy-section .privacy-box-title, .privacy-section .privacy-subcard-title, .privacy-section .privacy-right-title, .privacy-section .privacy-help-title { font-size: 0.875rem; }
  .privacy-section .privacy-header-card, .privacy-section .privacy-content-card { padding: 1.25rem !important; border-radius: 16px; }
  .privacy-section .privacy-contact-panel { padding: 1.25rem !important; }
}

/* ===== PAGE: terms ===== */
.novo-terms-section {
  background-color: #FAF7F2;
  color: #1C1917;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
}

.novo-terms-section h1,
.novo-terms-section h2,
.novo-terms-section h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
}

.novo-terms-section .novo-terms-header {
  background: linear-gradient(135deg, #F3ECE2 0%, #FAF7F2 100%);
  border: 1px solid #EBE2D5;
}

.novo-terms-section .novo-terms-sidebar {
  top: 1.5rem;
  z-index: 10;
}

.novo-terms-section .js-terms-nav .js-nav-item {
  color: #5F554B;
  font-size: 0.925rem;
  transition: all 0.25s ease;
}

.novo-terms-section .js-terms-nav .js-nav-item:hover {
  background-color: #F3ECE2;
  color: #2C402E;
}

.novo-terms-section .js-terms-nav .js-nav-item.active {
  background-color: #2C402E;
  color: #FAF7F2 !important;
}

.novo-terms-section .js-terms-nav .js-nav-item.active i {
  color: #E3A857;
}

.novo-terms-section .novo-terms-content {
  background-color: #FFFFFF;
}

.novo-terms-section .novo-term-block {
  scroll-margin-top: 2rem;
}

.novo-terms-section .btn-success {
  background-color: #2C402E;
  border-color: #2C402E;
}

.novo-terms-section .btn-success:hover {
  background-color: #233425;
  border-color: #233425;
  transform: translateY(-2px);
}

.novo-terms-section .btn-outline-secondary {
  border-color: #D5C8B8;
  color: #5F554B;
}

.novo-terms-section .btn-outline-secondary:hover {
  background-color: #F3ECE2;
  border-color: #2C402E;
  color: #2C402E;
}

@media (max-width: 767.98px) {
  .novo-terms-section h1 {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .novo-terms-section h2 {
    font-size: 1rem;
    hyphens: auto;
  }
  .novo-terms-section h3 {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .novo-terms-section .novo-terms-sidebar {
    position: static;
  }
}

/* ===== PAGE: disclaimer ===== */
.novo-disclaimer-section {
  background-color: #FAF7F2;
  color: #1C1917;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}
.novo-disclaimer-section h1,
.novo-disclaimer-section h2,
.novo-disclaimer-section h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: #1C1917;
  line-height: 1.25;
}
.novo-disclaimer-section .novo-disclaimer-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  border-color: #EBE2D5 !important;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
}
.novo-disclaimer-section .novo-disclaimer-content {
  border-color: #EBE2D5 !important;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
}
.novo-disclaimer-section .novo-nav-link {
  color: #5F554B;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.novo-disclaimer-section .novo-nav-link:hover {
  color: #2C402E;
  background-color: #F3ECE2;
}
.novo-disclaimer-section .novo-nav-link.active {
  color: #2C402E;
  background-color: #F3ECE2;
  font-weight: 600;
  border-color: #E5DACB;
}
.novo-disclaimer-section .novo-section-number {
  width: 34px;
  height: 34px;
  background-color: #F3ECE2;
  color: #2C402E;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.novo-disclaimer-section .novo-article-block {
  scroll-margin-top: 110px;
}
.novo-disclaimer-section a.text-primary {
  color: #2C402E !important;
}
.novo-disclaimer-section a.text-primary:hover {
  color: #B86B35 !important;
}
.novo-disclaimer-section .tracking-wide {
  letter-spacing: 0.06em;
}
@media (max-width: 991.98px) {
  .novo-disclaimer-section .novo-disclaimer-sticky {
    position: static;
    margin-bottom: 1.5rem;
  }
  .novo-disclaimer-section h1 {
    font-size: 1.75rem;
  }
  .novo-disclaimer-section h2 {
    font-size: 1.35rem;
  }
}

/* ===== PAGE: refound ===== */
.novo-returns-page {
  background-color: #FAF7F2;
  color: #1C1917;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
}

.novo-returns-page .novo-returns-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #EBE2D5;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
}

.novo-returns-page .novo-returns-badge {
  background-color: #EFE8DC;
  color: #2C402E;
}

.novo-returns-page .novo-badge-text {
  letter-spacing: 0.05em;
}

.novo-returns-page .novo-main-heading {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
}

.novo-returns-page .novo-section-title {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 600;
}

.novo-returns-page .novo-intro-text {
  color: #5F554B;
  font-size: 1.05rem;
  line-height: 1.6;
}

.novo-returns-page .novo-text {
  color: #5F554B;
  font-size: 0.975rem;
  line-height: 1.7;
}

.novo-returns-page .novo-step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F3ECE2;
  color: #2C402E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.novo-returns-page .novo-nav-pill {
  background-color: #F3ECE2;
  color: #2C402E;
  border: 1px solid #EBE2D5;
  border-radius: 9999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.novo-returns-page .novo-nav-pill:hover,
.novo-returns-page .novo-nav-pill.active {
  background-color: #2C402E;
  color: #FAF7F2;
  border-color: #2C402E;
}

.novo-returns-page .novo-callout-box {
  background-color: #F7F3ED;
  border-left: 4px solid #2C402E;
}

.novo-returns-page .novo-callout-title {
  color: #2C402E;
  font-weight: 600;
}

.novo-returns-page .novo-feature-tile {
  background-color: #FAF7F2;
  border-color: #EBE2D5 !important;
}

.novo-returns-page .novo-timeline-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2C402E;
  color: #FAF7F2;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.novo-returns-page .novo-alert-notice {
  background-color: #FAF7F2;
  border-color: #EBE2D5 !important;
  color: #5F554B;
}

.novo-returns-page .novo-contact-banner {
  background-color: #F3ECE2;
  border: 1px solid #E5DACB;
}

.novo-returns-page .novo-action-btn {
  background-color: #2C402E;
  border-color: #2C402E;
  color: #FAF7F2;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.novo-returns-page .novo-action-btn:hover {
  background-color: #233425;
  border-color: #233425;
  color: #FAF7F2;
  transform: translateY(-2px);
}

.novo-returns-page .novo-secondary-btn {
  border-color: #2C402E;
  color: #2C402E;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.novo-returns-page .novo-secondary-btn:hover {
  background-color: #2C402E;
  color: #FAF7F2;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .novo-returns-page .novo-main-heading {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .novo-returns-page .novo-section-title {
    font-size: 1.15rem;
  }
  .novo-returns-page .novo-returns-card {
    padding: 1.5rem 1rem !important;
  }
}

/* ===== PAGE: delivery ===== */
.novo-delivery-section { background-color: #FAF7F2; color: #1C1917; font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; } .novo-delivery-section .novo-page-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 3.5vw + 0.5rem, 2.75rem); color: #2C402E; line-height: 1.25; font-weight: 700; } .novo-delivery-section .novo-section-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.4rem, 2vw + 0.5rem, 1.85rem); color: #2C402E; line-height: 1.3; font-weight: 600; } .novo-delivery-section .novo-lead-text { font-size: 1.05rem; line-height: 1.6; max-width: 760px; margin: 0 auto; color: #5F554B; } .novo-delivery-section .novo-badge { background-color: #EFE8DC; color: #2C402E; font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.95rem; border-radius: 9999px; letter-spacing: 0.04em; text-transform: uppercase; } .novo-delivery-section .novo-sub-badge { background-color: #EFE8DC; color: #2C402E; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 9999px; } .novo-delivery-section .novo-feature-card { background-color: #FFFFFF; border: 1px solid #EBE2D5; border-radius: 20px; box-shadow: 0 4px 18px rgba(44, 64, 46, 0.04); transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease; } .novo-delivery-section .novo-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(44, 64, 46, 0.08); border-color: #D5C8B8; } .novo-delivery-section .novo-feature-icon { width: 48px; height: 48px; border-radius: 12px; background-color: #F3ECE2; color: #2C402E; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; } .novo-delivery-section .novo-feature-title { font-family: 'Fraunces', Georgia, serif; color: #2C402E; font-weight: 600; } .novo-delivery-section .novo-feature-desc { font-size: 0.925rem; line-height: 1.55; color: #5F554B; } .novo-delivery-section .novo-media-frame { border-radius: 20px; overflow: hidden; background-color: #F7F3ED; border: 1px solid #EBE2D5; } .novo-delivery-section .novo-delivery-img { width: 100%; height: 320px; object-fit: cover; } .novo-delivery-section .novo-media-caption { background-color: #FFFFFF; border-top: 1px solid #EBE2D5; } .novo-delivery-section .novo-checklist li { font-size: 0.95rem; line-height: 1.5; color: #5F554B; } .novo-delivery-section .novo-checklist strong { color: #1C1917; } .novo-delivery-section .novo-btn-primary { background-color: #2C402E; color: #FAF7F2; border-radius: 9999px; padding: 0.75rem 1.65rem; font-weight: 600; font-size: 0.95rem; text-decoration: none; box-shadow: 0 4px 14px rgba(44, 64, 46, 0.2); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); border: 1.5px solid #2C402E; } .novo-delivery-section .novo-btn-primary:hover { background-color: #233425; color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(44, 64, 46, 0.28); } .novo-delivery-section .novo-btn-outline { background-color: transparent; color: #2C402E; border: 1.5px solid #2C402E; border-radius: 9999px; padding: 0.75rem 1.65rem; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); } .novo-delivery-section .novo-btn-outline:hover { background-color: #2C402E; color: #FAF7F2; transform: translateY(-2px); } .novo-delivery-section .novo-table-card { background-color: #FFFFFF; border: 1px solid #EBE2D5; border-radius: 24px; box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04); } .novo-delivery-section .novo-table-icon { width: 44px; height: 44px; border-radius: 12px; background-color: #F3ECE2; color: #2C402E; display: flex; align-items: center; justify-content: center; } .novo-delivery-section .novo-info-pill { background-color: #F3ECE2; color: #5F554B; font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.8rem; border-radius: 9999px; } .novo-delivery-section .novo-custom-table { border-collapse: separate; border-spacing: 0; } .novo-delivery-section .novo-custom-table thead th { background-color: #F7F3ED; color: #2C402E; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 2px solid #EBE2D5; padding: 1rem 1.25rem; white-space: nowrap; } .novo-delivery-section .novo-custom-table tbody td { padding: 1.1rem 1.25rem; border-bottom: 1px solid #EBE2D5; font-size: 0.925rem; color: #5F554B; vertical-align: middle; } .novo-delivery-section .novo-custom-table tbody tr:last-child td { border-bottom: none; } .novo-delivery-section .novo-rate { font-weight: 700; color: #B86B35; font-size: 1rem; } .novo-delivery-section .novo-faq-card { background-color: #FFFFFF; border: 1px solid #EBE2D5; border-radius: 20px; box-shadow: 0 4px 18px rgba(44, 64, 46, 0.04); } .novo-delivery-section .novo-faq-icon { font-size: 1.75rem; color: #2C402E; } .novo-delivery-section .novo-notice-box { background-color: #F7F3ED; border-radius: 12px; border-left: 3px solid #E3A857; } .novo-delivery-section .novo-inline-link { color: #B86B35; text-decoration: underline; font-weight: 600; } .novo-delivery-section .novo-inline-link:hover { color: #2C402E; } @media (max-width: 767.98px) { .novo-delivery-section .novo-page-title { font-size: 1.125rem; } .novo-delivery-section .novo-section-title { font-size: 1rem; } .novo-delivery-section .novo-feature-card { padding: 1.25rem !important; } .novo-delivery-section .novo-table-card { padding: 1.25rem !important; } }

.review-card {
    background: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #1C1917;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    border-color: #D5C8B8;
    box-shadow: 0 8px 24px rgba(44, 64, 46, 0.07);
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-author-group {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2C402E 0%, #4D7856 100%);
    color: #FAF7F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    user-select: none;
    border: 2px solid #F3ECE2;
    object-fit: cover;
}

.review-author-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-author-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1C1917;
    margin: 0;
    line-height: 1.25;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #EFE8DC;
    color: #2C402E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
}

.verified-badge i {
    color: #366347;
    font-size: 0.85rem;
}

.review-subline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #5F554B;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    color: #E3A857;
    font-size: 0.875rem;
}

.review-dot {
    color: #D5C8B8;
    font-weight: bold;
}

.review-date {
    color: #8C8074;
}

.purchased-item {
    color: #5F554B;
    font-weight: 500;
}

.btn-review-option {
    background: transparent;
    border: none;
    color: #8C8074;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-review-option:hover {
    background: #F3ECE2;
    color: #1C1917;
}

.review-body {
    margin-bottom: 1.25rem;
}

.review-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1C1917;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F554B;
    margin: 0;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.875rem;
    border-top: 1px solid #EBE2D5;
}

.helpful-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #8C8074;
}

.helpful-label {
    font-weight: 500;
}

.btn-helpful {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #FAF7F2;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.78125rem;
    font-weight: 600;
    color: #5F554B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-helpful:hover {
    background: #F3ECE2;
    border-color: #D5C8B8;
    color: #2C402E;
}

.btn-helpful i {
    font-size: 0.875rem;
}

.btn-reply-action {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    border: none;
    padding: 0.35rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2C402E;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-reply-action:hover {
    background: #F3ECE2;
    color: #B86B35;
}

.reply-review {
    position: relative;
    background: #FAF7F2;
    border: 1px solid #E5DACB;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: none;
}

.reply-connector-indicator {
    display: none;
}

@media (min-width: 768px) {
    .reply-review {
        margin-left: 2.75rem;
    }

    .reply-connector-indicator {
        display: block;
        position: absolute;
        left: -1.75rem;
        top: 1.5rem;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom: 2px solid #D5C8B8;
        border-left: 2px solid #D5C8B8;
        border-bottom-left-radius: 10px;
    }
}

.brand-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #B86B35 0%, #D48C53 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.875rem;
    border: 2px solid #FFFFFF;
    object-fit: cover;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #2C402E;
    color: #FAF7F2;
    font-size: 0.71875rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.store-badge i {
    font-size: 0.8rem;
    color: #E3A857;
}

.in-reply-to {
    color: #8C8074;
    font-style: italic;
}


/* ===== PAGE TEMPLATE: catalog ===== */
.novo-header-section {
    background-color: #FAF7F2;
    border-bottom: 1px solid #EBE2D5;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 12px rgba(44, 64, 46, 0.05);
}

.novo-header-section .novo-navbar {
    padding: 0.85rem 0;
    background-color: #FAF7F2;
}

.novo-header-section .novo-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.novo-header-section .novo-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.novo-header-section .novo-brand-logo {
    width: 42px;
    height: 42px;
    max-width: 44px;
    object-fit: contain;
}

.novo-header-section .novo-brand-text {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C402E;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.novo-header-section .novo-toggler {
    border: 1px solid #D5C8B8;
    background-color: #FFFFFF;
    color: #2C402E;
    font-size: 1.35rem;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(44, 64, 46, 0.04);
}

.novo-header-section .novo-toggler:focus {
    box-shadow: 0 0 0 3px rgba(44, 64, 46, 0.15);
    outline: none;
}

.novo-header-section .novo-cart-btn {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #2C402E;
    font-size: 1.3rem;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
    padding: 0;
}

.novo-header-section .novo-cart-btn:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
    transform: translateY(-2px);
}

.novo-header-section .novo-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #B86B35;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9999px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #FAF7F2;
    line-height: 1;
}

.novo-header-section .novo-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C402E;
    padding: 0.5rem 1rem !important;
    border-radius: 9999px;
    transition: all 0.25s ease;
}

.novo-header-section .novo-nav-link:hover,
.novo-header-section .novo-nav-link:focus,
.novo-header-section .novo-nav-link.active {
    color: #B86B35;
    background-color: rgba(184, 107, 53, 0.08);
}

@media (min-width: 992px) {
    .novo-header-section .novo-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .novo-header-section .novo-nav-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .novo-header-section .novo-nav-left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-right: auto;
        padding-right: 120px;
    }

    .novo-header-section .novo-nav-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
        padding-left: 120px;
        margin-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .novo-header-section .novo-navbar {
        padding: 0.65rem 0;
    }

    .novo-header-section .novo-brand-text {
        font-size: 1.25rem;
    }

    .novo-header-section .navbar-collapse {
        background-color: #FFFFFF;
        border: 1px solid #EBE2D5;
        border-radius: 18px;
        padding: 1.25rem;
        margin-top: 0.85rem;
        box-shadow: 0 12px 30px rgba(44, 64, 46, 0.08);
        width: 100%;
    }

    .novo-header-section .novo-nav-left,
    .novo-header-section .novo-nav-right {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        width: 100%;
    }

    .novo-header-section .novo-nav-right {
        margin-top: 0.35rem;
        padding-top: 0.35rem;
        border-top: 1px solid #F3ECE2;
    }

    .novo-header-section .novo-nav-link {
        font-size: 0.9rem;
        padding: 0.65rem 1rem !important;
    }
}

.novo-blog-detail-page {
    background-color: #FAF7F2;
    color: #1C1917;
    min-height: 80vh;
}

.novo-blog-detail-page .novo-breadcrumbs {
    font-size: 0.875rem;
}

.novo-blog-detail-page .novo-breadcrumb-link {
    color: #5F554B;
    text-decoration: none;
    transition: color 0.25s ease;
}

.novo-blog-detail-page .novo-breadcrumb-link:hover {
    color: #B86B35;
}

.novo-blog-detail-page .novo-breadcrumb-separator {
    color: #8C8074;
    font-size: 0.75rem;
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
}

.novo-blog-detail-page .novo-breadcrumb-item.active {
    color: #2C402E;
    font-weight: 600;
}

.novo-blog-detail-page .novo-article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #EFE8DC;
    color: #2C402E;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
}

.novo-blog-detail-page .novo-article-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.85rem, 3.5vw + 0.5rem, 2.75rem);
    color: #2C402E;
    line-height: 1.25;
    font-weight: 700;
}

.novo-blog-detail-page .novo-article-lead {
    font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.25rem);
    color: #5F554B;
    line-height: 1.6;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.novo-blog-detail-page .novo-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: #5F554B;
    font-weight: 500;
}

.novo-blog-detail-page .novo-meta-pill i {
    color: #2C402E;
}

.novo-blog-detail-page .novo-article-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
}

.novo-blog-detail-page .novo-article-feature-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    background-color: #F3ECE2;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.novo-blog-detail-page .novo-article-feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.novo-blog-detail-page .novo-content-h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.65rem;
    color: #2C402E;
    line-height: 1.3;
    font-weight: 700;
}

.novo-blog-detail-page .novo-content-h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.3rem;
    color: #2C402E;
    line-height: 1.3;
    font-weight: 700;
}

.novo-blog-detail-page .novo-article-paragraph {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #1C1917;
    margin-bottom: 1.25rem;
}

.novo-blog-detail-page .novo-article-callout {
    display: flex;
    gap: 1rem;
    background-color: #F3ECE2;
    border-left: 4px solid #B86B35;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.novo-blog-detail-page .novo-callout-icon {
    font-size: 1.5rem;
    color: #B86B35;
    flex-shrink: 0;
}

.novo-blog-detail-page .novo-callout-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    color: #2C402E;
    margin-bottom: 0.35rem;
}

.novo-blog-detail-page .novo-feature-bullets {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #1C1917;
    font-size: 1.02rem;
    line-height: 1.6;
}

.novo-blog-detail-page .novo-article-subpanel {
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    border-radius: 16px;
}

.novo-blog-detail-page .novo-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FFFFFF;
    color: #2C402E;
    border: 1.5px solid #D5C8B8;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-btn-back:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .novo-btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2C402E;
    color: #FAF7F2;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-btn-catalog:hover {
    background-color: #1f3021;
    color: #FAF7F2;
}

.novo-blog-detail-page .novo-reviews-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.45rem;
    color: #2C402E;
    font-weight: 700;
}

.novo-blog-detail-page .novo-reviews-count-badge {
    background-color: #EFE8DC;
    color: #2C402E;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.novo-blog-detail-page .review-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 18px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(44, 64, 46, 0.03);
}

.novo-blog-detail-page .review-card.reply-review {
    background-color: #FAF7F2;
    border-color: #E5DACB;
}

.novo-blog-detail-page .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.novo-blog-detail-page .review-author-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.novo-blog-detail-page .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #EFE8DC;
    color: #2C402E;
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D5C8B8;
}

.novo-blog-detail-page .review-avatar.brand-avatar {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .review-author-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.novo-blog-detail-page .review-author-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    color: #2C402E;
    margin: 0;
    font-weight: 700;
}

.novo-blog-detail-page .verified-badge,
.novo-blog-detail-page .store-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.novo-blog-detail-page .verified-badge {
    background-color: #EFE8DC;
    color: #2C402E;
}

.novo-blog-detail-page .store-badge {
    background-color: #F8E6D3;
    color: #B86B35;
}

.novo-blog-detail-page .review-subline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: #8C8074;
    margin-top: 0.25rem;
}

.novo-blog-detail-page .rating-stars {
    color: #E3A857;
    font-size: 0.875rem;
    display: inline-flex;
    gap: 0.1rem;
}

.novo-blog-detail-page .review-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1C1917;
    margin-bottom: 0.5rem;
}

.novo-blog-detail-page .review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F554B;
    margin: 0;
}

.novo-blog-detail-page .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #F3ECE2;
}

.novo-blog-detail-page .helpful-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.novo-blog-detail-page .helpful-label {
    font-size: 0.8125rem;
    color: #8C8074;
}

.novo-blog-detail-page .btn-helpful,
.novo-blog-detail-page .btn-reply-action,
.novo-blog-detail-page .btn-review-option {
    background-color: transparent;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    color: #5F554B;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.novo-blog-detail-page .btn-helpful:hover,
.novo-blog-detail-page .btn-reply-action:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .btn-helpful.active {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .novo-sidebar-box {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
}

.novo-blog-detail-page .novo-sidebar-accent-box {
    background: linear-gradient(145deg, #F3ECE2 0%, #E8DFC8 100%);
    border-color: #E5DACB;
}

.novo-blog-detail-page .novo-sidebar-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    color: #2C402E;
    font-weight: 700;
}

.novo-blog-detail-page .novo-sidebar-post-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #1C1917;
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-sidebar-post-link:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
    transform: translateX(3px);
}

.novo-blog-detail-page .novo-sidebar-post-bullet {
    font-size: 0.75rem;
    color: #B86B35;
}

.novo-blog-detail-page .novo-sidebar-post-link:hover .novo-sidebar-post-bullet {
    color: #FAF7F2;
}

.novo-blog-detail-page .novo-sidebar-seal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #2C402E;
    color: #FAF7F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.novo-blog-detail-page .novo-sidebar-desc {
    font-size: 0.9rem;
    color: #5F554B;
    line-height: 1.5;
}

.novo-blog-detail-page .novo-btn-sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #B86B35;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    width: 100%;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-btn-sidebar-cta:hover {
    background-color: #9f5727;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.novo-blog-detail-page .novo-standard-icon {
    font-size: 1.25rem;
    color: #2C402E;
    margin-top: 0.15rem;
}

.novo-blog-detail-page .novo-standard-info strong {
    font-size: 0.9rem;
    color: #1C1917;
}

.novo-blog-detail-page .novo-standard-sub {
    font-size: 0.8rem;
    color: #8C8074;
}

.novo-nuts-footer {
    background-color: #F3ECE2;
    border-top: 1px solid #EBE2D5;
    color: #5F554B;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    padding-top: clamp(3.5rem, 6vw, 5rem);
    padding-bottom: 2rem;
}

.novo-nuts-footer__top {
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid #E5DACB;
}

.novo-nuts-footer__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 0.875rem;
    line-height: 1.25;
}

.novo-nuts-footer__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F554B;
    margin-bottom: 1.25rem;
}

.novo-nuts-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    color: #2C402E;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.novo-nuts-footer__col-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.novo-nuts-footer__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.novo-nuts-footer__link {
    color: #5F554B;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.novo-nuts-footer__link:hover,
.novo-nuts-footer__link:focus {
    color: #B86B35;
    text-decoration: none;
    transform: translateX(2px);
}

.novo-nuts-footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.novo-nuts-footer__contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #5F554B;
}

.novo-nuts-footer__contact-icon {
    color: #2C402E;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.novo-nuts-footer__contact-text {
    color: #5F554B;
}

.novo-nuts-footer__map-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E5DACB;
    box-shadow: 0 2px 8px rgba(44, 64, 46, 0.04);
    background-color: #FAF7F2;
}

.novo-nuts-footer__map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.novo-nuts-footer__bottom {
    padding-top: 1.75rem;
    font-size: 0.875rem;
    color: #8C8074;
}

.novo-nuts-footer__copyright {
    color: #8C8074;
    font-size: 0.875rem;
}

.novo-nuts-footer__tagline {
    font-size: 0.875rem;
    color: #5F554B;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .novo-blog-detail-page .novo-article-card {
        padding: 1.25rem;
    }

    .novo-nuts-footer__title {
        font-size: 1.5rem;
    }

    .novo-nuts-footer__col-heading {
        font-size: 1.05rem;
        margin-bottom: 0.875rem;
    }

    .novo-nuts-footer__top {
        padding-bottom: 2rem;
    }

    .novo-nuts-footer__map-wrapper {
        height: 130px;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.novo-header-section {
    background-color: #FAF7F2;
    border-bottom: 1px solid #EBE2D5;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 12px rgba(44, 64, 46, 0.05);
}

.novo-header-section .novo-navbar {
    padding: 0.85rem 0;
    background-color: #FAF7F2;
}

.novo-header-section .novo-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.novo-header-section .novo-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.novo-header-section .novo-brand-logo {
    width: 42px;
    height: 42px;
    max-width: 44px;
    object-fit: contain;
}

.novo-header-section .novo-brand-text {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C402E;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.novo-header-section .novo-toggler {
    border: 1px solid #D5C8B8;
    background-color: #FFFFFF;
    color: #2C402E;
    font-size: 1.35rem;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(44, 64, 46, 0.04);
}

.novo-header-section .novo-toggler:focus {
    box-shadow: 0 0 0 3px rgba(44, 64, 46, 0.15);
    outline: none;
}

.novo-header-section .novo-cart-btn {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #2C402E;
    font-size: 1.3rem;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
    padding: 0;
}

.novo-header-section .novo-cart-btn:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
    transform: translateY(-2px);
}

.novo-header-section .novo-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #B86B35;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9999px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #FAF7F2;
    line-height: 1;
}

.novo-header-section .novo-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C402E;
    padding: 0.5rem 1rem !important;
    border-radius: 9999px;
    transition: all 0.25s ease;
}

.novo-header-section .novo-nav-link:hover,
.novo-header-section .novo-nav-link:focus,
.novo-header-section .novo-nav-link.active {
    color: #B86B35;
    background-color: rgba(184, 107, 53, 0.08);
}

@media (min-width: 992px) {
    .novo-header-section .novo-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .novo-header-section .novo-nav-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .novo-header-section .novo-nav-left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-right: auto;
        padding-right: 120px;
    }

    .novo-header-section .novo-nav-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
        padding-left: 120px;
        margin-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .novo-header-section .novo-navbar {
        padding: 0.65rem 0;
    }

    .novo-header-section .novo-brand-text {
        font-size: 1.25rem;
    }

    .novo-header-section .navbar-collapse {
        background-color: #FFFFFF;
        border: 1px solid #EBE2D5;
        border-radius: 18px;
        padding: 1.25rem;
        margin-top: 0.85rem;
        box-shadow: 0 12px 30px rgba(44, 64, 46, 0.08);
        width: 100%;
    }

    .novo-header-section .novo-nav-left,
    .novo-header-section .novo-nav-right {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        width: 100%;
    }

    .novo-header-section .novo-nav-right {
        margin-top: 0.35rem;
        padding-top: 0.35rem;
        border-top: 1px solid #F3ECE2;
    }

    .novo-header-section .novo-nav-link {
        font-size: 0.9rem;
        padding: 0.65rem 1rem !important;
    }
}

.novo-blog-detail-page {
    background-color: #FAF7F2;
    color: #1C1917;
    min-height: 80vh;
}

.novo-blog-detail-page .novo-breadcrumbs {
    font-size: 0.875rem;
}

.novo-blog-detail-page .novo-breadcrumb-link {
    color: #5F554B;
    text-decoration: none;
    transition: color 0.25s ease;
}

.novo-blog-detail-page .novo-breadcrumb-link:hover {
    color: #B86B35;
}

.novo-blog-detail-page .novo-breadcrumb-separator {
    color: #8C8074;
    font-size: 0.75rem;
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
}

.novo-blog-detail-page .novo-breadcrumb-item.active {
    color: #2C402E;
    font-weight: 600;
}

.novo-blog-detail-page .novo-article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #EFE8DC;
    color: #2C402E;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
}

.novo-blog-detail-page .novo-article-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.85rem, 3.5vw + 0.5rem, 2.75rem);
    color: #2C402E;
    line-height: 1.25;
    font-weight: 700;
}

.novo-blog-detail-page .novo-article-lead {
    font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.25rem);
    color: #5F554B;
    line-height: 1.6;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.novo-blog-detail-page .novo-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: #5F554B;
    font-weight: 500;
}

.novo-blog-detail-page .novo-meta-pill i {
    color: #2C402E;
}

.novo-blog-detail-page .novo-article-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
}

.novo-blog-detail-page .novo-article-feature-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    background-color: #F3ECE2;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.novo-blog-detail-page .novo-article-feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.novo-blog-detail-page .novo-content-h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.65rem;
    color: #2C402E;
    line-height: 1.3;
    font-weight: 700;
}

.novo-blog-detail-page .novo-content-h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.3rem;
    color: #2C402E;
    line-height: 1.3;
    font-weight: 700;
}

.novo-blog-detail-page .novo-article-paragraph {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #1C1917;
    margin-bottom: 1.25rem;
}

.novo-blog-detail-page .novo-article-callout {
    display: flex;
    gap: 1rem;
    background-color: #F3ECE2;
    border-left: 4px solid #B86B35;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.novo-blog-detail-page .novo-callout-icon {
    font-size: 1.5rem;
    color: #B86B35;
    flex-shrink: 0;
}

.novo-blog-detail-page .novo-callout-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    color: #2C402E;
    margin-bottom: 0.35rem;
}

.novo-blog-detail-page .novo-feature-bullets {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #1C1917;
    font-size: 1.02rem;
    line-height: 1.6;
}

.novo-blog-detail-page .novo-article-subpanel {
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    border-radius: 16px;
}

.novo-blog-detail-page .novo-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FFFFFF;
    color: #2C402E;
    border: 1.5px solid #D5C8B8;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-btn-back:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .novo-btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2C402E;
    color: #FAF7F2;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-btn-catalog:hover {
    background-color: #1f3021;
    color: #FAF7F2;
}

.novo-blog-detail-page .novo-reviews-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.45rem;
    color: #2C402E;
    font-weight: 700;
}

.novo-blog-detail-page .novo-reviews-count-badge {
    background-color: #EFE8DC;
    color: #2C402E;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.novo-blog-detail-page .review-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 18px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(44, 64, 46, 0.03);
}

.novo-blog-detail-page .review-card.reply-review {
    background-color: #FAF7F2;
    border-color: #E5DACB;
}

.novo-blog-detail-page .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.novo-blog-detail-page .review-author-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.novo-blog-detail-page .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #EFE8DC;
    color: #2C402E;
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D5C8B8;
}

.novo-blog-detail-page .review-avatar.brand-avatar {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .review-author-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.novo-blog-detail-page .review-author-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    color: #2C402E;
    margin: 0;
    font-weight: 700;
}

.novo-blog-detail-page .verified-badge,
.novo-blog-detail-page .store-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.novo-blog-detail-page .verified-badge {
    background-color: #EFE8DC;
    color: #2C402E;
}

.novo-blog-detail-page .store-badge {
    background-color: #F8E6D3;
    color: #B86B35;
}

.novo-blog-detail-page .review-subline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: #8C8074;
    margin-top: 0.25rem;
}

.novo-blog-detail-page .rating-stars {
    color: #E3A857;
    font-size: 0.875rem;
    display: inline-flex;
    gap: 0.1rem;
}

.novo-blog-detail-page .review-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1C1917;
    margin-bottom: 0.5rem;
}

.novo-blog-detail-page .review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F554B;
    margin: 0;
}

.novo-blog-detail-page .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #F3ECE2;
}

.novo-blog-detail-page .helpful-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.novo-blog-detail-page .helpful-label {
    font-size: 0.8125rem;
    color: #8C8074;
}

.novo-blog-detail-page .btn-helpful,
.novo-blog-detail-page .btn-reply-action,
.novo-blog-detail-page .btn-review-option {
    background-color: transparent;
    border: 1px solid #EBE2D5;
    border-radius: 9999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    color: #5F554B;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.novo-blog-detail-page .btn-helpful:hover,
.novo-blog-detail-page .btn-reply-action:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .btn-helpful.active {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
}

.novo-blog-detail-page .novo-sidebar-box {
    background-color: #FFFFFF;
    border: 1px solid #EBE2D5;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04);
}

.novo-blog-detail-page .novo-sidebar-accent-box {
    background: linear-gradient(145deg, #F3ECE2 0%, #E8DFC8 100%);
    border-color: #E5DACB;
}

.novo-blog-detail-page .novo-sidebar-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    color: #2C402E;
    font-weight: 700;
}

.novo-blog-detail-page .novo-sidebar-post-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #1C1917;
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-sidebar-post-link:hover {
    background-color: #2C402E;
    color: #FAF7F2;
    border-color: #2C402E;
    transform: translateX(3px);
}

.novo-blog-detail-page .novo-sidebar-post-bullet {
    font-size: 0.75rem;
    color: #B86B35;
}

.novo-blog-detail-page .novo-sidebar-post-link:hover .novo-sidebar-post-bullet {
    color: #FAF7F2;
}

.novo-blog-detail-page .novo-sidebar-seal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #2C402E;
    color: #FAF7F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.novo-blog-detail-page .novo-sidebar-desc {
    font-size: 0.9rem;
    color: #5F554B;
    line-height: 1.5;
}

.novo-blog-detail-page .novo-btn-sidebar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #B86B35;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    width: 100%;
    transition: all 0.25s ease;
}

.novo-blog-detail-page .novo-btn-sidebar-cta:hover {
    background-color: #9f5727;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.novo-blog-detail-page .novo-standard-icon {
    font-size: 1.25rem;
    color: #2C402E;
    margin-top: 0.15rem;
}

.novo-blog-detail-page .novo-standard-info strong {
    font-size: 0.9rem;
    color: #1C1917;
}

.novo-blog-detail-page .novo-standard-sub {
    font-size: 0.8rem;
    color: #8C8074;
}

.novo-nuts-footer {
    background-color: #F3ECE2;
    border-top: 1px solid #EBE2D5;
    color: #5F554B;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    padding-top: clamp(3.5rem, 6vw, 5rem);
    padding-bottom: 2rem;
}

.novo-nuts-footer__top {
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid #E5DACB;
}

.novo-nuts-footer__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 0.875rem;
    line-height: 1.25;
}

.novo-nuts-footer__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5F554B;
    margin-bottom: 1.25rem;
}

.novo-nuts-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FAF7F2;
    border: 1px solid #EBE2D5;
    color: #2C402E;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.novo-nuts-footer__col-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C402E;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.novo-nuts-footer__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.novo-nuts-footer__link {
    color: #5F554B;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.novo-nuts-footer__link:hover,
.novo-nuts-footer__link:focus {
    color: #B86B35;
    text-decoration: none;
    transform: translateX(2px);
}

.novo-nuts-footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.novo-nuts-footer__contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #5F554B;
}

.novo-nuts-footer__contact-icon {
    color: #2C402E;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.novo-nuts-footer__contact-text {
    color: #5F554B;
}

.novo-nuts-footer__map-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E5DACB;
    box-shadow: 0 2px 8px rgba(44, 64, 46, 0.04);
    background-color: #FAF7F2;
}

.novo-nuts-footer__map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.novo-nuts-footer__bottom {
    padding-top: 1.75rem;
    font-size: 0.875rem;
    color: #8C8074;
}

.novo-nuts-footer__copyright {
    color: #8C8074;
    font-size: 0.875rem;
}

.novo-nuts-footer__tagline {
    font-size: 0.875rem;
    color: #5F554B;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .novo-blog-detail-page .novo-article-card {
        padding: 1.25rem;
    }

    .novo-nuts-footer__title {
        font-size: 1.5rem;
    }

    .novo-nuts-footer__col-heading {
        font-size: 1.05rem;
        margin-bottom: 0.875rem;
    }

    .novo-nuts-footer__top {
        padding-bottom: 2rem;
    }

    .novo-nuts-footer__map-wrapper {
        height: 130px;
    }
}
/* ===== Cart runtime additions ===== */
.novo-cart-item-thumb { flex-shrink: 0; }
.novo-cart-item-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    background: #F3ECE2;
}
.novo-cart-qty-val {
    min-width: 22px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1C1917;
}
.novo-cart-remove-btn {
    background: none;
    border: none;
    color: #B86B35;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.novo-cart-remove-btn:hover {
    background-color: #F3ECE2;
    color: #A35A28;
}
body { overflow-x: hidden; }
html { overflow-x: hidden; }

/* ===== Policy page style unification (Task 5) ===== */
/* Standardize headings, text, and lists across all policy pages to match privacy-policy */

/* Common policy section styles for: delivery, returns, terms, disclaimer */
.novo-delivery-section,
.novo-returns-page,
.novo-terms-section,
.novo-disclaimer-section {
  background-color: #FAF7F2;
  color: #1C1917;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Standardize h2 headings (section titles) */
.novo-delivery-section h2,
.novo-returns-page h2,
.novo-terms-section h2,
.novo-disclaimer-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw + 0.3rem, 1.625rem);
  line-height: 1.3;
}

/* Standardize h3 headings (subtitles) */
.novo-delivery-section h3,
.novo-returns-page h3,
.novo-terms-section h3,
.novo-disclaimer-section h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.35;
}

/* Standardize paragraph text */
.novo-delivery-section p,
.novo-returns-page p,
.novo-terms-section p,
.novo-disclaimer-section p {
  color: #5F554B;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Standardize lists */
.novo-delivery-section ul,
.novo-returns-page ul,
.novo-terms-section ul,
.novo-disclaimer-section ul,
.novo-delivery-section ol,
.novo-returns-page ol,
.novo-terms-section ol,
.novo-disclaimer-section ol {
  color: #5F554B;
  font-size: 0.95rem;
  line-height: 1.7;
}

.novo-delivery-section ul li,
.novo-returns-page ul li,
.novo-terms-section ul li,
.novo-disclaimer-section ul li,
.novo-delivery-section ol li,
.novo-returns-page ol li,
.novo-terms-section ol li,
.novo-disclaimer-section ol li {
  color: #5F554B;
}

/* Standardize links within policy content */
.novo-delivery-section a,
.novo-returns-page a,
.novo-terms-section a,
.novo-disclaimer-section a {
  color: #B86B35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.novo-delivery-section a:hover,
.novo-returns-page a:hover,
.novo-terms-section a:hover,
.novo-disclaimer-section a:hover {
  color: #A35A28;
  text-decoration: underline;
}

/* Content cards - match privacy-policy card style */
.novo-returns-card,
.novo-terms-header,
.novo-disclaimer-content {
  background: #FFFFFF !important;
  border: 1px solid #EBE2D5 !important;
  border-radius: 24px !important;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04) !important;
}

/* Section number badges - match privacy style */
.novo-returns-page .novo-step-badge,
.novo-terms-section .novo-section-number,
.novo-disclaimer-section .novo-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F3ECE2;
  color: #B86B35;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Center content with max-width for pages without sidebar */
.novo-delivery-section > .container > .row.mb-5:last-child,
.novo-delivery-section .novo-media-frame + .col-12.col-lg-6 {
  max-width: 100%;
}

/* Ensure delivery content rows are centered with max-width */
.novo-delivery-section .col-lg-10.mx-auto {
  max-width: 900px;
}

/* Max-width for return-policy content */
.novo-returns-page .col-12.col-lg-10 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Max-width for terms-of-use content */
.novo-terms-section .col-12.col-lg-8 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Disclaimer content already has sidebar layout, ensure content is constrained */
.novo-disclaimer-section .novo-disclaimer-content {
  max-width: 100%;
}

/* Section title styling for return-policy */
.novo-returns-page .novo-section-title {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw + 0.3rem, 1.625rem);
}

/* Terms section titles */
.novo-terms-section h2.h4,
.novo-terms-section .h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw + 0.3rem, 1.625rem);
}

/* Disclaimer section titles */
.novo-disclaimer-section h2.h4,
.novo-disclaimer-section .h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8vw + 0.3rem, 1.625rem);
}

/* Remove text-muted/text-secondary overrides on policy paragraphs */
.novo-delivery-section p.text-muted,
.novo-returns-page p.text-muted,
.novo-terms-section p.text-secondary,
.novo-terms-section p.text-muted,
.novo-disclaimer-section p.text-secondary,
.novo-disclaimer-section p.text-muted {
  color: #5F554B !important;
}

.novo-delivery-section .text-muted,
.novo-returns-page .text-muted,
.novo-terms-section .text-secondary,
.novo-terms-section .text-muted,
.novo-disclaimer-section .text-secondary,
.novo-disclaimer-section .text-muted {
  color: #5F554B !important;
}

/* Feature card titles in delivery */
.novo-delivery-section .novo-feature-title {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 600;
}

/* Callout boxes - match privacy highlight box */
.novo-returns-page .novo-callout-box,
.novo-terms-section .novo-callout-box,
.novo-disclaimer-section .novo-callout-box {
  background: #FAF7F2 !important;
  border: 1px solid #EBE2D5 !important;
  border-radius: 16px !important;
}

.novo-returns-page .novo-callout-title,
.novo-terms-section .novo-callout-title,
.novo-disclaimer-section .novo-callout-title {
  font-family: 'Fraunces', Georgia, serif;
  color: #2C402E;
  font-weight: 700;
}

/* Alert notices */
.novo-returns-page .novo-alert-notice,
.novo-terms-section .novo-alert-notice,
.novo-disclaimer-section .novo-alert-notice {
  background: #FAF7F2 !important;
  border: 1px solid #EBE2D5 !important;
  border-radius: 16px !important;
}

/* Contact banner in return-policy */
.novo-returns-page .novo-contact-banner {
  background: #F3ECE2 !important;
  border: 1px solid #E5DACB !important;
  border-radius: 16px !important;
}

/* Nav pills for return-policy */
.novo-returns-page .novo-nav-pill {
  background: #FFFFFF;
  border: 1px solid #EBE2D5;
  color: #5F554B;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  transition: all 0.25s ease;
}

.novo-returns-page .novo-nav-pill:hover {
  background: #F3ECE2;
  color: #2C402E;
}

.novo-returns-page .novo-nav-pill.active {
  background: #2C402E;
  color: #FAF7F2;
  border-color: #2C402E;
}

/* Disclaimer sidebar nav */
.novo-disclaimer-section .novo-disclaimer-sticky {
  background: #FFFFFF !important;
  border: 1px solid #EBE2D5 !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04) !important;
}

.novo-disclaimer-section .novo-disclaimer-nav .novo-nav-link {
  color: #5F554B;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.novo-disclaimer-section .novo-disclaimer-nav .novo-nav-link:hover {
  color: #2C402E;
  background: #F3ECE2;
}

.novo-disclaimer-section .novo-disclaimer-nav .novo-nav-link.active {
  background: #2C402E;
  color: #FAF7F2;
  font-weight: 600;
}

/* Terms sidebar nav */
.novo-terms-section .novo-terms-nav .novo-nav-link,
.novo-terms-section .novo-terms-sticky .novo-nav-link {
  color: #5F554B;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.novo-terms-section .novo-terms-nav .novo-nav-link:hover,
.novo-terms-section .novo-terms-sticky .novo-nav-link:hover {
  color: #2C402E;
  background: #F3ECE2;
}

.novo-terms-section .novo-terms-nav .novo-nav-link.active,
.novo-terms-section .novo-terms-sticky .novo-nav-link.active {
  background: #2C402E;
  color: #FAF7F2;
  font-weight: 600;
}

/* Terms sticky card */
.novo-terms-section .novo-terms-sticky,
.novo-terms-section .novo-terms-sidebar {
  background: #FFFFFF !important;
  border: 1px solid #EBE2D5 !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04) !important;
}

/* Terms nav items (corrected selectors) */
.novo-terms-section .js-terms-nav .nav-link {
  color: #5F554B;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.25s ease;
}
.novo-terms-section .js-terms-nav .nav-link:hover {
  color: #2C402E;
  background: #F3ECE2;
}
.novo-terms-section .js-terms-nav .nav-link.active {
  background: #2C402E;
  color: #FAF7F2;
  font-weight: 600;
}

/* Terms content card */
.novo-terms-section .novo-terms-content {
  background: #FFFFFF !important;
  border: 1px solid #EBE2D5 !important;
  border-radius: 24px !important;
  box-shadow: 0 4px 20px rgba(44, 64, 46, 0.04) !important;
}

/* Terms section number badges */
.novo-terms-section .novo-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F3ECE2;
  color: #B86B35;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Disclaimer section number badges (rounded-circle override) */
.novo-disclaimer-section .novo-section-number {
  border-radius: 10px !important;
  width: 36px !important;
  height: 36px !important;
  background: #F3ECE2 !important;
  color: #B86B35 !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

/* ===== Mobile horizontal scroll prevention (Task 10) ===== */
img, iframe, video, svg {
  max-width: 100%;
}
.novo-header-section, .novo-navbar, .novo-nav-container {
  max-width: 100%;
  overflow-x: hidden;
}
.novo-hero-section, .novo-care-section, .novo-selector-section,
.catalog-grid-section, .novo-nuts-footer, .novo-category-main {
  overflow-x: hidden;
}
.care-nav-pill-group {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.novo-filter-bar, .novo-catalog-toolbar {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767.98px) {
  .novo-hero-section .novo-floating-card {
    max-width: 200px;
  }
  .novo-stepper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Terms-of-use timeline numbers - match return-policy style */
.novo-terms-section .novo-timeline-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2C402E;
  color: #FAF7F2;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Unified policy section numbers (all policy pages) ===== */
.privacy-section .novo-timeline-num,
.novo-terms-section .novo-timeline-num,
.novo-returns-page .novo-timeline-num,
.novo-disclaimer-section .novo-timeline-num,
.novo-delivery-section .novo-timeline-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2C402E;
  color: #FAF7F2;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== Checkout form styles ===== */
.novo-checkout-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #EBE2D5;
}
.novo-checkout-back {
  background: #F3ECE2;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2C402E;
  font-size: 1.1rem;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.novo-checkout-back:hover {
  background: #E5DACB;
}
.novo-checkout-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2C402E;
  margin: 0;
}
.novo-checkout-form {
  padding: 1.25rem 1.75rem;
  overflow-y: auto;
  flex-grow: 1;
}
.novo-checkout-summary {
  background: #FAF7F2;
  border: 1px solid #EBE2D5;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}
.novo-checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: #5F554B;
  border-bottom: 1px dashed #EBE2D5;
}
.novo-checkout-summary-row:last-child {
  border-bottom: none;
}
.novo-checkout-summary-name {
  font-weight: 500;
}
.novo-checkout-summary-qty {
  color: #8B7E6E;
  font-size: 0.8125rem;
}
.novo-checkout-summary-price {
  font-weight: 600;
  color: #2C402E;
}
.novo-checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #2C402E;
}
.novo-checkout-total {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
}
.novo-form-divider {
  height: 1px;
  background: #EBE2D5;
  margin: 1rem 0;
}
.novo-form-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2C402E;
  margin-bottom: 0.75rem;
}
.novo-form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5F554B;
  margin-bottom: 0.3rem;
}
.novo-form-required {
  color: #B86B35;
}
.novo-form-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #D5C8B8;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #1C1917;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.novo-form-input:focus {
  outline: none;
  border-color: #2C402E;
  box-shadow: 0 0 0 3px rgba(44, 64, 46, 0.1);
}
.novo-form-textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #D5C8B8;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #1C1917;
  background: #FFFFFF;
  resize: vertical;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.novo-form-textarea:focus {
  outline: none;
  border-color: #2C402E;
  box-shadow: 0 0 0 3px rgba(44, 64, 46, 0.1);
}
.novo-payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.novo-payment-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #D5C8B8;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #5F554B;
  transition: all 0.2s ease;
  background: #FFFFFF;
}
.novo-payment-option:hover {
  border-color: #B86B35;
  background: #FAF7F2;
}
.novo-payment-option input[type="radio"] {
  display: none;
}
.novo-payment-radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #D5C8B8;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}
.novo-payment-option input[type="radio"]:checked + .novo-payment-radio-custom {
  border-color: #2C402E;
}
.novo-payment-option input[type="radio"]:checked + .novo-payment-radio-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2C402E;
}
.novo-payment-option:has(input:checked) {
  border-color: #2C402E;
  background: #F3ECE2;
  color: #2C402E;
  font-weight: 600;
}
.novo-payment-option i {
  font-size: 1.1rem;
  color: #2C402E;
}
.novo-checkout-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== Thank you page styles ===== */
.novo-thankyou-wrap {
  padding: 2.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.novo-thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2C402E;
  color: #FAF7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}
.novo-thankyou-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C402E;
  margin-bottom: 0.5rem;
}
.novo-thankyou-text {
  font-size: 0.9rem;
  color: #5F554B;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.novo-thankyou-order-info {
  background: #FAF7F2;
  border: 1px solid #EBE2D5;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  width: 100%;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.novo-thankyou-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: #5F554B;
}
.novo-thankyou-order-row strong {
  color: #2C402E;
  font-family: 'Fraunces', Georgia, serif;
}

/* ===== Cart view scrolling fix ===== */
#cartView {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
#cartView .novo-cart-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
#cartView .novo-cart-footer {
  flex-shrink: 0;
}
#checkoutView {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
#thankYouView {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

/* ===== Product page Add to Cart button ===== */
.novo-btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: #2C402E;
  color: #FAF7F2;
  border: none;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.novo-btn-add-cart:hover {
  background: #1F2E20;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(44, 64, 46, 0.25);
}
.novo-btn-add-cart i {
  font-size: 1.1rem;
}

/* ===== Mobile menu show state ===== */
@media (max-width: 991.98px) {
  .novo-header-section .navbar-collapse.show {
    display: block !important;
  }
}
