:root {
    --sf-primary: #2D5A3C;
    --sf-primary-hover: #22452E;
    --sf-primary-active: #183221;
    --sf-primary-subtle: #E8F0EA;
    --sf-secondary: #D87D4A;
    --sf-secondary-hover: #C26837;
    --sf-secondary-active: #A85327;
    --sf-secondary-subtle: #FDF2EB;
    --sf-accent: #7FA355;
    --sf-accent-hover: #6D8D47;
    --sf-accent-subtle: #F1F6EC;
    --sf-bg-body: #FAF7F2;
    --sf-surface-primary: #FFFFFF;
    --sf-surface-secondary: #F5EFEB;
    --sf-surface-tertiary: #ECE4DC;
    --sf-surface-glass: rgba(255, 255, 255, 0.85);
    --sf-text-primary: #1F2E23;
    --sf-text-secondary: #5A6B5F;
    --sf-text-muted: #8A998E;
    --sf-border-subtle: #E6DDD4;
    --sf-border-medium: #D4C8BC;
    --sf-radius-sm: 10px;
    --sf-radius-md: 16px;
    --sf-radius-lg: 24px;
    --sf-radius-pill: 9999px;
    --sf-shadow-low: 0 2px 8px rgba(31, 46, 35, 0.04), 0 1px 2px rgba(31, 46, 35, 0.02);
    --sf-shadow-medium: 0 8px 24px rgba(31, 46, 35, 0.06), 0 2px 6px rgba(31, 46, 35, 0.03);
    --sf-shadow-high: 0 16px 40px rgba(31, 46, 35, 0.09), 0 4px 12px rgba(31, 46, 35, 0.04);
    --sf-shadow-hover: 0 20px 44px rgba(45, 90, 60, 0.12), 0 6px 16px rgba(31, 46, 35, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body.sf-body-botanical {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--sf-bg-body);
    color: var(--sf-text-primary);
    line-height: 1.55;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-muted {
    color: var(--sf-text-muted) !important;
}

.sf-font-display {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.sf-font-serif {
    font-family: 'Newsreader', Georgia, serif;
}

.sf-smooth-transition {
    transition: all 240ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* ===== header ===== */
.sfb-main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    box-shadow: 0 4px 20px rgba(31, 46, 35, 0.06);
    background-color: #FAF7F2;
}

.sfb-main-header .sfb-header-announcement {
    background-color: #2D5A3C;
    padding: 0.45rem 1rem;
}

.sfb-main-header .sfb-announcement-text {
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.sfb-main-header .sfb-navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6DDD4;
    padding: 0.875rem 0;
}

.sfb-main-header .sfb-logo-img {
    max-width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.sfb-main-header .sfb-brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1F2E23;
    letter-spacing: -0.02em;
}

.sfb-main-header .sfb-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1F2E23;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: color 0.24s ease, background-color 0.24s ease;
}

.sfb-main-header .sfb-nav-link:hover,
.sfb-main-header .sfb-nav-link:focus {
    color: #2D5A3C;
    background-color: #E8F0EA;
}

.sfb-main-header .sfb-toggler {
    border: 1px solid #D4C8BC;
    background-color: #F5EFEB;
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    color: #1F2E23;
}

.sfb-main-header .sfb-toggler:focus {
    box-shadow: 0 0 0 2px #2D5A3C;
    outline: none;
}

.sfb-main-header .sfb-menu-svg {
    width: 24px;
    height: 24px;
}

.sfb-main-header .sfb-cart-svg {
    width: 22px;
    height: 22px;
}

.sfb-main-header .sfb-cart-btn-mobile {
    background-color: #F5EFEB;
    border: 1px solid #E6DDD4;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1F2E23;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    padding: 0;
}

.sfb-main-header .sfb-cart-btn-mobile:hover {
    background-color: #E8F0EA;
    border-color: #2D5A3C;
    color: #2D5A3C;
}

.sfb-main-header .sfb-cart-btn-desktop {
    background-color: #2D5A3C;
    border: 1px solid #2D5A3C;
    color: #FFFFFF;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.24s ease, transform 0.12s ease, box-shadow 0.24s ease;
}

.sfb-main-header .sfb-cart-btn-desktop:hover {
    background-color: #22452E;
    border-color: #22452E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 90, 60, 0.25);
    color: #FFFFFF;
}

.sfb-main-header .sfb-cart-btn-desktop:active {
    transform: translateY(0);
}

.sfb-main-header .sfb-cart-icon-box {
    width: 22px;
    height: 22px;
}

.sfb-main-header .sfb-cart-badge {
    top: -4px;
    right: -10px;
    background-color: #D87D4A;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2em 0.45em;
    min-width: 18px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .sfb-main-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E6DDD4;
        margin-top: 0.75rem;
        padding: 1rem 0.5rem;
        border-radius: 12px;
    }

    .sfb-main-header .sfb-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .sfb-main-header .sfb-brand-title {
        font-size: 1.15rem;
    }
}

/* ===== hero ===== */
.soulfeast-hero {
    min-height: 85vh;
    padding: 5rem 0;
    background-color: #1F2E23
}

.soulfeast-hero-video {
    z-index: 1;
    pointer-events: none
}

.soulfeast-hero-overlay {
    z-index: 2;
    background: linear-gradient(90deg, rgba(31, 46, 35, 0.92) 0%, rgba(31, 46, 35, 0.78) 55%, rgba(31, 46, 35, 0.5) 100%)
}

.soulfeast-hero .container {
    z-index: 3
}

.soulfeast-hero-content {
    max-width: 720px
}

.soulfeast-hero-badge {
    background-color: rgba(127, 163, 85, 0.22);
    border: 1px solid rgba(127, 163, 85, 0.45);
    backdrop-filter: blur(6px)
}

.soulfeast-badge-icon {
    width: 16px;
    height: 16px;
    color: #7FA355
}

.soulfeast-badge-text {
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase
}

.soulfeast-hero-title {
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em
}

.soulfeast-hero-lead {
    color: #D6DDD8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400
}

.soulfeast-hero-btn {
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    padding: 0.9375rem 2.25rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2)
}

.soulfeast-hero-btn:hover {
    background-color: #22452E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 90, 60, 0.35)
}

.soulfeast-hero-btn:active {
    background-color: #183221;
    transform: translateY(0)
}

.soulfeast-btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform .3s ease
}

.soulfeast-hero-btn:hover .soulfeast-btn-arrow {
    transform: translateX(4px)
}

.soulfeast-feature-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.4rem 0.95rem;
    color: #FAF7F2;
    font-size: 0.875rem;
    font-weight: 500
}

.soulfeast-feature-icon {
    width: 16px;
    height: 16px;
    color: #7FA355;
    flex-shrink: 0
}

@media(max-width:991.98px) {
    .soulfeast-hero {
        min-height: auto;
        padding: 4rem 0
    }

    .soulfeast-hero-title {
        font-size: 2.25rem
    }
}

@media(max-width:767.98px) {
    .soulfeast-hero {
        padding: 3rem 0
    }

    .soulfeast-hero-overlay {
        background: rgba(31, 46, 35, 0.88)
    }

    .soulfeast-hero-title {
        font-size: 18px;
        line-height: 1.3;
        hyphens: auto
    }

    .soulfeast-hero-lead {
        font-size: 0.9375rem;
        line-height: 1.5
    }

    .soulfeast-hero-btn {
        width: 100%;
        padding: 0.8125rem 1.5rem
    }

    .soulfeast-feature-pill {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem
    }
}

/* ===== personal-recommendations ===== */
.personal-recommendations-section {
    background-color: #FAF7F2;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.personal-recommendations-section .recommendations-badge {
    background-color: #E8F0EA;
    border: 1px solid #D4C8BC;
}

.personal-recommendations-section .badge-icon {
    width: 1rem;
    height: 1rem;
    color: #2D5A3C;
    flex-shrink: 0;
}

.personal-recommendations-section .recommendations-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #2D5A3C;
}

.personal-recommendations-section .recommendations-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1F2E23;
    letter-spacing: -0.015em;
}

@media (max-width: 767.98px) {
    .personal-recommendations-section .recommendations-title {
        font-size: 1.5rem;
    }
}

.personal-recommendations-section .recommendations-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1.5px solid #2D5A3C;
    color: #2D5A3C;
    border-radius: 9999px;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 240ms cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.personal-recommendations-section .recommendations-view-all-btn:hover {
    background-color: #E8F0EA;
    border-color: #22452E;
    color: #22452E;
    transform: translateY(-2px);
}

.personal-recommendations-section .recommendation-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4 !important;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(31, 46, 35, 0.04);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 300ms cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.personal-recommendations-section .recommendation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 90, 60, 0.1);
}

.personal-recommendations-section .card-img-wrapper {
    background-color: #F5EFEB;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.personal-recommendations-section .recommendation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.personal-recommendations-section .recommendation-card:hover .recommendation-img {
    transform: scale(1.05);
}

.personal-recommendations-section .recommendation-tag {
    background-color: #2D5A3C;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.personal-recommendations-section .recommendation-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #7FA355;
    letter-spacing: 0.03em;
}

.personal-recommendations-section .recommendation-rating {
    background-color: #FAF7F2;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid #E6DDD4;
}

.personal-recommendations-section .star-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: #D87D4A;
}

.personal-recommendations-section .rating-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1F2E23;
}

.personal-recommendations-section .recommendation-product-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.personal-recommendations-section .recommendation-product-name a {
    color: #1F2E23;
    transition: color 200ms ease;
}

.personal-recommendations-section .recommendation-product-name a:hover {
    color: #2D5A3C;
}

.personal-recommendations-section .recommendation-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5A6B5F;
}

.personal-recommendations-section .recommendation-meta {
    font-size: 0.75rem;
}

.personal-recommendations-section .stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: #2E7D32;
}

.personal-recommendations-section .status-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.personal-recommendations-section .recommendation-pack-size {
    color: #8A998E;
    font-weight: 500;
}

.personal-recommendations-section .product-price {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1F2E23;
}

.personal-recommendations-section .recommendation-btn {
    background-color: #2D5A3C;
    border: 1px solid #2D5A3C;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    transition: all 200ms ease;
    white-space: nowrap;
}

.personal-recommendations-section .recommendation-btn:hover {
    background-color: #22452E;
    border-color: #22452E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 60, 0.2);
}

