:root {
    --color-primary: #B85839;
    --color-primary-hover: #A2482B;
    --color-primary-active: #8C3B20;
    --color-primary-surface: #F7EAE5;
    --color-secondary: #5B6852;
    --color-secondary-hover: #4B5643;
    --color-secondary-surface: #EEF1EB;
    --color-accent: #D49B5B;
    --color-bg-primary: #FAF7F2;
    --color-bg-secondary: #F3EFE9;
    --color-card-surface: #FFFFFF;
    --color-text-primary: #2B2420;
    --color-text-secondary: #6E645D;
    --color-text-muted: #968B82;
    --color-border-subtle: #EBE4DC;
    --color-border-default: #DDD4C9;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

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

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

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

.site-header-block .cargo-navbar {
    background-color: #FAF7F2;
}

.site-header-block .brand-logo-img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-header-block .brand-title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2B2420;
    letter-spacing: -0.02em;
}

.site-header-block .nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2B2420;
    border-radius: 8px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #B85839;
    background-color: #F3EFE9;
}

.site-header-block .header-cart-btn {
    color: #2B2420;
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.site-header-block .header-cart-btn:hover,
.site-header-block .header-cart-btn:focus {
    color: #B85839;
    border-color: #B85839;
    background-color: #F7EAE5;
}

.site-header-block .custom-toggler {
    color: #2B2420;
    background-color: #F3EFE9;
    border-radius: 8px;
    line-height: 1;
}

.site-header-block .custom-toggler:hover,
.site-header-block .custom-toggler:focus {
    color: #B85839;
}

@media (max-width: 991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FAF7F2;
        padding: 1rem 0;
        border-top: 1px solid #EBE4DC;
        margin-top: 0.75rem;
    }

    .site-header-block .brand-title-text {
        font-size: 1.1rem;
    }
}

/* ===== hero_section ===== */
.cargo-hero {
    min-height: 85vh;
    padding: 80px 0;
    background-color: #2B2420;
}

.cargo-hero-bg {
    background-image: url('../resources/photos/media/cargo-aprons-artisan-kitchen-banner.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cargo-hero-overlay {
    background: linear-gradient(180deg, rgba(43, 36, 32, 0.72) 0%, rgba(43, 36, 32, 0.85) 100%);
}

.cargo-hero-tag {
    background: rgba(247, 234, 229, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cargo-tag-icon {
    color: #D49B5B;
    font-size: 1rem;
}

.cargo-tag-text {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cargo-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cargo-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 680px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.cargo-btn-primary {
    background-color: #B85839;
    border: 1.5px solid #B85839;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #FFFFFF;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    min-width: 200px;
}

.cargo-btn-primary:hover {
    background-color: #A2482B;
    border-color: #A2482B;
    color: #FFFFFF;
}

.cargo-btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    min-width: 200px;
}

.cargo-btn-outline:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #2B2420;
}

.cargo-feature-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.cargo-feature-subtext {
    font-size: 0.8125rem;
    opacity: 0.85;
}

@media (max-width: 767.98px) {
    .cargo-hero {
        min-height: auto;
        padding: 48px 0;
    }

    .cargo-hero-title {
        font-size: 1.125rem !important;
        hyphens: auto;
    }

    .cargo-hero-desc {
        font-size: 0.875rem;
    }

    .cargo-btn-primary,
    .cargo-btn-outline {
        width: 100%;
        min-width: auto;
    }
}

/* ===== featured_aprons ===== */
.cargo-catalog-section {
    background-color: #FAF7F2;
    color: #2B2420;
}

.cargo-catalog-section .cargo-badge {
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.cargo-catalog-section .cargo-section-title {
    color: #2B2420;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.cargo-catalog-section .cargo-section-subtitle {
    color: #6E645D;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 640px;
}

.cargo-catalog-section .cargo-product-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
    overflow: hidden;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.cargo-catalog-section .cargo-product-card:hover {
    box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
    border-color: #DDD4C9;
}

.cargo-catalog-section .cargo-card-media {
    background-color: #F3EFE9;
    overflow: hidden;
}

.cargo-catalog-section .cargo-media-link {
    width: 100%;
    height: 100%;
}

.cargo-catalog-section .cargo-product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

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

.cargo-catalog-section .cargo-card-chip {
    top: 12px;
    left: 12px;
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.cargo-catalog-section .cargo-category-meta {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #968B82;
}

.cargo-catalog-section .cargo-product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.cargo-catalog-section .cargo-title-link {
    color: #2B2420;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cargo-catalog-section .cargo-title-link:hover {
    color: #B85839;
}

.cargo-catalog-section .cargo-product-desc {
    color: #6E645D;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cargo-catalog-section .cargo-spec-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cargo-catalog-section .cargo-spec-pill {
    font-size: 0.75rem;
    color: #5B6852;
    background-color: #FAF7F2;
    border: 1px solid #EBE4DC;
    padding: 2px 8px;
    border-radius: 6px;
}

.cargo-catalog-section .cargo-card-footer {
    border-color: #EBE4DC !important;
}

.cargo-catalog-section .cargo-price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #968B82;
    line-height: 1;
}

.cargo-catalog-section .cargo-price-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2B2420;
    line-height: 1.2;
}

.cargo-catalog-section .cargo-btn-primary {
    background-color: #B85839;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.cargo-catalog-section .cargo-btn-primary:hover,
.cargo-catalog-section .cargo-btn-primary:focus {
    background-color: #A2482B;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3);
}

.cargo-catalog-section .cargo-btn-primary:active {
    background-color: #8C3B20;
    color: #FFFFFF;
}

.cargo-catalog-section .cargo-btn-outline {
    background-color: transparent;
    color: #B85839;
    border: 1.5px solid #B85839;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cargo-catalog-section .cargo-btn-outline:hover,
.cargo-catalog-section .cargo-btn-outline:focus {
    background-color: #F7EAE5;
    color: #A2482B;
    border-color: #A2482B;
}

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

    .cargo-catalog-section .cargo-product-title {
        font-size: 1.05rem;
        hyphens: auto;
    }

    .cargo-catalog-section .cargo-card-footer {
        flex-direction: column;
        align-items: stretch !important;
    }

    .cargo-catalog-section .cargo-card-footer .cargo-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ===== installments_and_parts ===== */
.installments-section {
    background-color: #FAF7F2;
    color: #2B2420;
    font-family: 'Inter', sans-serif;
}

.installments-section .font-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.installments-section .badge-tag {
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    white-space: nowrap;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.installments-section .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 700;
    color: #2B2420;
    line-height: 1.25;
}

.installments-section .section-description {
    color: #6E645D;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.installments-section .calculator-wrapper {
    background-color: #FFFFFF;
    border-color: #EBE4DC !important;
}

.installments-section .btn-amount-chip {
    background-color: #F3EFE9;
    color: #2B2420;
    border: 1.5px solid #DDD4C9;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.15s ease;
    cursor: pointer;
}

.installments-section .btn-amount-chip:hover {
    background-color: #F7EAE5;
    border-color: #B85839;
    color: #B85839;
}

.installments-section .btn-amount-chip.active {
    background-color: #B85839;
    border-color: #B85839;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(184, 88, 57, 0.25);
}

.installments-section .plan-card {
    background-color: #FFFFFF;
    border-color: #EBE4DC !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.installments-section .plan-card:hover {
    border-color: #DDD4C9 !important;
    box-shadow: 0 8px 24px rgba(43, 36, 32, 0.06);
}

.installments-section .plan-card.active {
    border-color: #B85839 !important;
    box-shadow: 0 8px 24px rgba(184, 88, 57, 0.1);
}

.installments-section .plan-badge {
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.installments-section .plan-badge-placeholder {
    height: 24px;
}

.installments-section .bg-light-surface {
    background-color: #FAF7F2;
}

.installments-section .bg-primary-surface {
    background-color: #F7EAE5;
}

.installments-section .icon-box {
    width: 44px;
    height: 44px;
}

.installments-section .installment-image-frame {
    height: 380px;
    border: 1px solid #EBE4DC;
}

.installments-section .installment-image-frame img {
    object-fit: cover;
}

.installments-section .guarantee-box {
    border-color: #EBE4DC !important;
}

.installments-section .btn-primary-custom {
    background-color: #B85839;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
}

.installments-section .btn-primary-custom:hover {
    background-color: #A2482B;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3);
}

.installments-section .btn-outline-custom {
    background-color: transparent;
    color: #B85839;
    border: 1.5px solid #B85839;
    border-radius: 12px;
    font-weight: 600;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.installments-section .btn-outline-custom:hover {
    background-color: #F7EAE5;
    color: #A2482B;
    border-color: #A2482B;
}

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

    .installments-section .installment-image-frame {
        height: 260px;
    }
}

/* ===== refer_a_friend ===== */
.referral-bonus-block {
    background-color: #FAF7F2;
    color: #2B2420;
}

.referral-bonus-block .referral-bonus-block__wrapper {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

@media (min-width: 992px) {
    .referral-bonus-block .referral-bonus-block__wrapper {
        padding: 48px 40px;
    }
}

.referral-bonus-block .referral-bonus-block__badge {
    display: inline-flex;
    align-items: center;
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.referral-bonus-block .referral-bonus-block__title {
    color: #2B2420;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.referral-bonus-block .referral-bonus-block__description {
    color: #6E645D;
    font-size: 1rem;
    line-height: 1.6;
}

.referral-bonus-block .referral-bonus-block__perk-card {
    background-color: #FBF9F5;
    border: 1px solid #EBE4DC;
    border-radius: 12px;
    padding: 16px;
}

.referral-bonus-block .referral-bonus-block__perk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #EEF1EB;
    color: #5B6852;
    border-radius: 8px;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.referral-bonus-block .referral-bonus-block__perk-title {
    color: #2B2420;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 6px;
}

.referral-bonus-block .referral-bonus-block__perk-text {
    color: #6E645D;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.referral-bonus-block .referral-bonus-block__perk-text strong {
    color: #2B2420;
}

.referral-bonus-block .referral-bonus-block__share-box {
    background-color: #F3EFE9;
    border: 1px dashed #DDD4C9;
    border-radius: 12px;
}

.referral-bonus-block .referral-bonus-block__share-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6E645D;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.referral-bonus-block .referral-bonus-block__link-field {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
}

.referral-bonus-block .referral-bonus-block__link-text {
    font-size: 0.875rem;
    color: #2B2420;
    font-weight: 500;
    word-break: break-all;
}

.referral-bonus-block .referral-bonus-block__copy-btn {
    background-color: #B85839;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
}

.referral-bonus-block .referral-bonus-block__copy-btn:hover {
    background-color: #A2482B;
    box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3);
    color: #FFFFFF;
}

.referral-bonus-block .referral-bonus-block__feedback {
    display: none;
    color: #5B6852;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 8px;
}

.referral-bonus-block .referral-bonus-block__cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5B6852;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background-color 0.15s ease;
}

.referral-bonus-block .referral-bonus-block__cta-link:hover {
    background-color: #4B5643;
    color: #FFFFFF;
}

.referral-bonus-block .referral-bonus-block__media-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.referral-bonus-block .referral-bonus-block__image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (min-width: 768px) {
    .referral-bonus-block .referral-bonus-block__image {
        height: 460px;
    }
}

.referral-bonus-block .referral-bonus-block__media-card {
    position: static;
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 12px;
    margin-top: 16px;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

@media (min-width: 992px) {
    .referral-bonus-block .referral-bonus-block__media-card {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.95);
    }
}

.referral-bonus-block .referral-bonus-block__media-icon-badge {
    width: 42px;
    height: 42px;
    background-color: #FDF5EB;
    color: #D49B5B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.referral-bonus-block .referral-bonus-block__media-card-title {
    color: #2B2420;
    font-size: 0.9375rem;
    font-weight: 600;
}

.referral-bonus-block .referral-bonus-block__media-card-text {
    color: #6E645D;
    font-size: 0.8125rem;
}

@media (max-width: 767.98px) {
    .referral-bonus-block .referral-bonus-block__title {
        font-size: 16px;
        hyphens: auto;
    }

    .referral-bonus-block .referral-bonus-block__perk-title {
        font-size: 14px;
        hyphens: auto;
    }

    .referral-bonus-block .referral-bonus-block__media-card-title {
        font-size: 14px;
    }
}

/* ===== just_bought ===== */
.live-feed-section {
    background-color: #FAF7F2;
    padding-top: 48px;
    padding-bottom: 48px
}

.live-feed-badge {
    background-color: #F7EAE5;
    border: 1px solid #DDD4C9;
    border-radius: 20px
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #B85839;
    display: inline-block
}

.live-feed-badge-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #B85839;
    letter-spacing: 0.04em
}

.live-feed-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2B2420;
    line-height: 1.25
}

.live-feed-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6E645D;
    line-height: 1.55
}

.live-feed-filter-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2B2420;
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    padding: 8px 18px;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease
}

.live-feed-filter-btn:hover {
    background-color: #F3EFE9;
    color: #B85839;
    border-color: #BCB0A3
}

.live-feed-filter-btn.active {
    background-color: #B85839;
    color: #FFFFFF;
    border-color: #B85839
}

.live-feed-spotlight-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04)
}

