:root {
    --bg-primary: #FAF7F2;
    --bg-secondary: #F3EFEA;
    --bg-elevated: #FFFFFF;
    --bg-accent-subtle: #EBE4D8;
    --primary: #3E4C3D;
    --primary-hover: #2D372C;
    --secondary: #C87D55;
    --secondary-hover: #B36A44;
    --accent-warm: #DDA77B;
    --accent-fresh: #8A9A86;
    --text-primary: #212420;
    --text-secondary: #646860;
    --text-muted: #91968C;
    --border-subtle: #E7E1D8;
    --border-focus: #3E4C3D;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --shadow-soft: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
    --shadow-hover: 0 14px 34px -4px rgba(62, 76, 61, 0.09);
    --transition-smooth: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.975rem;
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: -0.015em;
}

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

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

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

.site-container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-botanical-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.925rem;
    transition: var(--transition-smooth);
}

.btn-botanical-primary:hover,
.btn-botanical-primary:focus {
    background-color: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-botanical-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-pill);
    padding: 11px 26px;
    font-weight: 600;
    font-size: 0.925rem;
    transition: var(--transition-smooth);
}

.btn-botanical-secondary:hover,
.btn-botanical-secondary:focus {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-terracotta {
    background-color: var(--secondary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-terracotta:hover,
.btn-terracotta:focus {
    background-color: var(--secondary-hover);
    color: #FFFFFF;
}

.badge-botanical {
    background-color: var(--bg-accent-subtle);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

/* ===== header ===== */
.ts-header {
    background-color: #FAF7F2;
    border-bottom: 1px solid #E7E1D8;
    z-index: 1030;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.ts-header .ts-topbar {
    background-color: #3E4C3D;
    color: #FAF7F2;
    padding: 8px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.ts-header .ts-topbar-text {
    line-height: 1.4;
    color: #FAF7F2;
}

.ts-header .ts-topbar-highlight {
    color: #DDA77B;
    font-weight: 600;
}

.ts-header .ts-navbar {
    background-color: #FAF7F2;
    padding: 14px 0;
}

.ts-header .ts-brand {
    text-decoration: none;
    color: #212420;
    padding: 0;
    margin-right: 0;
}

.ts-header .ts-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block;
}

.ts-header .ts-brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #3E4C3D;
    letter-spacing: -0.01em;
    line-height: 1;
}

.ts-header .ts-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #212420;
    padding: 8px 16px;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.ts-header .ts-nav-link:hover,
.ts-header .ts-nav-link:focus {
    color: #C87D55;
    background-color: #F3EFEA;
}

.ts-header .ts-nav-toggle {
    border: 1px solid #E7E1D8;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    color: #3E4C3D;
    outline: none;
    box-shadow: none;
}

.ts-header .ts-nav-toggle-icon {
    font-size: 1.15rem;
    color: #3E4C3D;
}

.ts-header .ts-cart-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 50%;
    color: #3E4C3D;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-header .ts-cart-btn:hover {
    background-color: #3E4C3D;
    border-color: #3E4C3D;
    color: #FFFFFF;
}

.ts-header .ts-cart-icon {
    font-size: 1.1rem;
}

.ts-header .ts-cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #C87D55;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 6px;
    min-width: 18px;
    border: 2px solid #FAF7F2;
}

@media (max-width: 991.98px) {
    .ts-header .ts-topbar {
        font-size: 0.75rem;
    }

    .ts-header .ts-brand-text {
        font-size: 1.45rem;
    }

    .ts-header .ts-navbar-collapse {
        background-color: #FFFFFF;
        border: 1px solid #E7E1D8;
        border-radius: 16px;
        padding: 16px;
        margin-top: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

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

@media (min-width: 992px) {
    .ts-header .ts-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ts-header .ts-navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .ts-header .ts-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===== hero_section ===== */
.trip-hero-section {
    min-height: 85vh;
    background-color: #212420;
    color: #FFFFFF;
    overflow: hidden;
}

.trip-hero-section .trip-hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.trip-hero-section .trip-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-hero-section .trip-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 36, 32, 0.88) 0%, rgba(45, 55, 44, 0.72) 100%);
    z-index: 2;
}

.trip-hero-section .trip-hero-content {
    z-index: 3;
}

.trip-hero-section .trip-hero-pill {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #D6DCD4;
    letter-spacing: 0.03em;
}

.trip-hero-section .trip-hero-pill-icon {
    color: #8A9A86;
}

.trip-hero-section .trip-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.trip-hero-section .trip-hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: #E7E1D8;
    max-width: 600px;
}

.trip-hero-section .trip-hero-btn-primary {
    background-color: #C87D55;
    color: #FFFFFF;
    border: 1px solid #C87D55;
    border-radius: 999px;
    padding: 13px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(200, 125, 85, 0.3);
    text-decoration: none;
}

.trip-hero-section .trip-hero-btn-primary:hover {
    background-color: #B36A44;
    border-color: #B36A44;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 125, 85, 0.45);
}

.trip-hero-section .trip-hero-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.trip-hero-section .trip-hero-btn-secondary:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #212420;
    transform: translateY(-2px);
}

.trip-hero-section .trip-hero-perk-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #D6DCD4;
}

.trip-hero-section .trip-hero-perk-icon {
    color: #8A9A86;
    font-size: 0.95rem;
}

.trip-hero-section .trip-hero-badge-card {
    background-color: rgba(250, 247, 242, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    max-width: 360px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.trip-hero-section .trip-hero-badge-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #3E4C3D;
    color: #FAF7F2;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trip-hero-section .trip-hero-badge-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #A4ACA1;
    font-weight: 600;
}

.trip-hero-section .trip-hero-badge-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.trip-hero-section .trip-hero-badge-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D6DCD4;
}

.trip-hero-section .trip-hero-badge-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #DDA77B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.trip-hero-section .trip-hero-badge-link:hover {
    color: #FAF7F2;
}

@media (max-width: 767.98px) {
    .trip-hero-section {
        min-height: 75vh;
    }

    .trip-hero-section .trip-hero-title {
        font-size: 18px;
        hyphens: auto;
    }

    .trip-hero-section .trip-hero-lead {
        font-size: 0.95rem;
    }
}

/* ===== featured_products ===== */
.featured-soaps-block {
    background-color: #FAF7F2;
    color: #212420;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.featured-soaps-block__tagline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C87D55;
    background-color: #F3EFEA;
    padding: 4px 14px;
    border-radius: 999px;
}

.featured-soaps-block__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #3E4C3D;
}

.featured-soaps-block__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #646860;
    max-width: 620px;
}

.featured-soaps-block__card {
    background-color: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(62, 76, 61, 0.04);
}

.featured-soaps-block__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(62, 76, 61, 0.1);
    border-color: #C87D55;
}

.featured-soaps-block__media {
    background-color: #F3EFEA;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.featured-soaps-block__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.725rem;
    font-weight: 600;
    color: #3E4C3D;
    background-color: rgba(239, 233, 222, 0.94);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.featured-soaps-block__img-link {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-soaps-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.featured-soaps-block__card:hover .featured-soaps-block__image {
    transform: scale(1.04);
}

.featured-soaps-block__meta {
    font-size: 0.8rem;
}

.featured-soaps-block__aroma {
    color: #646860;
    font-weight: 500;
}

.featured-soaps-block__meta-icon {
    color: #8A9A86;
    margin-right: 4px;
}

.featured-soaps-block__rating {
    color: #212420;
    font-weight: 600;
    background-color: #FAF7F2;
    padding: 2px 8px;
    border-radius: 6px;
}

.featured-soaps-block__star-icon {
    color: #DDA77B;
    margin-right: 3px;
    font-size: 0.75rem;
}

.featured-soaps-block__item-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212420;
}

.featured-soaps-block__title-link {
    color: #212420;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-soaps-block__title-link:hover {
    color: #C87D55;
}

.featured-soaps-block__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #646860;
    flex-grow: 1;
}

.featured-soaps-block__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.featured-soaps-block__spec-pill {
    font-size: 0.725rem;
    font-weight: 500;
    color: #3E4C3D;
    background-color: #F3EFEA;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #E7E1D8;
}

.featured-soaps-block__footer {
    border-top: 1px solid #F3EFEA;
    gap: 10px;
}

.featured-soaps-block__price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #646860;
    font-weight: 600;
    line-height: 1;
}

.featured-soaps-block__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #3E4C3D;
    line-height: 1.2;
}

.featured-soaps-block__btn {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.featured-soaps-block__btn:hover {
    background-color: #2D372C;
    color: #FFFFFF;
    border-color: #2D372C;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(45, 55, 44, 0.2);
}

.featured-soaps-block__btn:active {
    transform: scale(0.97);
}

.featured-soaps-block__catalog-btn {
    background-color: transparent;
    color: #3E4C3D;
    border: 1.5px solid #3E4C3D;
    border-radius: 999px;
    padding: 10px 28px;
    font-size: 0.925rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.featured-soaps-block__catalog-btn:hover {
    background-color: #3E4C3D;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(62, 76, 61, 0.15);
}

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

    .featured-soaps-block__item-title {
        font-size: 14px;
        hyphens: auto;
    }

    .featured-soaps-block__card {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== ready_solutions ===== */
.ready-solutions-section {
    background-color: #FAF7F2;
    color: #212420;
    position: relative;
}

.ready-solutions-section .ready-solutions-header {
    max-width: 720px;
}

.ready-solutions-section .ready-solutions-badge {
    background-color: #EFE9DE;
    color: #3E4C3D;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid #E7E1D8;
}

.ready-solutions-section .ready-solutions-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    font-weight: 600;
    color: #212420;
    letter-spacing: -0.015em;
}

.ready-solutions-section .ready-solutions-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #646860;
}

.ready-solutions-section .ready-filter-btn {
    background-color: #FFFFFF;
    color: #3E4C3D;
    border: 1px solid #E7E1D8;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
}

.ready-solutions-section .ready-filter-btn:hover,
.ready-solutions-section .ready-filter-btn.active {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border-color: #3E4C3D;
    box-shadow: 0 4px 12px rgba(62, 76, 61, 0.15);
}

.ready-solutions-section .ready-card {
    background: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    overflow: hidden;
}

.ready-solutions-section .ready-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px -4px rgba(62, 76, 61, 0.09);
    border-color: #C87D55;
}

.ready-solutions-section .ready-card-media {
    aspect-ratio: 1 / 1;
    background-color: #F3EFEA;
}

.ready-solutions-section .ready-card-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ready-solutions-section .ready-card:hover .ready-card-img {
    transform: scale(1.04);
}

.ready-solutions-section .ready-card-tag {
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: #3E4C3D;
    backdrop-filter: blur(4px);
    border: 1px solid #E7E1D8;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ready-solutions-section .ready-stars {
    color: #DDA77B;
    font-size: 0.8rem;
}

.ready-solutions-section .ready-review-count {
    font-size: 0.75rem;
    color: #646860;
    font-weight: 500;
}

.ready-solutions-section .ready-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212420;
}

.ready-solutions-section .ready-card-title-link {
    color: #212420;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ready-solutions-section .ready-card-title-link:hover {
    color: #C87D55;
}

.ready-solutions-section .ready-card-notes {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #646860;
    min-height: 2.55rem;
}

.ready-solutions-section .ready-card-specs {
    font-size: 0.78rem;
    border-color: #F0EAE1 !important;
}

.ready-solutions-section .ready-spec-name {
    color: #646860;
}

.ready-solutions-section .ready-spec-val {
    color: #212420;
    font-weight: 600;
}

.ready-solutions-section .ready-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #646860;
    font-weight: 600;
}

.ready-solutions-section .ready-card-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3E4C3D;
}

.ready-solutions-section .ready-cart-btn {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
}

.ready-solutions-section .ready-cart-btn:hover {
    background-color: #2D372C;
    border-color: #2D372C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 76, 61, 0.2);
}

.ready-solutions-section .ready-cart-btn:active {
    transform: scale(0.98);
}

.ready-solutions-section .ready-view-all-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #3E4C3D;
    border: 1.5px solid #3E4C3D;
    border-radius: 999px;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ready-solutions-section .ready-view-all-btn:hover {
    background-color: #3E4C3D;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 76, 61, 0.15);
}

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

    .ready-solutions-section .ready-card-title {
        font-size: 1.2rem;
    }

    .ready-solutions-section .ready-card-notes {
        min-height: auto;
    }
}