.personal-recommendations-section .recommendation-btn:active {
    background-color: #183221;
    transform: translateY(0);
}

/* ===== bestsellers ===== */
.sf-bestsellers-section {
    background-color: #FAF7F2;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.sf-bestsellers-section .sf-section-badge {
    background-color: #E8F0EA;
    color: #2D5A3C;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid #D6E5D9;
}

.sf-bestsellers-section .sf-badge-icon {
    width: 14px;
    height: 14px;
    color: #7FA355;
}

.sf-bestsellers-section .sf-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2E23;
    line-height: 1.25;
}

.sf-bestsellers-section .sf-section-subtitle {
    font-size: 1rem;
    color: #5A6B5F;
    line-height: 1.6;
    max-width: 620px;
}

.sf-bestsellers-section .sf-btn-outline {
    background-color: transparent;
    color: #2D5A3C;
    border: 1.5px solid #2D5A3C;
    border-radius: 9999px;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 240ms ease;
    text-decoration: none;
}

.sf-bestsellers-section .sf-btn-outline:hover {
    background-color: #E8F0EA;
    color: #22452E;
    border-color: #22452E;
}

.sf-bestsellers-section .sf-arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 200ms ease;
}

.sf-bestsellers-section .sf-btn-outline:hover .sf-arrow-icon {
    transform: translateX(3px);
}

.sf-bestsellers-section .sf-product-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 240ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 240ms ease;
}

.sf-bestsellers-section .sf-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(45, 90, 60, 0.08);
}

.sf-bestsellers-section .sf-card-media {
    background-color: #F5EFEB;
    overflow: hidden;
}

.sf-bestsellers-section .sf-product-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 500ms ease;
}

.sf-bestsellers-section .sf-product-card:hover .sf-product-img {
    transform: scale(1.04);
}

.sf-bestsellers-section .sf-product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.92);
    color: #2D5A3C;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.sf-bestsellers-section .sf-card-body {
    padding: 1.25rem;
}

.sf-bestsellers-section .sf-category-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #8A998E;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sf-bestsellers-section .sf-rating-badge {
    background-color: #FDF2EB;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.sf-bestsellers-section .sf-star-icon {
    width: 13px;
    height: 13px;
    color: #D87D4A;
}

.sf-bestsellers-section .sf-rating-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #A85327;
    line-height: 1;
}

.sf-bestsellers-section .sf-product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
}

.sf-bestsellers-section .sf-title-link {
    color: #1F2E23;
    text-decoration: none;
    transition: color 200ms ease;
}

.sf-bestsellers-section .sf-title-link:hover {
    color: #2D5A3C;
}

.sf-bestsellers-section .sf-product-desc {
    font-size: 0.875rem;
    color: #5A6B5F;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.sf-bestsellers-section .sf-card-footer {
    border-color: #F0E8E1 !important;
}

.sf-bestsellers-section .sf-price-prefix {
    font-size: 0.8125rem;
    color: #8A998E;
    font-weight: 500;
}

.sf-bestsellers-section .sf-product-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5A3C;
}

.sf-bestsellers-section .sf-btn-cart {
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: none;
    border-radius: 9999px;
    padding: 0.6875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 200ms ease;
}

.sf-bestsellers-section .sf-btn-cart:hover {
    background-color: #22452E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(45, 90, 60, 0.22);
}

.sf-bestsellers-section .sf-btn-cart:active {
    transform: translateY(0);
    background-color: #183221;
}

.sf-bestsellers-section .sf-btn-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 767.98px) {
    .sf-bestsellers-section .sf-section-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .sf-bestsellers-section .sf-product-title {
        font-size: 1.05rem;
        hyphens: auto;
    }

    .sf-bestsellers-section .sf-product-price {
        font-size: 1.125rem;
    }
}

/* ===== parameter-selection ===== */
.sf-quiz-block {
    background-color: #FAF7F2;
    color: #1F2E23;
}

.sf-quiz-block .sf-quiz-badge {
    background-color: #E8F0EA;
    color: #2D5A3C;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.sf-quiz-block .sf-badge-icon {
    width: 1rem;
    height: 1rem;
    color: #2D5A3C;
}

.sf-quiz-block .sf-quiz-title {
    color: #1F2E23;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .sf-quiz-block .sf-quiz-title {
        font-size: 1.5rem;
    }
}

.sf-quiz-block .sf-quiz-subtitle {
    color: #5A6B5F;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.sf-quiz-block .sf-quiz-panel {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
}

.sf-quiz-block .sf-step-card {
    background-color: #FAF7F2;
    border: 1px solid #E6DDD4;
}

.sf-quiz-block .sf-step-number {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2D5A3C;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sf-quiz-block .sf-step-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2E23;
}

@media (max-width: 767.98px) {
    .sf-quiz-block .sf-step-heading {
        font-size: 1rem;
    }
}

.sf-quiz-block .sf-option-btn {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.sf-quiz-block .sf-option-btn:hover {
    border-color: #2D5A3C;
    background-color: #F5EFEB;
}

.sf-quiz-block .sf-option-btn.active {
    background-color: #2D5A3C;
    border-color: #2D5A3C;
}

.sf-quiz-block .sf-option-btn .sf-option-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F2E23;
    line-height: 1.3;
}

.sf-quiz-block .sf-option-btn.active .sf-option-title {
    color: #FFFFFF;
}

.sf-quiz-block .sf-option-btn .sf-option-desc {
    font-size: 0.75rem;
    color: #5A6B5F;
    line-height: 1.3;
    margin-top: 2px;
}

.sf-quiz-block .sf-option-btn.active .sf-option-desc {
    color: #D6DDD8;
}

.sf-quiz-block .sf-filter-status {
    border-color: #E6DDD4 !important;
}

.sf-quiz-block .sf-status-indicator {
    width: 8px;
    height: 8px;
    background-color: #7FA355;
    flex-shrink: 0;
}

.sf-quiz-block .sf-status-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2D5A3C;
}

.sf-quiz-block .sf-reset-btn {
    background: none;
    border: none;
    padding: 0;
    color: #D87D4A;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sf-quiz-block .sf-reset-btn:hover {
    color: #C26837;
    text-decoration: underline;
}

.sf-quiz-block .sf-reset-icon {
    width: 1rem;
    height: 1rem;
}

.sf-quiz-block .sf-product-card {
    border: 1px solid #E6DDD4;
    box-shadow: 0 2px 8px rgba(31, 46, 35, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sf-quiz-block .sf-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(45, 90, 60, 0.1);
}

.sf-quiz-block .sf-card-img-wrap {
    aspect-ratio: 1 / 1;
    background-color: #F5EFEB;
}

.sf-quiz-block .sf-product-img {
    transition: transform 0.4s ease;
}

.sf-quiz-block .sf-product-card:hover .sf-product-img {
    transform: scale(1.04);
}

.sf-quiz-block .sf-card-badge {
    background-color: #2D5A3C;
    color: #FFFFFF;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 2;
}

.sf-quiz-block .sf-rating {
    color: #D87D4A;
    font-size: 0.8125rem;
    font-weight: 600;
}

.sf-quiz-block .sf-star-icon {
    width: 0.9375rem;
    height: 0.9375rem;
    color: #D87D4A;
}

.sf-quiz-block .sf-stock-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2E7D32;
}

.sf-quiz-block .sf-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 767.98px) {
    .sf-quiz-block .sf-card-title {
        font-size: 1rem;
    }
}

.sf-quiz-block .sf-card-title a {
    color: #1F2E23;
    transition: color 0.2s ease;
}

.sf-quiz-block .sf-card-title a:hover {
    color: #2D5A3C;
}

.sf-quiz-block .sf-card-text {
    font-size: 0.8125rem;
    color: #5A6B5F;
    line-height: 1.5;
}

.sf-quiz-block .sf-card-footer {
    border-color: #E6DDD4 !important;
}

.sf-quiz-block .sf-price-label {
    font-size: 0.8125rem;
    color: #5A6B5F;
}

.sf-quiz-block .sf-price-val {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2E23;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sf-quiz-block .sf-btn-primary {
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: none;
    border-radius: 9999px;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease, transform 0.12s ease;
}

.sf-quiz-block .sf-btn-primary:hover {
    background-color: #22452E;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.sf-quiz-block .sf-btn-primary:active {
    background-color: #183221;
    transform: translateY(0);
}

.sf-quiz-block .sf-btn-outline {
    background-color: transparent;
    color: #2D5A3C;
    border: 1.5px solid #2D5A3C;
    border-radius: 9999px;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.sf-quiz-block .sf-btn-outline:hover {
    background-color: #E8F0EA;
    color: #2D5A3C;
}

.sf-quiz-block .sf-empty-icon-wrap {
    width: 56px;
    height: 56px;
    background-color: #F5EFEB;
}

.sf-quiz-block .sf-empty-icon {
    width: 28px;
    height: 28px;
    color: #8A998E;
}

.sf-quiz-block .sf-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2E23;
}

.sf-quiz-block .sf-empty-desc {
    font-size: 0.875rem;
    color: #5A6B5F;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== friend-bonus ===== */
.referral-bonus-section {
    background-color: #FAF7F2;
}

.referral-bonus-section .referral-bonus-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(31, 46, 35, 0.06);
}

@media (max-width: 767.98px) {
    .referral-bonus-section .referral-bonus-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

.referral-bonus-section .referral-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #E8F0EA;
    color: #2D5A3C;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.referral-bonus-section .referral-bonus-badge-icon {
    width: 1rem;
    height: 1rem;
}

.referral-bonus-section .referral-bonus-title {
    color: #1F2E23;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

@media (max-width: 767.98px) {
    .referral-bonus-section .referral-bonus-title {
        font-size: 1.5rem;
    }
}

.referral-bonus-section .referral-bonus-lead {
    color: #5A6B5F;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.referral-bonus-section .referral-perk-item {
    background-color: #FAF7F2;
    border: 1px solid #E6DDD4;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    height: 100%;
}

.referral-bonus-section .referral-perk-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: #E8F0EA;
    color: #2D5A3C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referral-bonus-section .referral-perk-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.referral-bonus-section .referral-perk-title {
    color: #1F2E23;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.referral-bonus-section .referral-perk-desc {
    color: #5A6B5F;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

.referral-bonus-section .referral-bonus-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: none;
    border-radius: 9999px;
    padding: 0.875rem 1.75rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 240ms cubic-bezier(0.25, 1, 0.5, 1), transform 240ms ease, box-shadow 240ms ease;
}

.referral-bonus-section .referral-bonus-primary-btn:hover {
    background-color: #22452E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(45, 90, 60, 0.2);
}

.referral-bonus-section .referral-bonus-primary-btn:active {
    background-color: #183221;
    transform: translateY(0);
}

.referral-bonus-section .referral-btn-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.referral-bonus-section .referral-link-display-box {
    display: none;
    max-width: 520px;
}

.referral-bonus-section .referral-link-display-box.is-visible {
    display: block;
}

.referral-bonus-section .referral-link-input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid #D4C8BC;
    border-radius: 12px;
    background-color: #FAF7F2;
    overflow: hidden;
}