.spotlight-image-wrapper {
    border-radius: 12px;
    overflow: hidden
}

.spotlight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.spotlight-icon {
    color: #5B6852;
    font-size: 1.1rem
}

.spotlight-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5B6852
}

.spotlight-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2B2420;
    line-height: 1.3
}

.spotlight-desc {
    font-size: 0.875rem;
    color: #6E645D;
    line-height: 1.5
}

.live-feed-primary-btn {
    background-color: #B85839;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
    transition: background-color 0.15s ease, box-shadow 0.15s ease
}

.live-feed-primary-btn:hover {
    background-color: #A2482B;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3)
}

.live-feed-item-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(43, 36, 32, 0.03);
    transition: border-color 0.15s ease, box-shadow 0.15s ease
}

.live-feed-item-card:hover {
    border-color: #BCB0A3;
    box-shadow: 0 8px 20px rgba(43, 36, 32, 0.06)
}

.live-city-tag {
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px
}

.live-timestamp {
    font-size: 0.75rem;
    color: #968B82
}

.live-status-pill {
    background-color: #FDF5EB;
    color: #A87233;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px
}

.live-product-name {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35
}

.live-product-link {
    color: #2B2420;
    text-decoration: none;
    transition: color 0.15s ease
}

.live-product-link:hover {
    color: #B85839;
    text-decoration: underline
}

.live-sku {
    font-size: 0.75rem;
    color: #6E645D
}

.live-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #B85839
}

.live-customer-label {
    font-size: 0.75rem;
    color: #6E645D
}

.text-terracotta {
    color: #B85839
}

@media (min-width:768px) {
    .live-feed-section {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .live-feed-heading {
        font-size: 2.25rem
    }

    .spotlight-img {
        height: 220px
    }
}

/* ===== corporate_clients ===== */
.b2b-conditions-section {
    background-color: #FAF7F2;
    color: #2B2420;
}

.b2b-conditions-section .b2b-badge {
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.b2b-conditions-section .b2b-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2B2420;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.b2b-conditions-section .b2b-lead-text {
    color: #6E645D;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.b2b-conditions-section .b2b-btn-primary {
    background-color: #B85839;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
    transition: color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.b2b-conditions-section .b2b-btn-primary:hover {
    background-color: #A2482B;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3);
}

.b2b-conditions-section .b2b-btn-secondary {
    background-color: #5B6852;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.15s ease;
}

.b2b-conditions-section .b2b-btn-secondary:hover {
    background-color: #4B5643;
    color: #FFFFFF;
}

.b2b-conditions-section .b2b-btn-outline {
    background-color: transparent;
    color: #B85839;
    border: 1.5px solid #B85839;
    border-radius: 12px;
    padding: 11px 23px;
    font-weight: 600;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.b2b-conditions-section .b2b-btn-outline:hover {
    background-color: #F7EAE5;
    color: #A2482B;
    border-color: #A2482B;
}

.b2b-conditions-section .b2b-image-wrapper {
    max-width: 100%;
}

.b2b-conditions-section .b2b-main-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border: 1px solid #EBE4DC;
}

.b2b-conditions-section .b2b-floating-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
    background: #FFFFFF;
    border: 1px solid #DDD4C9;
}

.b2b-conditions-section .b2b-badge-icon {
    width: 42px;
    height: 42px;
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.b2b-conditions-section .b2b-badge-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #2B2420;
}

.b2b-conditions-section .b2b-badge-desc {
    font-size: 0.75rem;
    color: #6E645D;
}

.b2b-conditions-section .b2b-pillar-card {
    background: #FFFFFF;
    border: 1px solid #EBE4DC;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.b2b-conditions-section .b2b-pillar-card:hover {
    box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
    border-color: #DDD4C9;
}

.b2b-conditions-section .b2b-icon-container {
    width: 48px;
    height: 48px;
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 1.35rem;
}

.b2b-conditions-section .b2b-pillar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2B2420;
    line-height: 1.3;
}

.b2b-conditions-section .b2b-pillar-desc {
    font-size: 0.875rem;
    color: #6E645D;
    line-height: 1.55;
}

.b2b-conditions-section .b2b-calculator-panel {
    background-color: #F3EFE9;
    border: 1px solid #EBE4DC;
}

.b2b-conditions-section .b2b-pill-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5B6852;
}

.b2b-conditions-section .b2b-calculator-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #2B2420;
    line-height: 1.25;
}

.b2b-conditions-section .b2b-calculator-desc {
    font-size: 0.9375rem;
    color: #6E645D;
    line-height: 1.55;
}

.b2b-conditions-section .b2b-tier-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 14px 18px;
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    color: #2B2420;
    font-weight: 500;
    transition: all 0.15s ease;
    flex-wrap: nowrap;
    gap: 10px;
}