/* ===== product_spotlight ===== */
.ts-product-spotlight {
    background-color: #FAF7F2;
    color: #212420;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ts-product-spotlight__card {
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 20px;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.ts-product-spotlight__media-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #F3EFEA;
}

.ts-product-spotlight__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background-color: rgba(250, 247, 242, 0.92);
    color: #3E4C3D;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #E7E1D8;
    backdrop-filter: blur(4px);
}

.ts-product-spotlight__img-link {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.ts-product-spotlight__img-link:hover {
    transform: scale(1.02);
}

.ts-product-spotlight__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.ts-product-spotlight__category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C87D55;
}

.ts-product-spotlight__rating {
    font-size: 0.875rem;
    color: #212420;
}

.ts-product-spotlight__rating i {
    color: #DDA77B;
}

.ts-product-spotlight__reviews {
    color: #646860;
    font-size: 0.85rem;
}

.ts-product-spotlight__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #212420;
}

.ts-product-spotlight__title-link {
    color: #212420;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ts-product-spotlight__title-link:hover {
    color: #3E4C3D;
}

.ts-product-spotlight__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3E4C3D;
    line-height: 1;
}

.ts-product-spotlight__stock-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3E4C3D;
    background-color: #EFE9DE;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.ts-product-spotlight__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: #646860;
}

.ts-product-spotlight__highlights {
    background-color: #FAF7F2;
    border-radius: 14px;
    border: 1px solid #E7E1D8;
    padding: 1.25rem;
}

.ts-product-spotlight__highlights-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #212420;
    line-height: 1.3;
}

.ts-product-spotlight__feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: #EFE9DE;
    color: #3E4C3D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-right: 0.75rem;
    margin-top: 0.15rem;
}

.ts-product-spotlight__feature-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212420;
    line-height: 1.3;
}

.ts-product-spotlight__feature-desc {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #646860;
}

.ts-product-spotlight__btn-add {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(62, 76, 61, 0.15);
}

.ts-product-spotlight__btn-add:hover,
.ts-product-spotlight__btn-add:focus {
    background-color: #2D372C;
    border-color: #2D372C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 76, 61, 0.22);
}

.ts-product-spotlight__btn-add:active {
    transform: scale(0.98);
}

.ts-product-spotlight__btn-explore {
    background-color: transparent;
    color: #3E4C3D;
    border: 1.5px solid #3E4C3D;
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ts-product-spotlight__btn-explore:hover,
.ts-product-spotlight__btn-explore:focus {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border-color: #3E4C3D;
}

@media (max-width: 767.98px) {
    .ts-product-spotlight__title {
        font-size: 1.5rem;
    }

    .ts-product-spotlight__price {
        font-size: 1.65rem;
    }
}

/* ===== seasonal_collection ===== */
.seasonal-collection-section {
    background-color: #FAF7F2;
    color: #212420;
}

.seasonal-collection-section .seasonal-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #C87D55;
    background-color: #EFE9DE;
    padding: 6px 16px;
    border-radius: 999px;
    display: inline-block;
}

.seasonal-collection-section .seasonal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #212420;
}

.seasonal-collection-section .seasonal-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.975rem;
    line-height: 1.65;
    color: #646860;
    max-width: 680px;
}

.seasonal-collection-section .seasonal-card {
    background: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.seasonal-collection-section .seasonal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px -4px rgba(62, 76, 61, 0.09);
}

.seasonal-collection-section .seasonal-card-thumb {
    overflow: hidden;
    background-color: #F3EFEA;
}

.seasonal-collection-section .seasonal-img {
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.seasonal-collection-section .seasonal-card:hover .seasonal-img {
    transform: scale(1.04);
}

.seasonal-collection-section .rounded-top-custom {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.seasonal-collection-section .seasonal-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(250, 247, 242, 0.92);
    color: #3E4C3D;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.seasonal-collection-section .seasonal-product-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212420;
}

.seasonal-collection-section .seasonal-product-title a {
    color: #212420;
    text-decoration: none;
    transition: color 0.2s ease;
}

.seasonal-collection-section .seasonal-product-title a:hover {
    color: #C87D55;
}

.seasonal-collection-section .seasonal-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #646860;
}

.seasonal-collection-section .text-gold {
    color: #DDA77B;
}

.seasonal-collection-section .rating-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #212420;
}

.seasonal-collection-section .seasonal-stock {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
}

.seasonal-collection-section .seasonal-stock.in-stock {
    color: #3E4C3D;
}

.seasonal-collection-section .seasonal-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.seasonal-collection-section .spec-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.725rem;
    font-weight: 600;
    background: #F3EFEA;
    color: #646860;
    padding: 3px 8px;
    border-radius: 4px;
}

.seasonal-collection-section .price-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #91968C;
    font-weight: 600;
}

.seasonal-collection-section .price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #212420;
}

.seasonal-collection-section .seasonal-add-btn {
    background-color: #3E4C3D;
    border-color: #3E4C3D;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.seasonal-collection-section .seasonal-add-btn:hover {
    background-color: #2D372C;
    border-color: #2D372C;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.seasonal-collection-section .seasonal-footer-note {
    background-color: #F5EFE6;
    border: 1px dashed #D0C6B8;
}

.seasonal-collection-section .text-forest {
    color: #3E4C3D;
}

.seasonal-collection-section .note-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3E4C3D;
}

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

    .seasonal-collection-section .seasonal-product-title {
        font-size: 1.2rem;
        hyphens: auto;
    }

    .seasonal-collection-section .seasonal-img {
        height: 200px;
    }
}

/* ===== how_to_choose ===== */
.how-to-choose-section {
    background-color: #FAF7F2;
    color: #212420;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.how-to-choose-section .guide-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: #C87D55;
}

.how-to-choose-section .guide-main-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    line-height: 1.2;
    font-weight: 600;
    color: #3E4C3D;
}

.how-to-choose-section .guide-lead-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #646860;
}

.how-to-choose-section .guide-nav-pills {
    border-bottom: 1px solid #E7E1D8;
    padding-bottom: 1rem;
}

.how-to-choose-section .guide-tab-btn {
    background-color: #FFFFFF;
    color: #3E4C3D;
    border: 1px solid #E7E1D8;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.how-to-choose-section .guide-tab-btn:hover {
    border-color: #3E4C3D;
    background-color: #F3EFEA;
}

.how-to-choose-section .guide-tab-btn.active {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border-color: #3E4C3D;
    box-shadow: 0 4px 12px rgba(62, 76, 61, 0.15);
}

.how-to-choose-section .guide-feature-card,
.how-to-choose-section .guide-price-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.how-to-choose-section .guide-feature-card:hover,
.how-to-choose-section .guide-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -4px rgba(62, 76, 61, 0.08) !important;
}

.how-to-choose-section .border-olive {
    border-left: 4px solid #3E4C3D !important;
}

.how-to-choose-section .border-terracotta {
    border-left: 4px solid #C87D55 !important;
}

.how-to-choose-section .guide-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.how-to-choose-section .bg-olive-light {
    background-color: #EBF0EB;
}

.how-to-choose-section .text-olive {
    color: #3E4C3D;
}

.how-to-choose-section .bg-olive {
    background-color: #3E4C3D;
}

.how-to-choose-section .bg-terracotta-light {
    background-color: #FAEEE7;
}

.how-to-choose-section .text-terracotta {
    color: #C87D55;
}

.how-to-choose-section .bg-terracotta {
    background-color: #C87D55;
}

.how-to-choose-section .guide-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212420;
}

.how-to-choose-section .guide-card-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #646860;
}

.how-to-choose-section .guide-checklist li {
    font-size: 0.9rem;
    color: #212420;
}

.how-to-choose-section .guide-skin-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #646860;
}

.how-to-choose-section .guide-sublink {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3E4C3D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.how-to-choose-section .guide-sublink:hover {
    color: #C87D55;
}

.how-to-choose-section .guide-price-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #F3EFEA;
    color: #C87D55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.how-to-choose-section .guide-editorial-cta {
    background-color: #F3EFEA;
    border: 1px solid #E7E1D8;
}

.how-to-choose-section .guide-editorial-badge {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #C87D55;
}

.how-to-choose-section .guide-editorial-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.3;
    font-weight: 600;
    color: #3E4C3D;
}

.how-to-choose-section .guide-editorial-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #646860;
}

.how-to-choose-section .guide-btn-primary {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.925rem;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-to-choose-section .guide-btn-primary:hover {
    background-color: #2D372C;
    color: #FFFFFF;
    border-color: #2D372C;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 55, 44, 0.2);
}

@media (max-width: 767.98px) {
    .how-to-choose-section .guide-main-heading {
        font-size: 1.35rem;
        hyphens: auto;
    }

    .how-to-choose-section .guide-card-title {
        font-size: 1.15rem;
        hyphens: auto;
    }

    .how-to-choose-section .guide-editorial-title {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .how-to-choose-section .guide-tab-btn {
        width: 100%;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ===== footer ===== */
.site-footer-block {
    background-color: #F3EFEA;
    color: #212420;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #E7E1D8;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer-block .footer-brand-title {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #3E4C3D;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.site-footer-block .footer-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #646860;
    margin-bottom: 1.25rem;
}

.site-footer-block .footer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #EFE9DE;
    color: #3E4C3D;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #E2D9CB;
}

.site-footer-block .footer-badge-pill i {
    color: #8A9A86;
}

.site-footer-block .footer-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212420;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer-block .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #C87D55;
    border-radius: 2px;
}

.site-footer-block .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer-block .footer-nav-link {
    font-size: 0.925rem;
    color: #646860;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer-block .footer-nav-link:hover,
.site-footer-block .footer-nav-link:focus {
    color: #3E4C3D;
    transform: translateX(4px);
}

.site-footer-block .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer-block .contact-icon {
    color: #C87D55;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.site-footer-block .contact-text {
    font-size: 0.925rem;
    line-height: 1.5;
    color: #646860;
    word-break: break-word;
}

.site-footer-block .contact-link {
    font-size: 0.925rem;
    color: #646860;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-all;
}

.site-footer-block .contact-link:hover,
.site-footer-block .contact-link:focus {
    color: #3E4C3D;
}

.site-footer-block .btn-footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(62, 76, 61, 0.1);
}

.site-footer-block .btn-footer-wa:hover,
.site-footer-block .btn-footer-wa:focus {
    background-color: #2D372C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 76, 61, 0.18);
}

.site-footer-block .btn-footer-wa i {
    font-size: 1.1rem;
}

.site-footer-block .footer-divider {
    width: 100%;
    height: 1px;
    background-color: #E7E1D8;
    margin-top: 1rem;
}

.site-footer-block .copyright-text {
    font-size: 0.875rem;
    color: #646860;
    line-height: 1.5;
}

.site-footer-block .footer-bottom-meta {
    flex-wrap: wrap;
}

.site-footer-block .meta-tag {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #3E4C3D;
    display: inline-flex;
    align-items: center;
}

.site-footer-block .meta-tag i {
    color: #8A9A86;
}

.site-footer-block .meta-tag-dot {
    color: #A4ACA1;
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .site-footer-block {
        padding-top: 3.5rem;
        padding-bottom: 1.25rem;
    }

    .site-footer-block .footer-brand-title {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
    }

    .site-footer-block .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }

    .site-footer-block .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .site-footer-block .footer-bottom-meta {
        justify-content: center;
    }
}

/* ===== PAGE: catalog ===== */
.catalog-page-wrapper {
  background-color: #FAF7F2;
  color: #212420;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.catalog-page-wrapper .catalog-intro-header {
  max-width: 780px;
}

.catalog-page-wrapper .catalog-badge-pill {
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #E7E1D8;
}

.catalog-page-wrapper .catalog-main-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #212420;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.catalog-page-wrapper .catalog-main-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #646860;
  max-width: 620px;
}

.catalog-page-wrapper .catalog-controls-container {
  border: 1px solid #EAE3D9;
}