.referral-bonus-section .referral-link-input {
    flex: 1;
    min-width: 0;
    border: none;
    background-color: transparent;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    outline: none;
}

.referral-bonus-section .referral-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    border: none;
    background-color: #D87D4A;
    color: #FFFFFF;
    padding: 0.75rem 1.25rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.referral-bonus-section .referral-copy-btn:hover {
    background-color: #C26837;
}

.referral-bonus-section .referral-copy-icon {
    width: 1rem;
    height: 1rem;
}

.referral-bonus-section .referral-copied-feedback {
    display: none;
    color: #2E7D32;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.referral-bonus-section .referral-copied-feedback.is-visible {
    display: block;
}

.referral-bonus-section .referral-steps-card {
    background-color: #F5EFEB;
    border: 1px solid #D4C8BC;
    border-radius: 20px;
    padding: 2rem;
}

.referral-bonus-section .referral-steps-heading {
    color: #1F2E23;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.referral-bonus-section .referral-step-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.referral-bonus-section .referral-step-row:last-child {
    margin-bottom: 0;
}

.referral-bonus-section .referral-step-number {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #2D5A3C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
}

.referral-bonus-section .referral-step-title {
    color: #1F2E23;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.referral-bonus-section .referral-step-text {
    color: #5A6B5F;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== catalog-grid ===== */
.sf-catalog-grid {
    background-color: #FAF7F2;
    color: #1F2E23
}

.sf-catalog-grid__subtitle {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2D5A3C;
    background-color: #E8F0EA;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px
}

.sf-catalog-grid__title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2E23;
    line-height: 1.25;
    letter-spacing: -0.015em
}

.sf-catalog-grid__intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    color: #5A6B5F;
    line-height: 1.6;
    max-width: 620px
}

.sf-product-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(31, 46, 35, 0.04);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 300ms cubic-bezier(0.25, 1, 0.5, 1), border-color 300ms ease
}

.sf-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(45, 90, 60, 0.12);
    border-color: #D4C8BC
}

.sf-product-card__media {
    background-color: #F5EFEB;
    overflow: hidden;
    aspect-ratio: 1/1
}

.sf-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1)
}

.sf-product-card:hover .sf-product-card__img {
    transform: scale(1.05)
}

.sf-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #2D5A3C;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(31, 46, 35, 0.08);
    border: 1px solid #E6DDD4;
    z-index: 2
}

.sf-product-card__star {
    color: #D87D4A
}

.sf-product-card__rating-val {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif
}

.sf-product-card__stock-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2E7D32;
    background-color: #F1F6EC;
    padding: 0.15rem 0.5rem;
    border-radius: 6px
}

.sf-product-card__title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35
}

.sf-product-card__title-link {
    color: #1F2E23;
    text-decoration: none;
    transition: color 200ms ease
}

.sf-product-card__title-link:hover {
    color: #2D5A3C
}

.sf-product-card__desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    color: #5A6B5F;
    line-height: 1.5
}

.sf-product-card__price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #8A998E;
    font-weight: 600;
    letter-spacing: 0.04em
}

.sf-product-card__price {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D5A3C
}

.sf-product-card__btn {
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: background-color 200ms ease, transform 150ms ease, box-shadow 200ms ease
}

.sf-product-card__btn:hover {
    background-color: #22452E;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(45, 90, 60, 0.25);
    transform: translateY(-1px)
}

.sf-product-card__btn:active {
    background-color: #183221;
    transform: translateY(0)
}

@media(max-width:767.98px) {
    .sf-catalog-grid__title {
        font-size: 1.5rem
    }

    .sf-product-card__title {
        font-size: 1rem
    }
}

/* ===== footer ===== */
.sf-footer {
    background-color: #ECE4DC;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.sf-footer .sf-footer-border {
    border-color: #D4C8BC !important;
}

.sf-footer .sf-footer-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.sf-footer .sf-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5A3C;
    letter-spacing: -0.01em;
}

.sf-footer .sf-brand-tagline {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5A6B5F;
    max-width: 320px;
}

.sf-footer .sf-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1F2E23;
    letter-spacing: -0.01em;
}

.sf-footer .sf-footer-link {
    color: #5A6B5F;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 240ms cubic-bezier(0.25, 1, 0.5, 1), transform 240ms ease;
    display: inline-block;
}

.sf-footer .sf-footer-link:hover,
.sf-footer .sf-footer-link:focus {
    color: #2D5A3C;
    transform: translateX(2px);
}

.sf-footer .sf-copyright {
    font-size: 0.8125rem;
    color: #5A6B5F;
}

.sf-footer .sf-payment-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5A6B5F;
}

.sf-footer .sf-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #FFFFFF;
    padding: 1px;
    box-shadow: 0 1px 3px rgba(31, 46, 35, 0.05);
}

.sf-footer .sf-payment-icon {
    display: block;
    width: 44px;
    height: 28px;
}

@media (max-width: 767.98px) {
    .sf-footer .sf-footer-heading {
        font-size: 0.9375rem;
        hyphens: auto;
    }

    .sf-footer .sf-brand-name {
        font-size: 1.125rem;
    }

    .sf-footer .sf-payment-methods {
        width: 100%;
    }
}

.sfb-body-wrap {
    background-color: #FAF7F2;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sfb-catalog-main-content {
    flex: 1 0 auto;
}

.sfb-main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    box-shadow: 0 4px 20px rgba(31, 46, 35, 0.06);
    background-color: #FAF7F2;
}

.sfb-main-header .sfb-header-announcement {
    background-color: #2D5A3C;
    padding: 0.45rem 1rem;
}

.sfb-main-header .sfb-announcement-text {
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.sfb-main-header .sfb-navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6DDD4;
    padding: 0.875rem 0;
}

.sfb-main-header .sfb-logo-img {
    max-width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.sfb-main-header .sfb-brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1F2E23;
    letter-spacing: -0.02em;
}

.sfb-main-header .sfb-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1F2E23;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: color 0.24s ease, background-color 0.24s ease;
}

.sfb-main-header .sfb-nav-link:hover,
.sfb-main-header .sfb-nav-link:focus,
.sfb-main-header .sfb-nav-link.active {
    color: #2D5A3C;
    background-color: #E8F0EA;
}

.sfb-main-header .sfb-toggler {
    border: 1px solid #D4C8BC;
    background-color: #F5EFEB;
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    color: #1F2E23;
}

.sfb-main-header .sfb-toggler:focus {
    box-shadow: 0 0 0 2px #2D5A3C;
    outline: none;
}

.sfb-main-header .sfb-menu-svg {
    width: 24px;
    height: 24px;
}

.sfb-main-header .sfb-cart-svg {
    width: 22px;
    height: 22px;
}

.sfb-main-header .sfb-cart-btn-mobile {
    background-color: #F5EFEB;
    border: 1px solid #E6DDD4;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1F2E23;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    padding: 0;
}

.sfb-main-header .sfb-cart-btn-mobile:hover {
    background-color: #E8F0EA;
    border-color: #2D5A3C;
    color: #2D5A3C;
}

.sfb-main-header .sfb-cart-btn-desktop {
    background-color: #2D5A3C;
    border: 1px solid #2D5A3C;
    color: #FFFFFF;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.24s ease, transform 0.12s ease, box-shadow 0.24s ease;
}

.sfb-main-header .sfb-cart-btn-desktop:hover {
    background-color: #22452E;
    border-color: #22452E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 90, 60, 0.25);
    color: #FFFFFF;
}

.sfb-main-header .sfb-cart-btn-desktop:active {
    transform: translateY(0);
}

.sfb-main-header .sfb-cart-icon-box {
    width: 22px;
    height: 22px;
}

.sfb-main-header .sfb-cart-badge {
    top: -4px;
    right: -10px;
    background-color: #D87D4A;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2em 0.45em;
    min-width: 18px;
    text-align: center;
}

.sfb-catalog-header-section {
    background-color: #F5EFEB;
    border-bottom: 1px solid #E6DDD4;
}

.sfb-catalog-header-section .sfb-catalog-badge {
    background-color: #E8F0EA;
    border: 1px solid rgba(45, 90, 60, 0.2);
}

.sfb-catalog-header-section .sfb-badge-icon {
    width: 16px;
    height: 16px;
    color: #2D5A3C;
}

