:root {
    --tf-primary: #121212;
    --tf-secondary: #525252;
    --tf-accent: #D9651E;
    --tf-accent-hover: #C0520F;
    --tf-accent-subtle: #FDF3ED;
    --tf-bg-primary: #FFFFFF;
    --tf-bg-secondary: #F8F8F9;
    --tf-bg-surface: #F4F4F5;
    --tf-border: #E4E4E7;
    --tf-border-subtle: #EBEBEF;
    --tf-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --tf-font-headings: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --tf-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --tf-shadow-md: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
    --tf-shadow-lg: 0 10px 24px -3px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--tf-font-body);
    color: var(--tf-primary);
    background-color: var(--tf-bg-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tf-font-headings);
    color: var(--tf-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

.btn-accent {
    background-color: var(--tf-accent);
    color: #FFFFFF;
    border: 1px solid var(--tf-accent);
    font-weight: 600;
    border-radius: 6px;
    padding: 0.625rem 1.25rem;
    transition: none;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--tf-accent-hover);
    border-color: var(--tf-accent-hover);
    color: #FFFFFF;
}

.btn-dark-main {
    background-color: var(--tf-primary);
    color: #FFFFFF;
    border: 1px solid var(--tf-primary);
    font-weight: 600;
    border-radius: 6px;
    padding: 0.625rem 1.25rem;
}

.btn-dark-main:hover {
    background-color: #333333;
    border-color: #333333;
    color: #FFFFFF;
}

/* ===== header ===== */
.tf-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e4e4e7;
    z-index: 1030
}

.tf-header-logo {
    max-width: 42px;
    max-height: 42px;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0
}

.tf-brand-name {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #121212;
    letter-spacing: -0.02em
}

.tf-nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #121212;
    transition: color .2s ease;
    border-radius: 4px
}

.tf-nav-link:hover,
.tf-nav-link:focus {
    color: #d9651e
}

.tf-cart-btn {
    color: #121212;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e4e4e7;
    background-color: #ffffff;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease
}

.tf-cart-btn:hover,
.tf-cart-btn:focus {
    background-color: #fdf3ed;
    border-color: #d9651e;
    color: #d9651e
}

.tf-cart-icon {
    font-size: 1.25rem;
    line-height: 1
}

.tf-cart-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #d9651e;
    color: #ffffff;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #ffffff
}

.tf-btn-accent {
    background-color: #d9651e;
    color: #ffffff;
    border: 1px solid #d9651e;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease
}

.tf-btn-accent:hover,
.tf-btn-accent:focus {
    background-color: #c0520f;
    border-color: #c0520f;
    color: #ffffff
}

.tf-toggler {
    color: #121212;
    background-color: #f4f4f5;
    border-radius: 6px;
    font-size: 1.5rem;
    line-height: 1
}

.tf-toggler:hover,
.tf-toggler:focus {
    background-color: #ebebef;
    color: #121212
}

@media (max-width:991.98px) {
    .tf-header .navbar-collapse {
        background-color: #ffffff;
        border-top: 1px solid #e4e4e7;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem
    }

    .tf-header .tf-nav-link {
        font-size: 0.875rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        color: #121212
    }
}

/* ===== welcome_to_trips_fruits ===== */
.tf-hero-section {
    position: relative;
    background-color: #FFFFFF;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.tf-hero-section .min-vh-75 {
    min-height: 520px;
}

.tf-hero-section .tf-hero-bg {
    z-index: 1;
}

.tf-hero-section .tf-hero-bg-img {
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) brightness(0.98);
}

.tf-hero-section .tf-hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.tf-hero-section .container {
    z-index: 2;
}

.tf-hero-section .tf-hero-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tf-hero-section .tf-hero-badge {
    background-color: #FDF3ED;
    border: 1px solid rgba(217, 101, 30, 0.2);
    width: fit-content;
}

.tf-hero-section .tf-badge-icon {
    color: #D9651E;
    font-size: 0.9rem;
}

.tf-hero-section .tf-badge-text {
    color: #D9651E;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tf-hero-section .tf-hero-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #121212;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.tf-hero-section .tf-divider {
    width: 48px;
    height: 3px;
    background-color: #D9651E;
    border-radius: 2px;
}

.tf-hero-section .tf-hero-description {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #525252;
    font-size: 1rem;
    line-height: 1.6;
}

.tf-hero-section .tf-btn-primary {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tf-hero-section .tf-btn-primary:hover {
    background-color: #C0520F;
    border-color: #C0520F;
    color: #FFFFFF;
}

.tf-hero-section .tf-btn-outline {
    background-color: transparent;
    color: #121212;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tf-hero-section .tf-btn-outline:hover {
    background-color: #F8F8F9;
    border-color: #121212;
    color: #121212;
}

.tf-hero-section .tf-metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #121212;
    line-height: 1.2;
}

.tf-hero-section .tf-metric-label {
    font-size: 0.75rem;
    color: #737373;
    font-weight: 500;
}

.tf-hero-section .tf-feature-highlight {
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid #E4E4E7;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.tf-hero-section .tf-icon-box {
    width: 44px;
    height: 44px;
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tf-hero-section .tf-highlight-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.3;
}

.tf-hero-section .tf-highlight-subtitle {
    font-size: 0.8125rem;
    color: #737373;
}

.tf-hero-section .tf-highlight-text {
    font-size: 0.875rem;
    color: #525252;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .tf-hero-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .tf-hero-section .tf-hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .tf-hero-section .tf-hero-overlay {
        background: rgba(255, 255, 255, 0.92);
    }

    .tf-hero-section .tf-hero-card {
        padding: 1.25rem !important;
    }
}

/* ===== deal_of_the_day ===== */
.deal-of-the-day-section {
    background-color: #F8F8F9;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #121212;
}

.deal-of-the-day-section .deal-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 12px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.deal-of-the-day-section .deal-image-wrapper {
    background-color: #F8F8F9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #EBEBEF;
}

.deal-of-the-day-section .deal-product-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.deal-of-the-day-section .deal-image-wrapper:hover .deal-product-img {
    transform: scale(1.03);
}

.deal-of-the-day-section .badge-deal {
    background-color: #D9651E;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    z-index: 2;
}

.deal-of-the-day-section .deal-badge-sub {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #D9651E;
}

.deal-of-the-day-section .deal-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
}

.deal-of-the-day-section .deal-title-link {
    color: #121212;
    transition: color 0.2s ease;
}

.deal-of-the-day-section .deal-title-link:hover {
    color: #D9651E;
}

.deal-of-the-day-section .deal-stars {
    gap: 2px;
    font-size: 1rem;
}

.deal-of-the-day-section .text-accent {
    color: #D9651E;
}

.deal-of-the-day-section .deal-rating-score {
    font-size: 0.9375rem;
    color: #121212;
}

.deal-of-the-day-section .deal-rating-count {
    font-size: 0.875rem;
    color: #525252;
}

.deal-of-the-day-section .deal-description {
    color: #525252;
    line-height: 1.6;
    font-size: 1rem;
}

.deal-of-the-day-section .deal-current-price {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #121212;
    line-height: 1;
}

.deal-of-the-day-section .deal-old-price {
    font-size: 1.25rem;
    color: #737373;
    line-height: 1;
}

.deal-of-the-day-section .deal-save-tag {
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.deal-of-the-day-section .deal-timer-container {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 1rem;
}

.deal-of-the-day-section .deal-timer-label {
    font-size: 0.875rem;
    color: #121212;
}

.deal-of-the-day-section .deal-timer-block {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    padding: 0.5rem 0.25rem;
}

.deal-of-the-day-section .deal-timer-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    color: #121212;
    line-height: 1.2;
}

.deal-of-the-day-section .deal-timer-text {
    font-size: 0.75rem;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.deal-of-the-day-section .deal-timer-colon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    color: #121212;
}

.deal-of-the-day-section .deal-btn-add {
    background-color: #D9651E;
    border: 1px solid #D9651E;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.deal-of-the-day-section .deal-btn-add:hover {
    background-color: #C0520F;
    border-color: #C0520F;
    color: #FFFFFF;
}

.deal-of-the-day-section .deal-btn-view {
    background-color: transparent;
    border: 1px solid #E4E4E7;
    color: #121212;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.deal-of-the-day-section .deal-btn-view:hover {
    background-color: #F8F8F9;
    border-color: #121212;
    color: #121212;
}

.deal-of-the-day-section .deal-perks {
    border-color: #EBEBEF !important;
}

.deal-of-the-day-section .deal-perk-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #525252;
}

@media (max-width: 767.98px) {
    .deal-of-the-day-section .deal-title {
        font-size: 16px;
        hyphens: auto;
    }

    .deal-of-the-day-section .deal-current-price {
        font-size: 1.75rem;
    }

    .deal-of-the-day-section .deal-timer-num {
        font-size: 1.25rem;
    }
}

/* ===== seasonal_collection ===== */
.seasonal-collection-block {
    background-color: #FFFFFF;
    color: #121212;
    overflow: hidden;
}

.seasonal-collection-block__badge {
    background-color: #FDF3ED;
    color: #D9651E;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(217, 101, 30, 0.2);
}

.seasonal-collection-block__heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #121212;
}

.seasonal-collection-block__subheading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #525252;
    max-width: 620px;
}