.b2b-conditions-section .b2b-tier-btn .tier-name {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b2b-conditions-section .b2b-tier-btn .tier-discount {
    white-space: nowrap;
    flex-shrink: 0;
}

.b2b-conditions-section .b2b-tier-btn:hover {
    background-color: #FAF7F2;
    border-color: #B85839;
}

.b2b-conditions-section .b2b-tier-btn.active {
    background-color: #F7EAE5;
    border-color: #B85839;
    color: #8C3B20;
    font-weight: 600;
}

.b2b-conditions-section .b2b-tier-btn .tier-discount {
    background-color: #EEF1EB;
    color: #5B6852;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.b2b-conditions-section .b2b-tier-btn.active .tier-discount {
    background-color: #B85839;
    color: #FFFFFF;
}

.b2b-conditions-section .b2b-tier-display-card {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.b2b-conditions-section .b2b-tier-display-card .min-w-0 {
    min-width: 0;
}

.b2b-conditions-section .b2b-tier-level-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2B2420;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.b2b-conditions-section .b2b-tier-rate-badge {
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
}

.b2b-conditions-section .b2b-benefits-list li span {
    color: #2B2420;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.b2b-conditions-section .b2b-cta-strip {
    background-color: #FAF7F2;
    border: 1px solid #EBE4DC;
}

.b2b-conditions-section .b2b-cta-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2B2420;
}

.b2b-conditions-section .b2b-cta-subline {
    font-size: 0.75rem;
    color: #6E645D;
}

.b2b-conditions-section .b2b-support-footer {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
}

.b2b-conditions-section .b2b-support-icon {
    width: 44px;
    height: 44px;
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.b2b-conditions-section .b2b-support-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6E645D;
    font-weight: 600;
}

.b2b-conditions-section .b2b-support-val {
    color: #2B2420;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.15s ease;
}

.b2b-conditions-section .b2b-support-val:hover {
    color: #B85839;
}

.b2b-conditions-section .b2b-geo-icon {
    color: #5B6852;
    font-size: 1.1rem;
}

.b2b-conditions-section .b2b-location-text {
    color: #6E645D;
    font-size: 0.875rem;
}

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

    .b2b-conditions-section .b2b-calculator-heading {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .b2b-conditions-section .b2b-pillar-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .b2b-conditions-section .b2b-floating-badge {
        position: static;
        margin-top: 12px;
    }

    .b2b-conditions-section .b2b-tier-level-name {
        font-size: 1rem;
    }

    .b2b-conditions-section .b2b-tier-display-card .text-end {
        text-align: left !important;
    }
}

/* ===== footer ===== */
.site-footer {
    background-color: #FAF7F2;
    border-top: 1px solid #EBE4DC;
    color: #2B2420;
    padding-top: 48px;
    padding-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.site-footer .site-footer-main {
    padding-bottom: 36px;
    border-bottom: 1px solid #EBE4DC;
}

.site-footer .site-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
    display: block;
}

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

.site-footer .site-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6E645D;
    margin-bottom: 16px;
    max-width: 360px;
}

.site-footer .site-footer-currency-badge {
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #DDD4C9;
}

.site-footer .site-footer-currency-badge .text-accent {
    color: #B85839;
}

.site-footer .site-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #2B2420;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.site-footer .site-footer-links li {
    margin-bottom: 10px;
}

.site-footer .site-footer-link {
    color: #6E645D;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.15s ease;
    display: inline-block;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
    color: #B85839;
}

.site-footer .site-footer-contacts {
    font-size: 0.9375rem;
}

.site-footer .site-footer-contact-icon {
    color: #B85839;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer .site-footer-contact-text {
    color: #6E645D;
    line-height: 1.5;
    word-break: break-word;
}

.site-footer .site-footer-contact-link {
    color: #6E645D;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.15s ease;
    word-break: break-all;
}

.site-footer .site-footer-contact-link:hover,
.site-footer .site-footer-contact-link:focus {
    color: #B85839;
}

.site-footer .site-footer-wa-btn {
    background-color: #5B6852;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.site-footer .site-footer-wa-btn:hover,
.site-footer .site-footer-wa-btn:focus {
    background-color: #4B5643;
    color: #FFFFFF;
}

.site-footer .site-footer-bottom {
    padding-top: 24px;
}

.site-footer .site-footer-copyright {
    font-size: 0.875rem;
    color: #6E645D;
}

.site-footer .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    color: #2B2420;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer .site-footer-payment-badge i {
    color: #B85839;
    font-size: 0.95rem;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 36px;
        padding-bottom: 20px;
    }

    .site-footer .site-footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

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

    .site-footer .site-footer-desc {
        font-size: 0.875rem;
    }

    .site-footer .site-footer-link {
        font-size: 0.875rem;
    }

    .site-footer .site-footer-contact-text,
    .site-footer .site-footer-contact-link {
        font-size: 0.875rem;
    }
}

.cargo-catalog-body {
    background-color: #FAF7F2;
    color: #2B2420;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.site-header-block {
    background-color: #FAF7F2;
    border-bottom: 1px solid #EBE4DC;
    z-index: 1030;
}

.site-header-block .cargo-navbar {
    background-color: #FAF7F2;
}

.site-header-block .brand-logo-img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-header-block .brand-title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2B2420;
    letter-spacing: -0.02em;
}

.site-header-block .nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2B2420;
    border-radius: 8px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus,
.site-header-block .nav-link-custom.active {
    color: #B85839;
    background-color: #F3EFE9;
}

.site-header-block .header-cart-btn {
    color: #2B2420;
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.site-header-block .header-cart-btn:hover,
.site-header-block .header-cart-btn:focus {
    color: #B85839;
    border-color: #B85839;
    background-color: #F7EAE5;
}

.site-header-block .custom-toggler {
    color: #2B2420;
    background-color: #F3EFE9;
    border-radius: 8px;
    line-height: 1;
}

.site-header-block .custom-toggler:hover,
.site-header-block .custom-toggler:focus {
    color: #B85839;
}

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

.cargo-breadcrumb-link {
    color: #6E645D;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.cargo-breadcrumb-link:hover {
    color: #B85839;
}

.cargo-breadcrumb-sep {
    color: #968B82;
    font-size: 0.75rem;
}

.cargo-breadcrumb-item.active {
    color: #2B2420;
    font-size: 0.875rem;
    font-weight: 600;
}

.cargo-category-chip {
    background-color: #EEF1EB;
    border: 1px solid #DDD4C9;
}

.cargo-chip-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5B6852;
}

.cargo-catalog-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: #2B2420;
    letter-spacing: -0.02em;
}

.cargo-catalog-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #6E645D;
    max-width: 720px;
}

.cargo-results-badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5B6852;
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.cargo-filter-bar {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

.cargo-filter-btn {
    background-color: #F3EFE9;
    color: #2B2420;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cargo-filter-btn:hover {
    background-color: #F7EAE5;
    color: #B85839;
    border-color: #B85839;
}

.cargo-filter-btn.active {
    background-color: #B85839;
    color: #FFFFFF;
    border-color: #B85839;
}

.cargo-sort-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6E645D;
}

.cargo-sort-select {
    background-color: #FAF7F2;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    color: #2B2420;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 36px 8px 12px;
    cursor: pointer;
}

.cargo-sort-select:focus {
    border-color: #B85839;
    box-shadow: 0 0 0 3px rgba(184, 88, 57, 0.25);
}

.cargo-product-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.cargo-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
    border-color: #DDD4C9;
}

.cargo-card-media {
    overflow: hidden;
    background-color: #F3EFE9;
}

.cargo-card-body {
    padding-top: 0 !important;
}

.cargo-product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.cargo-product-card:hover .cargo-product-img {
    transform: scale(1.02);
}

.cargo-card-badge {
    background-color: #F7EAE5;
    color: #B85839;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    white-space: nowrap;
    border-radius: 20px;
    border: 1px solid rgba(184, 88, 57, 0.2);
    backdrop-filter: blur(4px);
}

.cargo-card-sku {
    background-color: rgba(43, 36, 32, 0.75);
    color: #FFFFFF;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.cargo-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5B6852;
    white-space: nowrap;
}

.cargo-rating-display {
    font-size: 0.8125rem;
}

.cargo-rating-display .text-accent {
    color: #D49B5B;
}

.cargo-rating-value {
    font-weight: 700;
    color: #2B2420;
}

.cargo-rating-count {
    color: #6E645D;
}

.cargo-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.cargo-card-title-link {
    color: #2B2420;
    transition: color 0.15s ease;
}

.cargo-card-title-link:hover {
    color: #B85839;
}

.cargo-card-specs {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6E645D;
}

.cargo-stock-status {
    font-size: 0.8125rem;
    font-weight: 600;
}

.cargo-stock-status.in-stock {
    color: #5B6852;
}

.cargo-delivery-hint {
    font-size: 0.75rem;
    color: #6E645D;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cargo-delivery-hint i {
    color: #B85839;
}

.cargo-price-wrap .cargo-price-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6E645D;
}

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

.cargo-add-cart-btn {
    background-color: #B85839;
    color: #FFFFFF;
    border: 1px solid #B85839;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 16px;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.cargo-add-cart-btn:hover,
.cargo-add-cart-btn:focus {
    background-color: #A2482B;
    border-color: #A2482B;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(184, 88, 57, 0.25);
}

.cargo-add-cart-btn.added {
    background-color: #5B6852;
    border-color: #5B6852;
}

.site-footer {
    background-color: #FAF7F2;
    border-top: 1px solid #EBE4DC;
    color: #2B2420;
    padding-top: 48px;
    padding-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.site-footer .site-footer-main {
    padding-bottom: 36px;
    border-bottom: 1px solid #EBE4DC;
}

.site-footer .site-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
    display: block;
}

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

.site-footer .site-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6E645D;
    margin-bottom: 16px;
    max-width: 360px;
}

.site-footer .site-footer-currency-badge {
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #DDD4C9;
}

.site-footer .site-footer-currency-badge .text-accent {
    color: #B85839;
}

.site-footer .site-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #2B2420;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.site-footer .site-footer-links li {
    margin-bottom: 10px;
}

.site-footer .site-footer-link {
    color: #6E645D;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.15s ease;
    display: inline-block;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
    color: #B85839;
}

.site-footer .site-footer-contacts {
    font-size: 0.9375rem;
}

.site-footer .site-footer-contact-icon {
    color: #B85839;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer .site-footer-contact-text {
    color: #6E645D;
    line-height: 1.5;
    word-break: break-word;
}

.site-footer .site-footer-contact-link {
    color: #6E645D;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.15s ease;
    word-break: break-all;
}

.site-footer .site-footer-contact-link:hover,
.site-footer .site-footer-contact-link:focus {
    color: #B85839;
}