.sfb-catalog-header-section .sfb-badge-text {
    color: #2D5A3C;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sfb-catalog-header-section .sfb-catalog-page-title {
    color: #1F2E23;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sfb-catalog-header-section .sfb-catalog-page-lead {
    color: #5A6B5F;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

.sfb-catalog-grid-section .sfb-filter-bar {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    box-shadow: 0 2px 8px rgba(31, 46, 35, 0.04);
}

.sfb-catalog-grid-section .sfb-filter-btn {
    background-color: #F5EFEB;
    color: #1F2E23;
    border: 1px solid #E6DDD4;
    border-radius: 9999px;
    padding: 0.55rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sfb-catalog-grid-section .sfb-filter-btn:hover {
    background-color: #E8F0EA;
    border-color: #2D5A3C;
    color: #2D5A3C;
}

.sfb-catalog-grid-section .sfb-filter-btn.active {
    background-color: #2D5A3C;
    border-color: #2D5A3C;
    color: #FFFFFF;
}

.sfb-catalog-grid-section .sfb-search-wrap {
    min-width: 220px;
}

.sfb-catalog-grid-section .sfb-search-input {
    background-color: #FFFFFF;
    color: #1F2E23;
    border: 1px solid #D4C8BC;
    border-radius: 9999px;
    padding: 0.5rem 1rem 0.5rem 2.25rem;
    font-size: 0.875rem;
}

.sfb-catalog-grid-section .sfb-search-input::placeholder {
    color: #8A998E;
    opacity: 1;
}

.sfb-catalog-grid-section .sfb-search-input:focus {
    border-color: #2D5A3C;
    box-shadow: 0 0 0 3px rgba(45, 90, 60, 0.15);
    outline: none;
}

.sfb-catalog-grid-section .sfb-search-icon {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #8A998E;
    pointer-events: none;
}

.sfb-catalog-grid-section .sfb-sort-select {
    background-color: #FFFFFF;
    color: #1F2E23;
    border: 1px solid #D4C8BC;
    border-radius: 9999px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.sfb-catalog-grid-section .sfb-sort-select:focus {
    border-color: #2D5A3C;
    box-shadow: 0 0 0 3px rgba(45, 90, 60, 0.15);
    outline: none;
}

.sfb-catalog-grid-section .sfb-product-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 20px;
    padding: 1.25rem;
    transition: transform 0.24s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.24s ease, border-color 0.24s ease;
}

.sfb-catalog-grid-section .sfb-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(31, 46, 35, 0.08);
    border-color: #D4C8BC;
}

.sfb-catalog-grid-section .sfb-product-img-link {
    background-color: #F5EFEB;
    aspect-ratio: 1 / 1;
}

.sfb-catalog-grid-section .sfb-product-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.sfb-catalog-grid-section .sfb-product-badge {
    background-color: rgba(255, 255, 255, 0.92);
    color: #2D5A3C;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sfb-catalog-grid-section .sfb-product-category-tag {
    color: #8A998E;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sfb-catalog-grid-section .sfb-star-icon {
    width: 15px;
    height: 15px;
    color: #D87D4A;
}

.sfb-catalog-grid-section .sfb-rating-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1F2E23;
}

.sfb-catalog-grid-section .sfb-product-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
}

.sfb-catalog-grid-section .sfb-product-link {
    color: #1F2E23;
    transition: color 0.2s ease;
}

.sfb-catalog-grid-section .sfb-product-link:hover {
    color: #2D5A3C;
}

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

.sfb-catalog-grid-section .sfb-card-footer-border {
    border-color: #E6DDD4 !important;
}

.sfb-catalog-grid-section .sfb-price-label {
    font-size: 0.6875rem;
    color: #8A998E;
    text-transform: uppercase;
    font-weight: 600;
}

.sfb-catalog-grid-section .sfb-product-price {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D5A3C;
}

.sfb-catalog-grid-section .sfb-add-to-cart-btn {
    background-color: #2D5A3C;
    border: 1px solid #2D5A3C;
    color: #FFFFFF;
    padding: 0.55rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}

.sfb-catalog-grid-section .sfb-add-to-cart-btn:hover {
    background-color: #22452E;
    border-color: #22452E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 60, 0.25);
}

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

.sfb-catalog-grid-section .sfb-no-results-box {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 24px;
    padding: 3rem 1.5rem;
}

.sfb-catalog-grid-section .sfb-no-results-icon {
    width: 64px;
    height: 64px;
    background-color: #F5EFEB;
    color: #5A6B5F;
}

.sfb-catalog-grid-section .sfb-empty-svg {
    width: 32px;
    height: 32px;
}

.sfb-catalog-grid-section .sfb-no-results-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1F2E23;
}

.sfb-catalog-grid-section .sfb-no-results-lead {
    color: #5A6B5F;
    font-size: 0.95rem;
}

.sfb-catalog-grid-section .sfb-reset-filters-btn {
    background-color: #2D5A3C;
    border: none;
    color: #FFFFFF;
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sfb-catalog-grid-section .sfb-reset-filters-btn:hover {
    background-color: #22452E;
}

.sf-footer {
    background-color: #ECE4DC;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.sf-footer .sf-footer-border {
    border-color: #D4C8BC !important;
}

.sf-footer .sf-footer-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.sf-footer .sf-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5A3C;
    letter-spacing: -0.01em;
}

.sf-footer .sf-brand-tagline {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5A6B5F;
    max-width: 320px;
}

.sf-footer .sf-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1F2E23;
    letter-spacing: -0.01em;
}

.sf-footer .sf-footer-link {
    color: #5A6B5F;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 240ms cubic-bezier(0.25, 1, 0.5, 1), transform 240ms ease;
    display: inline-block;
}

.sf-footer .sf-footer-link:hover,
.sf-footer .sf-footer-link:focus {
    color: #2D5A3C;
    transform: translateX(2px);
}

.sf-footer .sf-copyright {
    font-size: 0.8125rem;
    color: #5A6B5F;
}

.sf-footer .sf-payment-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5A6B5F;
}

.sf-footer .sf-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #FFFFFF;
    padding: 1px;
    box-shadow: 0 1px 3px rgba(31, 46, 35, 0.05);
}

.sf-footer .sf-payment-icon {
    display: block;
    width: 44px;
    height: 28px;
}

@media (max-width: 991.98px) {
    .sfb-main-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E6DDD4;
        margin-top: 0.75rem;
        padding: 1rem 0.5rem;
        border-radius: 12px;
    }

    .sfb-main-header .sfb-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .sfb-main-header .sfb-brand-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .sfb-catalog-header-section .sfb-catalog-page-title {
        font-size: 18px;
        hyphens: auto;
    }

    .sfb-catalog-header-section .sfb-catalog-page-lead {
        font-size: 0.9375rem;
    }

    .sfb-catalog-grid-section .sfb-no-results-title {
        font-size: 16px;
        hyphens: auto;
    }

    .sfb-catalog-grid-section .sfb-product-title {
        font-size: 14px;
        hyphens: auto;
    }

    .sf-footer .sf-footer-heading {
        font-size: 14px;
        hyphens: auto;
    }

    .sf-footer .sf-brand-name {
        font-size: 1.125rem;
    }

    .sf-footer .sf-payment-methods {
        width: 100%;
    }
}


/* ===== PAGE: about ===== */
.about-store-section {
  background-color: #FAF7F2;
  color: #1F2E23;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-store-section__badge {
  background-color: #E8F0EA;
  color: #2D5A3C;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.about-store-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1F2E23;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-store-section__lead {
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-store-section__image-frame {
  height: 380px;
  background-color: #F5EFEB;
}

.about-store-section__content-box {
  border-color: #E6DDD4 !important;
}

.about-store-section__sub-tag {
  color: #D87D4A;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.about-store-section__subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1F2E23;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
}

.about-store-section__text {
  font-size: 0.975rem;
  line-height: 1.6;
}

.about-store-section__pill {
  background-color: #F5EFEB;
  color: #2D5A3C;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #E6DDD4;
}

.about-store-section__tab-btn {
  background-color: #FFFFFF;
  color: #5A6B5F;
  border: 1px solid #E6DDD4;
  border-radius: 9999px;
  padding: 0.6rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.25, 1, 0.5, 1);
}

.about-store-section__tab-btn:hover {
  background-color: #E8F0EA;
  color: #2D5A3C;
  border-color: #2D5A3C;
}

.about-store-section__tab-btn.active {
  background-color: #2D5A3C;
  color: #FFFFFF;
  border-color: #2D5A3C;
}

.about-store-section__tab-panels {
  border-color: #E6DDD4 !important;
  box-shadow: 0 4px 18px rgba(31, 46, 35, 0.04);
}

.about-store-section__panel-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1F2E23;
  font-size: 1.375rem;
  font-weight: 600;
}

.about-store-section__panel-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-store-section__checklist li {
  font-size: 0.9rem;
  color: #1F2E23;
}

.about-store-section__check-icon {
  color: #2D5A3C;
}

.about-store-section__panel-media {
  height: 240px;
  background-color: #F5EFEB;
}

.about-store-section__value-card {
  border-color: #E6DDD4 !important;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.about-store-section__value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(45, 90, 60, 0.08);
}

.about-store-section__value-icon {
  width: 52px;
  height: 52px;
  background-color: #E8F0EA;
  color: #2D5A3C;
}

.about-store-section__value-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1F2E23;
  font-size: 1.125rem;
  font-weight: 600;
}

.about-store-section__value-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.about-store-section__cta-banner {
  background-color: #F5EFEB;
  border: 1px solid #D4C8BC;
}

.about-store-section__cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1F2E23;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-store-section__cta-text {
  font-size: 0.95rem;
}

.about-store-section__btn-cta {
  background-color: #2D5A3C;
  color: #FFFFFF;
  padding: 0.75rem 1.65rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 240ms ease, transform 240ms ease;
}

.about-store-section__btn-cta:hover {
  background-color: #22452E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .about-store-section__title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .about-store-section__subtitle {
    font-size: 1rem;
    hyphens: auto;
  }
  .about-store-section__panel-heading {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .about-store-section__image-frame {
    height: 240px;
  }
  .about-store-section__panel-media {
    height: 200px;
  }
}

/* ===== PAGE: delivery ===== */
.delivery-page-section {
  background-color: #FAF7F2;
  color: #1F2E23;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.delivery-page-section .delivery-section-badge {
  background-color: #E8F0EA;
  color: #2D5A3C;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.delivery-page-section .delivery-badge-icon {
  width: 14px;
  height: 14px;
  color: #2D5A3C;
}

.delivery-page-section .delivery-main-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2E23;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.delivery-page-section .delivery-lead-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #5A6B5F;
  max-width: 680px;
  margin: 0 auto;
}

.delivery-page-section .delivery-tab-pills {
  background-color: #F5EFEB;
  border: 1px solid #E6DDD4;
  border-radius: 9999px;
  gap: 0.25rem;
}

.delivery-page-section .delivery-tab-btn {
  border: none;
  background: transparent;
  color: #5A6B5F;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.24s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
  align-items: center;
}

.delivery-page-section .delivery-tab-btn:hover {
  color: #1F2E23;
}

.delivery-page-section .delivery-tab-btn.active {
  background-color: #2D5A3C;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(45, 90, 60, 0.15);
}

.delivery-page-section .delivery-tab-icon {
  width: 16px;
  height: 16px;
}

.delivery-page-section .delivery-tier-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  border-radius: 20px;
  transition: transform 0.24s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.24s cubic-bezier(0.25, 1, 0.5, 1);
}

.delivery-page-section .delivery-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 90, 60, 0.08);
}