.catalog-page-wrapper .catalog-search-group .form-control {
  background-color: #FAF7F2;
  border: 1px solid #E7E1D8;
  color: #212420;
  border-radius: 999px;
  font-size: 0.925rem;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.catalog-page-wrapper .catalog-search-group .form-control:focus {
  border-color: #3E4C3D;
  box-shadow: 0 0 0 0.2rem rgba(62, 76, 61, 0.15);
  background-color: #FFFFFF;
}

.catalog-page-wrapper .catalog-search-group .form-control::placeholder {
  color: #91968C;
  opacity: 1;
}

.catalog-page-wrapper .catalog-controls-container .form-select {
  background-color: #FAF7F2;
  border: 1px solid #E7E1D8;
  color: #212420;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.catalog-page-wrapper .catalog-controls-container .form-select:focus {
  border-color: #3E4C3D;
  box-shadow: 0 0 0 0.2rem rgba(62, 76, 61, 0.15);
}

.catalog-page-wrapper .catalog-filter-btn {
  background-color: #F3EFEA;
  color: #3E4C3D;
  border: 1px solid #E7E1D8;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-page-wrapper .catalog-filter-btn:hover {
  background-color: #EAE3D9;
  color: #212420;
  border-color: #3E4C3D;
}

.catalog-page-wrapper .catalog-filter-btn.active {
  background-color: #3E4C3D;
  color: #FFFFFF;
  border-color: #3E4C3D;
  box-shadow: 0 4px 12px rgba(62, 76, 61, 0.2);
}

.catalog-page-wrapper .catalog-card {
  background-color: #FFFFFF;
  border: 1px solid #EAE3D9;
  border-radius: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.catalog-page-wrapper .catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px -4px rgba(62, 76, 61, 0.12);
  border-color: #DDA77B;
}

.catalog-page-wrapper .catalog-card-image-wrap {
  background-color: #F9F6F0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
}

.catalog-page-wrapper .catalog-product-img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-page-wrapper .catalog-card:hover .catalog-product-img {
  transform: scale(1.04);
}

.catalog-page-wrapper .catalog-pill-tag {
  background-color: rgba(250, 247, 242, 0.92);
  color: #3E4C3D;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #E7E1D8;
  backdrop-filter: blur(4px);
}

.catalog-page-wrapper .catalog-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}

.catalog-page-wrapper .catalog-title-link {
  color: #212420;
  transition: color 0.2s ease;
}

.catalog-page-wrapper .catalog-title-link:hover {
  color: #C87D55;
}

.catalog-page-wrapper .catalog-card-snippet {
  color: #646860;
  line-height: 1.5;
}

.catalog-page-wrapper .catalog-price {
  color: #3E4C3D;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.catalog-page-wrapper .catalog-add-btn {
  background-color: #3E4C3D;
  color: #FFFFFF;
  border: 1px solid #3E4C3D;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.catalog-page-wrapper .catalog-add-btn:hover {
  background-color: #2D372C;
  border-color: #2D372C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(45, 55, 44, 0.25);
}

.catalog-page-wrapper .catalog-add-btn:active {
  transform: scale(0.96);
}

.catalog-page-wrapper .pagination .page-link {
  background-color: #FFFFFF;
  border: 1px solid #E7E1D8;
  color: #3E4C3D;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.catalog-page-wrapper .pagination .page-item.active .page-link {
  background-color: #3E4C3D;
  border-color: #3E4C3D;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(62, 76, 61, 0.2);
}

.catalog-page-wrapper .pagination .page-link:hover:not(.active) {
  background-color: #F3EFEA;
  border-color: #3E4C3D;
  color: #212420;
}

.catalog-page-wrapper .letter-spacing-1 {
  letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
  .catalog-page-wrapper .catalog-main-title {
    font-size: 1.85rem;
  }
  .catalog-page-wrapper .catalog-card-title {
    font-size: 1.15rem;
  }
  .catalog-page-wrapper .catalog-filter-btn {
    padding: 6px 14px;
    font-size: 0.775rem;
  }
  .catalog-page-wrapper .catalog-controls-container {
    padding: 1rem !important;
  }
}

/* ===== PAGE: blog ===== */
.trip-blog-section {
  background-color: #FAF7F2;
  color: #212420;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
}
.trip-blog-section .trip-blog-badge {
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.trip-blog-section .trip-blog-main-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #212420;
}
.trip-blog-section .trip-blog-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #646860;
  max-width: 680px;
}
.trip-blog-section .trip-blog-search-box {
  position: relative;
}
.trip-blog-section .trip-blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8A9A86;
  font-size: 0.95rem;
  pointer-events: none;
}
.trip-blog-section .trip-blog-search-box input.form-control {
  background-color: #FFFFFF;
  border: 1px solid #E7E1D8;
  border-radius: 999px;
  padding: 12px 42px 12px 44px;
  font-size: 0.925rem;
  color: #212420;
  box-shadow: 0 2px 8px rgba(62, 76, 61, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.trip-blog-section .trip-blog-search-box input.form-control:focus {
  border-color: #3E4C3D;
  box-shadow: 0 0 0 3px rgba(62, 76, 61, 0.15);
  outline: none;
}
.trip-blog-section .trip-blog-search-box input.form-control::placeholder {
  color: #91968C;
  font-size: 0.9rem;
}
.trip-blog-section .trip-blog-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #91968C;
  font-size: 0.9rem;
  padding: 6px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trip-blog-section .trip-blog-search-clear:hover {
  color: #212420;
}
.trip-blog-section .trip-blog-filter-btn {
  background-color: #FFFFFF;
  color: #646860;
  border: 1px solid #E7E1D8;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
}
.trip-blog-section .trip-blog-filter-btn:hover {
  border-color: #3E4C3D;
  color: #3E4C3D;
}
.trip-blog-section .trip-blog-filter-btn.active {
  background-color: #3E4C3D;
  border-color: #3E4C3D;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(62, 76, 61, 0.2);
}
.trip-blog-section .trip-blog-card {
  background-color: #FFFFFF;
  border: 1px solid #EAE3D9;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.trip-blog-section .trip-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px -4px rgba(62, 76, 61, 0.1);
  border-color: #DDA77B;
}
.trip-blog-section .trip-blog-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #F3EFEA;
}
.trip-blog-section .trip-blog-img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.trip-blog-section .trip-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.trip-blog-section .trip-blog-card:hover .trip-blog-img {
  transform: scale(1.04);
}
.trip-blog-section .trip-blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(4px);
  color: #3E4C3D;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(231, 225, 216, 0.8);
}
.trip-blog-section .trip-blog-card-body {
  padding: 24px;
}
.trip-blog-section .trip-blog-meta {
  font-size: 0.8rem;
  color: #91968C;
}
.trip-blog-section .trip-blog-meta-item i {
  color: #8A9A86;
}
.trip-blog-section .trip-blog-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  font-weight: 600;
  color: #212420;
}
.trip-blog-section .trip-blog-title-link {
  color: #212420;
  text-decoration: none;
  transition: color 0.25s ease;
}
.trip-blog-section .trip-blog-title-link:hover {
  color: #C87D55;
}
.trip-blog-section .trip-blog-card-excerpt {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #646860;
  margin-bottom: 0;
}
.trip-blog-section .trip-blog-card-footer {
  border-top: 1px solid #F3EFEA;
}
.trip-blog-section .trip-blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3E4C3D;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid #3E4C3D;
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}
.trip-blog-section .trip-blog-btn:hover {
  background-color: #2D372C;
  border-color: #2D372C;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.trip-blog-section .trip-blog-empty {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 1px dashed #D0C6B8;
  padding: 40px 20px;
}
.trip-blog-section .trip-blog-empty-icon {
  color: #8A9A86;
}
.trip-blog-section .trip-blog-empty-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: #212420;
}
@media (max-width: 767.98px) {
  .trip-blog-section .trip-blog-card-body {
    padding: 18px;
  }
  .trip-blog-section .trip-blog-main-title {
    font-size: 1.8rem;
  }
  .trip-blog-section .trip-blog-card-title {
    font-size: 1.3rem;
  }
}