.site-footer .site-footer-wa-btn {
    background-color: #5B6852;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.site-footer .site-footer-wa-btn:hover,
.site-footer .site-footer-wa-btn:focus {
    background-color: #4B5643;
    color: #FFFFFF;
}

.site-footer .site-footer-bottom {
    padding-top: 24px;
}

.site-footer .site-footer-copyright {
    font-size: 0.875rem;
    color: #6E645D;
}

.site-footer .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    color: #2B2420;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer .site-footer-payment-badge i {
    color: #B85839;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FAF7F2;
        padding: 1rem 0;
        border-top: 1px solid #EBE4DC;
        margin-top: 0.75rem;
    }

    .site-header-block .brand-title-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .cargo-catalog-title {
        font-size: 1.125rem !important;
        hyphens: auto;
    }

    .cargo-card-title {
        font-size: 1rem !important;
        hyphens: auto;
    }

    .site-footer {
        padding-top: 36px;
        padding-bottom: 20px;
    }

    .site-footer .site-footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

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

    .site-footer .site-footer-desc {
        font-size: 0.875rem;
    }

    .site-footer .site-footer-link {
        font-size: 0.875rem;
    }

    .site-footer .site-footer-contact-text,
    .site-footer .site-footer-contact-link {
        font-size: 0.875rem;
    }
}


/* ===== PAGE: blog ===== */
.blog-catalog-section {
  background-color: #FAF7F2;
}

.blog-catalog-section .blog-catalog-section__category-pill {
  background-color: #F7EAE5;
  color: #B85839;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}

.blog-catalog-section .blog-catalog-section__main-title {
  color: #2B2420;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

.blog-catalog-section .blog-catalog-section__lead-text {
  color: #6E645D;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
}

.blog-catalog-section .blog-catalog-section__toolbar {
  background-color: #FFFFFF;
  border: 1px solid #EBE4DC;
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

.blog-catalog-section .blog-catalog-section__search-icon {
  color: #968B82;
  pointer-events: none;
}

.blog-catalog-section .js-blog-search-input {
  background-color: #FAF7F2;
  border: 1px solid #DDD4C9;
  border-radius: 10px;
  color: #2B2420;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog-catalog-section .js-blog-search-input:focus {
  background-color: #FFFFFF;
  border-color: #B85839;
  box-shadow: 0 0 0 3px rgba(184, 88, 57, 0.25);
  color: #2B2420;
}

.blog-catalog-section .js-blog-search-input::placeholder {
  color: #968B82;
  opacity: 1;
}

.blog-catalog-section .blog-catalog-section__sort-label {
  color: #6E645D;
  font-weight: 500;
  font-size: 0.9rem;
}

.blog-catalog-section .js-blog-sort-select {
  background-color: #FAF7F2;
  border: 1px solid #DDD4C9;
  border-radius: 10px;
  color: #2B2420;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog-catalog-section .js-blog-sort-select:focus {
  background-color: #FFFFFF;
  border-color: #B85839;
  box-shadow: 0 0 0 3px rgba(184, 88, 57, 0.25);
  color: #2B2420;
}

.blog-catalog-section .blog-catalog-section__card {
  background-color: #FFFFFF;
  border: 1px solid #EBE4DC !important;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
  overflow: hidden;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.blog-catalog-section .blog-catalog-section__card:hover {
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
  border-color: #DDD4C9 !important;
}

.blog-catalog-section .blog-catalog-section__card-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.blog-catalog-section .blog-catalog-section__img-link:hover .blog-catalog-section__card-img {
  transform: scale(1.03);
}

.blog-catalog-section .blog-catalog-section__badge {
  background-color: #F7EAE5;
  color: #B85839;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.blog-catalog-section .blog-catalog-section__meta {
  font-size: 0.8rem;
  color: #968B82;
}

.blog-catalog-section .blog-catalog-section__meta-item {
  display: inline-flex;
  align-items: center;
}

.blog-catalog-section .blog-catalog-section__meta-dot {
  color: #DDD4C9;
}

.blog-catalog-section .blog-catalog-section__card-title {
  line-height: 1.35;
}

.blog-catalog-section .blog-catalog-section__card-title-link {
  color: #2B2420;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-catalog-section .blog-catalog-section__card-title-link:hover {
  color: #B85839;
}

.blog-catalog-section .blog-catalog-section__card-desc {
  color: #6E645D;
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-catalog-section .blog-catalog-section__card-footer {
  border-color: #EBE4DC !important;
}

.blog-catalog-section .blog-catalog-section__read-btn {
  color: #B85839;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.blog-catalog-section .blog-catalog-section__read-btn:hover {
  color: #A2482B;
}

.blog-catalog-section .blog-catalog-section__empty {
  background-color: #FFFFFF;
  border: 1px dashed #DDD4C9;
  border-radius: 16px;
}

@media (max-width: 767.98px) {
  .blog-catalog-section .blog-catalog-section__main-title {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .blog-catalog-section .blog-catalog-section__card-title {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .blog-catalog-section .blog-catalog-section__card-img {
    height: 190px;
  }
}

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

.about-brand-section .about-badge {
  background-color: #F7EAE5;
  color: #B85839;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  border: 1px solid #EBE4DC;
}

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

@media (max-width: 767.98px) {
  .about-brand-section .about-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
}

.about-brand-section .about-lead-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #2B2420;
  font-weight: 500;
}

.about-brand-section .about-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #6E645D;
}

.about-brand-section .about-image-wrapper {
  background-color: #FFFFFF;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #EBE4DC;
}

.about-brand-section .about-feature-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 767.98px) {
  .about-brand-section .about-feature-image {
    height: 280px;
  }
}

.about-brand-section .about-pillar-card {
  background-color: #FFFFFF;
  border: 1px solid #EBE4DC;
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

.about-brand-section .about-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #F7EAE5;
  color: #B85839;
  border-radius: 12px;
  font-size: 1.5rem;
}

.about-brand-section .about-pillar-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2B2420;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .about-brand-section .about-pillar-title {
    font-size: 1rem;
  }
}

.about-brand-section .about-pillar-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #6E645D;
}

.about-brand-section .about-mission-box {
  background-color: #F3EFE9;
  border: 1px solid #DDD4C9;
}

.about-brand-section .about-mission-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2B2420;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .about-brand-section .about-mission-heading {
    font-size: 0.875rem;
  }
}

.about-brand-section .about-mission-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #6E645D;
}

.about-brand-section .about-btn-primary {
  background-color: #B85839;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-brand-section .about-btn-primary:hover {
  background-color: #A2482B;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3);
}

.about-brand-section .about-btn-secondary {
  background-color: #5B6852;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-brand-section .about-btn-secondary:hover {
  background-color: #4B5643;
  color: #FFFFFF;
}