.delivery-page-section .delivery-tier-card.featured-tier {
  border-color: #2D5A3C;
  background-color: #FFFFFF;
  position: relative;
}

.delivery-page-section .delivery-carrier-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5A6B5F;
  background-color: #F5EFEB;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.delivery-page-section .delivery-carrier-tag.popular-tag {
  background-color: #D87D4A;
  color: #FFFFFF;
}

.delivery-page-section .delivery-tier-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1F2E23;
}

.delivery-page-section .delivery-price-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D5A3C;
}

.delivery-page-section .delivery-tier-desc {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.delivery-page-section .delivery-check-icon {
  width: 18px;
  height: 18px;
  color: #2D5A3C;
}

.delivery-page-section .delivery-info-banner {
  background-color: #F5EFEB;
  border: 1px solid #D4C8BC;
}

.delivery-page-section .delivery-banner-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1F2E23;
}

.delivery-page-section .delivery-highlight-badge {
  background-color: #2D5A3C;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-block;
}

.delivery-page-section .payment-method-box {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  border-radius: 20px;
  transition: transform 0.24s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.24s cubic-bezier(0.25, 1, 0.5, 1);
}

.delivery-page-section .payment-method-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 90, 60, 0.08);
}

.delivery-page-section .payment-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: #E8F0EA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-page-section .payment-icon {
  width: 22px;
  height: 22px;
  color: #2D5A3C;
}

.delivery-page-section .payment-box-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1F2E23;
}

.delivery-page-section .payment-box-text {
  font-size: 0.875rem;
  line-height: 1.55;
}

.delivery-page-section .security-assurance-card {
  background-color: #F5EFEB;
  border: 1px solid #D4C8BC;
}

.delivery-page-section .security-icon-circle {
  width: 48px;
  height: 48px;
  background-color: #2D5A3C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-page-section .security-icon {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.delivery-page-section .security-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1F2E23;
}

.delivery-page-section .security-card-desc {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.delivery-page-section .eco-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  border-radius: 20px;
}

.delivery-page-section .eco-number-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #D87D4A;
}

.delivery-page-section .eco-feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1F2E23;
}

.delivery-page-section .eco-feature-desc {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.delivery-page-section .delivery-faq-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1F2E23;
}

.delivery-page-section .accordion-item-custom {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  border-radius: 14px;
  overflow: hidden;
}

.delivery-page-section .accordion-toggle-btn {
  border: none;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1F2E23;
  cursor: pointer;
  transition: color 0.2s ease;
}

.delivery-page-section .accordion-toggle-btn:hover {
  color: #2D5A3C;
}

.delivery-page-section .accordion-arrow-icon {
  width: 18px;
  height: 18px;
  color: #5A6B5F;
  transition: transform 0.24s ease;
}

.delivery-page-section .accordion-toggle-btn.active .accordion-arrow-icon {
  transform: rotate(180deg);
  color: #2D5A3C;
}

@media (max-width: 767.98px) {
  .delivery-page-section .delivery-main-heading {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .delivery-page-section .delivery-tier-title,
  .delivery-page-section .payment-box-title,
  .delivery-page-section .eco-feature-title {
    font-size: 1.15rem;
  }
  .delivery-page-section .delivery-banner-heading,
  .delivery-page-section .security-card-title,
  .delivery-page-section .delivery-faq-heading {
    font-size: 1.25rem;
  }
  .delivery-page-section .delivery-tab-pills {
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
  }
  .delivery-page-section .delivery-tab-btn {
    justify-content: center;
    width: 100%;
  }
}

/* ===== PAGE: support ===== */
.support-faq-section {
  background-color: #FAF7F2;
  color: #1F2E23;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}

.support-faq-section .support-faq-section__badge-wrap {
  display: inline-block;
}

.support-faq-section .support-faq-section__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background-color: #E8F0EA;
  color: #2D5A3C;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-faq-section .support-faq-section__main-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1F2E23;
  letter-spacing: -0.02em;
}

.support-faq-section .support-faq-section__lead-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5A6B5F;
}

.support-faq-section .support-faq-section__search-box {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  border-radius: 9999px;
  padding: 0.35rem 0.6rem 0.35rem 1rem;
  box-shadow: 0 2px 8px rgba(31, 46, 35, 0.04);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.support-faq-section .support-faq-section__search-box:focus-within {
  border-color: #2D5A3C;
  box-shadow: 0 4px 16px rgba(45, 90, 60, 0.1);
}

.support-faq-section .support-faq-section__search-icon {
  width: 24px;
  height: 24px;
  color: #5A6B5F;
  margin-right: 0.5rem;
}

.support-faq-section .support-faq-section__svg-icon {
  width: 20px;
  height: 20px;
}

.support-faq-section .support-faq-section__search-input {
  border: none;
  background: #FFFFFF;
  color: #1F2E23;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  outline: none;
}

.support-faq-section .support-faq-section__search-input::placeholder {
  color: #8A998E;
  opacity: 1;
}

.support-faq-section .support-faq-section__search-clear {
  background: #E8F0EA;
  border: none;
  color: #2D5A3C;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 1;
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 0.5rem;
  transition: background-color 200ms ease;
}

.support-faq-section .support-faq-section__search-clear:hover {
  background-color: #D6E5D9;
}

.support-faq-section .support-faq-section__filter-pill {
  background-color: #FFFFFF;
  color: #1F2E23;
  border: 1px solid #E6DDD4;
  border-radius: 9999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 240ms ease;
  cursor: pointer;
}

.support-faq-section .support-faq-section__filter-pill:hover {
  border-color: #2D5A3C;
  color: #2D5A3C;
  background-color: #FDF2EB;
}

.support-faq-section .support-faq-section__filter-pill.active {
  background-color: #2D5A3C;
  color: #FFFFFF;
  border-color: #2D5A3C;
  box-shadow: 0 2px 8px rgba(45, 90, 60, 0.2);
}

.support-faq-section .support-faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-faq-section .support-faq-section__item {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.support-faq-section .support-faq-section__item.is-open {
  border-color: #D4C8BC;
  box-shadow: 0 4px 16px rgba(31, 46, 35, 0.05);
}

.support-faq-section .support-faq-section__trigger {
  background-color: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.support-faq-section .support-faq-section__trigger:hover {
  background-color: #FAF7F2;
}

.support-faq-section .support-faq-section__item-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1F2E23;
  line-height: 1.4;
  padding-right: 1rem;
}

.support-faq-section .support-faq-section__chevron {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #F5EFEB;
  color: #2D5A3C;
  transition: transform 280ms cubic-bezier(0.25, 1, 0.5, 1), background-color 200ms ease;
}

.support-faq-section .support-faq-section__item.is-open .support-faq-section__chevron {
  transform: rotate(180deg);
  background-color: #E8F0EA;
}

.support-faq-section .support-faq-section__svg-chevron {
  width: 18px;
  height: 18px;
}

.support-faq-section .support-faq-section__content {
  display: none;
  border-top: 1px solid #F5EFEB;
}

.support-faq-section .support-faq-section__item.is-open .support-faq-section__content {
  display: block;
}

.support-faq-section .support-faq-section__body {
  padding: 1.25rem 1.5rem;
  color: #5A6B5F;
  font-size: 0.95rem;
  line-height: 1.6;
}

.support-faq-section .support-faq-section__inline-link {
  color: #2D5A3C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

.support-faq-section .support-faq-section__inline-link:hover {
  color: #D87D4A;
}

.support-faq-section .support-faq-section__empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #F5EFEB;
  color: #8A998E;
}

.support-faq-section .support-faq-section__empty-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1F2E23;
}

.support-faq-section .support-faq-section__empty-text {
  color: #5A6B5F;
  font-size: 0.95rem;
}

.support-faq-section .support-faq-section__reset-btn,
.support-faq-section .btn-primary {
  background-color: #2D5A3C;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 240ms ease, transform 200ms ease, box-shadow 240ms ease;
}

.support-faq-section .support-faq-section__reset-btn:hover,
.support-faq-section .btn-primary:hover {
  background-color: #22452E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 90, 60, 0.2);
}

.support-faq-section .support-faq-section__quick-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  border-radius: 20px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.support-faq-section .support-faq-section__quick-card:hover {
  transform: translateY(-4px);
  border-color: #D4C8BC;
  box-shadow: 0 12px 28px rgba(31, 46, 35, 0.08);
}

.support-faq-section .support-faq-section__quick-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #D87D4A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.support-faq-section .support-faq-section__quick-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1F2E23;
}

.support-faq-section .support-faq-section__quick-desc {
  color: #5A6B5F;
  font-size: 0.9rem;
  line-height: 1.55;
}

.support-faq-section .support-faq-section__quick-link {
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .support-faq-section .support-faq-section__main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .support-faq-section .support-faq-section__item-title {
    font-size: 0.95rem;
  }
  .support-faq-section .support-faq-section__quick-title {
    font-size: 1.1rem;
  }
  .support-faq-section .support-faq-section__trigger {
    padding: 1rem 1.15rem;
  }
  .support-faq-section .support-faq-section__body {
    padding: 1rem 1.15rem;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-policy-section {
  background-color: #FAF7F2;
  color: #1F2E23;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.privacy-policy-section .privacy-badge {
  background-color: #E8F0EA;
  color: #2D5A3C;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.privacy-policy-section .privacy-badge-icon {
  stroke: #2D5A3C;
}

.privacy-policy-section .privacy-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2E23;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.privacy-policy-section .privacy-subtitle {
  color: #5A6B5F;
  font-size: 1.0625rem;
  max-width: 680px;
}

.privacy-policy-section .privacy-nav-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
  top: 1.5rem;
  z-index: 10;
}

.privacy-policy-section .privacy-nav-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2E23;
}

.privacy-policy-section .privacy-nav-link {
  color: #5A6B5F;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.privacy-policy-section .privacy-nav-link:hover {
  color: #2D5A3C;
  background-color: #F5EFEB;
}

.privacy-policy-section .privacy-nav-link.active {
  color: #2D5A3C;
  background-color: #E8F0EA;
  font-weight: 600;
}

.privacy-policy-section .privacy-content-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DDD4;
}

.privacy-policy-section .privacy-section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1F2E23;
  letter-spacing: -0.01em;
}

.privacy-policy-section .privacy-text {
  color: #5A6B5F;
  font-size: 0.95rem;
  line-height: 1.65;
}

