:root {
    --color-terracotta: #C85A32;
    --color-terracotta-hover: #B34E2A;
    --color-terracotta-light: #FBEFEB;
    --color-terracotta-dark: #8C381B;
    --color-olive: #5E6D4E;
    --color-olive-hover: #4F5D41;
    --color-olive-light: #EDF0EB;
    --color-olive-dark: #3B4531;
    --color-sand: #D9C3A5;
    --color-warm-amber: #E28743;
    --color-sage: #8A9A86;
    --color-clay: #A75D43;
    --color-bg-main: #FAF7F2;
    --color-bg-surface: #FFFFFF;
    --color-bg-warm: #F5EFEB;
    --color-bg-subtle: #EFE9E1;
    --color-bg-muted: #E8E1D7;
    --color-text-primary: #2C2623;
    --color-text-secondary: #665E58;
    --color-text-muted: #8E847C;
    --color-border-subtle: #E6DED5;
    --color-border-default: #D8CEBE;
    --color-border-focus: #C85A32;
    --font-headings: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(44, 38, 35, 0.04);
    --shadow-md: 0 6px 16px rgba(44, 38, 35, 0.06);
    --shadow-lg: 0 12px 28px rgba(44, 38, 35, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body.endurelite-body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--color-text-primary);
    font-weight: 700;
    margin-top: 0;
}

a {
    color: var(--color-terracotta);
    text-decoration: none;
}

a:hover {
    color: var(--color-terracotta-hover);
}

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

.btn-primary {
    background-color: var(--color-terracotta) !important;
    border-color: var(--color-terracotta) !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-terracotta-hover) !important;
    border-color: var(--color-terracotta-hover) !important;
    color: #FFFFFF !important;
}

.btn-secondary {
    background-color: var(--color-olive) !important;
    border-color: var(--color-olive) !important;
    color: #FFFFFF !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-olive-hover) !important;
    border-color: var(--color-olive-hover) !important;
    color: #FFFFFF !important;
}

.btn-outline-secondary {
    border-color: var(--color-border-default) !important;
    color: var(--color-text-primary) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--color-bg-warm) !important;
    border-color: var(--color-terracotta) !important;
    color: var(--color-terracotta) !important;
}

:focus-visible {
    outline: 2px solid var(--color-border-focus);
    outline-offset: 2px;
}

/* ===== header ===== */
.endurelite-header {
    background-color: #FAF7F2;
    border-bottom: 1px solid #E6DED5;
    z-index: 1030;
}

.endurelite-header .navbar-brand {
    text-decoration: none;
}

.endurelite-header .endurelite-logo-img {
    width: 42px;
    height: 42px;
    max-width: 42px;
    object-fit: contain;
    display: block;
}

.endurelite-header .endurelite-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #2C2623;
    line-height: 1.2;
}

.endurelite-header .endurelite-nav-list {
    gap: 8px;
}

.endurelite-header .endurelite-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #665E58;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.endurelite-header .endurelite-nav-link:hover,
.endurelite-header .endurelite-nav-link:focus {
    color: #C85A32;
    background-color: #F5EFEB;
}

.endurelite-header .endurelite-nav-link.active {
    color: #C85A32;
    font-weight: 600;
}

.endurelite-header .endurelite-toggler {
    border: 1px solid #D8CEBE;
    background-color: #FFFFFF;
    color: #2C2623;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: none;
}

.endurelite-header .endurelite-toggler:focus {
    outline: 2px solid #C85A32;
    box-shadow: none;
}

.endurelite-header .endurelite-cart-btn {
    background-color: #FFFFFF;
    color: #2C2623;
    border: 1.5px solid #D8CEBE;
    border-radius: 9999px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.endurelite-header .endurelite-cart-btn:hover,
.endurelite-header .endurelite-cart-btn:focus {
    background-color: #F5EFEB;
    border-color: #C85A32;
    color: #C85A32;
}

.endurelite-header .endurelite-cart-label {
    line-height: 1;
}

.endurelite-header .endurelite-badge {
    background-color: #C85A32;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 7px;
    border: 2px solid #FAF7F2;
}

@media (max-width: 991.98px) {
    .endurelite-header .navbar-collapse {
        background-color: #FAF7F2;
        padding: 16px 0;
        border-top: 1px solid #E6DED5;
        margin-top: 8px;
    }

    .endurelite-header .endurelite-nav-link {
        padding: 10px 14px;
        font-size: 0.875rem;
    }

    .endurelite-header .endurelite-cart-btn {
        padding: 8px 12px;
    }
}

/* ===== hero ===== */
.endurelite-hero {
    position: relative;
    min-height: 100vh;
    background-color: #2C2623;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box
}

.endurelite-hero__video-wrapper {
    pointer-events: none;
    z-index: 1
}

.endurelite-hero__video {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.endurelite-hero__overlay {
    background: linear-gradient(180deg, rgba(44, 38, 35, 0.78) 0%, rgba(44, 38, 35, 0.65) 50%, rgba(44, 38, 35, 0.92) 100%)
}

.endurelite-hero__top-spacer {
    height: 8px
}

.endurelite-hero__badge {
    background: rgba(251, 239, 235, 0.12);
    border: 1px solid rgba(200, 90, 50, 0.35);
    border-radius: 9999px
}

.endurelite-hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: #C85A32;
    border-radius: 50%;
    display: inline-block
}

.endurelite-hero__badge-text {
    font-size: 0.8125rem;
    color: #E5DFD8;
    letter-spacing: 0.02em;
    font-weight: 500
}

.endurelite-hero__title {
    font-size: 2rem;
    line-height: 1.25;
    color: #FFFFFF;
    letter-spacing: -0.02em
}

.endurelite-hero__desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #E5DFD8;
    max-width: 620px
}

.endurelite-hero__btn-primary {
    background-color: #C85A32;
    color: #FFFFFF;
    border: 1px solid #C85A32;
    border-radius: 9999px;
    font-weight: 600;
    padding: 12px 30px;
    min-height: 48px;
    transition: background-color .2s ease, border-color .2s ease
}

.endurelite-hero__btn-primary:hover {
    background-color: #B34E2A;
    border-color: #B34E2A;
    color: #FFFFFF
}

.endurelite-hero__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.5px solid #D8CEBE;
    border-radius: 9999px;
    font-weight: 600;
    padding: 11px 28px;
    min-height: 48px;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease
}

.endurelite-hero__btn-secondary:hover {
    background-color: #F5EFEB;
    border-color: #C85A32;
    color: #C85A32
}

.endurelite-hero__btn-icon {
    width: 18px;
    height: 18px
}

.endurelite-hero__cards-strip {
    background: rgba(44, 38, 35, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(230, 222, 213, 0.18)
}

.endurelite-hero__strip-title {
    font-size: 1.125rem;
    color: #FFFFFF;
    font-weight: 600
}

.endurelite-hero__strip-link {
    font-size: 0.875rem;
    color: #D9C3A5;
    font-weight: 500;
    transition: color .2s ease
}

.endurelite-hero__strip-link:hover {
    color: #FFFFFF
}

.endurelite-hero__strip-arrow {
    width: 16px;
    height: 16px
}

.endurelite-hero__card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(230, 222, 213, 0.2);
    border-radius: 14px;
    padding: 14px
}

.endurelite-hero__card-thumb-link {
    width: 72px;
    height: 72px;
    display: block
}

.endurelite-hero__card-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background-color: #FAF7F2
}

.endurelite-hero__card-tag {
    font-size: 0.6875rem;
    background: rgba(200, 90, 50, 0.25);
    color: #FBEFEB;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 4px
}

.endurelite-hero__card-heading {
    line-height: 1.3
}

.endurelite-hero__card-title {
    font-size: 0.875rem;
    color: #FFFFFF;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s ease
}

.endurelite-hero__card-title:hover {
    color: #D9C3A5
}

.endurelite-hero__card-price {
    font-size: 0.9375rem;
    color: #E28743;
    font-weight: 700;
    display: block;
    margin-top: 2px
}

.endurelite-hero__card-desc {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #E5DFD8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.endurelite-hero__btn-cart {
    background-color: #5E6D4E;
    color: #FFFFFF;
    border: 1px solid #5E6D4E;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 16px;
    min-height: 38px;
    transition: background-color .2s ease, border-color .2s ease
}

.endurelite-hero__btn-cart:hover {
    background-color: #4F5D41;
    border-color: #4F5D41;
    color: #FFFFFF
}

@media(max-width:767.98px) {
    .endurelite-hero__title {
        font-size: 1.125rem;
        line-height: 1.3;
        hyphens: auto
    }

    .endurelite-hero__strip-title {
        font-size: 1rem;
        line-height: 1.3
    }

    .endurelite-hero__card-heading {
        font-size: 0.875rem;
        line-height: 1.3
    }

    .endurelite-hero__desc {
        font-size: 0.875rem;
        line-height: 1.5
    }

    .endurelite-hero__btn-primary,
    .endurelite-hero__btn-secondary {
        width: 100%
    }
}

/* ===== category_tiles ===== */
.category-tiles-section {
    background-color: #FAF7F2;
    position: relative;
}

.category-tiles-section__eyebrow {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C85A32;
    background-color: #FBEFEB;
    padding: 6px 14px;
    border-radius: 9999px;
}

.category-tiles-section__heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #2C2623;
    letter-spacing: -0.02em;
}

.category-tiles-section__lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #665E58;
}

.category-tiles-section__card {
    background: linear-gradient(135deg, #FAF7F2 0%, #F5EFEB 100%);
    border: 1px solid #E8E1D7;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.category-tiles-section__card:hover {
    border-color: #C85A32;
    background: #FFFFFF;
    box-shadow: 0 6px 16px rgba(44, 38, 35, 0.06);
}

.category-tiles-section__card:focus-visible {
    outline: 2px solid #C85A32;
    outline-offset: 2px;
}

.category-tiles-section__icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C85A32;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.category-tiles-section__card:hover .category-tiles-section__icon-wrapper {
    background-color: #C85A32;
    color: #FFFFFF;
}

.category-tiles-section__icon {
    width: 24px;
    height: 24px;
}

.category-tiles-section__badge {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5E6D4E;
    background-color: #EDF0EB;
    padding: 4px 10px;
    border-radius: 9999px;
}

.category-tiles-section__title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #2C2623;
}

.category-tiles-section__desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #665E58;
}