.seasonal-collection-block__filter-btn {
    background-color: #F4F4F5;
    color: #525252;
    border: 1px solid #E4E4E7;
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.seasonal-collection-block__filter-btn:hover {
    background-color: #EBEBEF;
    color: #121212;
}

.seasonal-collection-block__filter-btn.active {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.seasonal-collection-block__card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.seasonal-collection-block__card:hover {
    border-color: #121212;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.seasonal-collection-block__card-img-wrap {
    background-color: #F8F8F9;
    aspect-ratio: 1 / 1;
    border-bottom: 1px solid #EBEBEF;
    overflow: hidden;
}

.seasonal-collection-block__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seasonal-collection-block__tag {
    background-color: #121212;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.seasonal-collection-block__card-meta {
    font-size: 0.75rem;
    font-weight: 500;
    color: #737373;
}

.seasonal-collection-block__rating {
    color: #D9651E;
    font-weight: 600;
}

.seasonal-collection-block__card-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #121212;
}

.seasonal-collection-block__card-title-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.seasonal-collection-block__card-title-link:hover {
    color: #D9651E;
}

.seasonal-collection-block__card-desc {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #525252;
}

.seasonal-collection-block__price-label {
    font-size: 0.6875rem;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.seasonal-collection-block__price {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.2;
}

.seasonal-collection-block__cart-btn {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.seasonal-collection-block__cart-btn:hover,
.seasonal-collection-block__cart-btn:focus {
    background-color: #C0520F;
    border-color: #C0520F;
    color: #FFFFFF;
}

.seasonal-collection-block__catalog-btn {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.seasonal-collection-block__catalog-btn:hover {
    background-color: #333333;
    border-color: #333333;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .seasonal-collection-block__heading {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .seasonal-collection-block__subheading {
        font-size: 0.875rem;
    }

    .seasonal-collection-block__filter-btn {
        font-size: 0.8125rem;
        padding: 0.35rem 0.75rem;
    }
}

/* ===== our_products ===== */
.tf-catalog-grid-block {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tf-catalog-grid-block .tf-catalog-badge {
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    border: 1px solid #F8D7C4;
}

.tf-catalog-grid-block .tf-catalog-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #121212;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.tf-catalog-grid-block .tf-catalog-subtitle {
    color: #525252;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
}

.tf-catalog-grid-block .tf-catalog-view-all-btn {
    background-color: #F8F8F9;
    color: #121212;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    padding: 0.65rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tf-catalog-grid-block .tf-catalog-view-all-btn:hover {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.tf-catalog-grid-block .tf-filter-pill {
    background-color: #F4F4F5;
    color: #525252;
    border: 1px solid #E4E4E7;
    border-radius: 100px;
    padding: 0.45rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tf-catalog-grid-block .tf-filter-pill:hover {
    background-color: #EBEBEF;
    color: #121212;
}

.tf-catalog-grid-block .tf-filter-pill.active {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.tf-catalog-grid-block .tf-product-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tf-catalog-grid-block .tf-product-card:hover {
    border-color: #121212;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.tf-catalog-grid-block .tf-product-card-head {
    background-color: #F8F8F9;
    border-bottom: 1px solid #EBEBEF;
    overflow: hidden;
}

.tf-catalog-grid-block .tf-product-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tf-catalog-grid-block .tf-product-card:hover .tf-product-img {
    transform: scale(1.03);
}

.tf-catalog-grid-block .tf-product-tag {
    background-color: #FFFFFF;
    color: #121212;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #E4E4E7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tf-catalog-grid-block .tf-product-rating {
    font-size: 0.8125rem;
}

.tf-catalog-grid-block .tf-rating-val {
    font-weight: 700;
    color: #121212;
}

.tf-catalog-grid-block .tf-rating-count {
    color: #737373;
    font-size: 0.75rem;
}

.tf-catalog-grid-block .tf-stock-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tf-catalog-grid-block .tf-stock-badge.in-stock {
    background-color: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.tf-catalog-grid-block .tf-product-name {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
}

.tf-catalog-grid-block .tf-product-title-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tf-catalog-grid-block .tf-product-title-link:hover {
    color: #D9651E;
}

.tf-catalog-grid-block .tf-product-desc {
    font-size: 0.875rem;
    color: #525252;
    line-height: 1.45;
}

.tf-catalog-grid-block .tf-product-specs {
    background-color: #F8F8F9;
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    border: 1px solid #EBEBEF;
}

.tf-catalog-grid-block .tf-spec-item:not(:last-child) {
    border-bottom: 1px dashed #E4E4E7;
}

.tf-catalog-grid-block .tf-spec-label {
    font-size: 0.75rem;
    color: #737373;
    font-weight: 500;
}

.tf-catalog-grid-block .tf-spec-value {
    font-size: 0.75rem;
    color: #121212;
    font-weight: 600;
}

.tf-catalog-grid-block .tf-product-footer {
    border-top: 1px solid #EBEBEF;
}

.tf-catalog-grid-block .tf-price-label {
    font-size: 0.6875rem;
    color: #737373;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tf-catalog-grid-block .tf-price-val {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1875rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.1;
}

.tf-catalog-grid-block .tf-add-to-cart-btn {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tf-catalog-grid-block .tf-add-to-cart-btn:hover {
    background-color: #C0520F;
    border-color: #C0520F;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .tf-catalog-grid-block .tf-catalog-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .tf-catalog-grid-block .tf-product-name {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .tf-catalog-grid-block .tf-catalog-subtitle {
        font-size: 0.875rem;
    }
}

/* ===== package_sizes_and_servings ===== */
.tf-package-block {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tf-package-block .tf-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background-color: #FDF3ED;
    color: #D9651E;
}

.tf-package-block .tf-heading-2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
}

.tf-package-block .tf-heading-3 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #121212;
}

.tf-package-block .tf-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #525252;
}

.tf-package-block .tf-table-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.tf-package-block .tf-spec-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.tf-package-block .tf-spec-table thead {
    background-color: #F8F8F9;
    border-bottom: 1px solid #E4E4E7;
}

.tf-package-block .tf-th {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #121212;
    padding: 1rem 1.25rem;
    white-space: nowrap;
    border-bottom: 1px solid #E4E4E7;
}

.tf-package-block .tf-spec-table tbody tr {
    border-bottom: 1px solid #EBEBEF;
}

.tf-package-block .tf-spec-table tbody tr:last-child {
    border-bottom: none;
}

.tf-package-block .tf-td-primary,
.tf-package-block .tf-td-data {
    padding: 1.125rem 1.25rem;
    font-size: 0.9375rem;
    color: #525252;
    vertical-align: middle;
}

.tf-package-block .tf-td-primary {
    color: #121212;
}

.tf-package-block .tf-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 500;
    color: #121212;
}

.tf-package-block .tf-text-subtle {
    font-size: 0.75rem;
    color: #737373;
}

.tf-package-block .tf-accent-note {
    font-size: 0.75rem;
    font-weight: 600;
    color: #D9651E;
}

.tf-package-block .tf-size-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    background-color: #F4F4F5;
    color: #121212;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
}

.tf-package-block .tf-size-tag-highlight {
    background-color: #D9651E;
    color: #FFFFFF;
}

.tf-package-block .tf-badge-surface {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    background-color: #F4F4F5;
    color: #121212;
    border: 1px solid #E4E4E7;
    border-radius: 4px;
    white-space: nowrap;
}

.tf-package-block .tf-guide-box {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

.tf-package-block .tf-guide-icon {
    font-size: 1.5rem;
    color: #D9651E;
}

.tf-package-block .tf-guide-lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #525252;
}

.tf-package-block .tf-tip-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.tf-package-block .tf-accent-icon {
    font-size: 1.25rem;
    color: #D9651E;
}

.tf-package-block .tf-tip-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #121212;
}

.tf-package-block .tf-tip-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #525252;
}

.tf-package-block .tf-btn-primary {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    min-height: 44px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.tf-package-block .tf-btn-primary:hover {
    background-color: #C0520F;
    border-color: #C0520F;
    color: #FFFFFF;
}

.tf-package-block .tf-btn-outline {
    background-color: transparent;
    color: #121212;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    min-height: 44px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.tf-package-block .tf-btn-outline:hover {
    background-color: #F8F8F9;
    border-color: #121212;
    color: #121212;
}

@media (max-width: 767.98px) {
    .tf-package-block .tf-heading-2 {
        font-size: 16px;
        hyphens: auto;
    }

    .tf-package-block .tf-heading-3 {
        font-size: 14px;
        hyphens: auto;
    }

    .tf-package-block .tf-tip-title {
        font-size: 13px;
    }

    .tf-package-block .tf-btn-primary,
    .tf-package-block .tf-btn-outline {
        width: 100%;
    }
}

/* ===== product_questions ===== */
.tf-product-questions {
    background-color: #FFFFFF;
    color: #121212;
}

.tf-product-questions__badge {
    background-color: #FDF3ED;
    color: #D9651E;
    border-radius: 100px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tf-product-questions__title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #121212;
}

@media (max-width: 767.98px) {
    .tf-product-questions__title {
        font-size: 1.25rem;
        hyphens: auto;
    }
}

.tf-product-questions__subtitle {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #525252;
}

.tf-product-questions__filter-btn {
    background-color: #F4F4F5;
    color: #525252;
    border: 1px solid #E4E4E7;
    border-radius: 100px;
    padding: 0.5rem 1.125rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tf-product-questions__filter-btn:hover {
    background-color: #EBEBEF;
    color: #121212;
}

.tf-product-questions__filter-btn.active {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.tf-product-questions__item {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.tf-product-questions__item:hover {
    border-color: #D9651E;
}

.tf-product-questions__trigger {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: left;
}

.tf-product-questions__icon {
    font-size: 1.25rem;
    color: #D9651E;
    flex-shrink: 0;
}

.tf-product-questions__item-title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    color: #121212;
}

@media (max-width: 767.98px) {
    .tf-product-questions__item-title {
        font-size: 0.9375rem;
        hyphens: auto;
    }
}

.tf-product-questions__arrow {
    font-size: 1.125rem;
    color: #525252;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.tf-product-questions__trigger[aria-expanded="true"] .tf-product-questions__arrow {
    transform: rotate(180deg);
    color: #D9651E;
}

.tf-product-questions__panel {
    display: none;
}

.tf-product-questions__panel.is-open {
    display: block;
}

.tf-product-questions__content {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #525252;
    border-top: 1px solid #EBEBEF;
    padding-top: 1rem;
}

.tf-product-questions__notice {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

.tf-product-questions__notice-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tf-product-questions__notice-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .tf-product-questions__notice-title {
        font-size: 0.875rem;
    }
}

.tf-product-questions__notice-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    color: #525252;
    line-height: 1.4;
}

.tf-product-questions__notice-btn {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
}

.tf-product-questions__notice-btn:hover {
    background-color: #333333;
    border-color: #333333;
    color: #FFFFFF;
}

/* ===== empty_container_return_program ===== */
.tf-trade-in-block {
    background-color: #FFFFFF;
    color: #121212;
    overflow: hidden;
}

.tf-trade-in-block .tf-badge-pill {
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    border: 1px solid rgba(217, 101, 30, 0.2);
}

.tf-trade-in-block .tf-section-heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #121212;
}

.tf-trade-in-block .tf-section-subtitle {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #525252;
}

.tf-trade-in-block .tf-step-card {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tf-trade-in-block .tf-step-card:hover {
    border-color: #121212;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.tf-trade-in-block .tf-step-num {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #D9651E;
    line-height: 1;
}

.tf-trade-in-block .tf-step-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #121212;
}

.tf-trade-in-block .tf-step-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: #121212;
}