.privacy-policy-section .privacy-list {
  color: #5A6B5F;
  font-size: 0.95rem;
}

.privacy-policy-section .privacy-list strong {
  color: #1F2E23;
}

@media (max-width: 767.98px) {
  .privacy-policy-section .privacy-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .privacy-policy-section .privacy-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .privacy-policy-section .privacy-subtitle {
    font-size: 0.875rem;
  }
  .privacy-policy-section .privacy-content-card {
    padding: 1.25rem !important;
  }
}

/* ===== PAGE: terms ===== */
.terms-main-wrapper { background-color: #FAF7F2; min-height: 80vh; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1F2E23; }
.terms-main-wrapper .terms-header-card { background-color: #FFFFFF; border: 1px solid #E6DDD4; border-radius: 24px; box-shadow: 0 8px 24px rgba(31, 46, 35, 0.04); }
.terms-main-wrapper .terms-badge-pill { background-color: #E8F0EA; border-radius: 9999px; color: #2D5A3C; font-weight: 600; font-size: 0.8125rem; letter-spacing: 0.02em; }
.terms-main-wrapper .terms-pill-icon { color: #2D5A3C; }
.terms-main-wrapper .terms-badge-text { font-family: 'Plus Jakarta Sans', sans-serif; }
.terms-main-wrapper .terms-primary-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; color: #1F2E23; letter-spacing: -0.02em; }
.terms-main-wrapper .terms-lead-text { font-size: 1.0625rem; line-height: 1.6; color: #5A6B5F; }
.terms-main-wrapper .terms-feature-tag { display: inline-flex; align-items: center; background-color: #F5EFEB; border: 1px solid #D4C8BC; color: #2D5A3C; padding: 0.35rem 0.85rem; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; }
.terms-main-wrapper .terms-info-box { background-color: #F5EFEB; border: 1px solid #D4C8BC; border-radius: 16px; height: 100%; }
.terms-main-wrapper .terms-info-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 700; color: #1F2E23; }
.terms-main-wrapper .terms-info-list { list-style: none; }
.terms-main-wrapper .terms-info-item { font-size: 0.875rem; line-height: 1.45; color: #5A6B5F; }
.terms-main-wrapper .terms-check-icon { color: #7FA355; }
.terms-main-wrapper .terms-sidebar-sticky { position: sticky; top: 90px; background-color: #FFFFFF; border: 1px solid #E6DDD4; border-radius: 20px; box-shadow: 0 4px 16px rgba(31, 46, 35, 0.03); }
.terms-main-wrapper .terms-sidebar-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 700; color: #1F2E23; }
.terms-main-wrapper .terms-nav-menu { display: flex; flex-direction: column; gap: 0.5rem; }
.terms-main-wrapper .terms-nav-link { display: block; padding: 0.625rem 1rem; border-radius: 10px; color: #5A6B5F; text-decoration: none; font-size: 0.9375rem; font-weight: 500; transition: all 240ms cubic-bezier(0.25, 1, 0.5, 1); }
.terms-main-wrapper .terms-nav-link:hover { color: #2D5A3C; background-color: #E8F0EA; }
.terms-main-wrapper .terms-nav-link.active { color: #FFFFFF; background-color: #2D5A3C; font-weight: 600; }
.terms-main-wrapper .terms-article-block { background-color: #FFFFFF; border: 1px solid #E6DDD4; border-radius: 20px; box-shadow: 0 4px 16px rgba(31, 46, 35, 0.03); }
.terms-main-wrapper .terms-num-tag { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background-color: #E8F0EA; color: #2D5A3C; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.terms-main-wrapper .terms-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.375rem; font-weight: 700; color: #1F2E23; line-height: 1.3; }
.terms-main-wrapper .terms-body-text { font-size: 0.96875rem; line-height: 1.65; color: #5A6B5F; }
.terms-main-wrapper .terms-body-list { color: #5A6B5F; font-size: 0.96875rem; line-height: 1.6; }
.terms-main-wrapper .terms-subcard { background-color: #FAF7F2; border: 1px solid #E6DDD4; border-radius: 12px; height: 100%; }
.terms-main-wrapper .terms-subcard-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #2D5A3C; }
.terms-main-wrapper .terms-subcard-text { font-size: 0.875rem; line-height: 1.5; color: #5A6B5F; }
@media (max-width: 767.98px) {
  .terms-main-wrapper .terms-primary-title { font-size: 1.125rem; hyphens: auto; }
  .terms-main-wrapper .terms-section-title { font-size: 1rem; hyphens: auto; }
  .terms-main-wrapper .terms-subcard-title, .terms-main-wrapper .terms-info-title, .terms-main-wrapper .terms-sidebar-title { font-size: 0.875rem; }
  .terms-main-wrapper .terms-lead-text { font-size: 0.9375rem; }
  .terms-main-wrapper .terms-header-card, .terms-main-wrapper .terms-article-block { padding: 1.25rem; border-radius: 16px; }
}

/* ===== PAGE: disclaimer ===== */
.soul-disclaimer-section {
  background-color: #FAF7F2;
  color: #1F2E23;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 60vh;
}

.soul-disclaimer-section .soul-breadcrumb-link {
  color: #5A6B5F;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 240ms ease;
}

.soul-disclaimer-section .soul-breadcrumb-link:hover {
  color: #2D5A3C;
}

.soul-disclaimer-section .breadcrumb-item.active {
  color: #1F2E23;
  font-weight: 600;
  font-size: 0.875rem;
}

.soul-disclaimer-section .soul-disclaimer-header {
  border-color: #E6DDD4 !important;
}

.soul-disclaimer-section .soul-disclaimer-tag {
  background-color: #E8F0EA;
  color: #2D5A3C;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
}

.soul-disclaimer-section .soul-disclaimer-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1F2E23;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.soul-disclaimer-section .soul-disclaimer-meta {
  font-size: 0.875rem;
  color: #5A6B5F !important;
}

.soul-disclaimer-section .soul-summary-card {
  background-color: #F5EFEB;
  border: 1px solid #D4C8BC;
}

.soul-disclaimer-section .soul-summary-icon {
  background-color: #2D5A3C;
  color: #FFFFFF;
}

.soul-disclaimer-section .soul-summary-heading {
  color: #1F2E23;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.soul-disclaimer-section .soul-summary-text {
  color: #5A6B5F;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.soul-disclaimer-section .soul-section-block {
  border: 1px solid #E6DDD4;
  box-shadow: 0 2px 8px rgba(31, 46, 35, 0.03);
}

.soul-disclaimer-section .soul-section-heading {
  color: #1F2E23;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.soul-disclaimer-section .soul-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: #E8F0EA;
  color: #2D5A3C;
  font-size: 0.8125rem;
  font-weight: 700;
}

.soul-disclaimer-section .soul-text {
  color: #5A6B5F;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.soul-disclaimer-section .soul-callout-box {
  background-color: #FAF7F2;
  border-left: 3px solid #D87D4A;
}

.soul-disclaimer-section .soul-callout-title {
  color: #1F2E23;
}

.soul-disclaimer-section .soul-callout-text {
  color: #5A6B5F;
  line-height: 1.55;
}

.soul-disclaimer-section .soul-inline-link {
  color: #2D5A3C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 240ms ease;
}

.soul-disclaimer-section .soul-inline-link:hover {
  color: #183221;
}

.soul-disclaimer-section .soul-quick-nav {
  background-color: #ECE4DC;
  border: 1px solid #D4C8BC;
}

.soul-disclaimer-section .soul-btn-primary {
  background-color: #2D5A3C;
  color: #FFFFFF;
  border: 1px solid #2D5A3C;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 240ms ease;
}

.soul-disclaimer-section .soul-btn-primary:hover {
  background-color: #22452E;
  border-color: #22452E;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.soul-disclaimer-section .soul-btn-outline {
  background-color: transparent;
  color: #2D5A3C;
  border: 1.5px solid #2D5A3C;
  border-radius: 9999px;
  padding: 0.5625rem 1.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 240ms ease;
}

.soul-disclaimer-section .soul-btn-outline:hover {
  background-color: #E8F0EA;
  color: #183221;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .soul-disclaimer-section .soul-disclaimer-title {
    font-size: 1.125rem;
  }
  .soul-disclaimer-section .soul-section-heading {
    font-size: 1rem;
  }
  .soul-disclaimer-section .soul-summary-heading {
    font-size: 0.9375rem;
  }
}

/* ===== PAGE: refund ===== */
.soulfeast-refund-section { background-color: #FAF7F2; color: #1F2E23; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.soulfeast-refund-section .soulfeast-title { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 2.25rem; font-weight: 700; color: #1F2E23; line-height: 1.25; letter-spacing: -0.02em; }
@media (max-width: 767.98px) { .soulfeast-refund-section .soulfeast-title { font-size: 1.75rem; hyphens: auto; } }
.soulfeast-refund-section .soulfeast-badge { background-color: #E8F0EA; color: #2D5A3C; font-size: 0.8125rem; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 9999px; border: 1px solid #D6E5D9; }
.soulfeast-refund-section .soulfeast-badge-icon { width: 1rem; height: 1rem; }
.soulfeast-refund-section .soulfeast-lead { font-size: 1.0625rem; line-height: 1.6; color: #5A6B5F; max-width: 780px; }
.soulfeast-refund-section .soulfeast-meta-date { font-size: 0.875rem; color: #8A998E; }
.soulfeast-refund-section .soulfeast-date-label { font-weight: 600; color: #5A6B5F; }
.soulfeast-refund-section .soulfeast-quick-summary { background-color: #FFFFFF; border: 1px solid #E6DDD4; box-shadow: 0 4px 16px rgba(31, 46, 35, 0.04); }
.soulfeast-refund-section .soulfeast-summary-icon-box { background-color: #F1F6EC; border-radius: 12px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.soulfeast-refund-section .soulfeast-summary-icon { width: 1.35rem; height: 1.35rem; color: #2D5A3C; }
.soulfeast-refund-section .soulfeast-summary-title { font-size: 1rem; font-weight: 600; color: #1F2E23; font-family: 'Plus Jakarta Sans', sans-serif; }
.soulfeast-refund-section .soulfeast-summary-text { font-size: 0.875rem; color: #5A6B5F; line-height: 1.45; }
.soulfeast-refund-section .soulfeast-content-card { background-color: #FFFFFF; border: 1px solid #E6DDD4; box-shadow: 0 8px 24px rgba(31, 46, 35, 0.04); }
.soulfeast-refund-section .soulfeast-section-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.375rem; font-weight: 600; color: #1F2E23; line-height: 1.3; }
@media (max-width: 767.98px) { .soulfeast-refund-section .soulfeast-section-heading { font-size: 1.125rem; } }
.soulfeast-refund-section .soulfeast-step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background-color: #2D5A3C; color: #FFFFFF; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; }
.soulfeast-refund-section .soulfeast-text { font-size: 0.95rem; line-height: 1.65; color: #4A5B4E; }
.soulfeast-refund-section .soulfeast-list-box { background-color: #FAF7F2; border: 1px solid #E6DDD4; }
.soulfeast-refund-section .soulfeast-bullet-list { color: #4A5B4E; font-size: 0.9375rem; line-height: 1.55; }
.soulfeast-refund-section .soulfeast-bullet-item::marker { color: #2D5A3C; }
.soulfeast-refund-section .soulfeast-notice-card { background-color: #FDF2EB; border: 1px solid #F2D5C3; }
.soulfeast-refund-section .soulfeast-subheading { font-size: 1.05rem; font-weight: 600; color: #A85327; font-family: 'Plus Jakarta Sans', sans-serif; }
.soulfeast-refund-section .soulfeast-pill-card { background-color: #FAF7F2; border: 1px solid #E6DDD4; }
.soulfeast-refund-section .soulfeast-pill-title { font-size: 0.975rem; font-weight: 600; color: #1F2E23; font-family: 'Plus Jakarta Sans', sans-serif; }
.soulfeast-refund-section .soulfeast-pill-text { font-size: 0.875rem; color: #5A6B5F; line-height: 1.45; }
.soulfeast-refund-section .soulfeast-table-wrapper { border: 1px solid #E6DDD4; border-radius: 12px; overflow: hidden; }
.soulfeast-refund-section .soulfeast-table { margin-bottom: 0; background-color: #FFFFFF; }
.soulfeast-refund-section .soulfeast-thead { background-color: #F5EFEB; }
.soulfeast-refund-section .soulfeast-th { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: #1F2E23; padding: 0.875rem 1rem; border-bottom: 1px solid #E6DDD4; white-space: nowrap; }
.soulfeast-refund-section .soulfeast-td { font-size: 0.875rem; color: #4A5B4E; padding: 0.875rem 1rem; vertical-align: middle; border-bottom: 1px solid #E6DDD4; }
.soulfeast-refund-section .soulfeast-tbody tr:last-child .soulfeast-td { border-bottom: none; }
.soulfeast-refund-section .soulfeast-text-small { font-size: 0.8125rem; line-height: 1.5; }
.soulfeast-refund-section .soulfeast-muted { color: #8A998E; }
.soulfeast-refund-section .soulfeast-nav-footer { background-color: #F5EFEB; border: 1px solid #E6DDD4; }
.soulfeast-refund-section .soulfeast-nav-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 600; color: #1F2E23; }
.soulfeast-refund-section .soulfeast-nav-lead { font-size: 0.9rem; color: #5A6B5F; }
.soulfeast-refund-section .soulfeast-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.65rem 1.4rem; border-radius: 9999px; font-weight: 600; font-size: 0.875rem; transition: all 240ms cubic-bezier(0.25, 1, 0.5, 1); }
.soulfeast-refund-section .soulfeast-btn-primary { background-color: #2D5A3C; color: #FFFFFF; border: 1px solid #2D5A3C; }
.soulfeast-refund-section .soulfeast-btn-primary:hover { background-color: #22452E; color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(45, 90, 60, 0.2); }
.soulfeast-refund-section .soulfeast-btn-secondary { background-color: #FFFFFF; color: #2D5A3C; border: 1px solid #D4C8BC; }
.soulfeast-refund-section .soulfeast-btn-secondary:hover { background-color: #E8F0EA; color: #183221; border-color: #2D5A3C; transform: translateY(-2px); }

.comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(31, 46, 35, 0.04), 0 1px 2px rgba(31, 46, 35, 0.02);
    transition: box-shadow 240ms cubic-bezier(0.25, 1, 0.5, 1), transform 240ms cubic-bezier(0.25, 1, 0.5, 1);
}

.comment-card:hover {
    box-shadow: 0 8px 24px rgba(31, 46, 35, 0.06), 0 2px 6px rgba(31, 46, 35, 0.03);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    object-fit: cover;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comment-avatar-primary {
    background: linear-gradient(135deg, #2D5A3C 0%, #3D734E 100%);
    color: #FFFFFF;
    border: 2px solid #E8F0EA;
}

.comment-avatar-initials {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.comment-author {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1F2E23;
}

.comment-badge-verified {
    background-color: #F1F6EC;
    color: #2D5A3C;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    border: 1px solid #D9E8D1;
}

.comment-icon-sm {
    width: 14px;
    height: 14px;
    color: #7FA355;
}

.comment-rating {
    display: flex;
    align-items: center;
}

.comment-star {
    width: 16px;
    height: 16px;
    color: #E6DDD4;
}

.comment-star.filled {
    color: #D87D4A;
}

.comment-timestamp {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    color: #8A998E;
}

.comment-tag-diet {
    background-color: #FAF7F2;
    color: #5A6B5F;
    border: 1px solid #E6DDD4;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
}

.comment-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #7FA355;
}

.comment-headline {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2E23;
    letter-spacing: -0.01em;
}

.comment-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5A6B5F;
}

.comment-footer {
    border-top-color: #F5EFEB !important;
}

.comment-action-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #5A6B5F;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 240ms cubic-bezier(0.25, 1, 0.5, 1);
}

.comment-action-btn:hover {
    background-color: #E8F0EA;
    color: #2D5A3C;
}

.comment-icon-action {
    width: 16px;
    height: 16px;
}

.comment-purchase-badge {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    color: #8A998E;
    font-weight: 500;
}

.reply-thread {
    border-left: 2px solid #E6DDD4 !important;
}

.reply-comment-item {
    background-color: #F5EFEB;
    border: 1px solid #D4C8BC;
    border-radius: 16px;
}

.comment-avatar-reply {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #D87D4A 0%, #C26837 100%);
    color: #FFFFFF;
    border: 2px solid #FDF2EB;
}

.reply-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1F2E23;
}

.comment-badge-official {
    background-color: #2D5A3C;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.comment-badge-official .comment-icon-sm {
    color: #7FA355;
}

.reply-actions {
    border-top-color: #E6DDD4 !important;
}

.comment-status-note {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    color: #5A6B5F;
    font-weight: 500;
}


/* ===== PAGE TEMPLATE: catalog ===== */
.sfb-main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    box-shadow: 0 4px 20px rgba(31, 46, 35, 0.06);
    background-color: #FAF7F2;
}

.sfb-main-header .sfb-header-announcement {
    background-color: #2D5A3C;
    padding: 0.45rem 1rem;
}

.sfb-main-header .sfb-announcement-text {
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.sfb-main-header .sfb-navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6DDD4;
    padding: 0.875rem 0;
}

.sfb-main-header .sfb-logo-img {
    max-width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.sfb-main-header .sfb-brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1F2E23;
    letter-spacing: -0.02em;
}

.sfb-main-header .sfb-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1F2E23;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: color 0.24s ease, background-color 0.24s ease;
}

.sfb-main-header .sfb-nav-link:hover,
.sfb-main-header .sfb-nav-link:focus {
    color: #2D5A3C;
    background-color: #E8F0EA;
}

.sfb-main-header .sfb-toggler {
    border: 1px solid #D4C8BC;
    background-color: #F5EFEB;
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    color: #1F2E23;
}

.sfb-main-header .sfb-toggler:focus {
    box-shadow: 0 0 0 2px #2D5A3C;
    outline: none;
}

.sfb-main-header .sfb-menu-svg {
    width: 24px;
    height: 24px;
}

.sfb-main-header .sfb-cart-svg {
    width: 22px;
    height: 22px;
}

.sfb-main-header .sfb-cart-btn-mobile {
    background-color: #F5EFEB;
    border: 1px solid #E6DDD4;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1F2E23;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    padding: 0;
}

.sfb-main-header .sfb-cart-btn-mobile:hover {
    background-color: #E8F0EA;
    border-color: #2D5A3C;
    color: #2D5A3C;
}

.sfb-main-header .sfb-cart-btn-desktop {
    background-color: #2D5A3C;
    border: 1px solid #2D5A3C;
    color: #FFFFFF;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.24s ease, transform 0.12s ease, box-shadow 0.24s ease;
}

.sfb-main-header .sfb-cart-btn-desktop:hover {
    background-color: #22452E;
    border-color: #22452E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 90, 60, 0.25);
    color: #FFFFFF;
}

.sfb-main-header .sfb-cart-btn-desktop:active {
    transform: translateY(0);
}

.sfb-main-header .sfb-cart-icon-box {
    width: 22px;
    height: 22px;
}

.sfb-main-header .sfb-cart-badge {
    top: -4px;
    right: -10px;
    background-color: #D87D4A;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2em 0.45em;
    min-width: 18px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .sfb-main-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E6DDD4;
        margin-top: 0.75rem;
        padding: 1rem 0.5rem;
        border-radius: 12px;
    }

    .sfb-main-header .sfb-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .sfb-main-header .sfb-brand-title {
        font-size: 1.15rem;
    }
}

.sfp-product-page {
    background-color: #FAF7F2;
    min-height: 80vh;
}

.sfp-product-page .sf-border {
    border-color: #E6DDD4 !important;
}

.sfp-product-page .sfp-crumb-link {
    color: #5A6B5F;
    text-decoration: none;
    font-size: 0.875rem;
}

.sfp-product-page .sfp-crumb-link:hover {
    color: #2D5A3C;
    text-decoration: underline;
}

.sfp-product-page .breadcrumb-item.active {
    color: #1F2E23;
    font-size: 0.875rem;
    font-weight: 600;
}

.sfp-product-page .sfp-image-showcase {
    aspect-ratio: 1/1;
    background-color: #F5EFEB;
    border: 1px solid #E6DDD4;
    max-height: 520px;
}

.sfp-product-page .sfp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sfp-product-page .sfp-tag-badge {
    background-color: #2D5A3C;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.sfp-product-page .sfp-category-pill {
    background-color: #F1F6EC;
    color: #2D5A3C;
    border: 1px solid #7FA355;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
}

.sfp-product-page .sfp-star-icon {
    width: 16px;
    height: 16px;
    color: #D87D4A;
}

.sfp-product-page .sfp-rating-val {
    font-weight: 700;
    color: #1F2E23;
    font-size: 0.9375rem;
}

.sfp-product-page .sfp-rating-count {
    color: #5A6B5F;
    font-size: 0.8125rem;
}

.sfp-product-page .sfp-product-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2E23;
    line-height: 1.2;
}

.sfp-product-page .sfp-price-box {
    background-color: #F5EFEB;
    border: 1px solid #E6DDD4;
}

.sfp-product-page .sfp-price-label {
    font-size: 0.95rem;
    color: #5A6B5F;
    font-weight: 500;
}

.sfp-product-page .sfp-current-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #2D5A3C;
    line-height: 1;
}

.sfp-product-page .sfp-tax-note {
    font-size: 0.8125rem;
    color: #5A6B5F;
}

.sfp-product-page .sfp-desc-text {
    color: #5A6B5F;
    font-size: 1rem;
    line-height: 1.6;
}

.sfp-product-page .sfp-purchase-section {
    background-color: #F8F5F0;
    border: 1px solid #E6DDD4;
}

.sfp-product-page .sfp-quantity-selector {
    background-color: #FFFFFF;
    border: 1px solid #D4C8BC;
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    min-width: 120px;
}

.sfp-product-page .sfp-qty-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2E23;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
}

.sfp-product-page .sfp-qty-btn:hover {
    background-color: #E8F0EA;
    color: #2D5A3C;
}

.sfp-product-page .sfp-qty-value {
    font-weight: 600;
    color: #1F2E23;
    font-size: 1rem;
    min-width: 24px;
    text-align: center;
}

.sfp-product-page .sfp-add-basket-btn {
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.24s ease, transform 0.12s ease;
    cursor: pointer;
    text-decoration: none;
}

.sfp-product-page .sfp-add-basket-btn:hover {
    background-color: #22452E;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.sfp-product-page .sfp-btn-basket-icon {
    width: 20px;
    height: 20px;
}

.sfp-product-page .sfp-feature-pill {
    background-color: #FFFFFF;
    border: 1px solid #D4C8BC;
    color: #1F2E23;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
}

.sfp-product-page .sfp-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    color: #5A6B5F;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.sfp-product-page .sfp-tab-btn.active {
    color: #2D5A3C;
    border-color: #2D5A3C;
}

.sfp-product-page .sfp-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1F2E23;
}

.sfp-product-page .sfp-tab-text {
    color: #5A6B5F;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sfp-product-page .sfp-stat-card {
    background-color: #FAF7F2;
    border: 1px solid #E6DDD4;
}

.sfp-product-page .sfp-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2D5A3C;
}

.sfp-product-page .sfp-stat-label {
    font-size: 0.8125rem;
    color: #5A6B5F;
    font-weight: 500;
}

.sfp-product-page .sfp-spec-name {
    color: #5A6B5F;
    font-weight: 500;
    font-size: 0.9375rem;
}

.sfp-product-page .sfp-spec-val {
    color: #1F2E23;
    font-weight: 600;
    font-size: 0.9375rem;
}

.sfp-product-page .sfp-tip-box {
    background-color: #F1F6EC;
    border-color: #D6E5D9 !important;
}

.sfp-product-page .sfp-reviews-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2E23;
}

.sfp-product-page .sfp-reviews-subtitle {
    font-size: 0.9rem;
    color: #5A6B5F;
}

.sfp-product-page .sfp-write-review-toggle-btn {
    background-color: #D87D4A;
    color: #FFFFFF;
    border: none;
    border-radius: 9999px;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sfp-product-page .sfp-write-review-toggle-btn:hover {
    background-color: #C26837;
    color: #FFFFFF;
}

.comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DDD4;
    border-radius: 16px;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.comment-avatar-primary {
    background-color: #2D5A3C;
    color: #FFFFFF;
}

.comment-avatar-reply {
    background-color: #D87D4A;
    color: #FFFFFF;
}

.comment-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1F2E23;
}

.comment-badge-verified {
    background-color: #F1F6EC;
    color: #2E7D32;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
}

.comment-badge-official {
    background-color: #FDF2EB;
    color: #D87D4A;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
}

.comment-icon-sm {
    width: 14px;
    height: 14px;
}

.comment-star {
    width: 14px;
    height: 14px;
}

.comment-star.filled {
    color: #D87D4A;
}

.comment-timestamp {
    font-size: 0.75rem;
    color: #8A998E;
}

.comment-tag-diet {
    font-size: 0.8125rem;
    color: #5A6B5F;
    background-color: #FAF7F2;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid #E6DDD4;
}

.comment-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #7FA355;
}

.comment-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F2E23;
}

.comment-text {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #5A6B5F;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: #5A6B5F;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.comment-action-btn:hover {
    color: #2D5A3C;
    background-color: #E8F0EA;
}

.comment-action-btn.active {
    color: #2D5A3C;
    font-weight: 600;
}

.comment-icon-action {
    width: 16px;
    height: 16px;
}

.comment-purchase-badge,
.comment-status-note {
    font-size: 0.75rem;
    color: #8A998E;
    font-weight: 500;
}

.reply-thread {
    border-left: 2px solid #E6DDD4 !important;
}

.sfp-review-form-card {
    border: 1px solid #D4C8BC;
    background-color: #FAF7F2 !important;
}

.sfp-form-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2E23;
}

.sfp-form-desc {
    font-size: 0.875rem;
    color: #5A6B5F;
}

.sfp-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F2E23;
    margin-bottom: 0.35rem;
    display: block;
}

.sfp-input,
.sfp-textarea {
    background-color: #FFFFFF !important;
    border: 1px solid #D4C8BC !important;
    color: #1F2E23 !important;
    font-size: 0.9375rem;
    border-radius: 8px;
}

.sfp-input::placeholder,
.sfp-textarea::placeholder {
    color: #8A998E !important;
    opacity: 1;
}

.sfp-input:focus,
.sfp-textarea:focus {
    border-color: #2D5A3C !important;
    box-shadow: 0 0 0 2px rgba(45, 90, 60, 0.15) !important;
    outline: none;
}

.sfp-star-choice-btn {
    background: none;
    border: none;
    font-size: 1.35rem;
    color: #D4C8BC;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    transition: color 0.15s ease;
}

.sfp-star-choice-btn.active {
    color: #D87D4A;
}

.sfp-rating-text-hint {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F2E23;
}

.sfp-submit-review-btn {
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sfp-submit-review-btn:hover {
    background-color: #22452E;
    color: #FFFFFF;
}

.sfp-related-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2E23;
}

.sfp-all-link {
    color: #2D5A3C;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
}

.sfp-all-link:hover {
    text-decoration: underline;
}

.sfp-related-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    border: 1px solid #E6DDD4;
}

.sfp-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(31, 46, 35, 0.08);
}

.sfp-related-img-wrap {
    aspect-ratio: 1/1;
    background-color: #F5EFEB;
}

.sfp-mini-badge {
    background-color: rgba(255, 255, 255, 0.92);
    color: #1F2E23;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sfp-related-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1F2E23;
    line-height: 1.3;
}

.sfp-related-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #5A6B5F !important;
}

.sfp-rel-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2D5A3C;
}

.sfp-mini-cart-btn {
    background-color: #2D5A3C;
    color: #FFFFFF;
    border: none;
    border-radius: 9999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sfp-mini-cart-btn:hover {
    background-color: #22452E;
    color: #FFFFFF;
}

.sf-footer {
    background-color: #ECE4DC;
    color: #1F2E23;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.sf-footer .sf-footer-border {
    border-color: #D4C8BC !important;
}

.sf-footer .sf-footer-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.sf-footer .sf-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5A3C;
    letter-spacing: -0.01em;
}

.sf-footer .sf-brand-tagline {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5A6B5F;
    max-width: 320px;
}

.sf-footer .sf-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1F2E23;
    letter-spacing: -0.01em;
}

.sf-footer .sf-footer-link {
    color: #5A6B5F;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 240ms cubic-bezier(0.25, 1, 0.5, 1), transform 240ms ease;
    display: inline-block;
}

.sf-footer .sf-footer-link:hover,
.sf-footer .sf-footer-link:focus {
    color: #2D5A3C;
    transform: translateX(2px);
}

.sf-footer .sf-copyright {
    font-size: 0.8125rem;
    color: #5A6B5F;
}

.sf-footer .sf-payment-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5A6B5F;
}

.sf-footer .sf-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #FFFFFF;
    padding: 1px;
    box-shadow: 0 1px 3px rgba(31, 46, 35, 0.05);
}

.sf-footer .sf-payment-icon {
    display: block;
    width: 44px;
    height: 28px;
}

@media (max-width: 767.98px) {
    .sfp-product-page .sfp-product-title {
        font-size: 1.35rem;
        hyphens: auto;
    }

    .sfp-product-page .sfp-current-price {
        font-size: 1.45rem;
    }

    .sf-footer .sf-footer-heading {
        font-size: 0.9375rem;
        hyphens: auto;
    }

    .sf-footer .sf-brand-name {
        font-size: 1.125rem;
    }

    .sf-footer .sf-payment-methods {
        width: 100%;
    }
}

/* ===== Specifications & Origin — mobile alignment fix ===== */
@media (max-width: 767.98px) {
    .sfp-product-page .sfp-spec-list {
        gap: 0 !important;
    }

    .sfp-product-page .sfp-spec-list li {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 0.75rem 0.5rem !important;
        border-bottom: 1px solid #E2E8E0 !important;
        gap: 1rem !important;
    }

    .sfp-product-page .sfp-spec-name {
        flex: 0 0 38% !important;
        max-width: 38% !important;
        text-align: left !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        padding-right: 0.5rem !important;
        color: #5A6B5F !important;
        font-weight: 600 !important;
        font-size: 0.875rem !important;
    }

    .sfp-product-page .sfp-spec-val {
        flex: 1 1 62% !important;
        max-width: 62% !important;
        text-align: left !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        padding-left: 0.5rem !important;
        border-left: 1px solid #E2E8E0 !important;
        color: #1F2E23 !important;
        font-weight: 500 !important;
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }
}