.category-tiles-section__footer {
    border-top: 1px solid #E6DED5;
}

.category-tiles-section__action-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2C2623;
    transition: color 0.2s ease;
}

.category-tiles-section__card:hover .category-tiles-section__action-text {
    color: #C85A32;
}

.category-tiles-section__arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    border: 1px solid #D8CEBE;
    color: #2C2623;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-tiles-section__card:hover .category-tiles-section__arrow-btn {
    background-color: #C85A32;
    border-color: #C85A32;
    color: #FFFFFF;
}

.category-tiles-section__arrow-icon {
    width: 16px;
    height: 16px;
}

.category-tiles-section__btn-all {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #C85A32;
    color: #FFFFFF;
    border: 1px solid #C85A32;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 32px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-tiles-section__btn-all:hover {
    background-color: #B34E2A;
    border-color: #B34E2A;
    color: #FFFFFF;
}

.category-tiles-section__btn-all:focus-visible {
    outline: 2px solid #C85A32;
    outline-offset: 2px;
}

.category-tiles-section__btn-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 767.98px) {
    .category-tiles-section__heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .category-tiles-section__title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .category-tiles-section__lead {
        font-size: 0.875rem;
    }

    .category-tiles-section__card {
        padding: 18px;
    }

    .category-tiles-section__btn-all {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ===== expert_picks ===== */
.expert-picks-block {
    background-color: #FAF7F2;
    padding-left: 12px;
    padding-right: 12px
}

.expert-picks-block__badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #FBEFEB;
    color: #C85A32;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(200, 90, 50, 0.18)
}

.expert-picks-block__heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2C2623;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3
}

.expert-picks-block__subtitle {
    color: #665E58;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 640px
}

.expert-picks-block__card {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04)
}

.expert-picks-block__img-wrap {
    position: relative;
    background-color: #F5EFEB;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-bottom: 1px solid #E6DED5
}

.expert-picks-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.expert-picks-block__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #5E6D4E;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
    z-index: 2
}

.expert-picks-block__title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0
}

.expert-picks-block__link {
    color: #2C2623;
    text-decoration: none
}

.expert-picks-block__link:hover {
    color: #C85A32
}

.expert-picks-block__reason {
    background-color: #FAF7F2;
    border: 1px solid #EAE2D8;
    border-radius: 10px;
    padding: 8px 10px
}

.expert-picks-block__reason-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #C85A32;
    margin-bottom: 2px
}

.expert-picks-block__reason-text {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #665E58
}

.expert-picks-block__spec {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.expert-picks-block__spec-item {
    font-size: 0.75rem;
    background-color: #EDF0EB;
    color: #5E6D4E;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600
}

.expert-picks-block__price-box {
    display: flex;
    align-items: baseline;
    color: #2C2623
}

.expert-picks-block__price-currency {
    font-size: 0.875rem;
    font-weight: 700;
    color: #C85A32;
    margin-right: 2px
}

.expert-picks-block__price-val {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #C85A32
}

.expert-picks-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #C85A32;
    color: #FFFFFF;
    border: 1px solid #C85A32;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 14px;
    cursor: pointer;
    line-height: 1
}

.expert-picks-block__btn:hover {
    background-color: #B34E2A;
    border-color: #B34E2A;
    color: #FFFFFF
}

.expert-picks-block__btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

@media(max-width:767.98px) {
    .expert-picks-block__heading {
        font-size: 16px;
        hyphens: auto
    }

    .expert-picks-block__title {
        font-size: 14px;
        hyphens: auto
    }

    .expert-picks-block__btn {
        padding: 8px 12px;
        font-size: 0.75rem
    }
}

/* ===== back_in_stock ===== */
.back-in-stock-section {
    background-color: #FAF7F2;
    overflow: hidden;
}

.back-in-stock-section__badge {
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-size: 0.8125rem;
    font-weight: 600;
}

.back-in-stock-section__badge-icon {
    color: #5E6D4E;
    stroke: #5E6D4E;
}

.back-in-stock-section__title {
    color: #2C2623;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.3;
}

.back-in-stock-section__subtitle {
    color: #665E58;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 620px;
}

.back-in-stock-section__card {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.back-in-stock-section__card:hover {
    border-color: #D8CEBE;
    box-shadow: 0 6px 16px rgba(44, 38, 35, 0.08);
}

.back-in-stock-section__img-wrapper {
    background-color: #F5EFEB;
    border-radius: 12px;
    margin: 12px 12px 0 12px;
    padding: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-in-stock-section__img-link {
    width: 100%;
    height: 100%;
}

.back-in-stock-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.back-in-stock-section__status-badge {
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
    z-index: 2;
}

.back-in-stock-section__item-tag {
    color: #8E847C;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.back-in-stock-section__item-title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.back-in-stock-section__item-title-link {
    color: #2C2623;
    transition: color 0.2s ease;
}

.back-in-stock-section__item-title-link:hover {
    color: #C85A32;
}

.back-in-stock-section__item-desc {
    color: #665E58;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.back-in-stock-section__price-box {
    display: flex;
    align-items: baseline;
}

.back-in-stock-section__currency {
    color: #C85A32;
    font-size: 0.875rem;
    font-weight: 700;
    margin-right: 2px;
}

.back-in-stock-section__price {
    color: #C85A32;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.back-in-stock-section__stock-info {
    font-size: 0.75rem;
    color: #5E6D4E;
    background-color: #EDF0EB;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 500;
}

.back-in-stock-section__btn-cart {
    background-color: #C85A32;
    color: #FFFFFF;
    border: 1px solid #C85A32;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 10px 16px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.back-in-stock-section__btn-cart:hover,
.back-in-stock-section__btn-cart:focus {
    background-color: #B34E2A;
    border-color: #B34E2A;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .back-in-stock-section__title {
        font-size: 1rem;
        hyphens: auto;
    }

    .back-in-stock-section__subtitle {
        font-size: 0.875rem;
    }

    .back-in-stock-section__item-title {
        font-size: 0.875rem;
    }
}

/* ===== latest_news ===== */
.latest-news-section {
    background-color: #FAF7F2;
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative
}

.latest-news-section__badge {
    display: inline-block;
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 12px;
    letter-spacing: 0.02em
}

.latest-news-section__title {
    color: #2C2623;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px
}

.latest-news-section__subtitle {
    color: #665E58;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0
}

.latest-news-card {
    background: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 18px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease
}

.latest-news-card:hover {
    border-color: #C85A32;
    box-shadow: 0 6px 16px rgba(44, 38, 35, 0.08)
}

.latest-news-card__img-link {
    display: block;
    width: 100%;
    background-color: #F5EFEB;
    overflow: hidden
}

.latest-news-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.latest-news-card__body {
    padding: 24px
}

.latest-news-card__meta {
    display: flex;
    align-items: center;
    color: #8E847C;
    font-size: 0.875rem;
    margin-bottom: 10px;
    font-weight: 500
}

.latest-news-card__divider {
    margin-left: 8px;
    margin-right: 8px;
    color: #D8CEBE
}

.latest-news-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px
}

.latest-news-card__title-link {
    color: #2C2623;
    text-decoration: none;
    transition: color 0.2s ease
}

.latest-news-card__title-link:hover {
    color: #C85A32
}

.latest-news-card__summary {
    color: #665E58;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.latest-news-card__action {
    display: flex;
    align-items: center
}

.latest-news-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #C85A32;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease
}

.latest-news-card__readmore:hover {
    color: #B34E2A
}

.latest-news-card__icon {
    width: 18px;
    height: 18px
}

.latest-news-section__all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5E6D4E;
    color: #FFFFFF;
    border: 1px solid #5E6D4E;
    border-radius: 9999px;
    font-weight: 600;
    padding: 12px 32px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease
}

.latest-news-section__all-btn:hover {
    background-color: #4F5D41;
    border-color: #4F5D41;
    color: #FFFFFF
}

@media (min-width:768px) {
    .latest-news-section {
        padding-top: 72px;
        padding-bottom: 72px
    }
}

@media (min-width:992px) {
    .latest-news-section {
        padding-top: 96px;
        padding-bottom: 96px
    }
}

@media (max-width:767.98px) {
    .latest-news-section__title {
        font-size: 16px;
        hyphens: auto
    }

    .latest-news-card__title {
        font-size: 14px;
        hyphens: auto
    }

    .latest-news-card__img {
        height: 180px
    }

    .latest-news-card__body {
        padding: 18px
    }
}

/* ===== consultation_info ===== */
.block-consultation-info {
    background-color: #FAF7F2;
    color: #2C2623;
}

.block-consultation-info__badge {
    background-color: #FBEFEB;
    color: #C85A32;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.block-consultation-info__title {
    color: #2C2623;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.875rem;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .block-consultation-info__title {
        font-size: 1rem;
        hyphens: auto;
    }
}

.block-consultation-info__subtitle {
    color: #665E58;
    font-size: 1rem;
    line-height: 1.6;
}

.block-consultation-info__card {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    box-shadow: 0 4px 14px rgba(44, 38, 35, 0.04);
}

.block-consultation-info__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #EDF0EB;
    color: #5E6D4E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.block-consultation-info__icon-box--primary {
    background-color: #FBEFEB;
    color: #C85A32;
}

.block-consultation-info__svg {
    width: 22px;
    height: 22px;
}

.block-consultation-info__card-title {
    color: #2C2623;
}

@media (max-width: 767.98px) {
    .block-consultation-info__card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

.block-consultation-info__text-dark {
    color: #2C2623;
}

.block-consultation-info__text-muted {
    color: #665E58;
}

.block-consultation-info__time-item {
    background-color: #FAF7F2;
    border: 1px solid #EFE9E1;
}

.block-consultation-info__status-pill {
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-weight: 600;
    font-size: 0.75rem;
}

.block-consultation-info__status-pill--subtle {
    background-color: #F5EFEB;
    color: #8E847C;
}

.block-consultation-info__notice {
    background-color: #F5EFEB;
    border: 1px dashed #D8CEBE;
}

.block-consultation-info__mini-svg {
    width: 18px;
    height: 18px;
    color: #5E6D4E;
}

.block-consultation-info__live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5E6D4E;
    display: inline-block;
}

.block-consultation-info__live-text {
    color: #5E6D4E;
    font-size: 0.875rem;
}