.about-brand-section .about-btn-outline {
  background-color: transparent;
  color: #B85839;
  border: 1.5px solid #B85839;
  border-radius: 12px;
  padding: 11px 23px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-brand-section .about-btn-outline:hover {
  background-color: #F7EAE5;
  color: #A2482B;
  border-color: #A2482B;
}

/* ===== PAGE: contacts ===== */
.delivery-contacts-page{background-color:#FAF7F2;color:#2B2420;font-family:'Inter',sans-serif;}.delivery-contacts-page .delivery-contacts-page__title{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;color:#2B2420;line-height:1.25;}.delivery-contacts-page .delivery-contacts-page__card{background-color:#FFFFFF;border:1px solid #EBE4DC;border-radius:16px;box-shadow:0 4px 16px rgba(43,36,32,0.04);}.delivery-contacts-page .delivery-contacts-page__badge{background-color:#F7EAE5;color:#B85839;font-size:0.75rem;font-weight:600;padding:4px 12px;border-radius:20px;letter-spacing:0.04em;text-transform:uppercase;}.delivery-contacts-page .delivery-contacts-page__lead{font-size:1.05rem;line-height:1.6;color:#6E645D;}.delivery-contacts-page .delivery-contacts-page__info-box{background-color:#FAF7F2;border:1px solid #DDD4C9;border-radius:12px;transition:border-color 0.15s ease,background-color 0.15s ease;}.delivery-contacts-page .delivery-contacts-page__info-box:hover{border-color:#B85839;background-color:#FDF5EB;}.delivery-contacts-page .delivery-contacts-page__icon-wrap{width:32px;height:32px;border-radius:8px;background-color:#F7EAE5;color:#B85839;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;}.delivery-contacts-page .delivery-contacts-page__info-text{color:#6E645D;font-size:0.875rem;line-height:1.45;}.delivery-contacts-page .delivery-contacts-page__link{color:#B85839;text-decoration:none;font-size:0.95rem;word-break:break-all;transition:color 0.15s ease;}.delivery-contacts-page .delivery-contacts-page__link:hover{color:#8C3B20;text-decoration:underline;}.delivery-contacts-page .delivery-contacts-page__image-card{position:relative;border-radius:16px;border:1px solid #EBE4DC;min-height:380px;background-color:#EDE7DF;}.delivery-contacts-page .delivery-contacts-page__image{object-fit:cover;min-height:380px;}.delivery-contacts-page .delivery-contacts-page__image-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(180deg,rgba(43,36,32,0) 0%,rgba(43,36,32,0.85) 100%);color:#FFFFFF;}.delivery-contacts-page .delivery-contacts-page__status-pill{background-color:#EEF1EB;border:1px solid #DDD4C9;border-radius:24px;}.delivery-contacts-page .delivery-contacts-page__delivery-step{background-color:#FAF7F2;border:1px solid #DDD4C9;border-radius:12px;}.delivery-contacts-page .delivery-contacts-page__step-num{font-family:'Plus Jakarta Sans',sans-serif;font-size:1.25rem;font-weight:700;color:#B85839;line-height:1;}.delivery-contacts-page .delivery-contacts-page__map-wrapper{background-color:#FFFFFF;border:1px solid #EBE4DC;border-radius:16px;box-shadow:0 4px 16px rgba(43,36,32,0.04);}.delivery-contacts-page .delivery-contacts-page__map-header{background-color:#FDF5EB;border-bottom:1px solid #DDD4C9;}.delivery-contacts-page .delivery-contacts-page__iframe-container{position:relative;width:100%;height:380px;background-color:#EDE7DF;}.delivery-contacts-page .delivery-contacts-page__map-frame{border:0;width:100%;height:100%;display:block;}

/* ===== PAGE: cart ===== */
.cargo-cart-page {
  background-color: #FAF7F2;
  color: #2B2420;
  font-family: 'Inter', sans-serif;
}
.cargo-cart-page .cargo-cart-main-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2B2420;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .cargo-cart-page .cargo-cart-main-heading {
    font-size: 1.75rem;
    hyphens: auto;
  }
}
.cargo-cart-page .cargo-cart-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2B2420;
}
.cargo-cart-page .cargo-cart-h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2B2420;
}
.cargo-cart-page .cargo-cart-sub-lead {
  font-size: 1.05rem;
  color: #6E645D;
  line-height: 1.55;
  max-width: 720px;
}
.cargo-cart-page .cargo-cart-body-text {
  color: #6E645D;
  line-height: 1.55;
}
.cargo-cart-page .cargo-cart-tag-badge {
  background-color: #F7EAE5;
  color: #B85839;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cargo-cart-page .cargo-cart-panel {
  background-color: #FFFFFF;
  border: 1px solid #EBE4DC;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}
.cargo-cart-page .cart-primary-btn {
  background-color: #B85839;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.cargo-cart-page .cart-primary-btn:hover,
.cargo-cart-page .cart-primary-btn:focus {
  background-color: #A2482B;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3);
}
.cargo-cart-page .cart-outline-btn {
  background-color: transparent;
  color: #B85839;
  border: 1.5px solid #B85839;
  border-radius: 12px;
  font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cargo-cart-page .cart-outline-btn:hover,
.cargo-cart-page .cart-outline-btn:focus {
  background-color: #F7EAE5;
  color: #A2482B;
  border-color: #A2482B;
}
.cargo-cart-page .cart-link-btn {
  background: transparent;
  border: none;
  color: #6E645D;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.cargo-cart-page .cart-link-btn:hover {
  color: #B85839;
  background-color: #F3EFE9;
}
.cargo-cart-page .cart-promo-strip {
  background-color: #FBF9F5;
  border: 1px dashed #DDD4C9;
}
.cargo-cart-page .cart-craft-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.cargo-cart-page .cart-total-highlight {
  color: #B85839;
}
.cargo-cart-page .cart-input-field {
  background-color: #FFFFFF;
  border: 1px solid #DDD4C9;
  border-radius: 10px;
  padding: 10px 14px;
  color: #2B2420;
  font-size: 0.95rem;
}
.cargo-cart-page .cart-input-field::placeholder {
  color: #968B82;
  opacity: 1;
}
.cargo-cart-page .cart-input-field:focus {
  background-color: #FFFFFF;
  color: #2B2420;
  border-color: #B85839;
  box-shadow: 0 0 0 3px rgba(184, 88, 57, 0.2);
  outline: none;
}
.cargo-cart-page .cart-empty-inner {
  max-width: 520px;
  background-color: #FFFFFF;
  border: 1px solid #EBE4DC;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}
.cargo-cart-page .cart-empty-icon {
  font-size: 3.5rem;
  color: #BCB0A3;
}
.cargo-cart-page .cart-success-icon {
  font-size: 3.5rem;
  color: #5B6852;
}
.cargo-cart-page .cart-item-card {
  border-bottom: 1px solid #EBE4DC;
  padding: 16px 0;
}
.cargo-cart-page .cart-item-card:last-child {
  border-bottom: none;
}
.cargo-cart-page .cart-item-thumb {
  width: 72px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #F3EFE9;
  flex-shrink: 0;
}
.cargo-cart-page .cart-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2B2420;
  margin-bottom: 4px;
  text-decoration: none;
  display: inline-block;
}
.cargo-cart-page .cart-item-title:hover {
  color: #B85839;
}
.cargo-cart-page .cart-item-price-tag {
  font-weight: 600;
  color: #B85839;
}
.cargo-cart-page .cart-qty-ctrl-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid #DDD4C9;
  border-radius: 8px;
  overflow: hidden;
  background-color: #FFFFFF;
}
.cargo-cart-page .cart-qty-step-btn {
  background-color: #FBF9F5;
  border: none;
  color: #2B2420;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background-color 0.15s ease;
}
.cargo-cart-page .cart-qty-step-btn:hover {
  background-color: #F3EFE9;
  color: #B85839;
}
.cargo-cart-page .cart-qty-value-input {
  width: 40px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2B2420;
  background-color: #FFFFFF;
}
.cargo-cart-page .cart-qty-value-input:focus {
  outline: none;
}
.cargo-cart-page .cart-remove-item-button {
  background: transparent;
  border: none;
  color: #968B82;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.cargo-cart-page .cart-remove-item-button:hover {
  color: #B85839;
  background-color: #F7EAE5;
}
.cargo-cart-page .cargo-badge-olive {
  background-color: #EEF1EB;
  color: #5B6852;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}
.cargo-cart-page .cargo-badge-sand {
  background-color: #FDF5EB;
  color: #A87233;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}
.cargo-cart-page .cargo-badge-terracotta {
  background-color: #F7EAE5;
  color: #B85839;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}
.cargo-cart-page .cart-notification-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1080;
  background-color: #2B2420;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  font-size: 0.95rem;
  font-weight: 500;
}
.cargo-cart-page .cart-notification-toast .cart-toast-icon {
  color: #D49B5B;
  font-size: 1.25rem;
}

/* ===== PAGE: privacy ===== */
.cargo-privacy-section { background-color: #FAF7F2; color: #2B2420; font-family: 'Inter', sans-serif; }
.cargo-privacy-section h1, .cargo-privacy-section h2, .cargo-privacy-section h3, .cargo-privacy-section h4 { font-family: 'Plus Jakarta Sans', sans-serif; color: #2B2420; font-weight: 700; }
.cargo-privacy-section .cargo-privacy-badge { background-color: #F7EAE5; color: #B85839; font-size: 0.8125rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(184, 88, 57, 0.2); }
.cargo-privacy-section .cargo-privacy-title { font-size: 2.5rem; line-height: 1.2; color: #2B2420; letter-spacing: -0.02em; }
.cargo-privacy-section .cargo-privacy-lead { font-size: 1.125rem; line-height: 1.6; color: #6E645D; }
.cargo-privacy-section .cargo-privacy-meta { font-size: 0.875rem; color: #968B82; font-weight: 500; }
.cargo-privacy-section .cargo-privacy-nav-card { background-color: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.cargo-privacy-section .cargo-nav-card-title { color: #5B6852; font-weight: 600; }
.cargo-privacy-section .cargo-nav-link { color: #2B2420; font-size: 0.9375rem; font-weight: 500; text-decoration: none; padding: 6px 10px; border-radius: 8px; transition: background-color 0.15s ease, color 0.15s ease; }
.cargo-privacy-section .cargo-nav-link:hover { background-color: #F7EAE5; color: #B85839; }
.cargo-privacy-section .cargo-policy-card { background-color: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.cargo-privacy-section .cargo-icon-bubble { width: 44px; height: 44px; border-radius: 12px; background-color: #F7EAE5; color: #B85839; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.cargo-privacy-section .cargo-section-heading { color: #2B2420; font-weight: 600; }
.cargo-privacy-section .cargo-subheading { color: #5B6852; font-weight: 600; }
.cargo-privacy-section p { color: #2B2420; line-height: 1.65; margin-bottom: 1rem; }
.cargo-privacy-section .cargo-policy-list { padding-left: 1.25rem; color: #2B2420; margin-bottom: 1rem; }
.cargo-privacy-section .cargo-policy-list li { margin-bottom: 0.5rem; line-height: 1.6; }
.cargo-privacy-section .cargo-info-tile { background-color: #FBF9F5; border: 1px solid #EBE4DC; border-radius: 12px; height: 100%; }
.cargo-privacy-section .cargo-tile-title { color: #2B2420; font-weight: 600; }
.cargo-privacy-section .cargo-rights-card { background-color: #EEF1EB; border: 1px solid #DDD4C9; border-radius: 12px; }
.cargo-privacy-section .cargo-rights-title { color: #5B6852; font-weight: 600; }
.cargo-privacy-section .cargo-inline-link { color: #B85839; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s ease; }
.cargo-privacy-section .cargo-inline-link:hover { color: #A2482B; }
.cargo-privacy-section .cargo-table { border: 1px solid #EBE4DC; font-size: 0.875rem; }
.cargo-privacy-section .cargo-table thead { background-color: #F3EFE9; color: #2B2420; }
.cargo-privacy-section .cargo-table th { font-weight: 600; border-bottom: 1px solid #DDD4C9; padding: 12px 16px; }
.cargo-privacy-section .cargo-table td { padding: 12px 16px; border-bottom: 1px solid #EBE4DC; color: #2B2420; }
.cargo-privacy-section .cargo-table code { background-color: #F7EAE5; color: #B85839; padding: 2px 6px; border-radius: 4px; font-size: 0.8125rem; }
@media (max-width: 767.98px) {
  .cargo-privacy-section .cargo-privacy-title { font-size: 1.875rem; }
  .cargo-privacy-section .cargo-policy-card { padding: 1.25rem !important; }
  .cargo-privacy-section .cargo-privacy-nav-card { padding: 1.25rem !important; }
}

/* ===== PAGE: terms ===== */
.cargo-terms-section { background-color: #FAF7F2; min-height: 80vh; }
.cargo-terms-section .cargo-terms-nav { background-color: #FFFFFF; border: 1px solid #EBE4DC; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.cargo-terms-section .cargo-terms-nav-title { font-family: 'Plus Jakarta Sans', sans-serif; color: #2B2420; font-weight: 700; }
.cargo-terms-section .cargo-terms-links .nav-link { color: #6E645D; padding: 8px 12px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: all 0.15s ease; }
.cargo-terms-section .cargo-terms-links .nav-link:hover { color: #B85839; background-color: #F7EAE5; }
.cargo-terms-section .cargo-terms-links .nav-link.active { color: #B85839; background-color: #F7EAE5; font-weight: 600; }
.cargo-terms-section .cargo-terms-help-box { background-color: #FAF7F2; border: 1px solid #EBE4DC; }
.cargo-terms-section .cargo-terms-help-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: #2B2420; font-weight: 600; }
.cargo-terms-section .cargo-terms-content { background-color: #FFFFFF; border-color: #EBE4DC !important; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.cargo-terms-section .cargo-terms-title { font-family: 'Plus Jakarta Sans', sans-serif; color: #2B2420; font-weight: 700; }
.cargo-terms-section .cargo-terms-heading { font-family: 'Plus Jakarta Sans', sans-serif; color: #2B2420; font-weight: 600; }
.cargo-terms-section .cargo-terms-num { background-color: #F7EAE5; color: #B85839; font-weight: 700; font-size: 0.8rem; padding: 6px 10px; border-radius: 6px; }
.cargo-terms-section p, .cargo-terms-section li { color: #6E645D; line-height: 1.6; font-size: 0.975rem; }
.cargo-terms-section .cargo-terms-list { padding-left: 1.25rem; }
.cargo-terms-section .cargo-terms-list li { margin-bottom: 0.5rem; }
.cargo-terms-section .cargo-terms-callout { background-color: #FAF7F2; border-left: 3px solid #B85839; }
.cargo-terms-section .btn-outline-primary { color: #B85839; border-color: #B85839; font-weight: 600; }
.cargo-terms-section .btn-outline-primary:hover { background-color: #B85839; border-color: #B85839; color: #FFFFFF; }

/* ===== PAGE: disclaimer ===== */
.disclaimer-section { background-color: #FAF7F2; min-height: 80vh; }
.disclaimer-section .disclaimer-card { background-color: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.disclaimer-section .disclaimer-badge { background-color: #F7EAE5; color: #B85839; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; display: inline-flex; align-items: center; }
.disclaimer-section .disclaimer-meta { color: #968B82; font-size: 0.875rem; font-weight: 500; }
.disclaimer-section .disclaimer-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #2B2420; line-height: 1.25; }
.disclaimer-section .text-muted-custom { color: #6E645D; font-size: 1.125rem; line-height: 1.6; }
.disclaimer-section .disclaimer-divider { border-color: #EBE4DC; opacity: 1; }
.disclaimer-section .disclaimer-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 600; color: #2B2420; margin-bottom: 12px; display: flex; align-items: center; }
.disclaimer-section .text-primary-custom { color: #B85839; }
.disclaimer-section p { color: #2B2420; line-height: 1.6; font-size: 1rem; }
.disclaimer-section .disclaimer-list { padding-left: 20px; margin-bottom: 0; color: #2B2420; }
.disclaimer-section .disclaimer-list li { margin-bottom: 8px; line-height: 1.55; }
.disclaimer-section .alert-notice { background-color: #FDF5EB; border-left: 4px solid #D49B5B; color: #2B2420; }
.disclaimer-section .disclaimer-contact-list li { padding: 6px 0; color: #2B2420; font-size: 0.95rem; }
.disclaimer-section a.text-primary-custom:hover { color: #A2482B; text-decoration: underline !important; }
@media (max-width: 767.98px) { .disclaimer-section .disclaimer-title { font-size: 1.6rem; } .disclaimer-section .disclaimer-heading { font-size: 1.15rem; } .disclaimer-section .disclaimer-card { padding: 20px !important; } }

/* ===== PAGE: refound ===== */
.refund-policy-section {
  background-color: #FAF7F2;
  color: #2B2420;
  font-family: 'Inter', sans-serif;
}

.refund-policy-section .refund-header-card {
  background-color: #FFFFFF;
  border-color: #EBE4DC !important;
}

.refund-policy-section .refund-badge {
  background-color: #F7EAE5;
  color: #B85839;
  font-size: 0.8125rem;
  font-weight: 600;
}

.refund-policy-section .refund-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #2B2420;
}

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

.refund-policy-section .refund-lead-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #6E645D;
}

.refund-policy-section .refund-feature-card {
  background-color: #FFFFFF;
  border-color: #EBE4DC !important;
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

.refund-policy-section .refund-icon-wrap {
  width: 52px;
  height: 52px;
  background-color: #F7EAE5;
  color: #B85839;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.refund-policy-section .refund-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2B2420;
}

@media (max-width: 767.98px) {
  .refund-policy-section .refund-card-title {
    font-size: 1rem;
    hyphens: auto;
  }
}

.refund-policy-section .refund-card-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6E645D;
}

.refund-policy-section .refund-content-body {
  background-color: #FFFFFF;
  border-color: #EBE4DC !important;
}

.refund-policy-section .refund-section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2B2420;
}

@media (max-width: 767.98px) {
  .refund-policy-section .refund-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
}

.refund-policy-section .text-terracotta {
  color: #B85839;
}

.refund-policy-section .refund-body-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2B2420;
  margin-bottom: 1rem;
}

.refund-policy-section .refund-list {
  color: #2B2420;
  font-size: 0.95rem;
  line-height: 1.6;
}

.refund-policy-section .refund-list li {
  margin-bottom: 0.5rem;
}

.refund-policy-section .step-box {
  background-color: #FBF9F5;
  border: 1px solid #DDD4C9;
}

.refund-policy-section .step-number {
  background-color: #EEF1EB;
  color: #5B6852;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.refund-policy-section .step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2B2420;
}

@media (max-width: 767.98px) {
  .refund-policy-section .step-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.refund-policy-section .step-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6E645D;
}

.refund-policy-section .refund-inline-link {
  color: #B85839;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.refund-policy-section .refund-inline-link:hover {
  color: #8C3B20;
}

.refund-policy-section .btn-primary-custom {
  background-color: #B85839;
  color: #FFFFFF !important;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(184, 88, 57, 0.2);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.refund-policy-section .btn-primary-custom:hover {
  background-color: #A2482B;
  box-shadow: 0 6px 16px rgba(184, 88, 57, 0.3);
}

.refund-policy-section .btn-outline-custom {
  background-color: transparent;
  color: #B85839 !important;
  border: 1.5px solid #B85839;
  border-radius: 12px;
  font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.refund-policy-section .btn-outline-custom:hover {
  background-color: #F7EAE5;
  color: #A2482B !important;
  border-color: #A2482B;
}

/* ===== PAGE: delivery ===== */
.delivery-page-content { background-color: #FAF7F2; color: #2B2420; font-family: 'Inter', sans-serif; }
.delivery-page-content .delivery-badge { background-color: #F7EAE5; color: #B85839; font-size: 0.8125rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.delivery-page-content .delivery-main-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #2B2420; line-height: 1.25; }
.delivery-page-content .delivery-lead-text { font-size: 1.0625rem; color: #6E645D; max-width: 720px; line-height: 1.6; }
.delivery-page-content .delivery-feature-card { background: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.delivery-page-content .delivery-feature-card:hover { border-color: #DDD4C9; box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08); }
.delivery-page-content .delivery-icon-box { width: 48px; height: 48px; border-radius: 12px; background-color: #EEF1EB; color: #5B6852; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
.delivery-page-content .delivery-feature-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 600; color: #2B2420; }
.delivery-page-content .delivery-feature-desc { font-size: 0.9375rem; color: #6E645D; line-height: 1.55; }
.delivery-page-content .delivery-table-wrapper { background: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.delivery-page-content .delivery-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.45rem; font-weight: 600; color: #2B2420; }
.delivery-page-content .delivery-subheading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 600; color: #2B2420; }
.delivery-page-content .delivery-text-secondary { font-size: 0.9375rem; color: #6E645D; line-height: 1.6; }
.delivery-page-content .text-primary-accent { color: #B85839; }
.delivery-page-content .text-dark-slate { color: #2B2420; }
.delivery-page-content .delivery-table { border-collapse: separate; border-spacing: 0; width: 100%; }
.delivery-page-content .delivery-table thead th { background-color: #FBF9F5; color: #2B2420; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.03em; border-bottom: 2px solid #EBE4DC; padding: 14px 16px; }
.delivery-page-content .delivery-table tbody td { padding: 16px; border-bottom: 1px solid #EBE4DC; font-size: 0.9375rem; color: #6E645D; }
.delivery-page-content .delivery-table tbody tr:last-child td { border-bottom: none; }
.delivery-page-content .delivery-price-chip { background-color: #FDF5EB; color: #A87233; font-weight: 700; padding: 4px 8px; border-radius: 6px; font-size: 0.875rem; display: inline-block; }
.delivery-page-content .delivery-media-card { background: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.delivery-page-content .delivery-showcase-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.delivery-page-content .delivery-content-card { background: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.delivery-page-content .delivery-timeline-item { display: flex; gap: 16px; }
.delivery-page-content .timeline-marker { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background-color: #B85839; color: #FFFFFF; font-weight: 700; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; }
.delivery-page-content .delivery-step-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #2B2420; }
.delivery-page-content .delivery-policy-card { background: #FFFFFF; border: 1px solid #EBE4DC; border-radius: 16px; box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04); }
.delivery-page-content .delivery-contact-banner { background: #F3EFE9; border: 1px solid #DDD4C9; border-radius: 16px; }
.delivery-page-content .delivery-banner-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 600; color: #2B2420; }
.delivery-page-content .delivery-banner-text { font-size: 0.9375rem; color: #6E645D; }
.delivery-page-content .delivery-primary-btn { background-color: #B85839; color: #FFFFFF; border: none; border-radius: 12px; font-weight: 600; transition: background-color 0.15s ease, box-shadow 0.15s ease; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.delivery-page-content .delivery-primary-btn:hover { background-color: #A2482B; color: #FFFFFF; box-shadow: 0 4px 12px rgba(184, 88, 57, 0.25); }
@media (max-width: 767.98px) { .delivery-page-content .delivery-main-title { font-size: 1.75rem; } .delivery-page-content .delivery-section-title { font-size: 1.25rem; } .delivery-page-content .delivery-showcase-img { height: 180px; } .delivery-page-content .delivery-table thead th, .delivery-page-content .delivery-table tbody td { padding: 10px; font-size: 0.8125rem; } }

.organic-comment-card.main-comment {
    background: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.organic-comment-card.main-comment:hover {
    border-color: #DDD4C9;
    box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
}

.organic-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    user-select: none;
}

.avatar-terracotta {
    background: #F7EAE5;
    color: #B85839;
    border: 1.5px solid rgba(184, 88, 57, 0.2);
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2B2420;
}

.comment-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    line-height: 1.2;
}

.badge-verified {
    background-color: #EEF1EB;
    color: #5B6852;
}

.comment-timestamp {
    font-size: 0.75rem;
    color: #968B82;
    font-weight: 500;
}

.rating-star {
    color: #D49B5B;
    font-size: 0.85rem;
}

.rating-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2B2420;
}

.comment-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6E645D;
}

.border-top-subtle {
    border-top: 1px solid #F3EFE9;
}

.btn-comment-action {
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6E645D;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.btn-comment-action:hover {
    background-color: #F3EFE9;
    color: #B85839;
}

.btn-comment-action .action-count {
    color: #968B82;
    font-weight: 500;
}

.btn-comment-action:hover .action-count {
    color: #B85839;
}

.text-muted-subtle {
    color: #968B82;
}

.organic-comment-card.reply-comment {
    background: #FAF7F2;
    border: 1px solid #EBE4DC;
    border-left: 3px solid #5B6852;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(43, 36, 32, 0.03);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.organic-comment-card.reply-comment:hover {
    border-color: #DDD4C9;
    border-left-color: #4B5643;
    background-color: #FBF9F5;
}

.organic-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    user-select: none;
}

.avatar-olive {
    background: #EEF1EB;
    color: #5B6852;
    border: 1.5px solid rgba(91, 104, 82, 0.2);
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2B2420;
}

.comment-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    line-height: 1.2;
}

.badge-artisan-team {
    background-color: #FDF5EB;
    color: #A87233;
    border: 1px solid rgba(212, 155, 91, 0.3);
}

.comment-timestamp {
    font-size: 0.75rem;
    color: #968B82;
    font-weight: 500;
}

.reply-target-context {
    font-size: 0.8125rem;
}

.text-reply-prefix {
    color: #968B82;
}

.reply-recipient-name {
    color: #B85839;
    font-weight: 600;
}

.comment-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #6E645D;
}

.border-top-subtle {
    border-top: 1px solid #EBE4DC;
}

.btn-comment-action {
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6E645D;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.btn-comment-action:hover {
    background-color: #EDE7DF;
    color: #B85839;
}

.btn-comment-action .action-count {
    color: #968B82;
    font-weight: 500;
}

.btn-comment-action:hover .action-count {
    color: #B85839;
}


/* ===== PAGE TEMPLATE: catalog ===== */
.blog-detail-template-body {
    background-color: #FAF7F2;
    color: #2B2420;
    font-family: 'Inter', sans-serif;
}

.site-header-block {
    background-color: #FAF7F2;
    border-bottom: 1px solid #EBE4DC;
    z-index: 1030;
}

.site-header-block .cargo-navbar {
    background-color: #FAF7F2;
}

.site-header-block .brand-logo-img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-header-block .brand-title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2B2420;
    letter-spacing: -0.02em;
}

.site-header-block .nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2B2420;
    border-radius: 8px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #B85839;
    background-color: #F3EFE9;
}

.site-header-block .header-cart-btn {
    color: #2B2420;
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.site-header-block .header-cart-btn:hover,
.site-header-block .header-cart-btn:focus {
    color: #B85839;
    border-color: #B85839;
    background-color: #F7EAE5;
}

.site-header-block .custom-toggler {
    color: #2B2420;
    background-color: #F3EFE9;
    border-radius: 8px;
    line-height: 1;
}

.site-header-block .custom-toggler:hover,
.site-header-block .custom-toggler:focus {
    color: #B85839;
}

.cargo-detail-hero {
    padding: 60px 0;
    background-color: #2B2420;
}

.cargo-detail-hero-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cargo-detail-hero-overlay {
    background: linear-gradient(180deg, rgba(43, 36, 32, 0.78) 0%, rgba(43, 36, 32, 0.92) 100%);
}

.cargo-detail-tag {
    background: rgba(247, 234, 229, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.text-accent-light {
    color: #D49B5B;
}

.cargo-tag-text {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cargo-detail-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.detail-hero-meta {
    font-size: 0.9rem;
}

.article-content-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

.article-featured-img {
    border-radius: 12px;
    max-height: 480px;
    object-fit: contain;
    width: 100%;
    height: auto;
}

.article-body-typography h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2B2420;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-body-typography h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2B2420;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.article-body-typography p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A403A;
    margin-bottom: 1.25rem;
}

.article-body-typography .lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2B2420;
}

.article-quote {
    background-color: #F7EAE5;
    border-left: 4px solid #B85839;
    font-style: italic;
    color: #2B2420;
}

.article-bullet-list,
.article-numbered-list {
    padding-left: 1.5rem;
    color: #4A403A;
    line-height: 1.7;
}

.article-bullet-list li,
.article-numbered-list li {
    margin-bottom: 0.5rem;
}

.sidebar-card {
    border: 1px solid #EBE4DC;
}

.sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2B2420;
}

.author-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #F7EAE5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2B2420;
}

.author-role {
    font-size: 0.825rem;
    color: #6E645D;
}

.author-bio-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #6E645D;
}

.sidebar-category-link {
    color: #2B2420;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #FAF7F2;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sidebar-category-link:hover {
    background-color: #F7EAE5;
    color: #B85839;
}

.recent-post-link {
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px dashed #EBE4DC;
}

.recent-post-date {
    font-size: 0.775rem;
    color: #968B82;
}

.recent-post-title {
    font-size: 0.925rem;
    font-weight: 600;
    color: #2B2420;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.recent-post-link:hover .recent-post-title {
    color: #B85839;
}

.comments-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2420;
}

.bg-light-terracotta {
    background-color: #F7EAE5;
}

.text-terracotta {
    color: #B85839;
}

.organic-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(43, 36, 32, 0.03);
}

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

.avatar-terracotta {
    background-color: #F7EAE5;
    color: #B85839;
}

.avatar-olive {
    background-color: #EEF1EB;
    color: #5B6852;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2B2420;
}

.comment-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.badge-verified {
    background-color: #EEF1EB;
    color: #5B6852;
}

.badge-artisan-team {
    background-color: #FDF5EB;
    color: #A87233;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #968B82;
}

.rating-star {
    color: #D49B5B;
    font-size: 0.85rem;
}

.rating-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6E645D;
}

.comment-body-text {
    font-size: 0.925rem;
    line-height: 1.55;
    color: #4A403A;
}

.border-top-subtle {
    border-top: 1px solid #F3EFE9;
}

.btn-comment-action {
    background: none;
    border: none;
    font-size: 0.825rem;
    font-weight: 600;
    color: #6E645D;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.btn-comment-action:hover {
    color: #B85839;
    background-color: #F7EAE5;
}

.btn-comment-action.active {
    color: #B85839;
}

.text-muted-subtle {
    color: #968B82;
}

.reply-comment {
    border-left: 3px solid #5B6852;
}

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

.text-reply-prefix {
    font-size: 0.8rem;
    color: #968B82;
}

.reply-recipient-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5B6852;
}

.comment-submission-panel {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
}

.panel-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2B2420;
}

.custom-form-input {
    background-color: #FAF7F2;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    color: #2B2420;
    font-size: 0.95rem;
    padding: 10px 14px;
}

.custom-form-input:focus {
    background-color: #FFFFFF;
    border-color: #B85839;
    box-shadow: 0 0 0 3px rgba(184, 88, 57, 0.25);
    color: #2B2420;
}

.custom-form-input::placeholder {
    color: #968B82;
    opacity: 1;
}

.cargo-btn-primary {
    background-color: #B85839;
    border: 1.5px solid #B85839;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cargo-btn-primary:hover {
    background-color: #A2482B;
    border-color: #A2482B;
}

.site-footer {
    background-color: #FAF7F2;
    border-top: 1px solid #EBE4DC;
    color: #2B2420;
    padding-top: 48px;
    padding-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.site-footer .site-footer-main {
    padding-bottom: 36px;
    border-bottom: 1px solid #EBE4DC;
}

.site-footer .site-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
    display: block;
}

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

.site-footer .site-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6E645D;
    margin-bottom: 16px;
    max-width: 360px;
}

.site-footer .site-footer-currency-badge {
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #DDD4C9;
}

.site-footer .site-footer-currency-badge .text-accent {
    color: #B85839;
}

.site-footer .site-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #2B2420;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.site-footer .site-footer-links li {
    margin-bottom: 10px;
}

.site-footer .site-footer-link {
    color: #6E645D;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.15s ease;
    display: inline-block;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
    color: #B85839;
}

.site-footer .site-footer-contacts {
    font-size: 0.9375rem;
}

.site-footer .site-footer-contact-icon {
    color: #B85839;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer .site-footer-contact-text {
    color: #6E645D;
    line-height: 1.5;
    word-break: break-word;
}

.site-footer .site-footer-contact-link {
    color: #6E645D;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.15s ease;
    word-break: break-all;
}

.site-footer .site-footer-contact-link:hover,
.site-footer .site-footer-contact-link:focus {
    color: #B85839;
}

.site-footer .site-footer-wa-btn {
    background-color: #5B6852;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.site-footer .site-footer-wa-btn:hover,
.site-footer .site-footer-wa-btn:focus {
    background-color: #4B5643;
    color: #FFFFFF;
}

.site-footer .site-footer-bottom {
    padding-top: 24px;
}

.site-footer .site-footer-copyright {
    font-size: 0.875rem;
    color: #6E645D;
}

.site-footer .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    color: #2B2420;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer .site-footer-payment-badge i {
    color: #B85839;
    font-size: 0.95rem;
}

@media (min-width: 992px) {
    .sticky-top-sidebar {
        position: sticky;
        top: 90px;
        z-index: 10;
    }
}

@media (max-width: 767.98px) {
    .cargo-detail-hero-title {
        font-size: 1.125rem !important;
        hyphens: auto;
    }

    .article-content-card {
        padding: 1.25rem !important;
    }

    .site-footer {
        padding-top: 36px;
        padding-bottom: 20px;
    }

    .site-footer .site-footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

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

    .site-footer .site-footer-desc,
    .site-footer .site-footer-link,
    .site-footer .site-footer-contact-text,
    .site-footer .site-footer-contact-link {
        font-size: 0.875rem;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.blog-detail-template-body {
    background-color: #FAF7F2;
    color: #2B2420;
    font-family: 'Inter', sans-serif;
}

.site-header-block {
    background-color: #FAF7F2;
    border-bottom: 1px solid #EBE4DC;
    z-index: 1030;
}

.site-header-block .cargo-navbar {
    background-color: #FAF7F2;
}

.site-header-block .brand-logo-img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-header-block .brand-title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2B2420;
    letter-spacing: -0.02em;
}

.site-header-block .nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2B2420;
    border-radius: 8px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #B85839;
    background-color: #F3EFE9;
}

.site-header-block .header-cart-btn {
    color: #2B2420;
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.site-header-block .header-cart-btn:hover,
.site-header-block .header-cart-btn:focus {
    color: #B85839;
    border-color: #B85839;
    background-color: #F7EAE5;
}

.site-header-block .custom-toggler {
    color: #2B2420;
    background-color: #F3EFE9;
    border-radius: 8px;
    line-height: 1;
}

.site-header-block .custom-toggler:hover,
.site-header-block .custom-toggler:focus {
    color: #B85839;
}

.cargo-detail-hero {
    padding: 60px 0;
    background-color: #2B2420;
}

.cargo-detail-hero-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cargo-detail-hero-overlay {
    background: linear-gradient(180deg, rgba(43, 36, 32, 0.78) 0%, rgba(43, 36, 32, 0.92) 100%);
}

.cargo-detail-tag {
    background: rgba(247, 234, 229, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.text-accent-light {
    color: #D49B5B;
}

.cargo-tag-text {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cargo-detail-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.detail-hero-meta {
    font-size: 0.9rem;
}

.article-content-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    box-shadow: 0 4px 16px rgba(43, 36, 32, 0.04);
}

.article-featured-img {
    border-radius: 12px;
    max-height: 480px;
    object-fit: contain;
    width: 100%;
    height: auto;
}

.article-body-typography h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2B2420;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-body-typography h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2B2420;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.article-body-typography p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A403A;
    margin-bottom: 1.25rem;
}

.article-body-typography .lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2B2420;
}

.article-quote {
    background-color: #F7EAE5;
    border-left: 4px solid #B85839;
    font-style: italic;
    color: #2B2420;
}

.article-bullet-list,
.article-numbered-list {
    padding-left: 1.5rem;
    color: #4A403A;
    line-height: 1.7;
}

.article-bullet-list li,
.article-numbered-list li {
    margin-bottom: 0.5rem;
}

.sidebar-card {
    border: 1px solid #EBE4DC;
}

.sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2B2420;
}

.author-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #F7EAE5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2B2420;
}

.author-role {
    font-size: 0.825rem;
    color: #6E645D;
}

.author-bio-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #6E645D;
}

.sidebar-category-link {
    color: #2B2420;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #FAF7F2;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sidebar-category-link:hover {
    background-color: #F7EAE5;
    color: #B85839;
}

.recent-post-link {
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px dashed #EBE4DC;
}

.recent-post-date {
    font-size: 0.775rem;
    color: #968B82;
}

.recent-post-title {
    font-size: 0.925rem;
    font-weight: 600;
    color: #2B2420;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.recent-post-link:hover .recent-post-title {
    color: #B85839;
}

.comments-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2420;
}

.bg-light-terracotta {
    background-color: #F7EAE5;
}

.text-terracotta {
    color: #B85839;
}

.organic-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #EBE4DC;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(43, 36, 32, 0.03);
}

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

.avatar-terracotta {
    background-color: #F7EAE5;
    color: #B85839;
}

.avatar-olive {
    background-color: #EEF1EB;
    color: #5B6852;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2B2420;
}

.comment-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.badge-verified {
    background-color: #EEF1EB;
    color: #5B6852;
}

.badge-artisan-team {
    background-color: #FDF5EB;
    color: #A87233;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #968B82;
}

.rating-star {
    color: #D49B5B;
    font-size: 0.85rem;
}

.rating-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6E645D;
}

.comment-body-text {
    font-size: 0.925rem;
    line-height: 1.55;
    color: #4A403A;
}

.border-top-subtle {
    border-top: 1px solid #F3EFE9;
}

.btn-comment-action {
    background: none;
    border: none;
    font-size: 0.825rem;
    font-weight: 600;
    color: #6E645D;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.btn-comment-action:hover {
    color: #B85839;
    background-color: #F7EAE5;
}

.btn-comment-action.active {
    color: #B85839;
}

.text-muted-subtle {
    color: #968B82;
}

.reply-comment {
    border-left: 3px solid #5B6852;
}

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

.text-reply-prefix {
    font-size: 0.8rem;
    color: #968B82;
}

.reply-recipient-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5B6852;
}

.comment-submission-panel {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
}

.panel-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2B2420;
}

.custom-form-input {
    background-color: #FAF7F2;
    border: 1px solid #DDD4C9;
    border-radius: 10px;
    color: #2B2420;
    font-size: 0.95rem;
    padding: 10px 14px;
}

.custom-form-input:focus {
    background-color: #FFFFFF;
    border-color: #B85839;
    box-shadow: 0 0 0 3px rgba(184, 88, 57, 0.25);
    color: #2B2420;
}

.custom-form-input::placeholder {
    color: #968B82;
    opacity: 1;
}

.cargo-btn-primary {
    background-color: #B85839;
    border: 1.5px solid #B85839;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cargo-btn-primary:hover {
    background-color: #A2482B;
    border-color: #A2482B;
}

.site-footer {
    background-color: #FAF7F2;
    border-top: 1px solid #EBE4DC;
    color: #2B2420;
    padding-top: 48px;
    padding-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.site-footer .site-footer-main {
    padding-bottom: 36px;
    border-bottom: 1px solid #EBE4DC;
}

.site-footer .site-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
    display: block;
}

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

.site-footer .site-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6E645D;
    margin-bottom: 16px;
    max-width: 360px;
}

.site-footer .site-footer-currency-badge {
    background-color: #EEF1EB;
    color: #5B6852;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #DDD4C9;
}

.site-footer .site-footer-currency-badge .text-accent {
    color: #B85839;
}

.site-footer .site-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #2B2420;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.site-footer .site-footer-links li {
    margin-bottom: 10px;
}

.site-footer .site-footer-link {
    color: #6E645D;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.15s ease;
    display: inline-block;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
    color: #B85839;
}

.site-footer .site-footer-contacts {
    font-size: 0.9375rem;
}

.site-footer .site-footer-contact-icon {
    color: #B85839;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer .site-footer-contact-text {
    color: #6E645D;
    line-height: 1.5;
    word-break: break-word;
}

.site-footer .site-footer-contact-link {
    color: #6E645D;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.15s ease;
    word-break: break-all;
}

.site-footer .site-footer-contact-link:hover,
.site-footer .site-footer-contact-link:focus {
    color: #B85839;
}

.site-footer .site-footer-wa-btn {
    background-color: #5B6852;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.site-footer .site-footer-wa-btn:hover,
.site-footer .site-footer-wa-btn:focus {
    background-color: #4B5643;
    color: #FFFFFF;
}

.site-footer .site-footer-bottom {
    padding-top: 24px;
}

.site-footer .site-footer-copyright {
    font-size: 0.875rem;
    color: #6E645D;
}

.site-footer .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #DDD4C9;
    color: #2B2420;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer .site-footer-payment-badge i {
    color: #B85839;
    font-size: 0.95rem;
}

@media (min-width: 992px) {
    .sticky-top-sidebar {
        position: sticky;
        top: 90px;
        z-index: 10;
    }
}

@media (max-width: 767.98px) {
    .cargo-detail-hero-title {
        font-size: 1.125rem !important;
        hyphens: auto;
    }

    .article-content-card {
        padding: 1.25rem !important;
    }

    .site-footer {
        padding-top: 36px;
        padding-bottom: 20px;
    }

    .site-footer .site-footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }

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

    .site-footer .site-footer-desc,
    .site-footer .site-footer-link,
    .site-footer .site-footer-contact-text,
    .site-footer .site-footer-contact-link {
        font-size: 0.875rem;
    }
}