.tf-trade-in-block .tf-step-desc {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #525252;
}

.tf-trade-in-block .tf-calc-wrapper {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

.tf-trade-in-block .tf-calc-subbadge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #D9651E;
}

.tf-trade-in-block .tf-calc-heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #121212;
}

.tf-trade-in-block .tf-calc-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #525252;
}

.tf-trade-in-block .tf-counter-item {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
}

.tf-trade-in-block .tf-item-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #121212;
}

.tf-trade-in-block .tf-item-rate {
    font-size: 0.8125rem;
    color: #737373;
}

.tf-trade-in-block .tf-btn-count {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #E4E4E7;
    background-color: #F4F4F5;
    color: #121212;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.tf-trade-in-block .tf-btn-count:hover {
    background-color: #E4E4E7;
    border-color: #121212;
}

.tf-trade-in-block .tf-count-value {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    min-width: 44px;
    text-align: center;
    color: #121212;
}

.tf-trade-in-block .tf-summary-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.tf-trade-in-block .tf-summary-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tf-trade-in-block .tf-summary-amount {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D9651E;
    line-height: 1;
}

.tf-trade-in-block .tf-summary-qty {
    font-size: 0.875rem;
    color: #525252;
    font-weight: 500;
}

.tf-trade-in-block .tf-summary-divider {
    height: 1px;
    background-color: #EBEBEF;
}

.tf-trade-in-block .tf-summary-note {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #737373;
}

.tf-trade-in-block .tf-primary-btn {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-block;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tf-trade-in-block .tf-primary-btn:hover {
    background-color: #C0520F;
    border-color: #C0520F;
    color: #FFFFFF;
}

.tf-trade-in-block .tf-conditions-box {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

.tf-trade-in-block .tf-cond-icon-box {
    width: 44px;
    height: 44px;
    background-color: #FDF3ED;
    color: #D9651E;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.tf-trade-in-block .tf-cond-main-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #121212;
}

.tf-trade-in-block .tf-cond-main-desc {
    font-size: 0.875rem;
    color: #525252;
}

.tf-trade-in-block .tf-cond-item {
    background-color: #FFFFFF;
    border: 1px solid #EBEBEF;
    border-radius: 6px;
}

.tf-trade-in-block .tf-cond-check {
    color: #D9651E;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.tf-trade-in-block .tf-cond-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #121212;
}

.tf-trade-in-block .tf-cond-text {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #525252;
}

.tf-trade-in-block .tf-cond-footer-text {
    font-size: 0.875rem;
    color: #525252;
}

.tf-trade-in-block .tf-inline-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #121212;
    transition: color 0.15s ease;
}

.tf-trade-in-block .tf-inline-link:hover {
    color: #D9651E;
}

@media (max-width: 767.98px) {
    .tf-trade-in-block .tf-section-heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .tf-trade-in-block .tf-calc-heading {
        font-size: 0.9375rem;
        hyphens: auto;
    }

    .tf-trade-in-block .tf-step-title,
    .tf-trade-in-block .tf-cond-main-title {
        font-size: 0.875rem;
    }

    .tf-trade-in-block .tf-cond-title {
        font-size: 0.8125rem;
    }

    .tf-trade-in-block .tf-summary-amount {
        font-size: 2rem;
    }
}

/* ===== latest_from_the_blog ===== */
.blog-grid-section {
    background-color: #F8F8F9;
}

.blog-grid-section .blog-grid-badge {
    background-color: #FDF3ED;
    border: 1px solid #E4E4E7;
}

.blog-grid-section .text-accent {
    color: #D9651E;
}

.blog-grid-section .blog-badge-text {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #D9651E;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.blog-grid-section .blog-grid-heading {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
    letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
    .blog-grid-section .blog-grid-heading {
        font-size: 1.5rem;
        hyphens: auto;
    }
}

.blog-grid-section .blog-view-all-btn {
    background-color: #FFFFFF;
    color: #121212;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-grid-section .blog-view-all-btn:hover {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.blog-grid-section .blog-grid-card {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-grid-section .blog-grid-card:hover {
    border-color: #121212;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.blog-grid-section .blog-card-media {
    background-color: #F4F4F5;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-grid-section .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-grid-section .blog-grid-card:hover .blog-card-img {
    transform: scale(1.03);
}

.blog-grid-section .blog-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #EBEBEF;
}

.blog-grid-section .blog-card-meta {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.8125rem;
    color: #525252;
}

.blog-grid-section .blog-card-title {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #121212;
}

@media (max-width: 767.98px) {
    .blog-grid-section .blog-card-title {
        font-size: 1.125rem;
        hyphens: auto;
    }
}

.blog-grid-section .blog-title-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-grid-section .blog-title-link:hover {
    color: #D9651E;
}

.blog-grid-section .blog-card-excerpt {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #525252;
}

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

.blog-grid-section .blog-action-btn {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.blog-grid-section .blog-action-btn:hover {
    background-color: #D9651E;
    border-color: #D9651E;
    color: #FFFFFF;
}

/* ===== footer ===== */
.trips-fruits-footer {
    background-color: #F8F8F9;
    border-top: 1px solid #E4E4E7;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    color: #525252;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

.trips-fruits-footer .footer-brand-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
    margin-bottom: 1rem;
    letter-spacing: -0.01em
}

.trips-fruits-footer .footer-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 0
}

.trips-fruits-footer .footer-heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: #121212;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em
}

.trips-fruits-footer .footer-links-list,
.trips-fruits-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.trips-fruits-footer .footer-link {
    color: #525252;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
    display: inline-block
}

.trips-fruits-footer .footer-link:hover {
    color: #D9651E;
    text-decoration: underline
}

.trips-fruits-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.5
}

.trips-fruits-footer .footer-contact-icon {
    color: #D9651E;
    font-size: 1.125rem;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 0.125rem
}

.trips-fruits-footer .footer-contact-text {
    color: #525252;
    word-break: break-word
}

.trips-fruits-footer .footer-wa-link {
    font-weight: 600;
    color: #121212
}

.trips-fruits-footer .footer-wa-link:hover {
    color: #D9651E
}

.trips-fruits-footer .footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #EBEBEF
}

.trips-fruits-footer .footer-copyright {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 0;
    line-height: 1.4
}

.trips-fruits-footer .footer-payments {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center
}

.trips-fruits-footer .payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #121212;
    line-height: 1.2
}

.trips-fruits-footer .payment-badge i {
    font-size: 1rem;
    color: #D9651E
}

@media(max-width:767.98px) {
    .trips-fruits-footer {
        padding-top: 3rem;
        padding-bottom: 2rem
    }

    .trips-fruits-footer .footer-brand-title {
        font-size: 1.25rem
    }

    .trips-fruits-footer .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.875rem
    }

    .trips-fruits-footer .footer-bottom {
        margin-top: 2.25rem;
        padding-top: 1.25rem
    }
}

/* ===== PAGE: catalog ===== */
.catalog-page {
  background-color: #FFFFFF;
  color: #121212;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.catalog-page .catalog-badge {
  background-color: #FDF3ED;
  color: #D9651E;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.catalog-page .catalog-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: #121212;
  line-height: 1.2;
}

.catalog-page .catalog-toolbar {
  background-color: #FFFFFF;
  border-color: #E4E4E7 !important;
}

.catalog-page .catalog-search-group .form-control,
.catalog-page .catalog-toolbar .form-select {
  background-color: #FFFFFF;
  border-color: #E4E4E7;
  color: #121212;
  font-size: 0.9375rem;
}

.catalog-page .catalog-search-group .form-control:focus,
.catalog-page .catalog-toolbar .form-select:focus {
  border-color: #D9651E;
  box-shadow: 0 0 0 0.2rem rgba(217, 101, 30, 0.15);
}

.catalog-page .catalog-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-page .catalog-card:hover {
  border-color: #121212;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08) !important;
}

.catalog-page .catalog-card-img-link {
  position: relative;
  background-color: #F8F8F9;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid #EBEBEF;
}

.catalog-page .catalog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-page .catalog-card-badge {
  background-color: rgba(18, 18, 18, 0.75);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.catalog-page .catalog-card-title {
  line-height: 1.3;
}

.catalog-page .catalog-card-title a {
  transition: color 0.15s ease;
}

.catalog-page .catalog-card-title a:hover {
  color: #D9651E !important;
}

.catalog-page .catalog-card-specs {
  line-height: 1.45;
}

.catalog-page .catalog-btn-cart {
  background-color: #D9651E;
  color: #FFFFFF;
  border: 1px solid #D9651E;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.35rem 0.85rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.catalog-page .catalog-btn-cart:hover {
  background-color: #C0520F;
  border-color: #C0520F;
  color: #FFFFFF;
}

.catalog-page .catalog-btn-load-more {
  background-color: #121212;
  color: #FFFFFF;
  border: 1px solid #121212;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.catalog-page .catalog-btn-load-more:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .catalog-page .catalog-title {
    font-size: 1.125rem;
  }
  .catalog-page .catalog-card-title {
    font-size: 0.875rem;
  }
}