.block-consultation-info__label {
    color: #8E847C;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.block-consultation-info__topic-btn {
    background-color: #FAF7F2;
    border: 1.5px solid #E6DED5;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.block-consultation-info__topic-btn:hover {
    background-color: #F5EFEB;
    border-color: #D8CEBE;
}

.block-consultation-info__topic-btn.active {
    background-color: #FBEFEB;
    border-color: #C85A32;
}

.block-consultation-info__topic-title {
    color: #2C2623;
    font-size: 0.9375rem;
}

.block-consultation-info__topic-btn.active .block-consultation-info__topic-title {
    color: #C85A32;
}

.block-consultation-info__topic-desc {
    color: #665E58;
    font-size: 0.8125rem;
}

.block-consultation-info__topic-preview {
    background-color: #FAF7F2;
    border-left: 3px solid #C85A32;
}

.block-consultation-info__badge-subtle {
    background-color: #FBEFEB;
    color: #C85A32;
    font-weight: 600;
}

.block-consultation-info__btn-chat {
    background-color: #C85A32;
    border-color: #C85A32;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 9999px;
    transition: background-color 0.15s ease;
}

.block-consultation-info__btn-chat:hover,
.block-consultation-info__btn-chat:focus {
    background-color: #B34E2A;
    border-color: #B34E2A;
    color: #FFFFFF;
}

.block-consultation-info__btn-svg {
    width: 20px;
    height: 20px;
}

.block-consultation-info__alert {
    background-color: #EDF0EB;
    border: 1px solid #8A9A86;
}

/* ===== footer ===== */
.ee-site-footer {
    background-color: #F5EFEB;
    border-top: 1px solid #E6DED5;
    color: #665E58;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.ee-site-footer .ee-site-footer__main {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}

.ee-site-footer .ee-site-footer__brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #C85A32;
    letter-spacing: -0.02em;
    display: inline-block;
}

.ee-site-footer .ee-site-footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #665E58;
    margin-bottom: 0;
}

.ee-site-footer .ee-site-footer__badge {
    display: inline-flex;
    align-items: center;
    background-color: #EDF0EB;
    border: 1px solid #D8CEBE;
    border-radius: 9999px;
    padding: 4px 12px;
    gap: 8px;
}

.ee-site-footer .ee-site-footer__badge-dot {
    width: 6px;
    height: 6px;
    background-color: #5E6D4E;
    border-radius: 50%;
    display: inline-block;
}

.ee-site-footer .ee-site-footer__badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5E6D4E;
    letter-spacing: 0.02em;
}

.ee-site-footer .ee-site-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2C2623;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.ee-site-footer .ee-site-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ee-site-footer .ee-site-footer__link {
    color: #665E58;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.ee-site-footer .ee-site-footer__link:hover,
.ee-site-footer .ee-site-footer__link:focus {
    color: #C85A32;
    text-decoration: underline;
}

.ee-site-footer .ee-site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2C2623;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ee-site-footer .ee-site-footer__payment-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.ee-site-footer .ee-site-footer__payment-card svg {
    display: block;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(44, 38, 35, 0.08);
}

.ee-site-footer .ee-site-footer__bottom {
    background-color: #FAF7F2;
    border-top: 1px solid #E6DED5;
}

.ee-site-footer .ee-site-footer__copyright {
    font-size: 0.8125rem;
    color: #8E847C;
    font-weight: 500;
}

.ee-site-footer .ee-site-footer__subtext {
    font-size: 0.8125rem;
    color: #8E847C;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .ee-site-footer .ee-site-footer__main {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .ee-site-footer .ee-site-footer__title {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .ee-site-footer .ee-site-footer__link {
        font-size: 0.8125rem;
    }

    .ee-site-footer .ee-site-footer__copyright,
    .ee-site-footer .ee-site-footer__subtext {
        font-size: 0.75rem;
    }
}