/* ===== PAGE: about ===== */
.about-page-wrapper { background-color: #FAF7F2; color: #212420; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; overflow-x: hidden; }
.about-page-wrapper .about-badge-tag { display: inline-flex; align-items: center; background-color: #EFE9DE; color: #3E4C3D; padding: 6px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid #E7E1D8; }
.about-page-wrapper .about-main-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; line-height: 1.15; color: #3E4C3D; letter-spacing: -0.015em; }
.about-page-wrapper .about-lead-text { font-size: 1.15rem; line-height: 1.7; color: #3E4C3D; font-weight: 500; }
.about-page-wrapper .about-body-text { font-size: 0.975rem; line-height: 1.65; color: #646860; }
.about-page-wrapper .highlight-pill { background-color: #FFFFFF; color: #3E4C3D; padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; border: 1px solid #E7E1D8; box-shadow: 0 2px 8px rgba(62, 76, 61, 0.04); }
.about-page-wrapper .about-image-mosaic { position: relative; padding-bottom: 24px; }
.about-page-wrapper .mosaic-card-main { border-radius: 20px; overflow: hidden; border: 1px solid #E7E1D8; background-color: #FFFFFF; }
.about-page-wrapper .mosaic-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.about-page-wrapper .mosaic-card-sub { position: absolute; bottom: 0; right: 20px; background-color: #3E4C3D; color: #FFFFFF; border-radius: 16px; padding: 18px 24px; max-width: 220px; }
.about-page-wrapper .stat-number { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.2rem; font-weight: 700; line-height: 1; color: #FFFFFF; }
.about-page-wrapper .stat-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: #D6DCD4; margin-top: 4px; }
.about-page-wrapper .about-values-section { background-color: #F3EFEA; border-top: 1px solid #E7E1D8; border-bottom: 1px solid #E7E1D8; }
.about-page-wrapper .section-subtitle { color: #C87D55; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; display: inline-block; }
.about-page-wrapper .section-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: #3E4C3D; line-height: 1.2; }
.about-page-wrapper .section-description { font-size: 1rem; line-height: 1.6; max-width: 680px; margin: 0 auto; color: #646860; }
.about-page-wrapper .value-feature-card { background-color: #FFFFFF; border: 1px solid #E7E1D8; border-radius: 16px; padding: 28px 20px; transition: transform 300ms ease, box-shadow 300ms ease; text-align: center; }
.about-page-wrapper .value-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px -4px rgba(62, 76, 61, 0.08); }
.about-page-wrapper .value-icon-box { width: 54px; height: 54px; border-radius: 50%; background-color: #EFE9DE; color: #3E4C3D; display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.about-page-wrapper .value-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; font-weight: 600; color: #3E4C3D; }
.about-page-wrapper .value-desc { font-size: 0.875rem; line-height: 1.55; color: #646860; }
.about-page-wrapper .craft-img-wrapper { border-radius: 16px; overflow: hidden; border: 1px solid #E7E1D8; background-color: #FFFFFF; }
.about-page-wrapper .craft-img { width: 100%; height: 260px; object-fit: cover; display: block; }
.about-page-wrapper .step-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background-color: #3E4C3D; color: #FFFFFF; font-weight: 700; font-size: 0.85rem; margin-right: 14px; flex-shrink: 0; }
.about-page-wrapper .step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: #3E4C3D; }
.about-page-wrapper .step-text { font-size: 0.875rem; color: #646860; line-height: 1.5; }
.about-page-wrapper .cta-inner-card { background-color: #F5EFE6; border: 1px solid #E7E1D8; border-radius: 24px; box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05); }
.about-page-wrapper .cta-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 600; color: #3E4C3D; }
.about-page-wrapper .cta-desc { font-size: 1rem; color: #646860; max-width: 600px; margin: 0 auto; }
.about-page-wrapper .btn-primary-artisan { background-color: #3E4C3D; color: #FFFFFF; border: 1px solid #3E4C3D; border-radius: 999px; padding: 12px 30px; font-weight: 600; font-size: 0.925rem; text-decoration: none; display: inline-block; transition: background-color 300ms ease, transform 300ms ease; }
.about-page-wrapper .btn-primary-artisan:hover { background-color: #2D372C; color: #FFFFFF; transform: translateY(-2px); }
.about-page-wrapper .btn-secondary-artisan { background-color: transparent; color: #3E4C3D; border: 1.5px solid #3E4C3D; border-radius: 999px; padding: 11px 28px; font-weight: 600; font-size: 0.925rem; text-decoration: none; display: inline-block; transition: background-color 300ms ease, color 300ms ease; }
.about-page-wrapper .btn-secondary-artisan:hover { background-color: #3E4C3D; color: #FFFFFF; }
@media (max-width: 767.98px) { .about-page-wrapper .about-main-title { font-size: 18px; hyphens: auto; } .about-page-wrapper .section-heading, .about-page-wrapper .cta-title { font-size: 16px; hyphens: auto; } .about-page-wrapper .value-title, .about-page-wrapper .step-title { font-size: 14px; hyphens: auto; } .about-page-wrapper .mosaic-img { height: 260px; } .about-page-wrapper .craft-img { height: 180px; } .about-page-wrapper .mosaic-card-sub { position: static; margin-top: 14px; max-width: 100%; width: 100%; } }

/* ===== PAGE: contact ===== */
.contact-page-block {
  background-color: #FAF7F2;
  color: #212420;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-page-block__badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.contact-page-block__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #3E4C3D;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
}

.contact-page-block__lead {
  font-size: 1.05rem;
  color: #646860;
  max-width: 680px;
  line-height: 1.65;
}

.contact-page-block__card {
  background: #FFFFFF;
  border: 1px solid #E7E1D8;
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-page-block__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -4px rgba(62, 76, 61, 0.08);
  border-color: #3E4C3D;
}

.contact-page-block__icon-wrapper {
  width: 52px;
  height: 52px;
  background-color: #F3EFEA;
  color: #3E4C3D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-page-block__card:hover .contact-page-block__icon-wrapper {
  background-color: #3E4C3D;
  color: #FFFFFF;
}

.contact-page-block__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #3E4C3D;
  margin-bottom: 0.5rem;
}

.contact-page-block__card-text {
  font-size: 0.9rem;
  color: #646860;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.contact-page-block__card-value {
  font-size: 0.95rem;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.contact-page-block__link {
  color: #3E4C3D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-page-block__link:hover {
  color: #C87D55;
  text-decoration: underline;
}

.contact-page-block__btn-outline {
  background-color: transparent;
  color: #3E4C3D;
  border: 1.5px solid #3E4C3D;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-page-block__btn-outline:hover {
  background-color: #3E4C3D;
  color: #FFFFFF;
}

.contact-page-block__btn-solid {
  background-color: #25D366;
  color: #FFFFFF;
  border: 1.5px solid #25D366;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-page-block__btn-solid:hover {
  background-color: #1EBE5D;
  border-color: #1EBE5D;
  color: #FFFFFF;
}

.contact-page-block__hours-card,
.contact-page-block__accordion-card {
  background-color: #FFFFFF;
  border: 1px solid #E7E1D8;
}

.contact-page-block__pill-tag {
  display: inline-block;
  background-color: #FAF7F2;
  color: #C87D55;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #EBE4D8;
}

.contact-page-block__subheading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #3E4C3D;
}

.contact-page-block__subtext {
  font-size: 0.95rem;
  color: #646860;
  line-height: 1.6;
}

.contact-page-block__schedule-list li {
  border-color: #EFE9DE !important;
  font-size: 0.925rem;
}

.contact-page-block__note {
  background-color: #FAF7F2;
  border: 1px dashed #D0C6B8;
}

.contact-page-block__faq-accordion .accordion-item {
  background-color: #FAF7F2;
  border: 1px solid #E7E1D8;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.contact-page-block__faq-accordion .accordion-button {
  background-color: #FAF7F2;
  color: #212420;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 20px;
  box-shadow: none;
}

.contact-page-block__faq-accordion .accordion-button:not(.collapsed) {
  background-color: #F3EFEA;
  color: #3E4C3D;
}

.contact-page-block__faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: #646860;
  line-height: 1.6;
  padding: 16px 20px;
  background-color: #FFFFFF;
}

.contact-page-block__map-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #E7E1D8;
}

.contact-page-block__map-header {
  background-color: #F3EFEA;
  border-bottom: 1px solid #E7E1D8;
}

.contact-page-block__map-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3E4C3D;
}

.contact-page-block__iframe-container {
  position: relative;
  width: 100%;
  height: 380px;
  background-color: #EBE4D8;
}

.contact-page-block__map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 767.98px) {
  .contact-page-block__title {
    font-size: 18px;
  }
  .contact-page-block__card-title,
  .contact-page-block__subheading {
    font-size: 16px;
  }
  .contact-page-block__map-title {
    font-size: 14px;
  }
  .contact-page-block__iframe-container {
    height: 280px;
  }
}

/* ===== PAGE: cart ===== */
.trip-soaps-cart-block {
  background-color: #FAF7F2;
  color: #212420;
  min-height: 70vh;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.trip-soaps-cart-block .cart-breadcrumb .breadcrumb-item a.cart-breadcrumb-link {
  color: #646860;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.trip-soaps-cart-block .cart-breadcrumb .breadcrumb-item a.cart-breadcrumb-link:hover {
  color: #3E4C3D;
}

.trip-soaps-cart-block .cart-breadcrumb .breadcrumb-item.active {
  color: #3E4C3D;
  font-size: 0.9rem;
  font-weight: 500;
}

.trip-soaps-cart-block .cart-badge-pill {
  display: inline-block;
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trip-soaps-cart-block .cart-main-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #3E4C3D;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.trip-soaps-cart-block .cart-subheading {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 650px;
}

.trip-soaps-cart-block .cart-table-card {
  background-color: #FFFFFF;
  border: 1px solid #E7E1D8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.trip-soaps-cart-block .cart-table-header {
  background-color: #F8F5EE;
}

.trip-soaps-cart-block .cart-th-label {
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #646860;
}

.trip-soaps-cart-block .cart-col-product { width: 45%; }
.trip-soaps-cart-block .cart-col-price { width: 18%; }
.trip-soaps-cart-block .cart-col-qty { width: 22%; }
.trip-soaps-cart-block .cart-col-total { width: 15%; }

.trip-soaps-cart-block .cart-thumb-box {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EAE3D9;
  background-color: #F3EFEA;
}

.trip-soaps-cart-block .cart-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-soaps-cart-block .cart-item-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212420;
  line-height: 1.3;
}

.trip-soaps-cart-block .cart-item-meta {
  font-size: 0.825rem;
  color: #646860;
}

.trip-soaps-cart-block .cart-remove-item-button {
  background: none;
  border: none;
  color: #C87D55;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.trip-soaps-cart-block .cart-remove-item-button:hover {
  color: #B36A44;
  text-decoration: underline;
}

.trip-soaps-cart-block .cart-qty-counter {
  border: 1px solid #D0C6B8;
  border-radius: 999px;
  background-color: #FAF7F2;
  padding: 2px 8px;
  width: 108px;
}

.trip-soaps-cart-block .cart-qty-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3E4C3D;
  width: 24px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.trip-soaps-cart-block .cart-qty-btn:hover {
  opacity: 0.7;
}

.trip-soaps-cart-block .cart-qty-input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  color: #212420;
  padding: 0;
}

.trip-soaps-cart-block .cart-qty-input:focus {
  outline: none;
}

.trip-soaps-cart-block .cart-benefits-card {
  background-color: #F3EFEA;
  border: 1px solid #E7E1D8;
}

.trip-soaps-cart-block .cart-benefit-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #3E4C3D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.trip-soaps-cart-block .cart-benefit-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3E4C3D;
}

.trip-soaps-cart-block .cart-benefit-desc {
  font-size: 0.825rem;
  color: #646860;
  line-height: 1.5;
}

.trip-soaps-cart-block .cart-summary-card {
  background-color: #FFFFFF;
  border: 1px solid #E7E1D8;
}

.trip-soaps-cart-block .cart-summary-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3E4C3D;
}

.trip-soaps-cart-block .cart-progress-bar-wrap {
  height: 6px;
  background-color: #EBE4D8;
  border-radius: 999px;
}

.trip-soaps-cart-block .cart-progress-bar {
  background-color: #3E4C3D;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.trip-soaps-cart-block .cart-shipping-status-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3E4C3D;
}

.trip-soaps-cart-block .cart-input-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #212420;
  margin-bottom: 0.35rem;
}

.trip-soaps-cart-block .cart-promo-input {
  background-color: #FAF7F2;
  border: 1px solid #D0C6B8;
  color: #212420;
  border-radius: 8px 0 0 8px;
  font-size: 0.9rem;
}

.trip-soaps-cart-block .cart-promo-input::placeholder {
  color: #91968C;
}

.trip-soaps-cart-block .cart-apply-promo-btn {
  background-color: #3E4C3D;
  color: #FFFFFF;
  border: 1px solid #3E4C3D;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0 16px;
}

.trip-soaps-cart-block .cart-apply-promo-btn:hover {
  background-color: #2D372C;
  color: #FFFFFF;
}

.trip-soaps-cart-block .cart-form-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3E4C3D;
}

.trip-soaps-cart-block .cart-form-control {
  background-color: #FAF7F2;
  border: 1px solid #D0C6B8;
  color: #212420;
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 10px 14px;
}

.trip-soaps-cart-block .cart-form-control:focus {
  background-color: #FFFFFF;
  border-color: #3E4C3D;
  box-shadow: 0 0 0 0.2rem rgba(62, 76, 61, 0.15);
  color: #212420;
}

.trip-soaps-cart-block .cart-form-control::placeholder {
  color: #91968C;
}

.trip-soaps-cart-block .cart-checkout-button {
  background-color: #C87D55;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.trip-soaps-cart-block .cart-checkout-button:hover {
  background-color: #B36A44;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 125, 85, 0.3);
}

.trip-soaps-cart-block .cart-security-badge {
  font-size: 0.775rem;
}

.trip-soaps-cart-block .cart-empty-state {
  background-color: #FFFFFF;
  border: 1px dashed #D0C6B8;
}

.trip-soaps-cart-block .cart-empty-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #F3EFEA;
  color: #3E4C3D;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-soaps-cart-block .cart-empty-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3E4C3D;
}

.trip-soaps-cart-block .cart-empty-text {
  max-width: 500px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.trip-soaps-cart-block .cart-return-shop-btn {
  background-color: #3E4C3D;
  color: #FFFFFF;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.trip-soaps-cart-block .cart-return-shop-btn:hover {
  background-color: #2D372C;
  color: #FFFFFF;
}

/* ===== PAGE: privacy ===== */
.privacy-policy-page { background-color: #FAF7F2; color: #212420; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 0.975rem; line-height: 1.65; }
.privacy-policy-page .privacy-badge { display: inline-block; background-color: #EFE9DE; color: #3E4C3D; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 999px; border: 1px solid #E7E1D8; }
.privacy-policy-page .privacy-main-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: #3E4C3D; line-height: 1.15; letter-spacing: -0.015em; }
.privacy-policy-page .privacy-lead { font-size: 1.05rem; line-height: 1.6; color: #646860; max-width: 680px; }
.privacy-policy-page .privacy-meta { font-size: 0.85rem; color: #646860; font-weight: 500; }
.privacy-policy-page .meta-item { display: inline-flex; align-items: center; }
.privacy-policy-page .meta-item i { color: #C87D55; }
.privacy-policy-page .meta-divider { color: #D0C6B8; }
.privacy-policy-page .privacy-search-wrap { max-width: 680px; }
.privacy-policy-page .privacy-search-wrap .input-group { background-color: #FFFFFF; border: 1px solid #E7E1D8; border-radius: 999px; overflow: hidden; box-shadow: 0 4px 16px -2px rgba(62, 76, 61, 0.04); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.privacy-policy-page .privacy-search-wrap .input-group:focus-within { border-color: #3E4C3D; box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.1); }
.privacy-policy-page .privacy-search-wrap .search-icon { background-color: transparent; border: none; color: #8A9A86; padding-left: 20px; font-size: 0.95rem; }
.privacy-policy-page .privacy-search-wrap .form-control { background-color: transparent; border: none; color: #212420; padding: 12px 20px 12px 10px; font-size: 0.95rem; outline: none; }
.privacy-policy-page .privacy-search-wrap .form-control:focus { box-shadow: none; background-color: transparent; color: #212420; }
.privacy-policy-page .privacy-search-wrap .form-control::placeholder { color: #91968C; opacity: 1; }
.privacy-policy-page .privacy-sidebar { top: 90px; }
.privacy-policy-page .privacy-sidebar-card { background-color: #FFFFFF; border: 1px solid #E7E1D8; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05); }
.privacy-policy-page .sidebar-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; font-weight: 600; color: #3E4C3D; border-bottom: 1px solid #E7E1D8; padding-bottom: 12px; }
.privacy-policy-page .privacy-nav { display: flex; flex-direction: column; gap: 6px; }
.privacy-policy-page .privacy-nav-link { display: flex; align-items: center; padding: 8px 12px; border-radius: 8px; color: #646860; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.25s ease; }
.privacy-policy-page .privacy-nav-link .step-num { font-size: 0.75rem; font-weight: 700; color: #91968C; margin-right: 10px; min-width: 20px; }
.privacy-policy-page .privacy-nav-link:hover { color: #3E4C3D; background-color: #F3EFEA; transform: translateX(3px); }
.privacy-policy-page .privacy-nav-link.active { color: #3E4C3D; background-color: #EFE9DE; font-weight: 600; }
.privacy-policy-page .privacy-nav-link.active .step-num { color: #C87D55; }
.privacy-policy-page .sidebar-help-box { background-color: #F5EFE6; border: 1px solid #EAE3D9; border-radius: 12px; padding: 18px; }
.privacy-policy-page .help-box-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; font-weight: 600; color: #3E4C3D; margin-bottom: 8px; }
.privacy-policy-page .help-box-text { font-size: 0.85rem; color: #646860; margin-bottom: 14px; line-height: 1.5; }
.privacy-policy-page .privacy-card { background-color: #FFFFFF; border: 1px solid #EAE3D9; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.privacy-policy-page .privacy-card:hover { box-shadow: 0 8px 24px -2px rgba(62, 76, 61, 0.08); }
.privacy-policy-page .card-header-custom { margin-bottom: 18px; border-bottom: 1px solid #F0E8DC; padding-bottom: 14px; }
.privacy-policy-page .section-number { font-size: 0.75rem; font-weight: 700; color: #C87D55; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 4px; }
.privacy-policy-page .section-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 600; color: #3E4C3D; margin: 0; line-height: 1.25; }
.privacy-policy-page .card-body-custom p { color: #4A4E47; margin-bottom: 1rem; line-height: 1.65; }
.privacy-policy-page .privacy-list { list-style: none; padding-left: 0; margin-bottom: 1.2rem; }
.privacy-policy-page .privacy-list li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #4A4E47; line-height: 1.6; }
.privacy-policy-page .privacy-list li::before { content: ""; position: absolute; left: 6px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background-color: #C87D55; }
.privacy-policy-page .feature-mini-card { background-color: #F8F5F0; border: 1px solid #EBE4D8; border-radius: 12px; padding: 18px; height: 100%; transition: transform 0.2s ease; }
.privacy-policy-page .feature-mini-card:hover { transform: translateY(-2px); }
.privacy-policy-page .feature-icon { font-size: 1.3rem; color: #3E4C3D; margin-bottom: 10px; display: inline-block; }
.privacy-policy-page .mini-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; font-weight: 600; color: #3E4C3D; margin-bottom: 6px; }
.privacy-policy-page .mini-card-text { font-size: 0.85rem; color: #646860; margin: 0; line-height: 1.5; }
.privacy-policy-page .rights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.privacy-policy-page .right-pill { background-color: #F8F5F0; border: 1px solid #EAE3D9; border-radius: 8px; padding: 10px 14px; font-size: 0.875rem; font-weight: 500; color: #3E4C3D; display: flex; align-items: center; }
.privacy-policy-page .contact-details-box { background-color: #FAF7F2; border: 1px dashed #D0C6B8; border-radius: 12px; padding: 20px; }
.privacy-policy-page .contact-details-box i { width: 22px; text-align: center; }
.privacy-policy-page .btn-primary-custom { background-color: #3E4C3D; color: #FFFFFF; border: 1px solid #3E4C3D; border-radius: 999px; padding: 10px 24px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; }
.privacy-policy-page .btn-primary-custom:hover { background-color: #2D372C; color: #FFFFFF; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(62, 76, 61, 0.2); }
.privacy-policy-page .btn-secondary-custom { background-color: #C87D55; color: #FFFFFF; border: 1px solid #C87D55; border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: 0.875rem; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.privacy-policy-page .btn-secondary-custom:hover { background-color: #B36A44; color: #FFFFFF; transform: translateY(-2px); }
.privacy-policy-page .btn-outline-custom { background-color: transparent; color: #3E4C3D; border: 1.5px solid #3E4C3D; border-radius: 999px; padding: 8px 18px; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.3s ease; }
.privacy-policy-page .btn-outline-custom:hover { background-color: #3E4C3D; color: #FFFFFF; }
@media (max-width: 767.98px) { .privacy-policy-page .privacy-main-title { font-size: 1.8rem; hyphens: auto; } .privacy-policy-page .section-heading { font-size: 1.35rem; hyphens: auto; } .privacy-policy-page .mini-card-title { font-size: 1.1rem; } .privacy-policy-page .privacy-card { padding: 20px 16px; } .privacy-policy-page .rights-grid { grid-template-columns: 1fr; } }

/* ===== PAGE: terms ===== */
.terms-content-section {
  background-color: #FAF7F2;
  color: #212420;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
}

.terms-content-section .terms-header .terms-badge {
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.terms-content-section .terms-main-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #212420;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
}

.terms-content-section .terms-intro-desc {
  font-size: 1.05rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #646860;
}

.terms-content-section .terms-meta-info {
  font-size: 0.875rem;
  color: #646860;
}

.terms-content-section .terms-meta-info i {
  color: #C87D55;
}

.terms-content-section .terms-quick-nav {
  background-color: #FFFFFF;
  border-color: #E7E1D8 !important;
}

.terms-content-section .terms-nav-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #212420;
  font-weight: 600;
}

.terms-content-section .terms-nav-link {
  color: #3E4C3D;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #FAF7F2;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.terms-content-section .terms-nav-link:hover,
.terms-content-section .terms-nav-link:focus {
  background-color: #EFE9DE;
  color: #2D372C;
  border-color: #E7E1D8;
  padding-left: 0.75rem !important;
}

.terms-content-section .terms-card {
  background-color: #FFFFFF;
  border: 1px solid #EAE3D9 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.terms-content-section .terms-card:hover {
  box-shadow: 0 8px 24px -4px rgba(62, 76, 61, 0.08) !important;
}

.terms-content-section .terms-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}

.terms-content-section .terms-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #212420;
  font-weight: 600;
  font-size: 1.35rem;
}

.terms-content-section .terms-paragraph {
  color: #4A4E46;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-content-section .terms-list {
  color: #4A4E46;
  font-size: 0.95rem;
  padding-left: 1.25rem;
}

.terms-content-section .terms-inline-link {
  color: #C87D55;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.terms-content-section .terms-contact-box {
  background-color: #F8F5F0 !important;
  border-color: #E7E1D8 !important;
}

.terms-content-section .terms-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #212420;
  font-size: 1.4rem;
  font-weight: 600;
}

.terms-content-section .terms-primary-btn {
  background-color: #3E4C3D;
  color: #FFFFFF;
  border: 1px solid #3E4C3D;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.terms-content-section .terms-primary-btn:hover,
.terms-content-section .terms-primary-btn:focus {
  background-color: #2D372C;
  color: #FFFFFF;
  border-color: #2D372C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(62, 76, 61, 0.15);
}

@media (max-width: 767.98px) {
  .terms-content-section .terms-main-title {
    font-size: 1.75rem;
  }
  .terms-content-section .terms-section-title {
    font-size: 1.2rem;
  }
  .terms-content-section .terms-card {
    padding: 1.25rem !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section {
  background-color: #FAF7F2;
  color: #212420;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
}

.disclaimer-section .disclaimer-header-card {
  background: #FFFFFF;
  border: 1px solid #E7E1D8;
  border-radius: 20px;
  box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.disclaimer-section .disclaimer-badge {
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.disclaimer-section .disclaimer-main-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #3E4C3D;
  letter-spacing: -0.015em;
}

.disclaimer-section .disclaimer-meta-date {
  font-size: 0.875rem;
  color: #646860;
  font-weight: 500;
}

.disclaimer-section .disclaimer-intro-callout {
  background-color: #F5EFE6;
  border: 1px solid #EAE3D9;
  border-left: 4px solid #C87D55;
  border-radius: 12px;
}

.disclaimer-section .disclaimer-callout-icon {
  font-size: 1.5rem;
  color: #C87D55;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-section .disclaimer-callout-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3E4C3D;
  line-height: 1.3;
}

.disclaimer-section .disclaimer-callout-text {
  font-size: 0.95rem;
  color: #646860;
  line-height: 1.6;
}

.disclaimer-section .disclaimer-card {
  background: #FFFFFF;
  border: 1px solid #E7E1D8;
  border-radius: 20px;
  box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.disclaimer-section .disclaimer-num-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.disclaimer-section .disclaimer-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  color: #3E4C3D;
  line-height: 1.3;
}

.disclaimer-section .disclaimer-sub-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3E4C3D;
  line-height: 1.4;
}

.disclaimer-section .disclaimer-tile-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3E4C3D;
  line-height: 1.4;
}

.disclaimer-section .disclaimer-body-text {
  font-size: 0.975rem;
  color: #646860;
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.disclaimer-section .disclaimer-sub-text,
.disclaimer-section .disclaimer-tile-text {
  font-size: 0.9rem;
  color: #646860;
  line-height: 1.55;
}

.disclaimer-section .disclaimer-highlight-box {
  background-color: #FAF7F2;
  border: 1px dashed #D0C6B8;
  border-radius: 12px;
}

.disclaimer-section .disclaimer-feature-tile {
  background-color: #FAF7F2;
  border: 1px solid #E7E1D8;
  border-radius: 12px;
}

.disclaimer-section .disclaimer-list {
  color: #646860;
}

.disclaimer-section .disclaimer-list-item {
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer-section .disclaimer-primary-btn {
  background-color: #3E4C3D;
  color: #FFFFFF;
  border: 1px solid #3E4C3D;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.925rem;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.disclaimer-section .disclaimer-primary-btn:hover {
  background-color: #2D372C;
  border-color: #2D372C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 55, 44, 0.15);
}

.disclaimer-section .disclaimer-secondary-btn {
  background-color: transparent;
  color: #3E4C3D;
  border: 1.5px solid #3E4C3D;
  border-radius: 999px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.925rem;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.disclaimer-section .disclaimer-secondary-btn:hover {
  background-color: #3E4C3D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(62, 76, 61, 0.12);
}

@media (max-width: 767.98px) {
  .disclaimer-section h1 {
    font-size: 18px !important;
    hyphens: auto;
  }
  .disclaimer-section h2 {
    font-size: 16px !important;
    hyphens: auto;
  }
  .disclaimer-section h3 {
    font-size: 14px !important;
    hyphens: auto;
  }
  .disclaimer-section .disclaimer-card,
  .disclaimer-section .disclaimer-header-card {
    padding: 20px 16px !important;
  }
}

/* ===== PAGE: refound ===== */
.trip-refund-section {
  background-color: #FAF7F2;
  color: #212420;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.trip-refund-section h1,
.trip-refund-section h2,
.trip-refund-section h3,
.trip-refund-section .trip-refund-section__main-title,
.trip-refund-section .trip-refund-section__section-heading,
.trip-refund-section .trip-refund-section__content-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #3E4C3D;
}

.trip-refund-section__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background-color: #EFE9DE;
  color: #3E4C3D;
  font-size: 0.785rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-refund-section__main-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 600;
}

.trip-refund-section__lead-desc {
  font-size: 1.05rem;
  color: #646860;
  max-width: 680px;
  line-height: 1.6;
}

.trip-refund-section__card {
  background: #FFFFFF;
  border: 1px solid #E7E1D8;
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-refund-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(62, 76, 61, 0.08);
}

.trip-refund-section__icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  background: #F3EFEA;
  color: #C87D55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.trip-refund-section__card-title {
  color: #3E4C3D;
  font-weight: 600;
}

.trip-refund-section__card-text {
  color: #646860;
  line-height: 1.5;
}

.trip-refund-section__sidebar-sticky {
  background: #FFFFFF;
  border: 1px solid #E7E1D8;
  position: sticky;
  top: 2rem;
}

.trip-refund-section__nav-btn {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #646860;
  margin-bottom: 6px;
  transition: all 0.25s ease;
}

.trip-refund-section__nav-btn:hover {
  background: #FAF7F2;
  color: #3E4C3D;
}

.trip-refund-section__nav-btn.active {
  background: #3E4C3D;
  color: #FFFFFF;
  font-weight: 600;
}

.trip-refund-section__help-box {
  background: #F5EFE6;
  border: 1px dashed #D0C6B8;
}

.trip-refund-section__help-title {
  color: #3E4C3D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
}

.trip-refund-section__content-panel {
  background: #FFFFFF;
  border: 1px solid #E7E1D8;
  box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.trip-refund-section__step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C87D55;
  background: #FAF7F2;
  border: 1px solid #E7E1D8;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.trip-refund-section__body-text {
  color: #4A4E46;
  line-height: 1.7;
  font-size: 0.95rem;
}

.trip-refund-section__check-list,
.trip-refund-section__cross-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.trip-refund-section__check-list li,
.trip-refund-section__cross-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.925rem;
  line-height: 1.6;
  color: #4A4E46;
}

.trip-refund-section__check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #8A9A86;
  font-size: 0.85rem;
}

.trip-refund-section__cross-list li::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #C87D55;
  font-size: 0.85rem;
}

.trip-refund-section__num-list {
  padding-left: 20px;
  color: #4A4E46;
  font-size: 0.925rem;
  line-height: 1.6;
}

.trip-refund-section__note-box {
  background: #FAF7F2;
  border-left: 3px solid #C87D55;
  color: #646860;
}

.trip-refund-section__process-step {
  background: #FAF7F2;
  border: 1px solid #E7E1D8;
}

.trip-refund-section__btn-primary {
  background-color: #3E4C3D;
  color: #FFFFFF;
  border: 1px solid #3E4C3D;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.trip-refund-section__btn-primary:hover {
  background-color: #2D372C;
  border-color: #2D372C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.trip-refund-section__btn-secondary {
  background-color: transparent;
  color: #3E4C3D;
  border: 1.5px solid #3E4C3D;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.trip-refund-section__btn-secondary:hover {
  background-color: #3E4C3D;
  color: #FFFFFF;
}

.trip-refund-section__inline-link {
  color: #C87D55;
  text-decoration: underline;
  font-weight: 600;
}

.trip-refund-section__inline-link:hover {
  color: #B36A44;
}

.trip-refund-section__faq-wrapper {
  background: #FFFFFF;
  border: 1px solid #E7E1D8;
}

.trip-refund-section__accordion .accordion-item {
  border: 1px solid #E7E1D8 !important;
}

.trip-refund-section__accordion .accordion-button {
  background-color: #FFFFFF;
  color: #3E4C3D;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 20px;
}

.trip-refund-section__accordion .accordion-button:not(.collapsed) {
  background-color: #FAF7F2;
  color: #3E4C3D;
  box-shadow: none;
}

.trip-refund-section__accordion .accordion-button:focus {
  box-shadow: none;
  border-color: #E7E1D8;
}

.trip-refund-section .text-terracotta {
  color: #C87D55;
}

.trip-refund-section__tab-content {
  display: none;
}

.trip-refund-section__tab-content.show {
  display: block;
  animation: tripFadeIn 0.35s ease;
}

@keyframes tripFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .trip-refund-section__main-title {
    font-size: 1.75rem;
  }
  .trip-refund-section__section-heading {
    font-size: 1.25rem;
  }
  .trip-refund-section__content-title {
    font-size: 1.15rem;
  }
  .trip-refund-section__sidebar-sticky {
    position: static;
  }
}

/* ===== PAGE: delivery ===== */
.trip-delivery-page { background-color: #FAF7F2; color: #212420; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } .trip-delivery-page__eyebrow { background-color: #EFE9DE; color: #3E4C3D; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid #E7E1D8; } .trip-delivery-page__title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #3E4C3D; line-height: 1.2; } .trip-delivery-page__intro { max-width: 680px; font-size: 1.05rem; line-height: 1.7; color: #646860; } .trip-delivery-page__section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 600; color: #3E4C3D; line-height: 1.3; } .trip-delivery-page__text { font-size: 0.95rem; line-height: 1.65; color: #646860; } .trip-delivery-page__card { background-color: #FFFFFF; border: 1px solid #E7E1D8; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .trip-delivery-page__card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px -4px rgba(62, 76, 61, 0.08); } .trip-delivery-page__card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; color: #3E4C3D; font-size: 1.25rem; } .trip-delivery-page__card-text { font-size: 0.9rem; line-height: 1.6; color: #646860; } .trip-delivery-page__icon-wrap { width: 50px; height: 50px; border-radius: 50%; background-color: #F3EFEA; color: #C87D55; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; } .trip-delivery-page__panel { background-color: #FFFFFF; border: 1px solid #E7E1D8; border-radius: 20px; box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.04); } .trip-delivery-page__panel--accent { background-color: #F5EFE6; border: 1px solid #EAE3D9; } .trip-delivery-page__table { border-collapse: separate; border-spacing: 0; } .trip-delivery-page__table thead th { background-color: #F3EFEA; color: #3E4C3D; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid #E7E1D8; padding: 14px 16px; } .trip-delivery-page__table tbody td { padding: 14px 16px; font-size: 0.9rem; color: #212420; border-bottom: 1px solid #EAE3D9; } .trip-delivery-page__form-label { font-size: 0.85rem; font-weight: 600; color: #3E4C3D; margin-bottom: 0.35rem; } .trip-delivery-page__input { background-color: #FFFFFF; border: 1.5px solid #E7E1D8; border-radius: 10px; padding: 10px 14px; font-size: 0.95rem; color: #212420; transition: border-color 0.2s ease, box-shadow 0.2s ease; } .trip-delivery-page__input:focus { background-color: #FFFFFF; border-color: #3E4C3D; color: #212420; box-shadow: 0 0 0 0.2rem rgba(62, 76, 61, 0.15); } .trip-delivery-page__btn { border-radius: 999px; font-weight: 600; font-size: 0.925rem; padding: 12px 24px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; } .trip-delivery-page__btn--primary { background-color: #3E4C3D; color: #FFFFFF; border: 1px solid #3E4C3D; } .trip-delivery-page__btn--primary:hover { background-color: #2D372C; color: #FFFFFF; border-color: #2D372C; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(45, 55, 44, 0.2); } .trip-delivery-page__btn--outline { background-color: transparent; color: #3E4C3D; border: 1.5px solid #3E4C3D; } .trip-delivery-page__btn--outline:hover { background-color: #3E4C3D; color: #FFFFFF; transform: translateY(-2px); } .trip-delivery-page__calc-result { background-color: #FFFFFF; border: 1px solid #E7E1D8; } .trip-delivery-page__text-highlight { color: #C87D55; font-size: 1rem; } .trip-delivery-page__progress { height: 8px; background-color: #EAE3D9; border-radius: 999px; overflow: hidden; } .trip-delivery-page__progress-bar { background-color: #3E4C3D; transition: width 0.4s ease; } .trip-delivery-page__accordion-item { border: 1px solid #E7E1D8; border-radius: 12px !important; margin-bottom: 12px; overflow: hidden; background-color: #FAF7F2; } .trip-delivery-page__accordion-btn { background-color: #FAF7F2; color: #3E4C3D; font-weight: 600; font-size: 1.05rem; padding: 18px 22px; box-shadow: none !important; } .trip-delivery-page__accordion-btn:not(.collapsed) { background-color: #F3EFEA; color: #C87D55; } .trip-delivery-page__accordion-btn::after { filter: sepia(100%) hue-rotate(60deg) saturate(200%); } .trip-delivery-page__accordion-body { padding: 18px 22px; font-size: 0.95rem; line-height: 1.7; color: #646860; background-color: #FFFFFF; } .trip-delivery-page__inline-link { color: #C87D55; font-weight: 600; text-decoration: underline; } .trip-delivery-page__inline-link:hover { color: #B36A44; } .trip-delivery-page__banner { background: linear-gradient(135deg, #F3EFEA 0%, #EBE4D8 100%); border: 1px solid #E0D7C9; } .trip-delivery-page__banner-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.5rem, 2.5vw, 2rem); color: #3E4C3D; font-weight: 600; } .trip-delivery-page__banner-text { max-width: 620px; font-size: 1rem; line-height: 1.65; color: #646860; } @media (max-width: 767.98px) { .trip-delivery-page__title { font-size: 1.75rem; } .trip-delivery-page__section-title { font-size: 1.35rem; } .trip-delivery-page__panel { padding: 1.5rem !important; } }

.botanical-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

.botanical-comment-card:hover {
    box-shadow: 0 10px 24px -3px rgba(62, 76, 61, 0.08)
}

.border-subtle-color {
    border-color: #E7E1D8 !important
}

.botanical-avatar-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    object-fit: cover
}

.botanical-avatar-circle.bg-sage {
    background-color: #8A9A86;
    color: #FFFFFF
}

.botanical-avatar-circle.bg-terracotta {
    background-color: #C87D55;
    color: #FFFFFF
}

.botanical-avatar-circle.bg-forest {
    background-color: #3E4C3D;
    color: #FFFFFF
}

.botanical-author-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #212420;
    line-height: 1.2
}

.botanical-verified-badge {
    font-size: .75rem;
    font-weight: 600;
    color: #3E4C3D;
    background-color: #EFE9DE;
    padding: 3px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center
}

.botanical-comment-meta {
    font-size: .8rem;
    color: #646860;
    display: block;
    margin-top: 2px
}

.botanical-star-rating {
    color: #C87D55;
    font-size: .9rem
}

.botanical-star-rating .filled-star {
    color: #C87D55
}

.botanical-star-rating .rating-value {
    font-size: .85rem;
    font-weight: 600;
    color: #646860
}

.botanical-review-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #212420;
    margin-bottom: 8px
}

.botanical-comment-text {
    font-size: .925rem;
    line-height: 1.65;
    color: #212420
}

.botanical-tag {
    font-size: .775rem;
    font-weight: 500;
    color: #3E4C3D;
    background-color: #F3EFEA;
    border: 1px solid #E7E1D8;
    padding: 4px 10px;
    border-radius: 999px
}

.botanical-action-btn {
    background: transparent;
    border: none;
    color: #646860;
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all .2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center
}

.botanical-action-btn:hover {
    color: #3E4C3D;
    background-color: #FAF7F2
}

.botanical-share-btn {
    background: transparent;
    border: none;
    color: #91968C;
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all .2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center
}

.botanical-share-btn:hover {
    color: #3E4C3D
}

.botanical-reply-thread {
    border-left: 2px solid #EBE4D8 !important;
    position: relative
}

.botanical-reply-card {
    background-color: #F9F6F1;
    border: 1px solid #E7E1D8;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px -2px rgba(62, 76, 61, 0.03);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

.botanical-reply-thread .reply-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: .85rem;
    object-fit: cover
}

.botanical-craftsman-badge {
    font-size: .725rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #3E4C3D;
    padding: 2px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center
}

.botanical-reply-indicator {
    font-size: .75rem;
    color: #646860;
    font-weight: 500;
    background-color: #EFE9DE;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap
}

@media (max-width: 576px) {
    .botanical-reply-indicator {
        white-space: normal;
        max-width: 100%;
        text-align: right
    }
}

.botanical-reply-card .botanical-comment-text {
    font-size: .9rem;
    line-height: 1.6;
    color: #212420
}

.botanical-reply-card .botanical-action-btn {
    font-size: .8rem;
    padding: 4px 8px;
    color: #646860
}

.botanical-reply-card .botanical-action-btn:hover {
    color: #3E4C3D;
    background-color: #FFFFFF
}


/* ===== PAGE TEMPLATE: catalog ===== */
.ts-body-warm {
    background-color: #FAF7F2;
    color: #212420;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

.ts-header {
    background-color: #FAF7F2;
    border-bottom: 1px solid #E7E1D8;
    z-index: 1030;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.ts-header .ts-topbar {
    background-color: #3E4C3D;
    color: #FAF7F2;
    padding: 8px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.ts-header .ts-topbar-text {
    line-height: 1.4;
    color: #FAF7F2;
}

.ts-header .ts-topbar-highlight {
    color: #DDA77B;
    font-weight: 600;
}

.ts-header .ts-navbar {
    background-color: #FAF7F2;
    padding: 14px 0;
}

.ts-header .ts-brand {
    text-decoration: none;
    color: #212420;
    padding: 0;
    margin-right: 0;
}

.ts-header .ts-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block;
}

.ts-header .ts-brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #3E4C3D;
    letter-spacing: -0.01em;
    line-height: 1;
}

.ts-header .ts-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #212420;
    padding: 8px 16px;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.ts-header .ts-nav-link:hover,
.ts-header .ts-nav-link:focus {
    color: #C87D55;
    background-color: #F3EFEA;
}

.ts-header .ts-nav-toggle {
    border: 1px solid #E7E1D8;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    color: #3E4C3D;
    outline: none;
    box-shadow: none;
}

.ts-header .ts-nav-toggle-icon {
    font-size: 1.15rem;
    color: #3E4C3D;
}

.ts-header .ts-cart-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 50%;
    color: #3E4C3D;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-header .ts-cart-btn:hover {
    background-color: #3E4C3D;
    border-color: #3E4C3D;
    color: #FFFFFF;
}

.ts-header .ts-cart-icon {
    font-size: 1.1rem;
}

.ts-header .ts-cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #C87D55;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 6px;
    min-width: 18px;
    border: 2px solid #FAF7F2;
}

@media (max-width: 991.98px) {
    .ts-header .ts-topbar {
        font-size: 0.75rem;
    }

    .ts-header .ts-brand-text {
        font-size: 1.45rem;
    }

    .ts-header .ts-navbar-collapse {
        background-color: #FFFFFF;
        border: 1px solid #E7E1D8;
        border-radius: 16px;
        padding: 16px;
        margin-top: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

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

@media (min-width: 992px) {
    .ts-header .ts-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ts-header .ts-navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .ts-header .ts-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.ts-product-detail-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background-color: #FAF7F2;
}

.ts-product-detail-page .ts-breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 0.875rem;
}

.ts-product-detail-page .ts-crumb-link {
    color: #646860;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ts-product-detail-page .ts-crumb-link:hover {
    color: #3E4C3D;
}

.ts-product-detail-page .breadcrumb-item.active {
    color: #3E4C3D;
    font-weight: 600;
}

.ts-product-detail-page .ts-product-visual-card {
    background: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.ts-product-detail-page .ts-media-frame {
    border-radius: 16px;
    overflow: hidden;
    background: #F3EFEA;
}

.ts-product-detail-page .ts-main-product-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.ts-product-detail-page .ts-badge-floating {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.ts-product-detail-page .ts-pill-tag {
    background: rgba(250, 247, 242, 0.95);
    color: #3E4C3D;
    border: 1px solid #E2D9CB;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    display: inline-block;
}

.ts-product-detail-page .ts-visual-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.ts-product-detail-page .ts-spec-card {
    background: #F5EFE6;
    border: 1px solid #EAE3D9;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ts-product-detail-page .ts-spec-icon {
    color: #8A9A86;
    font-size: 1.1rem;
    margin-left: 0.25rem;
}

.ts-product-detail-page .ts-spec-label {
    display: block;
    font-size: 0.7rem;
    color: #646860;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ts-product-detail-page .ts-spec-value {
    display: block;
    font-size: 0.85rem;
    color: #212420;
    line-height: 1.2;
}

.ts-product-detail-page .ts-product-summary-card {
    background: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.ts-product-detail-page .ts-detail-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #3E4C3D;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.ts-product-detail-page .ts-detail-subtitle {
    font-size: 1.05rem;
    color: #646860;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ts-product-detail-page .text-terracotta {
    color: #C87D55;
}

.ts-product-detail-page .ts-rating-score {
    font-weight: 700;
    color: #212420;
    font-size: 0.95rem;
}

.ts-product-detail-page .ts-rating-separator {
    color: #A4ACA1;
}

.ts-product-detail-page .ts-review-anchor {
    color: #646860;
    text-decoration: underline;
    font-size: 0.9rem;
}

.ts-product-detail-page .ts-review-anchor:hover {
    color: #3E4C3D;
}

.ts-product-detail-page .ts-current-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.35rem;
    font-weight: 700;
    color: #3E4C3D;
    line-height: 1;
}

.ts-product-detail-page .ts-tax-note {
    font-size: 0.8125rem;
    color: #91968C;
}

.ts-product-detail-page .ts-desc-paragraph {
    font-size: 0.975rem;
    line-height: 1.65;
    color: #646860;
}

.ts-product-detail-page .ts-aroma-bar-box {
    background-color: #F5EFE6;
    border-radius: 12px;
    border-left: 4px solid #C87D55;
}

.ts-product-detail-page .ts-box-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #3E4C3D;
    display: block;
}

.ts-product-detail-page .ts-aroma-level-badge {
    background: #3E4C3D;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.ts-product-detail-page .ts-aroma-notes-text {
    font-size: 0.9rem;
    color: #212420;
    font-style: italic;
}

.ts-product-detail-page .ts-purchase-action-panel {
    background-color: #FAF7F2;
    border: 1px solid #E7E1D8;
    border-radius: 16px;
}

.ts-product-detail-page .ts-qty-selector {
    background: #FFFFFF;
    border: 1.5px solid #E7E1D8;
    border-radius: 999px;
    padding: 4px 8px;
    min-width: 120px;
    height: 48px;
}

.ts-product-detail-page .ts-qty-btn {
    background: transparent;
    border: none;
    color: #3E4C3D;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.ts-product-detail-page .ts-qty-btn:hover {
    background-color: #F3EFEA;
}

.ts-product-detail-page .ts-qty-value {
    font-weight: 700;
    font-size: 1rem;
    color: #212420;
    padding: 0 8px;
}

.ts-product-detail-page .ts-add-cart-main {
    background-color: #3E4C3D;
    border-color: #3E4C3D;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(62, 76, 61, 0.15);
}

.ts-product-detail-page .ts-add-cart-main:hover {
    background-color: #2D372C;
    border-color: #2D372C;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(62, 76, 61, 0.22);
}

.ts-product-detail-page .ts-guarantee-item {
    font-size: 0.8125rem;
    color: #646860;
    font-weight: 500;
}

.ts-product-detail-page .text-sage {
    color: #8A9A86;
}

.ts-product-detail-page .ts-custom-pills .ts-tab-trigger {
    background: #FFFFFF;
    border: 1px solid #E7E1D8;
    color: #3E4C3D;
    font-weight: 600;
    font-size: 0.925rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.ts-product-detail-page .ts-custom-pills .ts-tab-trigger.active {
    background: #3E4C3D;
    color: #FFFFFF;
    border-color: #3E4C3D;
}

.ts-product-detail-page .ts-tab-content-card {
    background: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 20px;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.ts-product-detail-page .ts-tab-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #3E4C3D;
    margin-bottom: 0.75rem;
}

.ts-product-detail-page .ts-tab-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #646860;
}

.ts-product-detail-page .ts-botanical-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ts-product-detail-page .ts-botanical-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.925rem;
    line-height: 1.55;
    color: #646860;
}

.ts-product-detail-page .ts-botanical-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C87D55;
    font-size: 1.25rem;
    line-height: 1;
    top: 2px;
}

.ts-product-detail-page .ts-pure-guarantee-box {
    background: #F3EFEA;
    border: 1px dashed #D0C6B8;
    border-radius: 16px;
}

.ts-product-detail-page .ts-pure-seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #3E4C3D;
    color: #FAF7F2;
    font-size: 1.25rem;
}

.ts-product-detail-page .ts-pure-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #3E4C3D;
    margin-bottom: 0.5rem;
}

.ts-product-detail-page .ts-pure-text {
    font-size: 0.875rem;
    color: #646860;
    line-height: 1.6;
}

.ts-product-detail-page .ts-step-num {
    width: 32px;
    height: 32px;
    background: #EFE9DE;
    color: #3E4C3D;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts-product-detail-page .ts-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212420;
    margin-bottom: 0.25rem;
}

.ts-product-detail-page .ts-step-desc {
    font-size: 0.9rem;
    color: #646860;
    margin-bottom: 0;
}

.ts-product-detail-page .ts-longevity-bento {
    background: #F5EFE6;
    border-radius: 16px;
    border: 1px solid #EAE3D9;
}

.ts-product-detail-page .ts-bento-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #3E4C3D;
    margin-bottom: 0.5rem;
}

.ts-product-detail-page .ts-bento-text {
    font-size: 0.9rem;
    color: #646860;
    line-height: 1.55;
}

.ts-product-detail-page .ts-spec-pill {
    background: #FFFFFF;
    border: 1px solid #E7E1D8;
    color: #3E4C3D;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.ts-product-detail-page .ts-stat-box {
    background: #F5EFE6;
    border-radius: 16px;
    border: 1px solid #EAE3D9;
}

.ts-product-detail-page .ts-stat-figure {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E4C3D;
    line-height: 1.1;
}

.ts-product-detail-page .ts-stat-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #646860;
    font-weight: 600;
}

.ts-product-detail-page .ts-section-tag {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #C87D55;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.25rem;
}

.ts-product-detail-page .ts-section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3E4C3D;
}

.ts-product-detail-page .ts-overall-badge {
    background: #FFFFFF;
    border: 1px solid #E7E1D8;
    color: #3E4C3D;
    font-weight: 700;
    font-size: 0.925rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
}

.botanical-comment-card {
    background: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 16px;
    padding: 1.5rem;
}

.border-subtle-color {
    border-color: #E7E1D8 !important;
}

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

.bg-sage {
    background-color: #8A9A86;
}

.bg-forest {
    background-color: #3E4C3D;
}

.botanical-author-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #212420;
}

.botanical-verified-badge {
    font-size: 0.75rem;
    background-color: #EFE9DE;
    color: #3E4C3D;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-weight: 600;
}

.botanical-craftsman-badge {
    font-size: 0.75rem;
    background-color: #EBE4D8;
    color: #3E4C3D;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-weight: 600;
}

.botanical-comment-meta {
    font-size: 0.8125rem;
    color: #91968C;
    display: block;
}

.filled-star {
    color: #C87D55;
    font-size: 0.85rem;
}

.rating-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #646860;
}

.botanical-review-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #212420;
    margin-bottom: 0.5rem;
}

.botanical-comment-text {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #646860;
}

.botanical-tag {
    background: #FAF7F2;
    border: 1px solid #E7E1D8;
    font-size: 0.75rem;
    font-weight: 500;
    color: #3E4C3D;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.botanical-action-btn {
    background: transparent;
    border: none;
    color: #646860;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.botanical-action-btn:hover,
.botanical-action-btn.active {
    color: #C87D55;
}

.botanical-share-btn {
    background: transparent;
    border: none;
    color: #646860;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.botanical-share-btn:hover {
    color: #3E4C3D;
}

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

.botanical-reply-card {
    background: #FAF7F2;
    border: 1px solid #EAE3D9;
    border-radius: 12px;
    padding: 1.25rem;
}

.botanical-reply-indicator {
    font-size: 0.75rem;
    color: #91968C;
    font-style: italic;
}

.reply-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.ts-review-sim-card {
    background: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 16px;
}

.ts-sim-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #3E4C3D;
}

.ts-star-pick-btn {
    background: transparent;
    border: none;
    color: #D6DCD4;
    font-size: 1.15rem;
    padding: 2px 4px;
    cursor: pointer;
    transition: color 0.15s ease;
}

.ts-star-pick-btn.active {
    color: #C87D55;
}

.ts-sim-textarea {
    background-color: #FAF7F2;
    border: 1px solid #E7E1D8;
    border-radius: 12px;
    color: #212420;
    font-size: 0.925rem;
    padding: 0.85rem;
}

.ts-sim-textarea:focus {
    background-color: #FFFFFF;
    border-color: #3E4C3D;
    box-shadow: 0 0 0 3px rgba(62, 76, 61, 0.1);
    color: #212420;
}

.ts-sim-textarea::placeholder {
    color: #91968C;
}

.ts-btn-review-submit {
    background-color: #3E4C3D;
    border-color: #3E4C3D;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.35rem;
    transition: background-color 0.25s ease;
}

.ts-btn-review-submit:hover {
    background-color: #2D372C;
    border-color: #2D372C;
}

.ts-sim-note {
    font-size: 0.8125rem;
    color: #91968C;
}

.ts-review-feedback-msg {
    background: #EFE9DE;
    border: 1px solid #E2D9CB;
    color: #3E4C3D;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.site-footer-block {
    background-color: #F3EFEA;
    color: #212420;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #E7E1D8;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer-block .footer-brand-title {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #3E4C3D;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.site-footer-block .footer-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #646860;
    margin-bottom: 1.25rem;
}

.site-footer-block .footer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #EFE9DE;
    color: #3E4C3D;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #E2D9CB;
}

.site-footer-block .footer-badge-pill i {
    color: #8A9A86;
}

.site-footer-block .footer-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212420;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer-block .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #C87D55;
    border-radius: 2px;
}

.site-footer-block .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer-block .footer-nav-link {
    font-size: 0.925rem;
    color: #646860;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer-block .footer-nav-link:hover,
.site-footer-block .footer-nav-link:focus {
    color: #3E4C3D;
    transform: translateX(4px);
}

.site-footer-block .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer-block .contact-icon {
    color: #C87D55;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.site-footer-block .contact-text {
    font-size: 0.925rem;
    line-height: 1.5;
    color: #646860;
    word-break: break-word;
}

.site-footer-block .contact-link {
    font-size: 0.925rem;
    color: #646860;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-all;
}

.site-footer-block .contact-link:hover,
.site-footer-block .contact-link:focus {
    color: #3E4C3D;
}

.site-footer-block .btn-footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(62, 76, 61, 0.1);
}

.site-footer-block .btn-footer-wa:hover,
.site-footer-block .btn-footer-wa:focus {
    background-color: #2D372C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 76, 61, 0.18);
}

.site-footer-block .btn-footer-wa i {
    font-size: 1.1rem;
}

.site-footer-block .footer-divider {
    width: 100%;
    height: 1px;
    background-color: #E7E1D8;
    margin-top: 1rem;
}

.site-footer-block .copyright-text {
    font-size: 0.875rem;
    color: #646860;
    line-height: 1.5;
}

.site-footer-block .footer-bottom-meta {
    flex-wrap: wrap;
}

.site-footer-block .meta-tag {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #3E4C3D;
    display: inline-flex;
    align-items: center;
}

.site-footer-block .meta-tag i {
    color: #8A9A86;
}

.site-footer-block .meta-tag-dot {
    color: #A4ACA1;
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .site-footer-block {
        padding-top: 3.5rem;
        padding-bottom: 1.25rem;
    }

    .site-footer-block .footer-brand-title {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
    }

    .site-footer-block .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }

    .site-footer-block .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .site-footer-block .footer-bottom-meta {
        justify-content: center;
    }

    .ts-product-detail-page .ts-visual-specs-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.detail-blog-body {
    background-color: #FAF7F2;
    color: #212420;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.ts-header {
    background-color: #FAF7F2;
    border-bottom: 1px solid #E7E1D8;
    z-index: 1030;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
}

.ts-header .ts-topbar {
    background-color: #3E4C3D;
    color: #FAF7F2;
    padding: 8px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.ts-header .ts-topbar-text {
    line-height: 1.4;
    color: #FAF7F2;
}

.ts-header .ts-topbar-highlight {
    color: #DDA77B;
    font-weight: 600;
}

.ts-header .ts-navbar {
    background-color: #FAF7F2;
    padding: 14px 0;
}

.ts-header .ts-brand {
    text-decoration: none;
    color: #212420;
    padding: 0;
    margin-right: 0;
}

.ts-header .ts-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block;
}

.ts-header .ts-brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #3E4C3D;
    letter-spacing: -0.01em;
    line-height: 1;
}

.ts-header .ts-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #212420;
    padding: 8px 16px;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.ts-header .ts-nav-link:hover,
.ts-header .ts-nav-link:focus {
    color: #C87D55;
    background-color: #F3EFEA;
}

.ts-header .ts-nav-toggle {
    border: 1px solid #E7E1D8;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    color: #3E4C3D;
    outline: none;
    box-shadow: none;
}

.ts-header .ts-nav-toggle-icon {
    font-size: 1.15rem;
    color: #3E4C3D;
}

.ts-header .ts-cart-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 50%;
    color: #3E4C3D;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ts-header .ts-cart-btn:hover {
    background-color: #3E4C3D;
    border-color: #3E4C3D;
    color: #FFFFFF;
}

.ts-header .ts-cart-icon {
    font-size: 1.1rem;
}

.ts-header .ts-cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #C87D55;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 6px;
    min-width: 18px;
    border: 2px solid #FAF7F2;
}

@media (max-width: 991.98px) {
    .ts-header .ts-topbar {
        font-size: 0.75rem;
    }

    .ts-header .ts-brand-text {
        font-size: 1.45rem;
    }

    .ts-header .ts-navbar-collapse {
        background-color: #FFFFFF;
        border: 1px solid #E7E1D8;
        border-radius: 16px;
        padding: 16px;
        margin-top: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

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

@media (min-width: 992px) {
    .ts-header .ts-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ts-header .ts-navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .ts-header .ts-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.detail-blog-post .detail-breadcrumb-link {
    color: #646860;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.detail-blog-post .detail-breadcrumb-link:hover {
    color: #3E4C3D;
}

.detail-blog-post .breadcrumb-item.active {
    color: #3E4C3D;
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 250px;
}

.detail-blog-post .detail-header-wrap {
    max-width: 860px;
}

.detail-blog-post .detail-badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: #EFE9DE;
    color: #3E4C3D;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #E2D9CB;
}

.detail-blog-post .detail-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: #212420;
    letter-spacing: -0.02em;
}

.detail-blog-post .detail-lead-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #646860;
}

.detail-blog-post .detail-meta-bar {
    font-size: 0.875rem;
    color: #646860;
}

.detail-blog-post .detail-meta-item {
    display: inline-flex;
    align-items: center;
}

.detail-blog-post .detail-meta-item i {
    color: #C87D55;
}

.detail-blog-post .detail-meta-separator {
    color: #A4ACA1;
}

.detail-blog-post .detail-featured-media-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.05);
    overflow: hidden;
}

.detail-blog-post .detail-featured-img {
    border-radius: 14px;
    object-fit: cover;
    max-height: 480px;
    display: block;
}

.detail-blog-post .article-prose {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #212420;
}

.detail-blog-post .detail-intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #3E4C3D;
    font-weight: 400;
}

.detail-blog-post .detail-section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    color: #212420;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-blog-post .detail-sub-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 600;
    line-height: 1.3;
    color: #3E4C3D;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.detail-blog-post .detail-quote-box {
    background-color: #F3EFEA;
    border-left: 4px solid #C87D55;
    border-radius: 0 16px 16px 0;
}

.detail-blog-post .detail-quote-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #3E4C3D;
    line-height: 1.45;
}

.detail-blog-post .detail-quote-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #646860;
    display: block;
    font-style: normal;
}

.detail-blog-post .detail-botanical-list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-blog-post .detail-botanical-list li {
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.6;
    color: #646860;
}

.detail-blog-post .detail-botanical-list li strong {
    color: #212420;
}

.detail-blog-post .detail-botanical-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #8A9A86;
    font-size: 1rem;
}

.detail-blog-post .detail-summary-card {
    background-color: #EFE9DE;
    border: 1px dashed #D0C6B8;
    border-radius: 14px;
}

.detail-blog-post .detail-summary-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3E4C3D;
}

.detail-blog-post .detail-summary-text {
    font-size: 0.95rem;
    color: #646860;
    line-height: 1.6;
}

.detail-blog-post .detail-share-bar {
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 14px;
}

.detail-blog-post .detail-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3E4C3D;
}

.detail-blog-post .detail-share-btn {
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    border-radius: 999px;
    padding: 0.45rem 1.15rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.detail-blog-post .detail-share-btn:hover {
    background-color: #2D372C;
    transform: translateY(-1px);
}

.detail-blog-post .detail-kicker-tag {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #C87D55;
    display: inline-block;
}

.detail-blog-post .detail-related-heading,
.detail-blog-post .detail-comments-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #212420;
}

.detail-blog-post .detail-related-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE3D9;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.detail-blog-post .detail-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -4px rgba(62, 76, 61, 0.09);
}

.detail-blog-post .detail-related-date {
    font-size: 0.8rem;
    color: #91968C;
    font-weight: 600;
}

.detail-blog-post .detail-related-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
}

.detail-blog-post .detail-related-title-link {
    color: #212420;
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-blog-post .detail-related-title-link:hover {
    color: #C87D55;
}

.detail-blog-post .detail-related-desc {
    font-size: 0.875rem;
    color: #646860;
    line-height: 1.55;
}

.detail-blog-post .detail-read-more-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3E4C3D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.detail-blog-post .detail-read-more-link:hover {
    color: #C87D55;
    transform: translateX(3px);
}

.detail-blog-post .detail-comments-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: #646860;
    background-color: #EFE9DE;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.botanical-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E7E1D8;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px -2px rgba(62, 76, 61, 0.04);
}

.border-subtle-color {
    border-color: #E7E1D8 !important;
}

.botanical-avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.bg-sage {
    background-color: #8A9A86;
}

.bg-forest {
    background-color: #3E4C3D;
}

.botanical-author-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #212420;
}

.botanical-verified-badge {
    font-size: 0.725rem;
    font-weight: 600;
    color: #3E4C3D;
    background-color: #EFE9DE;
    padding: 2px 8px;
    border-radius: 999px;
}

.botanical-craftsman-badge {
    font-size: 0.725rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #C87D55;
    padding: 2px 8px;
    border-radius: 999px;
}

.botanical-comment-meta {
    font-size: 0.775rem;
    color: #91968C;
    display: block;
}

.filled-star {
    color: #DDA77B;
    font-size: 0.85rem;
    margin-right: 2px;
}

.rating-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #646860;
}

.botanical-review-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #212420;
    margin-bottom: 0.5rem;
}

.botanical-comment-text {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #646860;
}

.botanical-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3E4C3D;
    background-color: #F3EFEA;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid #E7E1D8;
}

.botanical-action-btn,
.botanical-share-btn {
    background: none;
    border: none;
    font-size: 0.825rem;
    font-weight: 600;
    color: #646860;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.botanical-action-btn:hover,
.botanical-share-btn:hover {
    color: #3E4C3D;
    background-color: #F3EFEA;
}

.botanical-action-btn.is-active {
    color: #C87D55;
}

.botanical-reply-thread {
    border-color: #E7E1D8 !important;
}

.botanical-reply-card {
    background-color: #F9F7F3;
    border: 1px solid #EAE3D9;
    border-radius: 12px;
    padding: 16px;
}

.botanical-reply-indicator {
    font-size: 0.75rem;
    font-weight: 500;
    color: #91968C;
}

.site-footer-block {
    background-color: #F3EFEA;
    color: #212420;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #E7E1D8;
    position: relative;
    overflow: hidden;
}

.site-footer-block .footer-brand-title {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #3E4C3D;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.site-footer-block .footer-brand-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #646860;
    margin-bottom: 1.25rem;
}

.site-footer-block .footer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #EFE9DE;
    color: #3E4C3D;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #E2D9CB;
}

.site-footer-block .footer-badge-pill i {
    color: #8A9A86;
}

.site-footer-block .footer-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212420;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer-block .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #C87D55;
    border-radius: 2px;
}

.site-footer-block .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer-block .footer-nav-link {
    font-size: 0.925rem;
    color: #646860;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer-block .footer-nav-link:hover,
.site-footer-block .footer-nav-link:focus {
    color: #3E4C3D;
    transform: translateX(4px);
}

.site-footer-block .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer-block .contact-icon {
    color: #C87D55;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.site-footer-block .contact-text {
    font-size: 0.925rem;
    line-height: 1.5;
    color: #646860;
    word-break: break-word;
}

.site-footer-block .contact-link {
    font-size: 0.925rem;
    color: #646860;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-all;
}

.site-footer-block .contact-link:hover,
.site-footer-block .contact-link:focus {
    color: #3E4C3D;
}

.site-footer-block .btn-footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3E4C3D;
    color: #FFFFFF;
    border: 1px solid #3E4C3D;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(62, 76, 61, 0.1);
}

.site-footer-block .btn-footer-wa:hover,
.site-footer-block .btn-footer-wa:focus {
    background-color: #2D372C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 76, 61, 0.18);
}

.site-footer-block .btn-footer-wa i {
    font-size: 1.1rem;
}

.site-footer-block .footer-divider {
    width: 100%;
    height: 1px;
    background-color: #E7E1D8;
    margin-top: 1rem;
}

.site-footer-block .copyright-text {
    font-size: 0.875rem;
    color: #646860;
    line-height: 1.5;
}

.site-footer-block .footer-bottom-meta {
    flex-wrap: wrap;
}

.site-footer-block .meta-tag {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #3E4C3D;
    display: inline-flex;
    align-items: center;
}

.site-footer-block .meta-tag i {
    color: #8A9A86;
}

.site-footer-block .meta-tag-dot {
    color: #A4ACA1;
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .detail-blog-post .detail-main-title {
        font-size: 1.75rem;
    }

    .site-footer-block {
        padding-top: 3.5rem;
        padding-bottom: 1.25rem;
    }

    .site-footer-block .footer-brand-title {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
    }

    .site-footer-block .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }

    .site-footer-block .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .site-footer-block .footer-bottom-meta {
        justify-content: center;
    }
}