/* ===== PAGE: blog ===== */
.main-blog-grid { background-color: #FFFFFF; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.main-blog-grid__title { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 2.25rem; font-weight: 700; color: #121212; line-height: 1.2; letter-spacing: -0.02em; }
.main-blog-grid__badge { background-color: #FDF3ED; color: #D9651E; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.main-blog-grid__lead { font-size: 1.0625rem; line-height: 1.6; color: #525252; max-width: 680px; }
.main-blog-grid__search-wrap { width: 100%; max-width: 340px; }
.main-blog-grid__search-icon { left: 1rem; color: #737373; font-size: 1.125rem; pointer-events: none; }
.main-blog-grid .form-control { background-color: #FFFFFF; border: 1px solid #E4E4E7; border-radius: 6px; padding: 0.625rem 1rem 0.625rem 2.5rem; color: #121212; font-size: 0.9375rem; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.main-blog-grid .form-control::placeholder { color: #A3A3A3; opacity: 1; }
.main-blog-grid .form-control:focus { background-color: #FFFFFF; border-color: #D9651E; color: #121212; box-shadow: 0 0 0 3px rgba(217, 101, 30, 0.15); outline: none; }
.main-blog-grid__filter-btn { background-color: #F4F4F5; color: #525252; border: 1px solid transparent; border-radius: 100px; padding: 0.5rem 1.125rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.main-blog-grid__filter-btn:hover { background-color: #E4E4E7; color: #121212; }
.main-blog-grid__filter-btn.is-active { background-color: #121212; color: #FFFFFF; border-color: #121212; }
.main-blog-grid__card { background-color: #FFFFFF; border: 1px solid #E4E4E7; border-radius: 8px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04); transition: border-color 0.2s ease, box-shadow 0.2s ease; overflow: hidden; }
.main-blog-grid__card:hover { border-color: #121212; box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08); }
.main-blog-grid__thumb-wrapper { aspect-ratio: 16 / 10; background-color: #F8F8F9; border-bottom: 1px solid #EBEBEF; position: relative; }
.main-blog-grid__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.main-blog-grid__meta-item { font-size: 0.8125rem; color: #737373; font-weight: 500; }
.main-blog-grid__card-title { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.25rem; font-weight: 700; line-height: 1.35; color: #121212; }
.main-blog-grid__title-link { color: #121212; text-decoration: none; transition: color 0.15s ease; }
.main-blog-grid__title-link:hover { color: #D9651E; }
.main-blog-grid__excerpt { font-size: 0.9375rem; line-height: 1.55; color: #525252; }
.main-blog-grid__footer { border-color: #EBEBEF !important; }
.main-blog-grid__read-more { color: #D9651E; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: color 0.15s ease; }
.main-blog-grid__read-more:hover { color: #C0520F; }
.main-blog-grid__comments { font-size: 0.8125rem; color: #737373; font-weight: 500; }
.main-blog-grid__no-results { border: 1px dashed #E4E4E7; border-radius: 8px; background-color: #F8F8F9; }
.main-blog-grid__no-results h3 { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 700; color: #121212; }
@media (max-width: 767.98px) {
  .main-blog-grid__title { font-size: 1.125rem; }
  .main-blog-grid__card-title { font-size: 1rem; }
  .main-blog-grid__search-wrap { max-width: 100%; }
  .main-blog-grid__filter-group { width: 100%; }
  .main-blog-grid__filter-btn { flex: 1 1 auto; text-align: center; padding: 0.4rem 0.75rem; font-size: 0.8125rem; }
}

/* ===== PAGE: about ===== */
.tf-about-page { background-color: #FFFFFF; color: #121212; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.tf-about-page .tf-badge { background-color: #FDF3ED; color: #D9651E; font-size: 0.8125rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.tf-about-page .tf-sub-badge { background-color: #F4F4F5; color: #121212; font-size: 0.8125rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 6px; }
.tf-about-page .tf-main-heading { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; color: #121212; letter-spacing: -0.02em; }
.tf-about-page .tf-section-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; line-height: 1.25; color: #121212; }
.tf-about-page .tf-feature-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 600; line-height: 1.3; color: #121212; }
.tf-about-page .tf-step-pane-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 600; color: #121212; }
.tf-about-page .tf-cta-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.85rem; font-weight: 700; color: #121212; }
.tf-about-page .tf-lead-text { font-size: 1.125rem; color: #525252; line-height: 1.6; }
.tf-about-page .tf-body-text { font-size: 1rem; color: #525252; line-height: 1.6; }
.tf-about-page .tf-feature-text { font-size: 0.9375rem; color: #525252; line-height: 1.5; }
.tf-about-page .tf-cta-desc { font-size: 1.0625rem; color: #525252; line-height: 1.5; max-width: 620px; }
.tf-about-page .tf-feature-card { background-color: #F8F8F9; border: 1px solid #E4E4E7; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.tf-about-page .tf-feature-card:hover { border-color: #121212; box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05); }
.tf-about-page .tf-process-card { background-color: #F8F8F9; border: 1px solid #E4E4E7; }
.tf-about-page .tf-icon-bubble { width: 48px; height: 48px; background-color: #FDF3ED; color: #D9651E; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.tf-about-page .tf-story-image-wrap, .tf-about-page .tf-process-image-wrap { position: relative; width: 100%; height: 100%; min-height: 280px; }
.tf-about-page .tf-story-img, .tf-about-page .tf-process-img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; border: 1px solid #E4E4E7; display: block; }
.tf-about-page .tf-step-btn { background-color: #FFFFFF; border: 1px solid #E4E4E7; color: #525252; font-size: 0.875rem; font-weight: 600; padding: 0.45rem 0.9rem; border-radius: 6px; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.tf-about-page .tf-step-btn:hover { border-color: #121212; color: #121212; }
.tf-about-page .tf-step-btn.active { background-color: #121212; color: #FFFFFF; border-color: #121212; }
.tf-about-page .tf-step-content-pane { background-color: #FFFFFF; border: 1px solid #E4E4E7; padding: 1.25rem; border-radius: 6px; }
.tf-about-page .tf-cta-banner { background-color: #F8F8F9; border: 1px solid #E4E4E7; }
.tf-about-page .tf-btn-primary { background-color: #D9651E; border: 1px solid #D9651E; color: #FFFFFF; font-weight: 600; border-radius: 6px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.tf-about-page .tf-btn-primary:hover { background-color: #C0520F; border-color: #C0520F; color: #FFFFFF; }
.tf-about-page .tf-btn-outline { background-color: transparent; border: 1px solid #E4E4E7; color: #121212; font-weight: 600; border-radius: 6px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.tf-about-page .tf-btn-outline:hover { background-color: #F4F4F5; border-color: #121212; color: #121212; }
@media (max-width: 767.98px) { .tf-about-page .tf-main-heading { font-size: 1.125rem; hyphens: auto; } .tf-about-page .tf-section-title { font-size: 1rem; hyphens: auto; } .tf-about-page .tf-feature-title, .tf-about-page .tf-step-pane-title, .tf-about-page .tf-cta-title { font-size: 0.875rem; hyphens: auto; } .tf-about-page .tf-lead-text { font-size: 0.9375rem; } .tf-about-page .tf-body-text, .tf-about-page .tf-feature-text { font-size: 0.875rem; } }

/* ===== PAGE: contact ===== */
.contact-section {
  background-color: #FFFFFF;
  color: #121212;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-section .contact-badge {
  background-color: #FDF3ED;
  color: #D9651E;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  border-radius: 6px;
}

.contact-section .contact-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #121212;
  letter-spacing: -0.02em;
}

.contact-section .contact-subtitle {
  max-width: 640px;
  line-height: 1.6;
  font-size: 1rem;
  color: #525252;
}

.contact-section .contact-card {
  background-color: #F8F8F9;
  border: 1px solid #E4E4E7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-section .contact-card:hover {
  border-color: #121212;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.contact-section .contact-icon-box {
  width: 48px;
  height: 48px;
  background-color: #FDF3ED;
  color: #D9651E;
}

.contact-section .contact-card-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #121212;
}

.contact-section .contact-card-text {
  line-height: 1.5;
  color: #525252;
}

.contact-section .contact-link {
  color: #121212;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section .contact-link:hover {
  color: #D9651E;
  text-decoration: underline;
}

.contact-section .contact-btn {
  background-color: #D9651E;
  color: #FFFFFF;
  border: 1px solid #D9651E;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-section .contact-btn:hover {
  background-color: #C0520F;
  border-color: #C0520F;
  color: #FFFFFF;
}

.contact-section .map-container {
  border: 1px solid #E4E4E7;
  background-color: #F8F8F9;
  min-height: 380px;
}

.contact-section .map-frame {
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 767.98px) {
  .contact-section .contact-title {
    font-size: 1.5rem;
  }
  .contact-section .contact-card-title {
    font-size: 1.125rem;
  }
  .contact-section .map-frame {
    height: 300px;
  }
}

/* ===== PAGE: cart ===== */
.trips-fruits-cart-section {
  background-color: #F8F8F9;
  min-height: 80vh;
}
.trips-fruits-cart-section .cart-header-box {
  background-color: #FFFFFF;
}
.trips-fruits-cart-section .cart-badge-pill {
  background-color: #FDF3ED;
  color: #D9651E;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trips-fruits-cart-section .cart-main-heading {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #121212;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.trips-fruits-cart-section .cart-items-title,
.trips-fruits-cart-section .checkout-section-title,
.trips-fruits-cart-section .cart-summary-heading {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #121212;
  font-weight: 700;
}
.trips-fruits-cart-section .cart-item-row {
  border-bottom: 1px solid #EBEBEF;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}
.trips-fruits-cart-section .cart-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.trips-fruits-cart-section .cart-item-thumbnail {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #F4F4F5;
  border: 1px solid #E4E4E7;
}
.trips-fruits-cart-section .cart-item-name {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #121212;
}
.trips-fruits-cart-section .cart-item-price-unit {
  color: #525252;
  font-size: 0.9rem;
}
.trips-fruits-cart-section .cart-item-total-price {
  color: #121212;
  font-weight: 700;
  font-size: 1.1rem;
}
.trips-fruits-cart-section .cart-qty-ctrl-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E4E4E7;
  border-radius: 6px;
  background-color: #FFFFFF;
}
.trips-fruits-cart-section .cart-qty-btn {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  cursor: pointer;
  font-weight: 700;
}
.trips-fruits-cart-section .cart-qty-btn:hover {
  background-color: #F4F4F5;
}
.trips-fruits-cart-section .cart-qty-value-input {
  width: 38px;
  text-align: center;
  border: none;
  font-weight: 600;
  color: #121212;
  background: transparent;
  pointer-events: none;
}
.trips-fruits-cart-section .cart-remove-item-btn {
  border: none;
  background: transparent;
  color: #737373;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.trips-fruits-cart-section .cart-remove-item-btn:hover {
  color: #C0520F;
  background-color: #FDF3ED;
}
.trips-fruits-cart-section .cart-primary-btn {
  background-color: #D9651E;
  border-color: #D9651E;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 6px;
}
.trips-fruits-cart-section .cart-primary-btn:hover,
.trips-fruits-cart-section .cart-primary-btn:focus {
  background-color: #C0520F;
  border-color: #C0520F;
  color: #FFFFFF;
}
.trips-fruits-cart-section .cart-secondary-btn {
  background-color: #121212;
  border-color: #121212;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 6px;
}
.trips-fruits-cart-section .cart-secondary-btn:hover,
.trips-fruits-cart-section .cart-secondary-btn:focus {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
}
.trips-fruits-cart-section .cart-outline-btn {
  background-color: transparent;
  border: 1px solid #E4E4E7;
  color: #121212;
  font-weight: 600;
  border-radius: 6px;
}
.trips-fruits-cart-section .cart-outline-btn:hover,
.trips-fruits-cart-section .cart-outline-btn:focus {
  background-color: #F8F8F9;
  border-color: #121212;
  color: #121212;
}
.trips-fruits-cart-section .cart-input-label {
  font-weight: 600;
  color: #121212;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.trips-fruits-cart-section .cart-text-input {
  background-color: #FFFFFF;
  border: 1px solid #E4E4E7;
  color: #121212;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
}
.trips-fruits-cart-section .cart-text-input:focus {
  border-color: #D9651E;
  box-shadow: 0 0 0 0.2rem rgba(217, 101, 30, 0.15);
  outline: none;
}
.trips-fruits-cart-section .cart-text-input::placeholder {
  color: #A3A3A3;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .trips-fruits-cart-section .cart-main-heading {
    font-size: 1.125rem;
  }
  .trips-fruits-cart-section .cart-items-title,
  .trips-fruits-cart-section .checkout-section-title,
  .trips-fruits-cart-section .cart-summary-heading {
    font-size: 1rem;
  }
  .trips-fruits-cart-section .cart-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-policy-section {
  background-color: #F8F8F9;
  color: #121212;
  min-height: 70vh;
}

.privacy-policy-section .privacy-policy-section__badge {
  background-color: #FDF3ED;
  color: #D9651E;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  display: inline-block;
}

.privacy-policy-section .privacy-policy-section__title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
  letter-spacing: -0.02em;
}

.privacy-policy-section .privacy-policy-section__lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 680px;
}

.privacy-policy-section .privacy-policy-section__card {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.privacy-policy-section .privacy-policy-section__nav-box {
  background-color: #F8F8F9;
  border: 1px solid #E4E4E7;
}

.privacy-policy-section .privacy-policy-section__subheading {
  color: #121212;
  letter-spacing: 0.04em;
}

.privacy-policy-section .text-accent,
.policy-page-block .text-accent {
  color: #D9651E;
}

.privacy-policy-section .privacy-policy-section__toc-link {
  color: #525252;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.15s ease-in-out;
}

.privacy-policy-section .privacy-policy-section__toc-link:hover {
  color: #D9651E;
  text-decoration: underline;
}

.privacy-policy-section .privacy-policy-section__block {
  margin-bottom: 2rem;
}

.privacy-policy-section .privacy-policy-section__heading {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 1rem;
}

.privacy-policy-section p {
  font-size: 0.975rem;
  line-height: 1.65;
  color: #525252;
  margin-bottom: 1rem;
}

.privacy-policy-section .privacy-policy-section__list {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  color: #525252;
  font-size: 0.975rem;
  line-height: 1.65;
}

.privacy-policy-section .privacy-policy-section__list li {
  margin-bottom: 0.5rem;
}

.privacy-policy-section .privacy-policy-section__divider {
  border: 0;
  border-top: 1px solid #EBEBEF;
  margin: 2rem 0;
  opacity: 1;
}

.privacy-policy-section .privacy-policy-section__contact-box {
  background-color: #F8F8F9;
  border: 1px solid #E4E4E7;
  font-size: 0.9375rem;
}

@media (max-width: 767.98px) {
  .privacy-policy-section .privacy-policy-section__title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .privacy-policy-section .privacy-policy-section__heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .privacy-policy-section .privacy-policy-section__card {
    padding: 1.25rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-content-section {
  background-color: #FFFFFF;
  color: #121212;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.terms-content-section .terms-badge {
  background-color: #FDF3ED;
  border: 1px solid #EBEBEF;
}

.terms-content-section .terms-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #D9651E;
}

.terms-content-section .text-accent {
  color: #D9651E;
}

.terms-content-section .terms-main-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
}

.terms-content-section .terms-lead-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #525252;
  max-width: 800px;
}

.terms-content-section .terms-toc-card {
  background-color: #F8F8F9;
  border-color: #E4E4E7 !important;
  top: 1.5rem;
}

.terms-content-section .terms-toc-heading {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #121212;
  font-weight: 700;
}

.terms-content-section .terms-toc-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #525252;
  background-color: #FFFFFF;
  border: 1px solid #E4E4E7;
  transition: all 0.2s ease;
}

.terms-content-section .terms-toc-link:hover,
.terms-content-section .terms-toc-link.active {
  color: #FFFFFF;
  background-color: #121212;
  border-color: #121212;
}

.terms-content-section .terms-toc-link:hover i,
.terms-content-section .terms-toc-link.active i {
  color: #D9651E;
}

.terms-content-section .terms-update-note {
  color: #737373;
}

.privacy-policy-section .terms-toc-card,
.policy-page-block .terms-toc-card {
  background-color: #F8F8F9;
  border-color: #E4E4E7 !important;
  top: 1.5rem;
}

.privacy-policy-section .terms-toc-heading,
.policy-page-block .terms-toc-heading {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #121212;
  font-weight: 700;
}

.privacy-policy-section .terms-toc-link,
.policy-page-block .terms-toc-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #525252;
  background-color: #FFFFFF;
  border: 1px solid #E4E4E7;
  transition: all 0.2s ease;
}

.privacy-policy-section .terms-toc-link:hover,
.privacy-policy-section .terms-toc-link.active,
.policy-page-block .terms-toc-link:hover,
.policy-page-block .terms-toc-link.active {
  color: #FFFFFF;
  background-color: #121212;
  border-color: #121212;
}

.privacy-policy-section .terms-toc-link:hover i,
.privacy-policy-section .terms-toc-link.active i,
.policy-page-block .terms-toc-link:hover i,
.policy-page-block .terms-toc-link.active i {
  color: #FFFFFF;
}

.privacy-policy-section .terms-update-note,
.policy-page-block .terms-update-note {
  color: #737373;
}

.terms-content-section .terms-highlight-card {
  background-color: #FDF3ED;
  border-color: #EBEBEF !important;
}

.terms-content-section .terms-highlight-icon-wrap {
  background-color: #FFFFFF;
  width: 44px;
  height: 44px;
  border: 1px solid #E4E4E7;
}

.terms-content-section .terms-article {
  background-color: #FFFFFF;
  border-color: #E4E4E7 !important;
}

.terms-content-section .terms-section-num {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
}

.terms-content-section .terms-section-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: #121212;
}

.terms-content-section .terms-subsection-title {
  color: #121212;
}

.terms-content-section .terms-paragraph {
  color: #525252;
  line-height: 1.6;
  font-size: 0.95rem;
}

.terms-content-section .terms-list {
  color: #525252;
  line-height: 1.6;
  font-size: 0.95rem;
}

.terms-content-section .terms-box {
  background-color: #F8F8F9;
  border: 1px solid #E4E4E7;
}

.terms-content-section .text-muted-custom {
  color: #525252;
}

.terms-content-section .terms-inline-link {
  color: #D9651E;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-content-section .terms-inline-link:hover {
  color: #C0520F;
}

.terms-content-section .btn-primary-custom {
  background-color: #D9651E;
  color: #FFFFFF;
  border: 1px solid #D9651E;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.terms-content-section .btn-primary-custom:hover {
  background-color: #C0520F;
  border-color: #C0520F;
  color: #FFFFFF;
}

.terms-content-section .btn-outline-custom {
  background-color: transparent;
  color: #121212;
  border: 1px solid #E4E4E7;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.terms-content-section .btn-outline-custom:hover {
  background-color: #F8F8F9;
  border-color: #121212;
  color: #121212;
}

@media (max-width: 767.98px) {
  .terms-content-section .terms-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .terms-content-section .terms-section-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .terms-content-section .terms-subsection-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .terms-content-section .terms-lead-text {
    font-size: 0.9rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-page-section { background-color: #FFFFFF; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: #121212; min-height: 50vh; }
.disclaimer-page-section .disclaimer-breadcrumb { font-size: 0.875rem; }
.disclaimer-page-section .disclaimer-breadcrumb a { color: #525252; text-decoration: none; font-weight: 500; transition: color 0.15s ease; }
.disclaimer-page-section .disclaimer-breadcrumb a:hover { color: #D9651E; }
.disclaimer-page-section .disclaimer-breadcrumb .breadcrumb-item.active { color: #737373; font-weight: 600; }
.disclaimer-page-section .disclaimer-card { background-color: #FFFFFF; border: 1px solid #E4E4E7; border-radius: 8px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); }
.disclaimer-page-section .disclaimer-badge { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background-color: #FDF3ED; color: #D9651E; padding: 0.35rem 0.75rem; border-radius: 100px; border: 1px solid rgba(217, 101, 30, 0.2); width: fit-content; }
.disclaimer-page-section .disclaimer-badge i { font-size: 0.875rem; }
.disclaimer-page-section .disclaimer-title { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 2rem; font-weight: 700; line-height: 1.2; color: #121212; letter-spacing: -0.02em; }
@media (max-width: 767.98px) { .disclaimer-page-section .disclaimer-title { font-size: 1.125rem; hyphens: auto; } }
.disclaimer-page-section .disclaimer-lead { font-size: 1.05rem; line-height: 1.6; color: #525252; }
@media (max-width: 767.98px) { .disclaimer-page-section .disclaimer-lead { font-size: 0.95rem; } }
.disclaimer-page-section .disclaimer-notice { background-color: #F8F8F9; border: 1px solid #E4E4E7; border-left: 4px solid #D9651E; }
.disclaimer-page-section .disclaimer-notice-icon { font-size: 1.5rem; color: #D9651E; flex-shrink: 0; }
.disclaimer-page-section .disclaimer-subtitle { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.125rem; font-weight: 700; color: #121212; line-height: 1.3; }
@media (max-width: 767.98px) { .disclaimer-page-section .disclaimer-subtitle { font-size: 1rem; } }
.disclaimer-page-section .disclaimer-section-heading { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.25rem; font-weight: 700; color: #121212; display: flex; align-items: center; line-height: 1.3; }
.disclaimer-page-section .disclaimer-section-heading i { color: #D9651E; font-size: 1.25rem; flex-shrink: 0; }
@media (max-width: 767.98px) { .disclaimer-page-section .disclaimer-section-heading { font-size: 1rem; } }
.disclaimer-page-section .disclaimer-text { font-size: 0.95rem; line-height: 1.65; color: #525252; margin-bottom: 0.85rem; }
.disclaimer-page-section .disclaimer-text:last-child { margin-bottom: 0; }
.disclaimer-page-section .disclaimer-link { color: #D9651E; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s ease; }
.disclaimer-page-section .disclaimer-link:hover { color: #C0520F; }
.disclaimer-page-section .disclaimer-contact-box { background-color: #F8F8F9; border: 1px solid #E4E4E7; border-radius: 6px; }
.disclaimer-page-section .disclaimer-contact-title { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 0.95rem; font-weight: 700; color: #121212; display: flex; align-items: center; }
.disclaimer-page-section .disclaimer-contact-title i { color: #121212; font-size: 1rem; }
.disclaimer-page-section .disclaimer-action-btn { font-size: 0.8125rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 4px; border-color: #121212; color: #121212; transition: all 0.15s ease; }
.disclaimer-page-section .disclaimer-action-btn:hover { background-color: #121212; color: #FFFFFF; }

/* ===== PAGE: refound ===== */
.policy-page-block {
  background-color: #F8F8F9;
  color: #121212;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.policy-page-block .policy-header-card {
  background-color: #FFFFFF !important;
  border-color: #E4E4E7 !important;
}

.policy-page-block .policy-badge {
  background-color: #FDF3ED;
  color: #D9651E;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.policy-page-block .policy-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .policy-page-block .policy-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .policy-page-block .policy-section-title {
    font-size: 1rem;
    hyphens: auto;
  }
}

.policy-page-block .policy-lead-text {
  font-size: 1.05rem;
  color: #525252;
  line-height: 1.6;
}

.policy-page-block .policy-meta-icon {
  color: #D9651E;
  font-size: 1.125rem;
}

.policy-page-block .policy-meta-text {
  font-size: 0.875rem;
  color: #737373;
  font-weight: 500;
}

.policy-page-block .policy-sidebar-card {
  border-color: #E4E4E7 !important;
}

.policy-page-block .policy-sidebar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #121212;
}

.policy-page-block .policy-nav-link {
  font-size: 0.875rem;
  color: #525252;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.policy-page-block .policy-nav-link:hover {
  background-color: #F8F8F9;
  color: #D9651E;
}

.policy-page-block .policy-nav-link.active {
  background-color: #FDF3ED;
  color: #D9651E;
  font-weight: 600;
}

.policy-page-block .policy-support-box {
  background-color: #F8F8F9;
  border: 1px solid #EBEBEF;
}

.policy-page-block .policy-content-card {
  border-color: #E4E4E7 !important;
}

.policy-page-block .policy-heading-icon {
  color: #D9651E;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.policy-page-block .policy-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
}

.policy-page-block .policy-subcard {
  border-color: #EBEBEF !important;
}

.policy-page-block .table {
  border-color: #EBEBEF;
}

.policy-page-block .table thead th {
  background-color: #F8F8F9;
  border-color: #EBEBEF;
  font-size: 0.875rem;
}

.policy-page-block .table tbody td {
  border-color: #EBEBEF;
  padding: 0.75rem;
}

/* ===== PAGE: delivery ===== */
.delivery-page-section { background-color: #FFFFFF; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: #121212; }
.delivery-page-section .delivery-header-banner { background-color: #F8F8F9; border: 1px solid #E4E4E7; }
.delivery-page-section .delivery-badge { background-color: #FDF3ED; border: 1px solid #F6D8C6; }
.delivery-page-section .delivery-badge-text { font-family: 'Space Grotesk', sans-serif; font-size: 0.8125rem; font-weight: 700; color: #D9651E; text-transform: uppercase; letter-spacing: 0.05em; }
.delivery-page-section .delivery-accent-icon { color: #D9651E; }
.delivery-page-section .delivery-main-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; font-weight: 700; color: #121212; line-height: 1.2; letter-spacing: -0.02em; }
.delivery-page-section .delivery-intro-text { font-size: 1.125rem; line-height: 1.6; color: #525252; max-width: 820px; }
.delivery-page-section .delivery-feature-card { background-color: #F8F8F9; border: 1px solid #E4E4E7; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.delivery-page-section .delivery-feature-card:hover { border-color: #121212; box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05); }
.delivery-page-section .feature-icon-wrapper { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background-color: #FDF3ED; border-radius: 8px; }
.delivery-page-section .feature-icon { font-size: 1.5rem; color: #D9651E; }
.delivery-page-section .feature-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 700; color: #121212; line-height: 1.3; }
.delivery-page-section .feature-desc { font-size: 0.9375rem; line-height: 1.5; color: #525252; }
.delivery-page-section .delivery-card { background-color: #FFFFFF; border: 1px solid #E4E4E7; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04); }
.delivery-page-section .delivery-section-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.625rem; font-weight: 700; color: #121212; line-height: 1.25; }
.delivery-page-section .delivery-subsection-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 600; color: #121212; }
.delivery-page-section .delivery-body-text { font-size: 0.95rem; line-height: 1.6; color: #525252; }
.delivery-page-section .delivery-table { border: 1px solid #E4E4E7; }
.delivery-page-section .delivery-table th { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.875rem; color: #121212; padding: 0.875rem 1rem; border-color: #E4E4E7; }
.delivery-page-section .delivery-table td { font-size: 0.9375rem; color: #525252; padding: 0.875rem 1rem; border-color: #EBEBEF; }
.delivery-page-section .delivery-list { list-style: none; padding-left: 0; }
.delivery-page-section .delivery-list li { font-size: 0.9375rem; color: #525252; line-height: 1.5; display: flex; align-items: baseline; gap: 0.5rem; }
.delivery-page-section .delivery-check-icon { color: #D9651E; font-size: 1.1rem; flex-shrink: 0; }
.delivery-page-section .delivery-calc-card { background-color: #F8F8F9; border: 1px solid #E4E4E7; }
.delivery-page-section .calc-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: #121212; }
.delivery-page-section .calc-subtitle { font-size: 0.875rem; color: #737373; line-height: 1.4; }
.delivery-page-section .calc-result-box { background-color: #FFFFFF; border: 1px solid #E4E4E7; }
.delivery-page-section .delivery-faq-wrapper { background-color: #F8F8F9; border: 1px solid #E4E4E7; }
.delivery-page-section .delivery-faq-item { background-color: #FFFFFF; border: 1px solid #E4E4E7; margin-bottom: 0.75rem; border-radius: 6px; overflow: hidden; }
.delivery-page-section .delivery-faq-btn { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: #121212; background-color: #FFFFFF; box-shadow: none; padding: 1.125rem 1.25rem; }
.delivery-page-section .delivery-faq-btn:not(.collapsed) { color: #D9651E; background-color: #FDF3ED; box-shadow: none; }
.delivery-page-section .delivery-faq-btn:focus { box-shadow: none; border-color: #E4E4E7; }
.delivery-page-section .delivery-faq-body { font-size: 0.9375rem; line-height: 1.6; color: #525252; padding: 1.125rem 1.25rem; background-color: #FFFFFF; }
.delivery-page-section .delivery-cta-card { background-color: #FDF3ED; border: 1px solid #F6D8C6; }
.delivery-page-section .delivery-cta-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: #121212; }
.delivery-page-section .delivery-cta-text { font-size: 1rem; color: #525252; max-width: 600px; }
.delivery-page-section .delivery-cta-primary-btn { background-color: #D9651E; color: #FFFFFF; border: 1px solid #D9651E; font-weight: 600; border-radius: 6px; }
.delivery-page-section .delivery-cta-primary-btn:hover { background-color: #C0520F; border-color: #C0520F; color: #FFFFFF; }
.delivery-page-section .delivery-cta-secondary-btn { background-color: #121212; color: #FFFFFF; border: 1px solid #121212; font-weight: 600; border-radius: 6px; }
.delivery-page-section .delivery-cta-secondary-btn:hover { background-color: #333333; border-color: #333333; color: #FFFFFF; }
@media (max-width: 767.98px) {
  .delivery-page-section .delivery-main-title { font-size: 1.125rem; }
  .delivery-page-section .delivery-section-title { font-size: 1rem; }
  .delivery-page-section .delivery-subsection-title { font-size: 0.875rem; }
  .delivery-page-section .delivery-cta-title { font-size: 1rem; }
}

.shop-comment-item {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.shop-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    user-select: none;
    object-fit: cover;
}

.shop-avatar-user {
    background-color: #F4F4F5;
    color: #121212;
    border: 1px solid #E4E4E7;
}

.shop-author-name {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.2;
}

.shop-badge-verified {
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    border: 1px solid rgba(217, 101, 30, 0.15);
    line-height: 1;
}

.shop-rating-stars {
    color: #D9651E;
    font-size: 0.875rem;
}

.shop-comment-meta {
    font-size: 0.75rem;
    color: #737373;
    font-weight: 500;
}

.shop-meta-dot {
    color: #E4E4E7;
}

.shop-meta-spec {
    color: #525252;
}

.shop-review-heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #121212;
    line-height: 1.3;
}

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

.shop-comment-footer {
    border-top: 1px solid #EBEBEF;
}

.shop-btn-action {
    background: transparent;
    border: 1px solid #E4E4E7;
    color: #525252;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: none;
}

.shop-btn-action:hover {
    background-color: #F8F8F9;
    border-color: #121212;
    color: #121212;
}

.shop-btn-icon {
    background: transparent;
    border: none;
    color: #737373;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.125rem;
}

.shop-btn-icon:hover {
    background-color: #F4F4F5;
    color: #121212;
}

.shop-btn-report {
    background: transparent;
    border: none;
    color: #A3A3A3;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.shop-btn-report:hover {
    color: #121212;
    text-decoration: underline;
}

.shop-reply-wrapper {
    position: relative;
}

.shop-reply-line {
    position: absolute;
    left: -1.5rem;
    top: -0.75rem;
    bottom: 50%;
    width: 1.25rem;
    border-left: 2px solid #E4E4E7;
    border-bottom: 2px solid #E4E4E7;
    border-bottom-left-radius: 8px;
    pointer-events: none;
}

@media (min-width: 768px) {
    .shop-reply-line {
        left: -2rem;
        width: 1.75rem;
    }
}

.shop-reply-card {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.shop-avatar-merchant {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
}

.shop-badge-merchant {
    background-color: #121212;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    line-height: 1;
}


/* ===== PAGE TEMPLATE: catalog-items ===== */
body.tf-product-page-body {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
}

.tf-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e4e4e7;
    z-index: 1030;
}

.tf-header-logo {
    max-width: 42px;
    max-height: 42px;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.tf-brand-name {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #121212;
    letter-spacing: -0.02em;
}

.tf-nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #121212;
    transition: color .2s ease;
    border-radius: 4px;
}

.tf-nav-link:hover,
.tf-nav-link:focus {
    color: #d9651e;
}

.tf-cart-btn {
    color: #121212;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e4e4e7;
    background-color: #ffffff;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.tf-cart-btn:hover,
.tf-cart-btn:focus {
    background-color: #fdf3ed;
    border-color: #d9651e;
    color: #d9651e;
}

.tf-cart-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.tf-cart-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #d9651e;
    color: #ffffff;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #ffffff;
}

.tf-btn-accent {
    background-color: #d9651e;
    color: #ffffff;
    border: 1px solid #d9651e;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.tf-btn-accent:hover,
.tf-btn-accent:focus {
    background-color: #c0520f;
    border-color: #c0520f;
    color: #ffffff;
}

.tf-toggler {
    color: #121212;
    background-color: #f4f4f5;
    border-radius: 6px;
    font-size: 1.5rem;
    line-height: 1;
}

.tf-detail-main .tf-breadcrumbs-bar {
    background-color: #F8F8F9;
}

.tf-detail-main .tf-crumb-link {
    color: #525252;
    text-decoration: none;
    font-size: 0.875rem;
}

.tf-detail-main .tf-crumb-link:hover {
    color: #D9651E;
    text-decoration: underline;
}

.tf-detail-main .tf-product-image-wrap {
    background-color: #F8F8F9;
    aspect-ratio: 4 / 3;
}

.tf-detail-main .tf-badge-category {
    background-color: #121212;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tf-detail-main .tf-quality-guarantee {
    background-color: #FDF3ED;
    border: 1px solid rgba(217, 101, 30, 0.2);
}

.tf-detail-main .tf-guarantee-icon {
    color: #D9651E;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.tf-detail-main .tf-product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #121212;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.tf-detail-main .tf-price-block {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
}

.tf-detail-main .tf-current-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #121212;
    line-height: 1;
}

.tf-detail-main .tf-product-lead {
    font-size: 1rem;
    line-height: 1.6;
}

.tf-detail-main .tf-qty-selector {
    background-color: #FFFFFF;
    width: 120px;
    height: 48px;
}

.tf-detail-main .tf-qty-btn {
    color: #121212;
    font-size: 1rem;
}

.tf-detail-main .tf-qty-input {
    width: 40px;
    font-weight: 700;
    background: transparent;
    color: #121212;
}

.tf-detail-main .tf-btn-buy {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    min-height: 48px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tf-detail-main .tf-btn-buy:hover {
    background-color: #C0520F;
    border-color: #C0520F;
    color: #FFFFFF;
}

.tf-detail-main .text-accent {
    color: #D9651E;
}

.tf-detail-main .bg-light-surface {
    background-color: #F8F8F9;
}

.tf-detail-main .tf-tab-btn {
    background-color: #FFFFFF;
    color: #525252;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    transition: all 0.2s ease;
}

.tf-detail-main .tf-tab-btn.active,
.tf-detail-main .tf-tab-btn:hover {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.tf-detail-main .tf-section-subhead {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.3;
}

.tf-detail-main .tf-pane-h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #121212;
}

.tf-detail-main .tf-pane-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.tf-detail-main .tf-specs-table th,
.tf-detail-main .tf-specs-table td {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
}

.tf-detail-main .tf-btn-accent-sm {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.tf-detail-main .tf-btn-accent-sm:hover {
    background-color: #C0520F;
    color: #FFFFFF;
}

.shop-comment-item {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

.shop-avatar-user {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #F4F4F5;
    color: #121212;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E4E4E7;
}

.shop-avatar-merchant {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FDF3ED;
    color: #D9651E;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 101, 30, 0.2);
}

.shop-author-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #121212;
    font-size: 0.95rem;
}

.shop-badge-verified {
    font-size: 0.75rem;
    color: #166534;
    background-color: #DCFCE7;
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    font-weight: 600;
}

.shop-badge-merchant {
    font-size: 0.75rem;
    color: #D9651E;
    background-color: #FDF3ED;
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    font-weight: 600;
}

.shop-rating-stars {
    color: #EAB308;
    font-size: 0.875rem;
}

.shop-meta-dot {
    color: #A3A3A3;
}

.shop-comment-date,
.shop-meta-spec {
    color: #737373;
    font-size: 0.8125rem;
}

.shop-btn-icon {
    background: transparent;
    border: 0;
    color: #737373;
    font-size: 1.125rem;
    padding: 0.25rem;
}

.shop-review-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #121212;
}

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

.shop-comment-footer {
    border-top: 1px solid #EBEBEF;
}

.shop-btn-action {
    background-color: #F4F4F5;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    color: #121212;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    transition: background-color 0.15s ease;
}

.shop-btn-action:hover {
    background-color: #EBEBEF;
}

.shop-btn-action.is-liked {
    background-color: #FDF3ED;
    border-color: #D9651E;
    color: #D9651E;
}

.shop-btn-report {
    background: transparent;
    border: 0;
    color: #A3A3A3;
    font-size: 0.8125rem;
    font-weight: 500;
}

.shop-btn-report:hover {
    color: #D9651E;
    text-decoration: underline;
}

.shop-reply-wrapper {
    border-left: 2px solid #E4E4E7;
    padding-left: 1rem;
}

.shop-reply-card {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

.tf-detail-main .tf-related-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #121212;
}

.tf-detail-main .tf-btn-outline-sm {
    background-color: transparent;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    color: #121212;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.tf-detail-main .tf-btn-outline-sm:hover {
    background-color: #F4F4F5;
    border-color: #121212;
}

.tf-detail-main .tf-rel-card {
    background-color: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tf-detail-main .tf-rel-card:hover {
    border-color: #121212;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

.tf-detail-main .tf-rel-img-wrap {
    aspect-ratio: 1 / 1;
    background-color: #F8F8F9;
}

.tf-detail-main .tf-rel-item-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.tf-detail-main .tf-rel-item-title a:hover {
    color: #D9651E !important;
}

.tf-detail-main .tf-btn-sm-cart {
    background-color: #D9651E;
    color: #FFFFFF;
    border: 1px solid #D9651E;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    transition: background-color 0.15s ease;
}

.tf-detail-main .tf-btn-sm-cart:hover {
    background-color: #C0520F;
    color: #FFFFFF;
}

.trips-fruits-footer {
    background-color: #F8F8F9;
    border-top: 1px solid #E4E4E7;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    color: #525252;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.trips-fruits-footer .footer-brand-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.trips-fruits-footer .footer-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 0;
}

.trips-fruits-footer .footer-heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: #121212;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.trips-fruits-footer .footer-links-list,
.trips-fruits-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trips-fruits-footer .footer-link {
    color: #525252;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
    display: inline-block;
}

.trips-fruits-footer .footer-link:hover {
    color: #D9651E;
    text-decoration: underline;
}

.trips-fruits-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.trips-fruits-footer .footer-contact-icon {
    color: #D9651E;
    font-size: 1.125rem;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.trips-fruits-footer .footer-contact-text {
    color: #525252;
    word-break: break-word;
}

.trips-fruits-footer .footer-wa-link {
    font-weight: 600;
    color: #121212;
}

.trips-fruits-footer .footer-wa-link:hover {
    color: #D9651E;
}

.trips-fruits-footer .footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #EBEBEF;
}

.trips-fruits-footer .footer-copyright {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 0;
    line-height: 1.4;
}

.trips-fruits-footer .footer-payments {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trips-fruits-footer .payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #121212;
    line-height: 1.2;
}

.trips-fruits-footer .payment-badge i {
    font-size: 1rem;
    color: #D9651E;
}

@media (max-width: 991.98px) {
    .tf-header .navbar-collapse {
        background-color: #ffffff;
        border-top: 1px solid #e4e4e7;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .tf-header .tf-nav-link {
        font-size: 0.875rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        color: #121212;
    }
}

@media (max-width: 767.98px) {
    .trips-fruits-footer {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .trips-fruits-footer .footer-brand-title {
        font-size: 1.25rem;
    }

    .trips-fruits-footer .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .trips-fruits-footer .footer-bottom {
        margin-top: 2.25rem;
        padding-top: 1.25rem;
    }
}

/* ===== PAGE TEMPLATE: blog-posts ===== */
.tf-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e4e4e7;
    z-index: 1030;
}

.tf-header-logo {
    max-width: 42px;
    max-height: 42px;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.tf-brand-name {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #121212;
    letter-spacing: -0.02em;
}

.tf-nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #121212;
    transition: color .2s ease;
    border-radius: 4px;
}

.tf-nav-link:hover,
.tf-nav-link:focus {
    color: #d9651e;
}

.tf-cart-btn {
    color: #121212;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e4e4e7;
    background-color: #ffffff;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.tf-cart-btn:hover,
.tf-cart-btn:focus {
    background-color: #fdf3ed;
    border-color: #d9651e;
    color: #d9651e;
}

.tf-cart-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.tf-cart-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #d9651e;
    color: #ffffff;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #ffffff;
}

.tf-btn-accent {
    background-color: #d9651e;
    color: #ffffff;
    border: 1px solid #d9651e;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.tf-btn-accent:hover,
.tf-btn-accent:focus {
    background-color: #c0520f;
    border-color: #c0520f;
    color: #ffffff;
}

.tf-toggler {
    color: #121212;
    background-color: #f4f4f5;
    border-radius: 6px;
    font-size: 1.5rem;
    line-height: 1;
}

.tf-toggler:hover,
.tf-toggler:focus {
    background-color: #ebebef;
    color: #121212;
}

@media (max-width:991.98px) {
    .tf-header .navbar-collapse {
        background-color: #ffffff;
        border-top: 1px solid #e4e4e7;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .tf-header .tf-nav-link {
        font-size: 0.875rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        color: #121212;
    }
}

.trips-fruits-footer {
    background-color: #F8F8F9;
    border-top: 1px solid #E4E4E7;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    color: #525252;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.trips-fruits-footer .footer-brand-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.trips-fruits-footer .footer-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 0;
}

.trips-fruits-footer .footer-heading {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: #121212;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.trips-fruits-footer .footer-links-list,
.trips-fruits-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trips-fruits-footer .footer-link {
    color: #525252;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
    display: inline-block;
}

.trips-fruits-footer .footer-link:hover {
    color: #D9651E;
    text-decoration: underline;
}

.trips-fruits-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.trips-fruits-footer .footer-contact-icon {
    color: #D9651E;
    font-size: 1.125rem;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.trips-fruits-footer .footer-contact-text {
    color: #525252;
    word-break: break-word;
}

.trips-fruits-footer .footer-wa-link {
    font-weight: 600;
    color: #121212;
}

.trips-fruits-footer .footer-wa-link:hover {
    color: #D9651E;
}

.trips-fruits-footer .footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #EBEBEF;
}

.trips-fruits-footer .footer-copyright {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 0;
    line-height: 1.4;
}

.trips-fruits-footer .footer-payments {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trips-fruits-footer .payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #121212;
    line-height: 1.2;
}

.trips-fruits-footer .payment-badge i {
    font-size: 1rem;
    color: #D9651E;
}

@media(max-width:767.98px) {
    .trips-fruits-footer {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .trips-fruits-footer .footer-brand-title {
        font-size: 1.25rem;
    }

    .trips-fruits-footer .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .trips-fruits-footer .footer-bottom {
        margin-top: 2.25rem;
        padding-top: 1.25rem;
    }
}

.tf-detail-page {
    background-color: #FFFFFF;
    min-height: 80vh;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #121212;
}

.tf-detail-page .tf-breadcrumbs-wrap {
    background-color: #F8F8F9;
    border-bottom: 1px solid #E4E4E7;
}

.tf-detail-page .breadcrumb-item {
    font-size: 0.875rem;
}

.tf-detail-page .tf-crumb-link {
    color: #525252;
    text-decoration: none;
    transition: color 0.15s ease;
}

.tf-detail-page .tf-crumb-link:hover {
    color: #D9651E;
    text-decoration: underline;
}

.tf-detail-page .breadcrumb-item.active {
    color: #121212;
    font-weight: 600;
    max-width: 320px;
}

.tf-detail-page .tf-article-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
    letter-spacing: -0.02em;
}

.tf-detail-page .tf-tag-badge {
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(217, 101, 30, 0.2);
}

.tf-detail-page .tf-article-meta {
    font-size: 0.875rem;
    color: #737373;
}

.tf-detail-page .tf-meta-icon {
    color: #D9651E;
    font-size: 1.1rem;
}

.tf-detail-page .tf-meta-dot {
    color: #E4E4E7;
}

.tf-detail-page .tf-article-img {
    max-height: 480px;
    object-fit: cover;
    border: 1px solid #E4E4E7;
}

.tf-detail-page .tf-lead-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #525252;
    font-weight: 500;
}

.tf-detail-page .tf-content-body h1,
.tf-detail-page .tf-content-body h2,
.tf-detail-page .tf-content-body h3,
.tf-detail-page .tf-content-body h4,
.tf-detail-page .tf-content-body h5 {
    font-family: 'Space Grotesk', sans-serif;
    color: #121212;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.tf-detail-page .tf-content-body h2 {
    font-size: 1.625rem;
}

.tf-detail-page .tf-content-body h3 {
    font-size: 1.35rem;
}

.tf-detail-page .tf-content-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 1.25rem;
}

.tf-detail-page .tf-content-body ul,
.tf-detail-page .tf-content-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: #525252;
    line-height: 1.7;
}

.tf-detail-page .tf-content-body li {
    margin-bottom: 0.5rem;
}

.tf-detail-page .tf-sidebar-card,
.tf-detail-page .tf-sidebar-banner {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
}

.tf-detail-page .tf-sidebar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #121212;
}

.tf-detail-page .tf-author-avatar {
    width: 44px;
    height: 44px;
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tf-detail-page .tf-author-name {
    color: #121212;
}

.tf-detail-page .tf-recent-item {
    border-bottom: 1px solid #EBEBEF;
    padding-bottom: 0.75rem;
}

.tf-detail-page .tf-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tf-detail-page .tf-recent-title {
    color: #121212;
    font-size: 0.9375rem;
    line-height: 1.35;
    transition: color 0.15s ease;
}

.tf-detail-page .tf-recent-link:hover .tf-recent-title {
    color: #D9651E;
}

.tf-detail-page .tf-section-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #121212;
}

.tf-detail-page .tf-auth-notice {
    background-color: #F4F4F5;
    border: 1px solid #E4E4E7;
    font-size: 0.875rem;
}

.tf-detail-page .shop-comment-item {
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

.tf-detail-page .shop-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.tf-detail-page .shop-avatar-user {
    background-color: #F4F4F5;
    color: #121212;
}

.tf-detail-page .shop-avatar-merchant {
    background-color: #FDF3ED;
    color: #D9651E;
}

.tf-detail-page .shop-author-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #121212;
}

.tf-detail-page .shop-badge-verified {
    background-color: #F4F4F5;
    color: #121212;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 500;
}

.tf-detail-page .shop-badge-merchant {
    background-color: #FDF3ED;
    color: #D9651E;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
}

.tf-detail-page .shop-rating-stars {
    color: #D9651E;
    font-size: 0.875rem;
}

.tf-detail-page .shop-meta-dot {
    color: #D4D4D4;
}

.tf-detail-page .shop-comment-date {
    font-size: 0.8125rem;
    color: #737373;
}

.tf-detail-page .shop-btn-icon {
    background: transparent;
    border: none;
    color: #737373;
    font-size: 1.125rem;
    padding: 4px;
    border-radius: 4px;
}

.tf-detail-page .shop-btn-icon:hover {
    color: #121212;
    background-color: #F4F4F5;
}

.tf-detail-page .shop-review-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #121212;
}

.tf-detail-page .shop-comment-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #525252;
}

.tf-detail-page .shop-btn-action {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #121212;
    transition: all 0.2s ease;
}

.tf-detail-page .shop-btn-action:hover,
.tf-detail-page .shop-btn-action.is-active {
    background-color: #FDF3ED;
    border-color: #D9651E;
    color: #D9651E;
}

.tf-detail-page .shop-btn-report {
    background: transparent;
    border: none;
    font-size: 0.8125rem;
    color: #737373;
    padding: 0;
    text-decoration: underline;
}

.tf-detail-page .shop-btn-report:hover {
    color: #121212;
}

.tf-detail-page .shop-reply-wrapper {
    position: relative;
}

.tf-detail-page .shop-reply-line {
    position: absolute;
    left: -18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #E4E4E7;
}

.tf-detail-page .shop-reply-card {
    background-color: #F8F8F9;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
}

@media (max-width: 767.98px) {
    .tf-detail-page .tf-article-title {
        font-size: 1.5rem;
    }

    .tf-detail-page .tf-content-body h2 {
        font-size: 1.35rem;
    }

    .tf-detail-page .tf-content-body h3 {
        font-size: 1.2rem;
    }

    .tf-detail-page .shop-reply-wrapper {
        margin-left: 1rem !important;
    }
}