/* ===== PAGE: catalog ===== */
.ee-catalog-section { background-color: #FAF7F2; min-height: 80vh; }
.ee-catalog-section .ee-badge { background-color: #FBEFEB; color: #C85A32; }
.ee-catalog-section .ee-catalog-title { color: #2C2623; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 2.25rem; line-height: 1.25; }
.ee-catalog-section .ee-catalog-subtitle { font-size: 1.05rem; line-height: 1.6; max-width: 720px; }
.ee-catalog-section .ee-catalog-toolbar { background-color: #FFFFFF; border: 1px solid #E6DED5; }
.ee-catalog-section .ee-filter-btn { background-color: transparent; color: #665E58; border: 1px solid #D8CEBE; border-radius: 9999px; padding: 6px 16px; font-weight: 500; }
.ee-catalog-section .ee-filter-btn:hover { background-color: #F5EFEB; color: #C85A32; border-color: #C85A32; }
.ee-catalog-section .ee-filter-btn.active { background-color: #C85A32; color: #FFFFFF; border-color: #C85A32; }
.ee-catalog-section .ee-sort-select { background-color: #FAF7F2; border: 1px solid #D8CEBE; color: #2C2623; border-radius: 8px; width: auto; font-size: 0.875rem; }
.ee-catalog-section .ee-sort-select:focus { border-color: #C85A32; outline: none; box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.2); }
.ee-catalog-section .ee-product-card { background-color: #FFFFFF; border: 1px solid #E6DED5; border-radius: 18px; box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04); overflow: hidden; }
.ee-catalog-section .ee-card-img-link { background-color: #F5EFEB; aspect-ratio: 1 / 1; }
.ee-catalog-section .ee-product-img { width: 100%; height: 100%; object-fit: cover; }
.ee-catalog-section .ee-card-badge { background-color: #FBEFEB; color: #C85A32; font-weight: 600; font-size: 0.75rem; border-radius: 9999px; padding: 4px 10px; }
.ee-catalog-section .ee-stock-status { color: #5E6D4E; font-size: 0.75rem; font-weight: 600; background-color: #EDF0EB; padding: 2px 8px; border-radius: 4px; }
.ee-catalog-section .ee-product-title a { color: #2C2623; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; line-height: 1.35; }
.ee-catalog-section .ee-product-title a:hover { color: #C85A32; }
.ee-catalog-section .ee-product-desc { line-height: 1.5; color: #665E58; }
.ee-catalog-section .ee-card-footer { border-color: #E6DED5 !important; }
.ee-catalog-section .ee-price-tag { color: #C85A32; font-size: 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.ee-catalog-section .ee-btn-primary { background-color: #C85A32; color: #FFFFFF; border: 1px solid #C85A32; border-radius: 9999px; font-weight: 600; padding: 8px 16px; font-size: 0.9rem; }
.ee-catalog-section .ee-btn-primary:hover { background-color: #B34E2A; border-color: #B34E2A; color: #FFFFFF; }
.ee-catalog-section .ee-btn-secondary { background-color: #5E6D4E; color: #FFFFFF; border: 1px solid #5E6D4E; border-radius: 9999px; font-weight: 600; }
.ee-catalog-section .ee-btn-secondary:hover { background-color: #4F5D41; border-color: #4F5D41; color: #FFFFFF; }
@media (max-width: 767.98px) { .ee-catalog-section .ee-catalog-title { font-size: 1.125rem; } .ee-catalog-section .ee-catalog-subtitle { font-size: 0.875rem; } .ee-catalog-section .ee-product-title { font-size: 0.875rem; } }

/* ===== PAGE: blog ===== */
.blog-articles-section {
  background-color: #FAF7F2;
  color: #2C2623;
}
.blog-articles-section__badge {
  background-color: #FBEFEB;
  color: #C85A32;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(200, 90, 50, 0.2);
}
.blog-articles-section__badge-icon {
  stroke: #C85A32;
}
.blog-articles-section__title {
  color: #2C2623;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
@media (max-width: 767.98px) {
  .blog-articles-section__title {
    font-size: 18px;
    hyphens: auto;
  }
}
.blog-articles-section__subtitle {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #665E58 !important;
}
.blog-articles-section__search {
  background-color: #FFFFFF;
  border: 1px solid #D8CEBE;
  border-radius: 9999px;
  padding: 10px 42px 10px 18px;
  font-size: 0.95rem;
  color: #2C2623;
}
.blog-articles-section__search::placeholder {
  color: #8E847C;
}
.blog-articles-section__search:focus {
  border-color: #C85A32;
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.15);
  background-color: #FFFFFF;
  color: #2C2623;
}
.blog-articles-section__filter-btn {
  background-color: #FFFFFF;
  color: #665E58;
  border: 1px solid #D8CEBE;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.blog-articles-section__filter-btn:hover {
  background-color: #F5EFEB;
  color: #2C2623;
  border-color: #C85A32;
}
.blog-articles-section__filter-btn.active {
  background-color: #C85A32;
  color: #FFFFFF;
  border-color: #C85A32;
}
.blog-articles-section__card {
  background: #FFFFFF;
  border: 1px solid #E6DED5;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-articles-section__card:hover {
  border-color: #C85A32;
  box-shadow: 0 8px 24px rgba(44, 38, 35, 0.08);
}
.blog-articles-section__img-link {
  aspect-ratio: 16 / 10;
  background-color: #F5EFEB;
}
.blog-articles-section__img {
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-articles-section__tag {
  background-color: rgba(44, 38, 35, 0.75);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 4px 12px;
}
.blog-articles-section__meta {
  font-size: 0.85rem;
  color: #8E847C !important;
}
.blog-articles-section__card-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 767.98px) {
  .blog-articles-section__card-title {
    font-size: 16px;
    hyphens: auto;
  }
}
.blog-articles-section__card-title a {
  color: #2C2623;
  transition: color 0.15s ease;
}
.blog-articles-section__card-title a:hover {
  color: #C85A32;
}
.blog-articles-section__summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #665E58 !important;
}
.blog-articles-section__action {
  border-color: #E6DED5 !important;
}
.blog-articles-section__readmore {
  color: #C85A32;
  font-weight: 600;
  font-size: 0.9rem;
}
.blog-articles-section__readmore:hover {
  color: #B34E2A;
}
.blog-articles-section__empty-title {
  font-size: 1.25rem;
  color: #2C2623;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .blog-articles-section__empty-title {
    font-size: 14px;
  }
}
.blog-articles-section__reset-btn {
  background-color: #5E6D4E;
  color: #FFFFFF;
  border: 1px solid #5E6D4E;
  border-radius: 9999px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}
.blog-articles-section__reset-btn:hover {
  background-color: #4F5D41;
  border-color: #4F5D41;
}

/* ===== PAGE: about ===== */
.about-company-section {
  background-color: #FAF7F2;
  color: #2C2623;
}

.about-company-section .about-badge {
  background-color: #FBEFEB;
  color: #C85A32;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid #E6DED5;
}

.about-company-section .about-main-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #2C2623;
}

.about-company-section .about-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2C2623;
}

.about-company-section .about-subtitle {
  color: #665E58;
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-company-section .about-section-tag {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-company-section .text-terracotta {
  color: #C85A32;
}

.about-company-section .text-olive {
  color: #5E6D4E;
}

.about-company-section .about-paragraph {
  color: #665E58;
  font-size: 1rem;
  line-height: 1.65;
}

.about-company-section .about-story-img {
  height: 380px;
  object-fit: cover;
  display: block;
}

.about-company-section .about-image-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(44, 38, 35, 0.8) 100%);
}

.about-company-section .about-icon-svg {
  width: 20px;
  height: 20px;
}

.about-company-section .about-stat-box {
  background-color: #F5EFEB;
  border: 1px solid #E6DED5;
}

.about-company-section .about-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #C85A32;
  line-height: 1.2;
}

.about-company-section .about-stat-label {
  font-size: 0.875rem;
  color: #665E58;
}

.about-company-section .about-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.about-company-section .about-card-icon-wrap {
  width: 52px;
  height: 52px;
  background-color: #F5EFEB;
}

.about-company-section .about-feature-svg {
  width: 26px;
  height: 26px;
}

.about-company-section .about-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2C2623;
}

.about-company-section .about-card-text {
  color: #665E58;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-company-section .about-check-bullet {
  width: 28px;
  height: 28px;
  background-color: #EDF0EB;
  color: #5E6D4E;
  margin-top: 2px;
}

.about-company-section .about-check-svg {
  width: 16px;
  height: 16px;
}

.about-company-section .about-checklist-text {
  color: #2C2623;
  font-size: 0.975rem;
  line-height: 1.55;
}

@media (max-width: 767.98px) {
  .about-company-section .about-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .about-company-section .about-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .about-company-section .about-card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .about-company-section .about-story-img {
    height: 260px;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-section {
  background-color: #FAF7F2;
  color: #2C2623;
}

.privacy-section .privacy-header-banner {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EFEB 100%);
  border: 1px solid #E6DED5;
}

.privacy-section .privacy-badge {
  background-color: #FBEFEB;
  color: #C85A32;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  display: inline-block;
}

.privacy-section .privacy-main-title {
  color: #2C2623;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.privacy-section .privacy-subtitle {
  color: #665E58;
  font-size: 1.05rem;
  line-height: 1.6;
}

.privacy-section .privacy-nav-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  top: 100px;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.privacy-section .privacy-nav-title {
  color: #2C2623;
  font-size: 1.15rem;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid #EFE9E1;
}

.privacy-section .privacy-nav-link {
  color: #665E58;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s ease, background-color 0.15s ease;
  line-height: 1.4;
}

.privacy-section .privacy-nav-link:hover {
  color: #C85A32;
  background-color: #FBEFEB;
}

.privacy-section .privacy-nav-link.active {
  color: #C85A32;
  background-color: #FBEFEB;
  font-weight: 600;
}

.privacy-section .privacy-nav-notice {
  background-color: #F5EFEB;
  border: 1px solid #E8E1D7;
}

.privacy-section .privacy-notice-icon {
  color: #5E6D4E;
}

.privacy-section .privacy-notice-heading {
  color: #2C2623;
  font-size: 0.85rem;
}

.privacy-section .privacy-notice-text {
  color: #665E58;
  font-size: 0.775rem;
  line-height: 1.5;
}

.privacy-section .privacy-article-container {
  border: 1px solid #E6DED5;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.privacy-section .privacy-statement-box {
  background: linear-gradient(135deg, #FBEFEB 0%, #F5EFEB 100%);
  border-left: 4px solid #C85A32;
}

.privacy-section .privacy-statement-lead {
  color: #2C2623;
  font-size: 0.975rem;
  line-height: 1.7;
}

.privacy-section .privacy-block-title {
  color: #2C2623;
  font-size: 1.35rem;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #EFE9E1;
}

.privacy-section .privacy-number-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #C85A32;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-section .privacy-text {
  color: #665E58;
  font-size: 0.95rem;
  line-height: 1.7;
}

.privacy-section .privacy-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.privacy-section .privacy-list li {
  color: #665E58;
  font-size: 0.925rem;
  line-height: 1.65;
  position: relative;
  padding-left: 20px;
}

.privacy-section .privacy-list li strong {
  color: #2C2623;
}

.privacy-section .privacy-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #5E6D4E;
}

.privacy-section .privacy-feature-card {
  background-color: #FAF7F2;
  border: 1px solid #E8E1D7;
}

.privacy-section .privacy-rights-item {
  background-color: #F5EFEB;
  border: 1px solid #E8E1D7;
}

.privacy-section .privacy-card-title {
  color: #2C2623;
  font-size: 1rem;
  font-weight: 600;
}

.privacy-section .privacy-card-desc {
  color: #665E58;
  font-size: 0.875rem;
  line-height: 1.55;
}

.privacy-section .privacy-security-item {
  background-color: #FAF7F2;
  border: 1px solid #E8E1D7;
}

.privacy-section .privacy-sec-icon {
  background-color: #EDF0EB;
  color: #5E6D4E;
}

.privacy-section .privacy-security-title {
  color: #2C2623;
  font-size: 0.95rem;
  font-weight: 600;
}

.privacy-section .privacy-security-desc {
  color: #665E58;
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .privacy-section .privacy-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .privacy-section .privacy-block-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .privacy-section .privacy-card-title,
  .privacy-section .privacy-security-title,
  .privacy-section .privacy-nav-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .privacy-section .privacy-nav-card {
    position: static !important;
    margin-bottom: 1.5rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-page-section { background-color: #FAF7F2; color: #2C2623; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.terms-page-section h1, .terms-page-section h2, .terms-page-section h3, .terms-page-section h4 { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: #2C2623; }
.terms-page-section .terms-header-banner { background: linear-gradient(135deg, #FAF7F2 0%, #F5EFEB 100%); border: 1px solid #E6DED5; border-radius: 20px; box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04); }
.terms-page-section .terms-badge { background-color: #FBEFEB; color: #C85A32; border: 1px solid rgba(200, 90, 50, 0.2); font-size: 0.85rem; }
.terms-page-section .terms-icon-sm { stroke: #C85A32; }
.terms-page-section .terms-main-title { font-size: 2.1rem; font-weight: 700; letter-spacing: -0.02em; }
.terms-page-section .terms-subtitle { color: #665E58; max-width: 680px; font-size: 1.05rem; line-height: 1.6; }
.terms-page-section .terms-sidebar-wrapper { top: 24px; }
.terms-page-section .terms-nav-card, .terms-page-section .terms-helper-card { background-color: #FFFFFF; border: 1px solid #E6DED5; border-radius: 16px; box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04); }
.terms-page-section .terms-nav-title, .terms-page-section .terms-helper-title { color: #2C2623; font-weight: 600; }
.terms-page-section .terms-nav-btn { display: block; width: 100%; padding: 10px 14px; background: transparent; border: 1px solid transparent; border-radius: 10px; color: #665E58; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.terms-page-section .terms-nav-btn:hover { background-color: #F5EFEB; color: #C85A32; }
.terms-page-section .terms-nav-btn.active { background-color: #FBEFEB; color: #C85A32; border-color: rgba(200, 90, 50, 0.25); font-weight: 600; }
.terms-page-section .js-terms-search { background-color: #FFFFFF; border: 1px solid #D8CEBE; border-radius: 10px; color: #2C2623; font-size: 0.875rem; padding: 8px 12px; }
.terms-page-section .js-terms-search::placeholder { color: #8E847C; opacity: 1; }
.terms-page-section .js-terms-search:focus { border-color: #C85A32; box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.2); outline: none; background-color: #FFFFFF; color: #2C2623; }
.terms-page-section .terms-chip-link { display: inline-block; padding: 6px 12px; background-color: #F5EFEB; border: 1px solid #E6DED5; border-radius: 9999px; color: #5E6D4E; font-size: 0.8rem; font-weight: 500; text-decoration: none; }
.terms-page-section .terms-chip-link:hover { background-color: #EDF0EB; color: #3B4531; border-color: #5E6D4E; }
.terms-page-section .terms-section-card { background-color: #FFFFFF; border: 1px solid #E6DED5; border-radius: 18px; box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04); scroll-margin-top: 32px; }
.terms-page-section .terms-section-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background-color: #FBEFEB; color: #C85A32; font-weight: 700; font-size: 0.85rem; border-radius: 8px; flex-shrink: 0; }
.terms-page-section .terms-section-heading { font-size: 1.35rem; font-weight: 600; color: #2C2623; }
.terms-page-section .terms-text { color: #665E58; font-size: 0.95rem; line-height: 1.65; }
.terms-page-section .terms-list { color: #665E58; font-size: 0.95rem; line-height: 1.7; padding-left: 1.25rem; }
.terms-page-section .terms-list li { margin-bottom: 0.5rem; }
.terms-page-section .terms-callout-box { background-color: #F5EFEB; border-left: 4px solid #C85A32; }
.terms-page-section .terms-callout-title { color: #2C2623; font-weight: 600; }
.terms-page-section .terms-callout-text { color: #665E58; }
.terms-page-section .terms-subcard { background-color: #FAF7F2; border: 1px solid #E8E1D7; border-radius: 12px; }
.terms-page-section .terms-subcard-title { color: #2C2623; font-weight: 600; }
.terms-page-section .terms-subcard-text { color: #665E58; line-height: 1.55; }
.terms-page-section .terms-inline-link { color: #C85A32; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.terms-page-section .terms-inline-link:hover { color: #B34E2A; }
.terms-page-section .terms-btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 8px 20px; background-color: #C85A32; color: #FFFFFF; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; border: 1px solid #C85A32; transition: background-color 0.2s ease, border-color 0.2s ease; }
.terms-page-section .terms-btn-primary:hover { background-color: #B34E2A; border-color: #B34E2A; color: #FFFFFF; }
@media (max-width: 767.98px) { .terms-page-section .terms-main-title { font-size: 1.125rem; hyphens: auto; } .terms-page-section .terms-section-heading { font-size: 1rem; hyphens: auto; } .terms-page-section .terms-nav-title, .terms-page-section .terms-helper-title, .terms-page-section .terms-callout-title, .terms-page-section .terms-subcard-title { font-size: 0.875rem; hyphens: auto; } .terms-page-section .terms-header-banner { padding: 1.25rem; } .terms-page-section .terms-section-card { padding: 1.25rem; } }

/* ===== PAGE: disclaimer ===== */
.el-disclaimer-section {
  background-color: #FAF7F2;
  color: #2C2623;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.el-disclaimer-section .el-disclaimer-header {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EFEB 100%);
  border: 1px solid #D8CEBE;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.el-disclaimer-section .el-disclaimer-badge {
  background-color: #FBEFEB;
  color: #C85A32;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.el-disclaimer-section .el-disclaimer-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2C2623;
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.el-disclaimer-section .el-disclaimer-subtitle {
  color: #665E58;
  font-size: 1.125rem;
  line-height: 1.6;
}

.el-disclaimer-section .el-disclaimer-meta {
  border-color: #E6DED5 !important;
}

.el-disclaimer-section .el-meta-item {
  color: #8E847C;
  font-size: 0.875rem;
}

.el-disclaimer-section .el-meta-item .el-icon {
  color: #5E6D4E;
}

.el-disclaimer-section .el-disclaimer-nav-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.el-disclaimer-section .el-nav-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  color: #2C2623;
}

.el-disclaimer-section .el-nav-link {
  color: #665E58;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.el-disclaimer-section .el-nav-link:hover {
  background-color: #F5EFEB;
  color: #C85A32;
}

.el-disclaimer-section .el-nav-link.active {
  background-color: #FBEFEB;
  color: #C85A32;
  border-left-color: #C85A32;
  font-weight: 600;
}

.el-disclaimer-section .el-sublink {
  color: #665E58;
  font-size: 0.875rem;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.el-disclaimer-section .el-sublink:hover {
  color: #C85A32;
  background-color: #F5EFEB;
}

.el-disclaimer-section .el-disclaimer-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
  scroll-margin-top: 30px;
}

.el-disclaimer-section .el-card-number {
  width: 38px;
  height: 38px;
  background-color: #EDF0EB;
  color: #5E6D4E;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}

.el-disclaimer-section .el-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  color: #2C2623;
  line-height: 1.35;
}

.el-disclaimer-section .el-card-text {
  color: #665E58;
  line-height: 1.7;
  font-size: 1rem;
}

.el-disclaimer-section .el-bullet-list {
  list-style: none;
  padding-left: 0;
  color: #665E58;
  font-size: 0.95rem;
}

.el-disclaimer-section .el-list-icon {
  color: #5E6D4E;
}

.el-disclaimer-section .el-alert-box {
  background-color: #FBEFEB;
  border: 1px solid #F5D7CD;
  color: #8C381B;
}

.el-disclaimer-section .el-alert-icon {
  color: #C85A32;
}

.el-disclaimer-section .el-feature-subcard {
  background-color: #FAF7F2;
  border: 1px solid #E8E1D7;
}

.el-disclaimer-section .el-subcard-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2C2623;
  font-size: 1.05rem;
}

.el-disclaimer-section .el-subcard-text {
  color: #665E58;
  line-height: 1.6;
}

.el-disclaimer-section .el-action-panel {
  background: linear-gradient(135deg, #5E6D4E 0%, #70825E 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(44, 38, 35, 0.06);
}

.el-disclaimer-section .el-action-title {
  color: #FFFFFF;
  font-size: 1.25rem;
}

.el-disclaimer-section .el-action-desc {
  color: #E5DFD8;
}

.el-disclaimer-section .el-btn-primary {
  background-color: #C85A32;
  border: 1px solid #C85A32;
  color: #FFFFFF;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.el-disclaimer-section .el-btn-primary:hover {
  background-color: #B34E2A;
  border-color: #B34E2A;
  color: #FFFFFF;
}

.el-disclaimer-section .el-btn-outline {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.el-disclaimer-section .el-btn-outline:hover {
  background-color: #FFFFFF;
  color: #5E6D4E;
}

@media (max-width: 767.98px) {
  .el-disclaimer-section .el-disclaimer-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .el-disclaimer-section .el-card-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .el-disclaimer-section .el-nav-heading {
    font-size: 0.95rem;
  }
  .el-disclaimer-section .el-action-title {
    font-size: 1rem;
  }
  .el-disclaimer-section .el-disclaimer-nav-card {
    position: static !important;
    margin-bottom: 1rem;
  }
}

/* ===== PAGE: refound ===== */
.refound-page-section { background-color: #FAF7F2; color: #2C2623; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; } .refound-page-section .refound-header { max-width: 780px; margin-left: auto; margin-right: auto; } .refound-page-section .refound-badge { background-color: #FBEFEB; color: #C85A32; border: 1px solid rgba(200, 90, 50, 0.2); font-size: 0.875rem; font-weight: 600; padding: 6px 16px; border-radius: 9999px; } .refound-page-section .refound-badge-icon { width: 18px; height: 18px; } .refound-page-section .refound-main-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #2C2623; line-height: 1.25; } @media (max-width: 767.98px) { .refound-page-section .refound-main-title { font-size: 1.75rem; hyphens: auto; } } .refound-page-section .refound-main-subtitle { font-size: 1.05rem; color: #665E58; line-height: 1.6; max-width: 640px; } .refound-page-section .refound-highlight-card { background: #FFFFFF; border: 1px solid #E6DED5; border-radius: 18px; padding: 24px; box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04); transition: border-color 0.2s ease, box-shadow 0.2s ease; } .refound-page-section .refound-highlight-card:hover { border-color: #D8CEBE; box-shadow: 0 6px 16px rgba(44, 38, 35, 0.06); } .refound-page-section .refound-card-icon-wrap { width: 44px; height: 44px; border-radius: 12px; background-color: #FBEFEB; color: #C85A32; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; } .refound-page-section .refound-card-icon { width: 22px; height: 22px; } .refound-page-section .refound-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: #2C2623; font-size: 1.125rem; line-height: 1.35; } @media (max-width: 767.98px) { .refound-page-section .refound-card-title { font-size: 1rem; } } .refound-page-section .refound-card-text { font-size: 0.875rem; color: #665E58; line-height: 1.55; } .refound-page-section .refound-content-box { background: #FFFFFF; border: 1px solid #E6DED5; border-radius: 24px; box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04); } .refound-page-section .refound-section-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.375rem; font-weight: 600; color: #2C2623; line-height: 1.35; border-left: 4px solid #C85A32; padding-left: 12px; } @media (max-width: 767.98px) { .refound-page-section .refound-section-heading { font-size: 1.125rem; } } .refound-page-section .refound-text { font-size: 0.975rem; color: #665E58; line-height: 1.65; margin-bottom: 1rem; } .refound-page-section .refound-list { list-style: none; padding-left: 0; margin-bottom: 0; } .refound-page-section .refound-list li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 0.95rem; color: #665E58; line-height: 1.6; } .refound-page-section .refound-list li strong { color: #2C2623; } .refound-page-section .refound-list li::before { content: ''; position: absolute; left: 6px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background-color: #C85A32; } .refound-page-section .refound-step-item { background: #F5EFEB; border: 1px solid #D8CEBE; border-radius: 16px; padding: 20px; height: 100%; } .refound-page-section .refound-step-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: #C85A32; display: block; margin-bottom: 6px; line-height: 1; } .refound-page-section .refound-step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: #2C2623; line-height: 1.3; } @media (max-width: 767.98px) { .refound-page-section .refound-step-title { font-size: 0.95rem; } } .refound-page-section .refound-step-desc { font-size: 0.875rem; color: #665E58; line-height: 1.5; } .refound-page-section .refound-cta-banner { background: linear-gradient(135deg, #FAF7F2 0%, #F5EFEB 100%); border: 1px solid #E8E1D7; border-radius: 22px; } .refound-page-section .refound-cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 700; color: #2C2623; line-height: 1.3; } @media (max-width: 767.98px) { .refound-page-section .refound-cta-title { font-size: 1.25rem; } } .refound-page-section .refound-cta-desc { font-size: 0.95rem; color: #665E58; line-height: 1.6; max-width: 580px; } .refound-page-section .refound-btn-primary { background-color: #C85A32; color: #FFFFFF; border: 1px solid #C85A32; border-radius: 9999px; font-weight: 600; padding: 12px 28px; display: inline-flex; align-items: center; justify-content: center; transition: background-color 0.2s ease, border-color 0.2s ease; } .refound-page-section .refound-btn-primary:hover { background-color: #B34E2A; border-color: #B34E2A; color: #FFFFFF; } .refound-page-section .refound-btn-outline { background-color: transparent; color: #2C2623; border: 1.5px solid #D8CEBE; border-radius: 9999px; font-weight: 600; padding: 11px 26px; display: inline-flex; align-items: center; justify-content: center; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; } .refound-page-section .refound-btn-outline:hover { background-color: #F5EFEB; border-color: #C85A32; color: #C85A32; }

/* ===== PAGE: delivery ===== */
.delivery-page-container {
  background-color: #FAF7F2;
  color: #2C2623;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.delivery-page-container h1,
.delivery-page-container h2,
.delivery-page-container h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.25;
}

.delivery-page-container .delivery-badge {
  display: inline-block;
  background-color: #FBEFEB;
  color: #C85A32;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}

.delivery-page-container .delivery-main-title {
  color: #2C2623;
  font-size: 2.25rem;
  font-weight: 700;
}

.delivery-page-container .delivery-main-subtitle {
  color: #665E58;
  font-size: 1.0625rem;
  max-width: 650px;
}

.delivery-page-container .delivery-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
  transition: border-color 0.2s ease;
}

.delivery-page-container .delivery-feature-card:hover {
  border-color: #C85A32;
}

.delivery-page-container .delivery-feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #FBEFEB;
  color: #C85A32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-page-container .delivery-feature-icon {
  width: 24px;
  height: 24px;
}

.delivery-page-container .delivery-feature-title {
  color: #2C2623;
  font-size: 1.2rem;
  font-weight: 600;
}

.delivery-page-container .delivery-feature-text {
  color: #665E58;
  font-size: 0.9375rem;
}

.delivery-page-container .delivery-visual-box {
  background-color: #F5EFEB;
  border: 1px solid #D8CEBE;
  border-radius: 24px;
}

.delivery-page-container .delivery-hero-image {
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.delivery-page-container .delivery-section-subtitle {
  display: inline-block;
  color: #5E6D4E;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.delivery-page-container .delivery-section-heading {
  color: #2C2623;
  font-size: 1.65rem;
  font-weight: 700;
}

.delivery-page-container .delivery-section-paragraph {
  color: #665E58;
  font-size: 0.975rem;
}

.delivery-page-container .delivery-check-icon {
  width: 20px;
  height: 20px;
  color: #5E6D4E;
}

.delivery-page-container .delivery-check-item span {
  color: #2C2623;
  font-size: 0.9375rem;
  font-weight: 500;
}

.delivery-page-container .delivery-panel {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(44, 38, 35, 0.04);
}

.delivery-page-container .delivery-carrier-card {
  background-color: #FAF7F2;
  border: 1.5px solid #E6DED5;
  border-radius: 18px;
  transition: border-color 0.2s ease;
}

.delivery-page-container .delivery-carrier-card.featured-carrier {
  border-color: #C85A32;
  background-color: #FBEFEB;
}

.delivery-page-container .carrier-badge {
  display: inline-block;
  background-color: #EDF0EB;
  color: #5E6D4E;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
}

.delivery-page-container .carrier-badge.featured-badge {
  background-color: #C85A32;
  color: #FFFFFF;
}

.delivery-page-container .carrier-title {
  color: #2C2623;
  font-size: 1.15rem;
  font-weight: 600;
}

.delivery-page-container .carrier-price {
  color: #C85A32;
  font-size: 1.75rem;
  font-weight: 700;
}

.delivery-page-container .carrier-specs li {
  color: #665E58;
  font-size: 0.875rem;
  border-color: #E6DED5 !important;
}

.delivery-page-container .delivery-interactive-card {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EFEB 100%);
  border: 1px solid #D8CEBE;
  border-radius: 24px;
}

.delivery-page-container .delivery-interactive-title {
  color: #2C2623;
  font-size: 1.45rem;
  font-weight: 700;
}

.delivery-page-container .delivery-interactive-desc {
  color: #665E58;
  font-size: 0.9375rem;
}

.delivery-page-container .delivery-calc-tag {
  background-color: #EDF0EB;
  color: #5E6D4E;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
}

.delivery-page-container .delivery-input-label {
  color: #2C2623;
  font-size: 0.875rem;
  font-weight: 600;
}

.delivery-page-container .delivery-select {
  background-color: #FFFFFF;
  color: #2C2623;
  border: 1px solid #D8CEBE;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.9375rem;
}

.delivery-page-container .delivery-select:focus {
  border-color: #C85A32;
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.2);
}

.delivery-page-container .delivery-calc-btn {
  background-color: #C85A32;
  color: #FFFFFF;
  border: 1px solid #C85A32;
  border-radius: 12px;
  font-weight: 600;
  padding: 10px 20px;
  transition: background-color 0.2s ease;
}

.delivery-page-container .delivery-calc-btn:hover {
  background-color: #B34E2A;
  border-color: #B34E2A;
  color: #FFFFFF;
}

.delivery-page-container .delivery-result-box {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  border-radius: 14px;
}

.delivery-page-container .delivery-result-icon {
  width: 22px;
  height: 22px;
  color: #5E6D4E;
}

.delivery-page-container .delivery-result-text {
  color: #2C2623;
  font-size: 0.95rem;
}

.delivery-page-container .delivery-result-status {
  background-color: #EDF0EB;
  color: #5E6D4E;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
}

.delivery-page-container .delivery-step-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  border-radius: 18px;
}

.delivery-page-container .step-number {
  color: #C85A32;
  font-size: 1.5rem;
  font-weight: 800;
}

.delivery-page-container .step-title {
  color: #2C2623;
  font-size: 1.05rem;
  font-weight: 600;
}

.delivery-page-container .step-desc {
  color: #665E58;
  font-size: 0.875rem;
}

.delivery-page-container .delivery-faq-section {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  border-radius: 24px;
}

.delivery-page-container .delivery-faq-notice {
  background-color: #FBEFEB;
  border: 1px solid #F3DACF;
  border-radius: 14px;
}

.delivery-page-container .delivery-notice-icon {
  width: 20px;
  height: 20px;
  color: #C85A32;
}

.delivery-page-container .delivery-notice-title {
  color: #C85A32;
  font-size: 0.95rem;
  font-weight: 600;
}

.delivery-page-container .delivery-notice-text {
  color: #665E58;
  font-size: 0.85rem;
}

.delivery-page-container .delivery-faq-item {
  border: 1px solid #E6DED5;
  border-radius: 14px;
  overflow: hidden;
  background-color: #FAF7F2;
}

.delivery-page-container .delivery-faq-btn {
  background-color: #FAF7F2;
  border: none;
  color: #2C2623;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
}

.delivery-page-container .faq-toggle-icon {
  width: 18px;
  height: 18px;
  color: #665E58;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.delivery-page-container .delivery-faq-item.is-open .faq-toggle-icon {
  transform: rotate(180deg);
}

.delivery-page-container .delivery-faq-content {
  display: none;
  background-color: #FFFFFF;
  border-top: 1px solid #E6DED5;
}

.delivery-page-container .delivery-faq-item.is-open .delivery-faq-content {
  display: block;
}

.delivery-page-container .faq-answer-text {
  color: #665E58;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .delivery-page-container .delivery-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .delivery-page-container .delivery-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .delivery-page-container .delivery-feature-title,
  .delivery-page-container .carrier-title,
  .delivery-page-container .delivery-interactive-title,
  .delivery-page-container .step-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

/* ===== PAGE: cookies ===== */
.cookies-policy-section {
  background-color: #FAF7F2;
  color: #2C2623;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.cookies-policy-section .cookies-header-box {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EFEB 100%);
  border: 1px solid #D8CEBE;
  box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}
.cookies-policy-section .cookies-badge {
  background-color: #FBEFEB;
  color: #C85A32;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-block;
}
.cookies-policy-section .cookies-main-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #2C2623;
}
.cookies-policy-section .cookies-subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #665E58;
}
.cookies-policy-section .cookies-card {
  background-color: #FFFFFF;
  border: 1px solid #E6DED5;
  box-shadow: 0 6px 16px rgba(44, 38, 35, 0.06);
}
.cookies-policy-section .cookies-section-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2C2623;
}
.cookies-policy-section .cookies-subcard {
  background-color: #F5EFEB;
  border: 1px solid #E8E1D7;
}
.cookies-policy-section .cookies-subcard-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: #2C2623;
}
.cookies-policy-section .cookies-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #665E58;
}
.cookies-policy-section .cookies-list {
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #665E58;
}
.cookies-policy-section .cookies-notice-text {
  background-color: #FBEFEB;
  border-left: 4px solid #C85A32;
  color: #8C381B;
  font-size: 0.875rem;
  line-height: 1.55;
}
.cookies-policy-section .cookies-link-btn {
  background-color: transparent;
  color: #2C2623;
  border: 1.5px solid #D8CEBE;
  border-radius: 9999px;
  font-weight: 600;
  padding: 10px 22px;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cookies-policy-section .cookies-link-btn:hover {
  background-color: #F5EFEB;
  border-color: #C85A32;
  color: #C85A32;
}
.cookies-policy-section .cookies-action-btn {
  background-color: #C85A32;
  color: #FFFFFF;
  border: 1px solid #C85A32;
  border-radius: 9999px;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cookies-policy-section .cookies-action-btn:hover {
  background-color: #B34E2A;
  border-color: #B34E2A;
  color: #FFFFFF;
}
@media (max-width: 767.98px) {
  .cookies-policy-section .cookies-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .cookies-policy-section .cookies-section-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .cookies-policy-section .cookies-subcard-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.sport-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
    transition: none
}

.avatar-fallback {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    user-select: none;
    object-fit: cover
}

.avatar-terracotta {
    background: #C85A32
}

.author-name {
    color: #2C2623;
    font-size: 1.0625rem;
    letter-spacing: -0.01em
}

.badge-verified-buyer {
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
    line-height: 1.4
}

.text-muted-custom {
    color: #8E847C
}

.text-dark-custom {
    color: #2C2623
}

.meta-separator {
    color: #D8CEBE
}

.purchase-variant {
    color: #665E58
}

.rating-stars-wrapper {
    color: #E28743
}

.star-icon.filled {
    color: #E28743;
    font-size: 1.125rem;
    line-height: 1
}

.rating-score {
    font-size: 0.875rem
}

.comment-headline {
    color: #2C2623;
    font-size: 1.0625rem;
    line-height: 1.4
}

.comment-text {
    color: #665E58;
    font-size: 0.9375rem;
    line-height: 1.6
}

.comment-attributes-summary {
    margin-top: 0.75rem
}

.attribute-pill {
    background-color: #FAF7F2;
    border: 1px solid #E8E1D7;
    color: #2C2623;
    font-size: 0.8125rem;
    padding: 4px 10px;
    border-radius: 6px
}

.pill-label {
    color: #8E847C;
    margin-right: 2px
}

.btn-comment-action {
    background-color: #FAF7F2;
    border: 1px solid #D8CEBE;
    color: #665E58;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    outline: none
}

.btn-comment-action:hover {
    background-color: #F5EFEB;
    border-color: #C85A32;
    color: #C85A32
}

.btn-comment-action:focus-visible {
    outline: 2px solid #C85A32;
    outline-offset: 2px
}

.btn-comment-ghost {
    background: transparent;
    border: none;
    color: #8E847C;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    outline: none
}

.btn-comment-ghost:hover {
    color: #C85A32;
    background-color: #FBEFEB
}

.btn-comment-ghost:focus-visible {
    outline: 2px solid #C85A32
}

.sport-reply-wrapper {
    position: relative
}

.reply-thread-line {
    position: absolute;
    left: -24px;
    top: -16px;
    bottom: 24px;
    width: 2px;
    background-color: #E6DED5;
    border-bottom-left-radius: 8px
}

.sport-comment-card.reply-comment {
    background-color: #F5EFEB;
    border: 1px solid #D8CEBE;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.03)
}

.avatar-fallback {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    user-select: none;
    object-fit: cover
}

.avatar-olive {
    background: #5E6D4E
}

.author-name {
    color: #2C2623;
    font-size: 0.9375rem;
    letter-spacing: -0.01em
}

.badge-official-brand {
    background-color: #C85A32;
    color: #FFFFFF;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 9999px;
    line-height: 1.4
}

.text-muted-custom {
    color: #8E847C
}

.meta-separator {
    color: #D8CEBE
}

.reply-target-text {
    color: #C85A32;
    font-weight: 500
}

.comment-text {
    color: #665E58;
    font-size: 0.875rem;
    line-height: 1.6
}

.btn-comment-action {
    background-color: #FFFFFF;
    border: 1px solid #D8CEBE;
    color: #665E58;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    outline: none
}

.btn-comment-action:hover {
    background-color: #FAF7F2;
    border-color: #C85A32;
    color: #C85A32
}

.btn-comment-action:focus-visible {
    outline: 2px solid #C85A32;
    outline-offset: 2px
}

.official-badge-tip {
    font-size: 0.75rem
}


/* ===== PAGE TEMPLATE: catalog ===== */
.endurelite-header {
    background-color: #FAF7F2;
    border-bottom: 1px solid #E6DED5;
    z-index: 1030;
}

.endurelite-header .navbar-brand {
    text-decoration: none;
}

.endurelite-header .endurelite-logo-img {
    width: 42px;
    height: 42px;
    max-width: 42px;
    object-fit: contain;
    display: block;
}

.endurelite-header .endurelite-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #2C2623;
    line-height: 1.2;
}

.endurelite-header .endurelite-nav-list {
    gap: 8px;
}

.endurelite-header .endurelite-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #665E58;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.endurelite-header .endurelite-nav-link:hover,
.endurelite-header .endurelite-nav-link:focus {
    color: #C85A32;
    background-color: #F5EFEB;
}

.endurelite-header .endurelite-nav-link.active {
    color: #C85A32;
    font-weight: 600;
}

.endurelite-header .endurelite-toggler {
    border: 1px solid #D8CEBE;
    background-color: #FFFFFF;
    color: #2C2623;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: none;
}

.endurelite-header .endurelite-toggler:focus {
    outline: 2px solid #C85A32;
    box-shadow: none;
}

.endurelite-header .endurelite-cart-btn {
    background-color: #FFFFFF;
    color: #2C2623;
    border: 1.5px solid #D8CEBE;
    border-radius: 9999px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.endurelite-header .endurelite-cart-btn:hover,
.endurelite-header .endurelite-cart-btn:focus {
    background-color: #F5EFEB;
    border-color: #C85A32;
    color: #C85A32;
}

.endurelite-header .endurelite-cart-label {
    line-height: 1;
}

.endurelite-header .endurelite-badge {
    background-color: #C85A32;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 7px;
    border: 2px solid #FAF7F2;
}

@media (max-width: 991.98px) {
    .endurelite-header .navbar-collapse {
        background-color: #FAF7F2;
        padding: 16px 0;
        border-top: 1px solid #E6DED5;
        margin-top: 8px;
    }

    .endurelite-header .endurelite-nav-link {
        padding: 10px 14px;
        font-size: 0.875rem;
    }

    .endurelite-header .endurelite-cart-btn {
        padding: 8px 12px;
    }
}

.ee-product-detail-page {
    background-color: #FAF7F2;
    min-height: 70vh;
}

.ee-product-detail-page .ee-product-detail__breadcrumb a {
    color: #665E58;
    text-decoration: none;
    font-size: 0.875rem;
}

.ee-product-detail-page .ee-product-detail__breadcrumb a:hover {
    color: #C85A32;
    text-decoration: underline;
}

.ee-product-detail-page .ee-product-detail__breadcrumb .breadcrumb-item.active {
    color: #2C2623;
    font-weight: 600;
    font-size: 0.875rem;
}

.ee-product-detail-page .ee-product-detail__image-box {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.ee-product-detail-page .ee-product-detail__main-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
}

.ee-product-detail-page .ee-product-detail__tag {
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ee-product-detail-page .ee-icon {
    width: 16px;
    height: 16px;
}

.ee-product-detail-page .ee-icon-small {
    width: 14px;
    height: 14px;
    color: #5E6D4E;
}

.ee-product-detail-page .ee-product-detail__category-badge {
    background-color: #FBEFEB;
    color: #C85A32;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 9999px;
}

.ee-product-detail-page .ee-product-detail__status-badge {
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 9999px;
}

.ee-product-detail-page .ee-product-detail__title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2C2623;
    line-height: 1.3;
}

.ee-product-detail-page .ee-product-detail__subtitle {
    font-size: 0.9375rem;
    color: #665E58;
    line-height: 1.5;
}

.ee-product-detail-page .ee-product-detail__price-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 14px;
}

.ee-product-detail-page .ee-product-detail__price-label {
    font-size: 0.875rem;
    color: #665E58;
    font-weight: 500;
}

.ee-product-detail-page .ee-product-detail__price-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: #C85A32;
    line-height: 1;
}

.ee-product-detail-page .ee-product-detail__tax-tip {
    font-size: 0.75rem;
    color: #8E847C;
    margin-left: auto;
}

.ee-product-detail-page .ee-product-detail__description p {
    font-size: 0.9375rem;
    color: #2C2623;
    line-height: 1.7;
    margin-bottom: 0;
}

.ee-product-detail-page .ee-product-detail__mini-spec {
    background-color: #F5EFEB;
    border: 1px solid #E6DED5;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ee-product-detail-page .ee-product-detail__spec-name {
    font-size: 0.75rem;
    color: #8E847C;
}

.ee-product-detail-page .ee-product-detail__spec-val {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2C2623;
}

.ee-product-detail-page .ee-product-detail__qty-control {
    background-color: #FFFFFF;
    border: 1.5px solid #D8CEBE;
    border-radius: 9999px;
    padding: 4px 8px;
    min-width: 120px;
    height: 48px;
}

.ee-product-detail-page .ee-product-detail__qty-btn {
    border: none;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2C2623;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ee-product-detail-page .ee-product-detail__qty-btn:hover {
    background-color: #F5EFEB;
    color: #C85A32;
}

.ee-product-detail-page .ee-product-detail__qty-num {
    font-size: 1rem;
    font-weight: 700;
    color: #2C2623;
}

.ee-product-detail-page .ee-product-detail__btn-cart {
    background-color: #C85A32;
    color: #FFFFFF;
    border: 1px solid #C85A32;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    height: 48px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ee-product-detail-page .ee-product-detail__btn-cart:hover {
    background-color: #B34E2A;
    border-color: #B34E2A;
    color: #FFFFFF;
}

.ee-product-detail-page .ee-product-detail__policy-strip {
    background-color: #F5EFEB;
    border: 1px solid #E6DED5;
}

.ee-product-detail-page .ee-policy-text {
    font-size: 0.8125rem;
    color: #665E58;
    font-weight: 500;
}

.ee-product-detail-page .ee-product-detail__tabs-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.ee-product-detail-page .ee-product-detail__tab-btn {
    background-color: transparent;
    color: #665E58;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 8px 18px;
    transition: all 0.15s ease;
}

.ee-product-detail-page .ee-product-detail__tab-btn.active {
    background-color: #FBEFEB;
    color: #C85A32;
    border-color: #FBEFEB;
}

.ee-product-detail-page .ee-product-detail__tab-btn:hover:not(.active) {
    background-color: #F5EFEB;
    color: #2C2623;
}

.ee-product-detail-page .ee-product-detail__section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2C2623;
}

.ee-product-detail-page .ee-product-detail__specs-table th,
.ee-product-detail-page .ee-product-detail__specs-table td {
    padding: 12px 16px;
    font-size: 0.875rem;
    border-color: #E6DED5;
}

.ee-product-detail-page .ee-spec-header {
    background-color: #FAF7F2;
    color: #665E58;
    font-weight: 600;
    width: 18%;
}

.ee-product-detail-page .ee-spec-data {
    color: #2C2623;
    width: 32%;
}

.ee-product-detail-page .ee-product-detail__feature-box {
    background-color: #FAF7F2;
    border: 1px solid #E6DED5;
}

.ee-product-detail-page .ee-feature-box__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #2C2623;
}

.ee-product-detail-page .ee-feature-box__desc {
    font-size: 0.8125rem;
    color: #665E58;
    line-height: 1.6;
}

.ee-product-detail-page .ee-product-detail__guide-list {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ee-product-detail-page .ee-product-detail__guide-list li {
    font-size: 0.875rem;
    color: #665E58;
    line-height: 1.6;
}

.ee-product-detail-page .ee-product-detail__subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #2C2623;
}

.ee-product-detail-page .ee-product-detail__subheading-note {
    font-size: 0.875rem;
    color: #8E847C;
}

.ee-product-detail-page .ee-product-detail__btn-outline {
    background-color: transparent;
    color: #2C2623;
    border: 1.5px solid #D8CEBE;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ee-product-detail-page .ee-product-detail__btn-outline:hover {
    background-color: #F5EFEB;
    border-color: #C85A32;
    color: #C85A32;
}

.ee-product-detail-page .ee-product-card {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.ee-product-detail-page .ee-product-card__thumb-box {
    background-color: #F5EFEB;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.ee-product-detail-page .ee-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.ee-product-detail-page .ee-product-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
}

.ee-product-detail-page .ee-product-card__title a {
    color: #2C2623;
    transition: color 0.15s ease;
}

.ee-product-detail-page .ee-product-card__title a:hover {
    color: #C85A32;
}

.ee-product-detail-page .ee-product-card__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.ee-product-detail-page .ee-product-card__price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #C85A32;
}

.ee-product-detail-page .ee-product-card__btn-cart {
    background-color: #5E6D4E;
    color: #FFFFFF;
    border: 1px solid #5E6D4E;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    transition: background-color 0.15s ease;
}

.ee-product-detail-page .ee-product-card__btn-cart:hover {
    background-color: #4F5D41;
    border-color: #4F5D41;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .ee-product-detail-page .ee-product-detail__title {
        font-size: 1.125rem;
    }

    .ee-product-detail-page .ee-product-detail__subheading {
        font-size: 1rem;
    }

    .ee-product-detail-page .ee-spec-header,
    .ee-product-detail-page .ee-spec-data {
        display: block;
        width: 100%;
    }

    .ee-product-detail-page .ee-spec-header {
        border-bottom: none;
        padding-bottom: 4px;
    }

    .ee-product-detail-page .ee-spec-data {
        padding-top: 0;
    }
}

.ee-site-footer {
    background-color: #F5EFEB;
    border-top: 1px solid #E6DED5;
    color: #665E58;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.ee-site-footer .ee-site-footer__main {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}

.ee-site-footer .ee-site-footer__brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #C85A32;
    letter-spacing: -0.02em;
    display: inline-block;
}

.ee-site-footer .ee-site-footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #665E58;
    margin-bottom: 0;
}

.ee-site-footer .ee-site-footer__badge {
    display: inline-flex;
    align-items: center;
    background-color: #EDF0EB;
    border: 1px solid #D8CEBE;
    border-radius: 9999px;
    padding: 4px 12px;
    gap: 8px;
}

.ee-site-footer .ee-site-footer__badge-dot {
    width: 6px;
    height: 6px;
    background-color: #5E6D4E;
    border-radius: 50%;
    display: inline-block;
}

.ee-site-footer .ee-site-footer__badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5E6D4E;
    letter-spacing: 0.02em;
}

.ee-site-footer .ee-site-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2C2623;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.ee-site-footer .ee-site-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ee-site-footer .ee-site-footer__link {
    color: #665E58;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.ee-site-footer .ee-site-footer__link:hover,
.ee-site-footer .ee-site-footer__link:focus {
    color: #C85A32;
    text-decoration: underline;
}

.ee-site-footer .ee-site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2C2623;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ee-site-footer .ee-site-footer__payment-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.ee-site-footer .ee-site-footer__payment-card svg {
    display: block;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(44, 38, 35, 0.08);
}

.ee-site-footer .ee-site-footer__bottom {
    background-color: #FAF7F2;
    border-top: 1px solid #E6DED5;
}

.ee-site-footer .ee-site-footer__copyright {
    font-size: 0.8125rem;
    color: #8E847C;
    font-weight: 500;
}

.ee-site-footer .ee-site-footer__subtext {
    font-size: 0.8125rem;
    color: #8E847C;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .ee-site-footer .ee-site-footer__main {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .ee-site-footer .ee-site-footer__title {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .ee-site-footer .ee-site-footer__link {
        font-size: 0.8125rem;
    }

    .ee-site-footer .ee-site-footer__copyright,
    .ee-site-footer .ee-site-footer__subtext {
        font-size: 0.75rem;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.endurelite-header {
    background-color: #FAF7F2;
    border-bottom: 1px solid #E6DED5;
    z-index: 1030;
}

.endurelite-header .navbar-brand {
    text-decoration: none;
}

.endurelite-header .endurelite-logo-img {
    width: 42px;
    height: 42px;
    max-width: 42px;
    object-fit: contain;
    display: block;
}

.endurelite-header .endurelite-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #2C2623;
    line-height: 1.2;
}

.endurelite-header .endurelite-nav-list {
    gap: 8px;
}

.endurelite-header .endurelite-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #665E58;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.endurelite-header .endurelite-nav-link:hover,
.endurelite-header .endurelite-nav-link:focus {
    color: #C85A32;
    background-color: #F5EFEB;
}

.endurelite-header .endurelite-nav-link.active {
    color: #C85A32;
    font-weight: 600;
}

.endurelite-header .endurelite-toggler {
    border: 1px solid #D8CEBE;
    background-color: #FFFFFF;
    color: #2C2623;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: none;
}

.endurelite-header .endurelite-toggler:focus {
    outline: 2px solid #C85A32;
    box-shadow: none;
}

.endurelite-header .endurelite-cart-btn {
    background-color: #FFFFFF;
    color: #2C2623;
    border: 1.5px solid #D8CEBE;
    border-radius: 9999px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.endurelite-header .endurelite-cart-btn:hover,
.endurelite-header .endurelite-cart-btn:focus {
    background-color: #F5EFEB;
    border-color: #C85A32;
    color: #C85A32;
}

.endurelite-header .endurelite-cart-label {
    line-height: 1;
}

.endurelite-header .endurelite-badge {
    background-color: #C85A32;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 7px;
    border: 2px solid #FAF7F2;
}

@media (max-width: 991.98px) {
    .endurelite-header .navbar-collapse {
        background-color: #FAF7F2;
        padding: 16px 0;
        border-top: 1px solid #E6DED5;
        margin-top: 8px;
    }

    .endurelite-header .endurelite-nav-link {
        padding: 10px 14px;
        font-size: 0.875rem;
    }

    .endurelite-header .endurelite-cart-btn {
        padding: 8px 12px;
    }
}

.ee-article-layout {
    background-color: #FAF7F2;
    color: #2C2623;
    min-height: 60vh;
}

.ee-article-layout .ee-breadcrumb-nav .breadcrumb-item,
.ee-article-layout .ee-breadcrumb-nav .breadcrumb-item a {
    color: #665E58;
    font-size: 0.875rem;
    text-decoration: none;
}

.ee-article-layout .ee-breadcrumb-nav .breadcrumb-item.active {
    color: #C85A32;
    font-weight: 600;
}

.ee-article-layout .ee-category-pill {
    display: inline-block;
    background-color: #EDF0EB;
    color: #5E6D4E;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.ee-article-layout .ee-article-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #2C2623;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ee-article-layout .ee-article-meta {
    color: #665E58;
    border-color: #E6DED5 !important;
}

.ee-article-layout .ee-meta-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.ee-article-layout .ee-reading-tag {
    background-color: #FBEFEB;
    color: #C85A32;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
}

.ee-article-layout .ee-featured-media-wrapper {
    border-radius: 20px;
    overflow: hidden;
    background-color: #F5EFEB;
    border: 1px solid #E6DED5;
    max-height: 480px;
}

.ee-article-layout .ee-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.ee-article-layout .ee-content-container {
    background-color: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(44, 38, 35, 0.04);
}

.ee-article-layout .ee-lead-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2C2623;
    font-weight: 500;
    border-left: 3px solid #C85A32;
    padding-left: 16px;
}

.ee-article-layout .ee-heading-2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2623;
    line-height: 1.3;
    margin-top: 2rem;
}

.ee-article-layout .ee-heading-3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C2623;
    line-height: 1.35;
    margin-top: 1.5rem;
}

.ee-article-layout .ee-heading-4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2C2623;
}

.ee-article-layout .ee-text-block {
    font-size: 1rem;
    line-height: 1.75;
    color: #665E58;
}

.ee-article-layout .ee-featured-quote {
    background-color: #FAF7F2;
    border-left: 4px solid #5E6D4E;
    border-radius: 0 12px 12px 0;
    font-size: 1.0625rem;
    font-style: italic;
    color: #2C2623;
    line-height: 1.6;
}

.ee-article-layout .ee-highlight-box {
    background-color: #F5EFEB;
    border: 1px solid #D8CEBE;
}

.ee-article-layout .ee-feature-list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #665E58;
}

.ee-article-layout .ee-related-panel {
    background-color: #F5EFEB;
    border: 1px solid #D8CEBE;
}

.ee-article-layout .ee-related-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2C2623;
}

.ee-article-layout .ee-link-back {
    color: #C85A32;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.ee-article-layout .ee-link-back:hover {
    color: #B34E2A;
    text-decoration: underline;
}

.ee-article-layout .recent-post-item {
    border-color: #E6DED5 !important;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ee-article-layout .recent-post-item:hover {
    border-color: #C85A32 !important;
    background-color: #FAF7F2 !important;
}

.ee-article-layout .recent-post-title {
    font-size: 0.9375rem;
    line-height: 1.4;
}

.ee-article-layout .recent-post-link:hover .recent-post-title {
    color: #C85A32 !important;
}

@media (max-width: 767.98px) {
    .ee-article-layout .ee-article-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .ee-article-layout .ee-heading-2 {
        font-size: 1rem;
    }

    .ee-article-layout .ee-heading-3 {
        font-size: 0.875rem;
    }

    .ee-article-layout .ee-lead-paragraph {
        font-size: 0.9375rem;
    }

    .ee-article-layout .ee-text-block {
        font-size: 0.875rem;
    }
}

.ee-site-footer {
    background-color: #F5EFEB;
    border-top: 1px solid #E6DED5;
    color: #665E58;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.ee-site-footer .ee-site-footer__main {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}

.ee-site-footer .ee-site-footer__brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #C85A32;
    letter-spacing: -0.02em;
    display: inline-block;
}

.ee-site-footer .ee-site-footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #665E58;
    margin-bottom: 0;
}

.ee-site-footer .ee-site-footer__badge {
    display: inline-flex;
    align-items: center;
    background-color: #EDF0EB;
    border: 1px solid #D8CEBE;
    border-radius: 9999px;
    padding: 4px 12px;
    gap: 8px;
}

.ee-site-footer .ee-site-footer__badge-dot {
    width: 6px;
    height: 6px;
    background-color: #5E6D4E;
    border-radius: 50%;
    display: inline-block;
}

.ee-site-footer .ee-site-footer__badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5E6D4E;
    letter-spacing: 0.02em;
}

.ee-site-footer .ee-site-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2C2623;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.ee-site-footer .ee-site-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ee-site-footer .ee-site-footer__link {
    color: #665E58;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

.ee-site-footer .ee-site-footer__link:hover,
.ee-site-footer .ee-site-footer__link:focus {
    color: #C85A32;
    text-decoration: underline;
}

.ee-site-footer .ee-site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2C2623;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ee-site-footer .ee-site-footer__payment-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.ee-site-footer .ee-site-footer__payment-card svg {
    display: block;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(44, 38, 35, 0.08);
}

.ee-site-footer .ee-site-footer__bottom {
    background-color: #FAF7F2;
    border-top: 1px solid #E6DED5;
}

.ee-site-footer .ee-site-footer__copyright {
    font-size: 0.8125rem;
    color: #8E847C;
    font-weight: 500;
}

.ee-site-footer .ee-site-footer__subtext {
    font-size: 0.8125rem;
    color: #8E847C;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .ee-site-footer .ee-site-footer__main {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .ee-site-footer .ee-site-footer__title {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .ee-site-footer .ee-site-footer__link {
        font-size: 0.8125rem;
    }

    .ee-site-footer .ee-site-footer__copyright,
    .ee-site-footer .ee-site-footer__subtext {
        font-size: 0.75rem;
    }
}