:root {
    --color-black-pure: #0A0A0A;
    --color-gray-900: #121212;
    --color-gray-800: #1F2937;
    --color-gray-700: #374151;
    --color-gray-600: #4B5563;
    --color-gray-500: #6B7280;
    --color-gray-400: #9CA3AF;
    --color-gray-300: #D1D5DB;
    --color-gray-200: #E5E7EB;
    --color-gray-100: #F3F4F6;
    --color-gray-50: #F9FAFB;
    --color-white-pure: #FFFFFF;
    --color-accent-primary: #E15B2D;
    --color-accent-hover: #C8491C;
    --color-accent-active: #A83C14;
    --color-accent-subtle: #FFF4EE;
    --color-accent-border: #FBD5C5;
    --color-accent-glow: rgba(225, 91, 45, 0.15);
    --bg-page-default: #FAFAFA;
    --bg-surface-primary: #FFFFFF;
    --bg-surface-secondary: #F4F4F5;
    --bg-surface-tertiary: #ECECEE;
    --bg-surface-subtle: #F9FAFB;
    --border-subtle: #F3F4F6;
    --border-default: #E5E7EB;
    --border-strong: #D1D5DB;
    --border-focus: #0A0A0A;
    --border-accent: #E15B2D;
    --shadow-card-rest: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
    --shadow-dropdown: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-modal: 0 25px 50px -12px rgba(0, 0, 0, 0.16);
    --shadow-accent-focus: 0 0 0 3px rgba(225, 91, 45, 0.25);
    --font-headings: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition-base: all 0.25s 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-page-default);
    color: var(--color-black-pure);
    line-height: 1.55;
    font-size: 0.9375rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--color-black-pure);
    font-weight: 700;
}

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

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

.bg-accent-primary {
    background-color: var(--color-accent-primary) !important;
}

.btn-accent-primary {
    background-color: var(--color-accent-primary);
    color: var(--color-white-pure);
    border: 1px solid var(--color-accent-primary);
    border-radius: 6px;
    padding: 0.8125rem 1.75rem;
    font-weight: 600;
    font-family: var(--font-headings);
    transition: var(--transition-base);
}

.btn-accent-primary:hover,
.btn-accent-primary:focus {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-white-pure);
    transform: scale(1.01);
}

.btn-accent-primary:active {
    background-color: var(--color-accent-active);
    border-color: var(--color-accent-active);
    transform: scale(0.99);
}

.btn-dark-primary {
    background-color: var(--color-black-pure);
    color: var(--color-white-pure);
    border: 1px solid var(--color-black-pure);
    border-radius: 6px;
    padding: 0.8125rem 1.75rem;
    font-weight: 600;
    font-family: var(--font-headings);
    transition: var(--transition-base);
}

.btn-dark-primary:hover,
.btn-dark-primary:focus {
    background-color: var(--color-gray-700);
    border-color: var(--color-gray-700);
    color: var(--color-white-pure);
}

.btn-dark-primary:active {
    background-color: var(--color-gray-900);
    border-color: var(--color-gray-900);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-black-pure);
    box-shadow: var(--shadow-accent-focus);
}

/* ===== header ===== */
.selects-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    z-index: 1020;
}

.selects-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #FFFFFF;
}

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

.selects-header .selects-header-brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: #0A0A0A;
}

.selects-header .selects-header-nav-list {
    gap: 0.25rem;
}

.selects-header .selects-header-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.selects-header .selects-header-nav-link:hover,
.selects-header .selects-header-nav-link:focus {
    color: #E15B2D;
    background-color: #FFF4EE;
}

.selects-header .selects-header-phone {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0A0A0A;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.selects-header .selects-header-phone:hover,
.selects-header .selects-header-phone:focus {
    color: #E15B2D;
    background-color: #FFF4EE;
}

.selects-header .selects-header-phone-icon {
    color: #E15B2D;
    font-size: 0.95rem;
}

.selects-header .selects-header-cart-btn {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    color: #0A0A0A;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.selects-header .selects-header-cart-btn:hover,
.selects-header .selects-header-cart-btn:focus {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.selects-header .selects-header-toggler {
    border: 1px solid #E5E7EB;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.selects-header .selects-header-toggler:focus {
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.25);
}

@media (max-width: 991.98px) {
    .selects-header .selects-header-nav-link {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }

    .selects-header .selects-header-brand-title {
        font-size: 1.125rem;
    }
}

/* ===== hero ===== */
.hero-promo-section {
    background-color: #0A0A0A;
    min-height: 560px;
    padding-top: 2rem;
    padding-bottom: 4.5rem;
    position: relative;
}

.hero-promo-section .hero-promo-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(31, 41, 55, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-promo-section .hero-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-promo-section .hero-glow-1 {
    background: rgba(59, 130, 246, 0.18);
    top: -50px;
    right: 10%;
}

.hero-promo-section .hero-glow-2 {
    background: rgba(255, 255, 255, 0.05);
    bottom: 10%;
    left: 5%;
}

.hero-promo-section .hero-badge {
    background-color: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.hero-promo-section .hero-badge-icon {
    color: #3B82F6;
    font-size: 0.9rem;
}

.hero-promo-section .hero-badge-text {
    color: #93C5FD;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-promo-section .hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-promo-section .hero-accent-text {
    color: #3B82F6;
}

.hero-promo-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    max-width: 580px;
}

.hero-promo-section .hero-btn-primary {
    background-color: #3B82F6;
    color: #FFFFFF;
    border: 1px solid #3B82F6;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-promo-section .hero-btn-primary:hover {
    background-color: #2563EB;
    border-color: #2563EB;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.35);
}

.hero-promo-section .hero-btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #4B5563;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-promo-section .hero-btn-outline:hover {
    background-color: #1F2937;
    border-color: #E5E7EB;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.hero-promo-section .hero-highlight-icon {
    color: #3B82F6;
    font-size: 1.1rem;
}

.hero-promo-section .hero-showcase-container {
    max-width: 440px;
    margin: 0 auto;
}

.hero-promo-section .hero-showcase-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-promo-section .hero-badge-discount {
    top: -12px;
    right: -12px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #3B82F6;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    z-index: 5;
    animation: heroPulse 3s infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

.hero-promo-section .hero-discount-val {
    font-size: 0.85rem;
    line-height: 1;
}

.hero-promo-section .hero-discount-sub {
    font-size: 0.55rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.hero-promo-section .hero-slides-wrapper {
    position: relative;
    min-height: 380px;
    z-index: 2;
}

.hero-promo-section .hero-slide {
    display: none;
    animation: heroFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-promo-section .hero-slide.active {
    display: block;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-promo-section .hero-product-card {
    background: #18181B;
    border: 1px solid #27272A;
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
    transition: border-color 0.25s ease;
}

.hero-promo-section .hero-product-card:hover {
    border-color: #3B82F6;
}

.hero-promo-section .hero-product-img {
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #27272A;
    transition: transform 0.3s ease;
}

.hero-promo-section .hero-product-card:hover .hero-product-img {
    transform: scale(1.03);
}

.hero-promo-section .hero-product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
    transition: color 0.2s ease;
}

.hero-promo-section .hero-product-title:hover {
    color: #3B82F6;
}

.hero-promo-section .hero-btn-view {
    background-color: #27272A;
    color: #FFFFFF;
    border: 1px solid #3F3F46;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
}

.hero-promo-section .hero-btn-view:hover {
    background-color: #3B82F6;
    border-color: #3B82F6;
    color: #FFFFFF;
}

.hero-promo-section .hero-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #27272A;
    border: 1px solid #3F3F46;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-promo-section .hero-nav-arrow:hover {
    background: #3B82F6;
    border-color: #3B82F6;
    color: #FFFFFF;
}

.hero-promo-section .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3F3F46;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-promo-section .hero-dot.active {
    width: 24px;
    border-radius: 5px;
    background: #3B82F6;
}

.hero-promo-section .hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-promo-section .hero-bottom-curve svg {
    display: block;
    width: 100%;
    height: 36px;
}

@media (min-width: 768px) {
    .hero-promo-section .hero-bottom-curve svg {
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-promo-section .hero-title {
        font-size: 1.75rem;
    }

    .hero-promo-section .hero-cta-group .btn {
        width: 100%;
    }

    .hero-promo-section .hero-product-img {
        height: 180px;
    }
}

/* ===== bestsellers ===== */
.bestsellers-section {
    background-color: #FAFAFA;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0A0A0A;
}

.bestsellers-section .bestsellers-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E15B2D;
    background-color: #FFF4EE;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    display: inline-block;
    border: 1px solid #FBD5C5;
}

.bestsellers-section .bestsellers-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0A0A0A;
}

.bestsellers-section .bestsellers-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
    max-width: 620px;
}

.bestsellers-section .bestsellers-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bestsellers-section .bestsellers-card:hover {
    transform: translateY(-4px);
    border-color: #0A0A0A;
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
}

.bestsellers-section .bestsellers-card-media {
    background-color: #F9FAFB;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.bestsellers-section .bestsellers-img-link {
    width: 100%;
    height: 100%;
}

.bestsellers-section .bestsellers-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.bestsellers-section .bestsellers-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background-color: rgba(10, 10, 10, 0.85);
    color: #FFFFFF;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.bestsellers-section .bestsellers-rating-wrap {
    font-size: 0.75rem;
    line-height: 1;
}

.bestsellers-section .bestsellers-stars {
    color: #E15B2D !important;
    font-size: 0.8125rem;
    display: inline-flex;
    gap: 1px;
}

.bestsellers-section .bestsellers-rating-val {
    font-family: 'JetBrains Mono', monospace;
    color: #6B7280;
    font-weight: 500;
}

.bestsellers-section .bestsellers-card-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.35rem;
}

.bestsellers-section .bestsellers-card-link {
    color: #0A0A0A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bestsellers-section .bestsellers-card-link:hover {
    color: #E15B2D;
}

.bestsellers-section .bestsellers-card-spec {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #6B7280;
}

.bestsellers-section .bestsellers-card-meta {
    border-color: #F3F4F6 !important;
}

.bestsellers-section .bestsellers-price-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 2px;
}

.bestsellers-section .bestsellers-price {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.2;
}

.bestsellers-section .bestsellers-btn {
    background-color: #E15B2D;
    color: #FFFFFF;
    border: 1px solid #E15B2D;
    border-radius: 6px;
    padding: 0.5rem 0.875rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.bestsellers-section .bestsellers-btn:hover {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
    transform: scale(1.02);
}

.bestsellers-section .bestsellers-btn:active {
    background-color: #A83C14;
    border-color: #A83C14;
    transform: scale(0.98);
}

.bestsellers-section .bestsellers-catalog-link {
    background-color: transparent;
    color: #0A0A0A;
    border: 1px solid #0A0A0A;
    border-radius: 6px;
    padding: 0.75rem 1.75rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bestsellers-section .bestsellers-catalog-link:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

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

    .bestsellers-section .bestsellers-card-title {
        font-size: 1rem;
        hyphens: auto;
    }

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

/* ===== calculator ===== */
.selects-mat-calc-section {
    background-color: #FAFAFA;
    color: #0A0A0A;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.selects-mat-calc-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: #FFF4EE;
    border: 1px solid #FBD5C5;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E15B2D;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.selects-mat-calc-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0A0A0A;
    margin-bottom: 0.75rem;
}

@media (max-width:767.98px) {
    .selects-mat-calc-title {
        font-size: 1.375rem;
        hyphens: auto;
    }
}

.selects-mat-calc-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #4B5563;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.selects-mat-calc-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.selects-mat-calc-summary {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.selects-mat-calc-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0A0A0A;
    line-height: 1.3;
}

.selects-mat-calc-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F2937;
}

.selects-mat-calc-val-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    background-color: #F3F4F6;
    color: #0A0A0A;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    border: 1px solid #E5E7EB;
}

.selects-mat-calc-opt-btn {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 0.625rem 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #374151;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.selects-mat-calc-opt-btn:hover {
    border-color: #0A0A0A;
    color: #0A0A0A;
    background-color: #FFFFFF;
}

.selects-mat-calc-opt-btn.active {
    background-color: #FFF4EE;
    border-color: #E15B2D;
    color: #E15B2D;
    box-shadow: 0 0 0 1px #E15B2D;
}

.selects-mat-calc-opt-btn.active .selects-mat-calc-opt-desc {
    color: #A83C14;
}

.selects-mat-calc-opt-desc {
    font-size: 0.75rem;
    color: #6B7280;
    line-height: 1.35;
    margin-top: 0.2rem;
}

.selects-mat-calc-range {
    accent-color: #E15B2D;
    cursor: pointer;
}

.selects-mat-calc-range:focus {
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.selects-mat-calc-counter-btns {
    flex-shrink: 0;
}

.selects-mat-calc-btn-mini {
    width: 32px;
    height: 32px;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    color: #0A0A0A;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.selects-mat-calc-btn-mini:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.selects-mat-calc-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #E15B2D;
    background-color: #FFF4EE;
    border: 1px solid #FBD5C5;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.selects-mat-calc-kpi-box {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
}

.selects-mat-calc-kpi-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #6B7280;
}

.selects-mat-calc-kpi-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #0A0A0A;
}

.selects-mat-calc-kpi-sub {
    font-size: 0.8125rem;
    color: #4B5563;
    margin-top: 0.35rem;
    font-weight: 500;
}

.selects-mat-calc-breakdown {
    font-size: 0.875rem;
}

.selects-mat-calc-highlight-text {
    color: #E15B2D;
}

.selects-mat-calc-price-box {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
}

.selects-mat-calc-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A0A0A;
}

.selects-mat-calc-btn-action {
    background-color: #E15B2D;
    color: #FFFFFF;
    border: 1px solid #E15B2D;
    border-radius: 6px;
    padding: 0.8125rem 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.selects-mat-calc-btn-action:hover {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
    transform: scale(1.01);
}

.selects-mat-calc-note {
    font-size: 0.75rem;
    color: #6B7280;
}

.text-accent {
    color: #E15B2D;
}

/* ===== size-fit ===== */
.size-fit-section {
    background-color: #FAFAFA;
    color: #0A0A0A;
}

.size-fit-section .size-fit-badge {
    background-color: #FFF4EE;
    color: #E15B2D;
    border: 1px solid #FBD5C5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.size-fit-section .size-fit-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.2;
}

.size-fit-section .size-fit-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4B5563;
}

.size-fit-section .size-fit-control-panel {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.size-fit-section .size-fit-unit-btn {
    background-color: #F4F4F5;
    color: #4B5563;
    border: 1px solid #E5E7EB;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    transition: all 0.2s ease;
}

.size-fit-section .size-fit-unit-btn.active,
.size-fit-section .size-fit-unit-btn:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.size-fit-section .size-fit-filter-btn {
    background-color: #F9FAFB;
    color: #4B5563;
    border: 1px solid #E5E7EB;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.size-fit-section .size-fit-filter-btn.active,
.size-fit-section .size-fit-filter-btn:hover {
    background-color: #FFF4EE;
    color: #E15B2D;
    border-color: #FBD5C5;
}

.size-fit-section .size-fit-table-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    overflow-x: auto;
}

.size-fit-section .size-fit-table {
    margin-bottom: 0;
    border-collapse: separate;
}

.size-fit-section .size-fit-table thead th {
    background-color: #F9FAFB;
    color: #121212;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #E5E7EB;
    white-space: nowrap;
}

.size-fit-section .size-fit-table tbody td {
    padding: 1.1rem 0.75rem;
    color: #4B5563;
    font-size: 0.9375rem;
    border-bottom: 1px solid #F3F4F6;
}

.size-fit-section .size-fit-table tbody tr:last-child td {
    border-bottom: none;
}

.size-fit-section .size-fit-table tbody tr:hover td {
    background-color: #FDFBF9;
}

.size-fit-section .size-fit-table-link {
    color: #E15B2D;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.size-fit-section .size-fit-table-link:hover {
    color: #C8491C;
}

.size-fit-section .size-fit-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.size-fit-section .size-fit-card:hover {
    transform: translateY(-4px);
    border-color: #0A0A0A;
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.size-fit-section .size-fit-card-icon {
    width: 48px;
    height: 48px;
    background-color: #FFF4EE;
    color: #E15B2D;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.size-fit-section .size-fit-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1875rem;
    font-weight: 600;
    color: #0A0A0A;
}

.size-fit-section .size-fit-card-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4B5563;
}

.size-fit-section .size-fit-advisor-box {
    background-color: #F4F4F5;
    border: 1px solid #E5E7EB;
}

.size-fit-section .size-fit-tag {
    background-color: #0A0A0A;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.size-fit-section .size-fit-advisor-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A0A0A;
}

.size-fit-section .size-fit-advisor-list li {
    line-height: 1.5;
    font-size: 0.9375rem;
}

.size-fit-section .size-fit-calculator {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.size-fit-section .size-fit-calc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A0A0A;
}

.size-fit-section .size-fit-form-label {
    font-size: 0.875rem;
    color: #0A0A0A;
}

.size-fit-section .size-fit-input {
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    color: #0A0A0A;
    padding: 0.6rem 0.85rem;
}

.size-fit-section .size-fit-input:focus {
    border-color: #0A0A0A;
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.size-fit-section .size-fit-calc-btn {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.6rem 1.1rem;
}

.size-fit-section .size-fit-calc-btn:hover {
    background-color: #C8491C;
    border-color: #C8491C;
}

.size-fit-section .size-fit-calc-result {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
}

.size-fit-section .size-fit-cta-strip {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.size-fit-section .size-fit-cta-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.size-fit-section .size-fit-btn-primary {
    background-color: #E15B2D;
    color: #FFFFFF;
    border: 1px solid #E15B2D;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.size-fit-section .size-fit-btn-primary:hover {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
}

.size-fit-section .size-fit-btn-secondary {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border: 1px solid #0A0A0A;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.size-fit-section .size-fit-btn-secondary:hover {
    background-color: #374151;
    border-color: #374151;
    color: #FFFFFF;
}

.size-fit-section .text-accent {
    color: #E15B2D !important;
}

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

    .size-fit-section .size-fit-advisor-title {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .size-fit-section .size-fit-card-title {
        font-size: 1.05rem;
    }

    .size-fit-section .size-fit-cta-heading {
        font-size: 1.05rem;
    }
}

/* ===== exchange ===== */
.tradein-exchange-section {
    background-color: #FAFAFA;
    color: #0A0A0A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tradein-exchange-section .tradein-badge {
    background-color: #FFF4EE;
    border: 1px solid #FBD5C5;
    color: #E15B2D;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.tradein-exchange-section .tradein-badge-sm {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    color: #1F2937;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
}

.tradein-exchange-section .text-primary-accent {
    color: #E15B2D !important;
}

.tradein-exchange-section .tradein-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0A0A0A;
    letter-spacing: -0.02em;
}

.tradein-exchange-section .tradein-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4B5563;
}

.tradein-exchange-section .tradein-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tradein-exchange-section .tradein-card:hover {
    border-color: #D1D5DB;
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
}

.tradein-exchange-section .tradein-card-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #0A0A0A;
    line-height: 1.3;
}

.tradein-exchange-section .tradein-status-pill {
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.tradein-exchange-section .tradein-subtext {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.55;
}

.tradein-exchange-section .tradein-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.35rem;
    display: block;
}

.tradein-exchange-section .tradein-select {
    width: 100%;
    height: 46px;
    padding: 0 0.85rem;
    font-size: 0.9375rem;
    color: #0A0A0A;
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.tradein-exchange-section .tradein-select:focus {
    border-color: #0A0A0A;
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.tradein-exchange-section .tradein-condition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

@media (max-width: 576px) {
    .tradein-exchange-section .tradein-condition-grid {
        grid-template-columns: 1fr;
    }
}

.tradein-exchange-section .tradein-radio-card {
    display: block;
    cursor: pointer;
    margin: 0;
}

.tradein-exchange-section .tradein-radio-card input[type="radio"] {
    display: none;
}

.tradein-exchange-section .tradein-radio-box {
    display: block;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    background-color: #F9FAFB;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    height: 100%;
}

.tradein-exchange-section .tradein-radio-box strong {
    font-size: 0.8125rem;
    color: #0A0A0A;
}

.tradein-exchange-section .tradein-radio-box small {
    font-size: 0.75rem;
    color: #6B7280;
    line-height: 1.3;
    display: block;
    margin-top: 0.25rem;
}

.tradein-exchange-section .tradein-radio-card input[type="radio"]:checked+.tradein-radio-box {
    border-color: #E15B2D;
    background-color: #FFF4EE;
}

.tradein-exchange-section .tradein-radio-card input[type="radio"]:checked+.tradein-radio-box strong {
    color: #E15B2D;
}

.tradein-exchange-section .tradein-result-box {
    background-color: #F4F4F5;
    border: 1px solid #E5E7EB;
}

.tradein-exchange-section .tradein-caption-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 0.05em;
}

.tradein-exchange-section .tradein-estimated-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A0A0A;
}

.tradein-exchange-section .tradein-off-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #E15B2D;
}

.tradein-exchange-section .tradein-saving-note {
    font-size: 0.8125rem;
    color: #374151;
    font-weight: 500;
    margin-top: 0.25rem;
}

.tradein-exchange-section .tradein-step-icon {
    width: 38px;
    height: 38px;
    background-color: #FFF4EE;
    border: 1px solid #FBD5C5;
    color: #E15B2D;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.tradein-exchange-section .tradein-item-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0A0A0A;
}

.tradein-exchange-section .tradein-item-desc {
    font-size: 0.8125rem;
    color: #4B5563;
    line-height: 1.45;
}

.tradein-exchange-section .tradein-shipping-note {
    background-color: #F9FAFB;
    border: 1px dashed #D1D5DB;
    color: #1F2937;
}

.tradein-exchange-section .tradein-step-box {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: border-color 0.25s ease;
}

.tradein-exchange-section .tradein-step-box:hover {
    border-color: #0A0A0A;
}

.tradein-exchange-section .tradein-num-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #E15B2D;
    line-height: 1;
}

.tradein-exchange-section .tradein-step-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0A0A0A;
}

.tradein-exchange-section .tradein-step-text {
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.5;
}

.tradein-exchange-section .tradein-btn-primary {
    background-color: #E15B2D;
    color: #FFFFFF;
    border: 1px solid #E15B2D;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.tradein-exchange-section .tradein-btn-primary:hover {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.tradein-exchange-section .tradein-btn-outline {
    background-color: transparent;
    color: #0A0A0A;
    border: 1px solid #0A0A0A;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.tradein-exchange-section .tradein-btn-outline:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .tradein-exchange-section .tradein-title {
        font-size: 1.75rem;
    }

    .tradein-exchange-section .tradein-lead {
        font-size: 0.9375rem;
    }

    .tradein-exchange-section .tradein-btn-primary,
    .tradein-exchange-section .tradein-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ===== subscription ===== */
.subscription-service-block {
    background-color: #FAFAFA;
    color: #0A0A0A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.subscription-service-block .subscription-badge {
    background-color: #FFF4EE;
    color: #E15B2D;
    border: 1px solid #FBD5C5;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.subscription-service-block .subscription-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0A0A0A;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
    .subscription-service-block .subscription-title {
        font-size: 1.625rem;
    }
}

.subscription-service-block .subscription-subtitle {
    color: #4B5563;
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 680px;
}

.subscription-service-block .subscription-plan-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.subscription-service-block .subscription-plan-card:hover {
    border-color: #0A0A0A;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
}

.subscription-service-block .subscription-plan-card.is-popular {
    border-color: #E15B2D;
    box-shadow: 0 0 0 1px #E15B2D, 0 12px 24px -6px rgba(225, 91, 45, 0.12);
}

.subscription-service-block .subscription-plan-card.is-active {
    border-color: #E15B2D;
    background-color: #FFFFFF;
}

.subscription-service-block .popular-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #E15B2D;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subscription-service-block .plan-type-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4B5563;
    background-color: #F3F4F6;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
}

.subscription-service-block .plan-type-tag.accent {
    background-color: #FFF4EE;
    color: #E15B2D;
}

.subscription-service-block .plan-discount-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #121212;
    background-color: #E5E7EB;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.subscription-service-block .plan-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0A0A0A;
}

.subscription-service-block .plan-description {
    color: #4B5563;
    font-size: 0.875rem;
    line-height: 1.5;
    min-height: 42px;
}

.subscription-service-block .plan-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.subscription-service-block .price-currency {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A0A0A;
}

.subscription-service-block .price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0A0A0A;
    letter-spacing: -0.02em;
}

.subscription-service-block .price-period {
    color: #6B7280;
    font-size: 0.9375rem;
    font-weight: 500;
}

.subscription-service-block .plan-perks li {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

.subscription-service-block .perk-icon {
    color: #E15B2D;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.subscription-service-block .plan-select-btn {
    background-color: #F3F4F6;
    color: #0A0A0A;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.subscription-service-block .plan-select-btn:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.subscription-service-block .subscription-plan-card.is-active .plan-select-btn {
    background-color: #E15B2D;
    color: #FFFFFF;
    border-color: #E15B2D;
}

.subscription-service-block .subscription-plan-card.is-active .plan-select-btn:hover {
    background-color: #C8491C;
    border-color: #C8491C;
}

.subscription-service-block .subscription-form-wrapper {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    max-width: 1080px;
}

.subscription-service-block .selected-plan-indicator {
    background-color: #FFF4EE;
    border-left: 4px solid #E15B2D;
}

.subscription-service-block .indicator-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #E15B2D;
    font-weight: 700;
}

.subscription-service-block .indicator-value {
    font-size: 1.0625rem;
    color: #0A0A0A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 0.25rem;
}

.subscription-service-block .form-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0A0A0A;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.subscription-service-block .form-text-info {
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.subscription-service-block .assurance-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFF4EE;
    color: #E15B2D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.subscription-service-block .assurance-text strong {
    color: #0A0A0A;
    font-size: 0.875rem;
}

.subscription-service-block .assurance-text span {
    color: #6B7280;
    font-size: 0.8125rem;
}

.subscription-service-block .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.375rem;
}

.subscription-service-block .subscription-input {
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    color: #0A0A0A;
    padding: 0.6875rem 1rem 0.6875rem 2.5rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscription-service-block .subscription-input::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.subscription-service-block .subscription-input:focus {
    background-color: #FFFFFF;
    color: #0A0A0A;
    border-color: #0A0A0A;
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
    outline: none;
}

.subscription-service-block .input-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 1rem;
    pointer-events: none;
}

.subscription-service-block .textarea-icon {
    top: 1rem;
    transform: none;
}

.subscription-service-block .subscription-checkbox {
    border-color: #D1D5DB;
    cursor: pointer;
}

.subscription-service-block .subscription-checkbox:checked {
    background-color: #0A0A0A;
    border-color: #0A0A0A;
}

.subscription-service-block .check-label {
    font-size: 0.8125rem;
    color: #4B5563;
    line-height: 1.4;
    cursor: pointer;
}

.subscription-service-block .subscription-submit-btn {
    background-color: #E15B2D;
    color: #FFFFFF;
    border: 1px solid #E15B2D;
    border-radius: 6px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.subscription-service-block .subscription-submit-btn:hover {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.subscription-service-block .subscription-submit-btn:active {
    background-color: #A83C14;
    border-color: #A83C14;
    transform: translateY(1px);
}

/* ===== footer ===== */
.site-footer {
    background-color: #F9FAFB;
    color: #0A0A0A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-color: #E5E7EB !important;
}

.site-footer .site-footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: -0.02em;
}

.site-footer .site-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.site-footer .site-footer-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4B5563;
    font-weight: 600;
}

.site-footer .site-footer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4B5563;
}

.site-footer .site-footer-link {
    color: #4B5563;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
    color: #E15B2D;
    text-decoration: none;
}

.site-footer .site-footer-icon {
    color: #E15B2D;
    font-size: 1rem;
    flex-shrink: 0;
}

.site-footer .site-footer-pay-card {
    font-size: 0.8125rem;
    border-color: #E5E7EB !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    min-height: 38px;
}

.site-footer .site-footer-pay-card i {
    font-size: 1.125rem;
}

.site-footer .site-footer-wa-btn {
    background-color: #121212;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid #121212;
    transition: all 0.2s ease;
}

.site-footer .site-footer-wa-btn:hover {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
}

.site-footer .site-footer-bottom {
    border-color: #E5E7EB !important;
}

.site-footer .site-footer-copy,
.site-footer .site-footer-tagline {
    font-size: 0.8125rem;
    color: #4B5563;
}

@media (max-width: 767.98px) {
    .site-footer .site-footer-heading {
        font-size: 0.875rem;
    }

    .site-footer .site-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

body.catalog-page-body {
    background-color: #FAFAFA;
    color: #0A0A0A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.catalog-hero-block {
    background-color: #FFFFFF;
    border-color: #E5E7EB !important;
}

.catalog-hero-block .catalog-crumb-link {
    color: #4B5563;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.catalog-hero-block .catalog-crumb-link:hover {
    color: #E15B2D;
}

.catalog-hero-block .breadcrumb-item.active {
    color: #0A0A0A;
    font-size: 0.875rem;
    font-weight: 600;
}

.catalog-hero-block .catalog-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    color: #0A0A0A;
    letter-spacing: -0.02em;
}

.catalog-hero-block .catalog-sub-heading {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.5;
}

.catalog-hero-block .catalog-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    background-color: #FFF4EE;
    color: #E15B2D;
    border: 1px solid #FBD5C5;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.catalog-sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.catalog-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0A0A0A;
}

.catalog-reset-btn {
    font-size: 0.8125rem;
    color: #6B7280;
    font-weight: 600;
}

.catalog-reset-btn:hover {
    color: #E15B2D;
}

.catalog-filter-legend {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #0A0A0A;
}

.catalog-search-input-group .input-group-text {
    background-color: #F9FAFB;
    border-color: #E5E7EB;
    color: #6B7280;
}

.catalog-search-input-group .form-control {
    background-color: #FFFFFF;
    border-color: #E5E7EB;
    color: #0A0A0A;
    font-size: 0.875rem;
}

.catalog-search-input-group .form-control:focus {
    border-color: #0A0A0A;
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.catalog-search-input-group .form-control::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.catalog-check-label {
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.catalog-check-label .form-check-input {
    border-color: #D1D5DB;
    cursor: pointer;
}

.catalog-check-label .form-check-input:checked {
    background-color: #0A0A0A;
    border-color: #0A0A0A;
}

.catalog-price-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #E15B2D;
}

.catalog-range-limits small {
    color: #6B7280;
    font-size: 0.75rem;
}

.catalog-apply-btn {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border: 1px solid #0A0A0A;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 6px;
    padding: 0.65rem 1.25rem;
    transition: all 0.2s ease;
}

.catalog-apply-btn:hover {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
}

.catalog-toolbar {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.catalog-toolbar-count {
    font-size: 0.875rem;
    color: #4B5563;
}

.catalog-sort-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A0A0A;
}

.catalog-sort-select {
    font-size: 0.875rem;
    border-color: #E5E7EB;
    color: #0A0A0A;
    background-color: #FFFFFF;
    max-width: 200px;
}

.catalog-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.catalog-card:hover {
    transform: translateY(-4px);
    border-color: #0A0A0A;
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
}

.catalog-card-media {
    background-color: #F9FAFB;
}

.catalog-product-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.catalog-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(10, 10, 10, 0.85);
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.catalog-rating-score {
    font-weight: 700;
    font-size: 0.8125rem;
    color: #0A0A0A;
}

.catalog-rating-count {
    font-size: 0.75rem;
    color: #6B7280;
}

.catalog-stock-status {
    font-size: 0.75rem;
    font-weight: 600;
}

.catalog-stock-status.in-stock {
    color: #15803D;
}

.catalog-product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.catalog-product-title a {
    color: #0A0A0A;
    transition: color 0.2s ease;
}

.catalog-product-title a:hover {
    color: #E15B2D;
}

.catalog-product-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #4B5563;
}

.catalog-spec-list li {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
}

.catalog-product-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.125rem;
    color: #E15B2D;
}

.catalog-add-cart-btn {
    background-color: #E15B2D;
    color: #FFFFFF;
    border: 1px solid #E15B2D;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.catalog-add-cart-btn:hover {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
}

.catalog-modal-content {
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.catalog-modal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0A0A0A;
}

.catalog-btn-primary {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
}

.catalog-btn-primary:hover {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
}

.catalog-btn-secondary {
    background-color: #F3F4F6;
    border-color: #E5E7EB;
    color: #0A0A0A;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
}

.catalog-btn-secondary:hover {
    background-color: #E5E7EB;
    color: #0A0A0A;
}

.catalog-cart-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.catalog-cart-item-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #0A0A0A;
}

.catalog-cart-item-price {
    font-family: 'JetBrains Mono', monospace;
    color: #E15B2D;
    font-size: 0.875rem;
    font-weight: 600;
}

.catalog-summary-label,
.catalog-summary-total-label {
    color: #4B5563;
    font-size: 0.875rem;
}

.catalog-summary-total-val {
    font-family: 'JetBrains Mono', monospace;
    color: #0A0A0A;
    font-size: 1.125rem;
}

@media (max-width: 767.98px) {
    .catalog-hero-block .catalog-main-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .catalog-hero-block .catalog-sub-heading {
        font-size: 0.875rem;
    }

    .catalog-sidebar-title {
        font-size: 1rem;
    }

    .catalog-product-title {
        font-size: 0.875rem;
    }

    .catalog-product-img {
        height: 180px;
    }
}


/* ===== PAGE: about ===== */
.selects-about-page{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;color:#0A0A0A;background-color:#FAFAFA}.selects-about-page h1,.selects-about-page h2,.selects-about-page h3,.selects-about-page .selects-main-title,.selects-about-page .selects-section-title,.selects-about-page .selects-pane-title,.selects-about-page .selects-card-title,.selects-about-page .selects-cta-heading{font-family:'Plus Jakarta Sans',sans-serif;color:#0A0A0A;font-weight:700}.selects-about-page .selects-main-title{font-size:2.25rem;line-height:1.2;letter-spacing:-0.02em}.selects-about-page .selects-section-title{font-size:1.75rem;line-height:1.25;letter-spacing:-0.015em}.selects-about-page .selects-pane-title{font-size:1.375rem;line-height:1.3}.selects-about-page .selects-card-title{font-size:1.125rem;line-height:1.4}.selects-about-page .selects-lead-text{font-size:1.125rem;line-height:1.6;color:#4B5563}.selects-about-page .selects-section-desc{font-size:0.9375rem;line-height:1.55;color:#6B7280}.selects-about-page .selects-badge{background-color:#FFF4EE;color:#E15B2D;border:1px solid #FBD5C5;border-radius:20px;padding:0.35rem 0.85rem;font-size:0.75rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;font-family:'JetBrains Mono',monospace}.selects-about-page .selects-sub-badge{background-color:#F3F4F6;color:#374151;border:1px solid #E5E7EB;border-radius:16px;padding:0.25rem 0.75rem;font-size:0.75rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;font-family:'JetBrains Mono',monospace}.selects-about-page .selects-stat-card{background-color:#FFFFFF;border:1px solid #E5E7EB;border-radius:8px;padding:1.25rem;box-shadow:0 1px 2px 0 rgba(0,0,0,0.04)}.selects-about-page .selects-stat-num{display:block;font-size:1.875rem;font-weight:800;color:#E15B2D;font-family:'Plus Jakarta Sans',sans-serif;line-height:1.1}.selects-about-page .selects-stat-label{font-size:0.8125rem;color:#4B5563;line-height:1.4;margin-top:0.35rem;display:block}.selects-about-page .selects-rounded-img{border-radius:8px;object-fit:cover;border:1px solid #E5E7EB}.selects-about-page .selects-hero-media-wrapper{display:block}.selects-about-page .selects-floating-badge{position:absolute;bottom:1.25rem;left:1.25rem;background:#FFFFFF;border:1px solid #E5E7EB;padding:0.6rem 1rem;border-radius:6px;font-size:0.8125rem;font-weight:600;color:#0A0A0A;box-shadow:0 10px 15px -3px rgba(0,0,0,0.08);display:flex;align-items:center}.selects-about-page .text-accent{color:#E15B2D}.selects-about-page .selects-tab-btn{background:#FFFFFF;border:1px solid #E5E7EB;color:#374151;font-weight:600;font-size:0.875rem;padding:0.65rem 1.25rem;border-radius:6px;transition:all 0.25s cubic-bezier(0.16,1,0.3,1);cursor:pointer;display:inline-flex;align-items:center}.selects-about-page .selects-tab-btn:hover{border-color:#0A0A0A;color:#0A0A0A}.selects-about-page .selects-tab-btn.active{background:#0A0A0A;color:#FFFFFF;border-color:#0A0A0A}.selects-about-page .selects-tab-content-area{background:#FFFFFF;border:1px solid #E5E7EB;border-radius:8px;padding:2rem}.selects-about-page .selects-feature-list li{font-size:0.9375rem;color:#374151;line-height:1.5}.selects-about-page .selects-value-card{background:#FFFFFF;border:1px solid #E5E7EB;border-radius:8px;padding:2rem;transition:all 0.25s cubic-bezier(0.16,1,0.3,1);box-shadow:0 1px 2px 0 rgba(0,0,0,0.04)}.selects-about-page .selects-value-card:hover{border-color:#0A0A0A;transform:translateY(-4px);box-shadow:0 12px 24px -6px rgba(0,0,0,0.08)}.selects-about-page .selects-icon-box{width:46px;height:46px;background:#FFF4EE;color:#E15B2D;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:1.25rem;border:1px solid #FBD5C5}.selects-about-page .selects-cta-strip{background:#F4F4F5;border:1px solid #E5E7EB}.selects-about-page .selects-btn-primary{background-color:#E15B2D;color:#FFFFFF;border:1px solid #E15B2D;border-radius:6px;padding:0.8125rem 1.75rem;font-weight:600;font-family:'Plus Jakarta Sans',sans-serif;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;transition:all 0.25s cubic-bezier(0.16,1,0.3,1)}.selects-about-page .selects-btn-primary:hover{background-color:#C8491C;border-color:#C8491C;color:#FFFFFF;transform:scale(1.01)}.selects-about-page .max-w-700{max-width:700px}@media(max-width:767.98px){.selects-about-page .selects-main-title{font-size:1.125rem}.selects-about-page .selects-section-title{font-size:1rem}.selects-about-page .selects-pane-title{font-size:0.875rem}.selects-about-page .selects-card-title{font-size:0.875rem}.selects-about-page .selects-tab-content-area{padding:1.25rem}.selects-about-page .selects-floating-badge{position:static;margin-top:0.75rem}}

/* ===== PAGE: blog ===== */
.blog-catalog-section {
  background-color: #FAFAFA;
  min-height: 60vh;
}

.blog-catalog-section .blog-header-wrapper {
  max-width: 860px;
}

.blog-catalog-section .blog-accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E15B2D;
  display: inline-block;
}

.blog-catalog-section .blog-badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0A0A0A;
  font-family: 'JetBrains Mono', monospace;
}

.blog-catalog-section .blog-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0A0A0A;
}

.blog-catalog-section .blog-main-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4B5563;
  max-width: 720px;
}

.blog-catalog-section .blog-toolbar-container {
  border-color: #E5E7EB !important;
}

.blog-catalog-section .form-control,
.blog-catalog-section .form-select {
  border-color: #D1D5DB;
  color: #0A0A0A;
  font-size: 0.9375rem;
}

.blog-catalog-section .form-control:focus,
.blog-catalog-section .form-select:focus {
  border-color: #0A0A0A;
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
  outline: none;
}

.blog-catalog-section .form-control::placeholder {
  color: #9CA3AF;
  opacity: 1;
}

.blog-catalog-section .blog-card {
  border-radius: 8px;
  border-color: #E5E7EB !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.blog-catalog-section .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
  border-color: #0A0A0A !important;
}

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

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

.blog-catalog-section .blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-catalog-section .blog-title-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0A0A0A;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.2s ease;
}

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

.blog-catalog-section .blog-read-btn {
  background-color: #0A0A0A;
  color: #FFFFFF;
  border: 1px solid #0A0A0A;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.35rem 0.85rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.blog-catalog-section .blog-read-btn:hover {
  background-color: #E15B2D;
  border-color: #E15B2D;
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .blog-catalog-section .blog-main-title {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .blog-catalog-section .blog-main-lead {
    font-size: 0.9375rem;
  }
  .blog-catalog-section .card-title.h5 {
    font-size: 1.125rem;
    hyphens: auto;
  }
}

/* ===== PAGE: delivery-payment ===== */
.delpay-page { background-color: #FAFAFA; color: #0A0A0A; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.delpay-page .delpay-pill { display: inline-block; background-color: #FFF4EE; color: #E15B2D; border: 1px solid #FBD5C5; padding: 0.35rem 1rem; border-radius: 50px; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.delpay-page .delpay-main-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; color: #0A0A0A; line-height: 1.2; letter-spacing: -0.02em; }
.delpay-page .delpay-lead-desc { font-size: 1.125rem; line-height: 1.6; color: #4B5563; max-width: 720px; }
.delpay-page .delpay-card { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 8px; padding: 2rem; position: relative; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04); }
.delpay-page .delpay-card:hover { transform: translateY(-4px); border-color: #0A0A0A; box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08); }
.delpay-page .delpay-card-featured { border: 2px solid #E15B2D; }
.delpay-page .delpay-featured-tag { position: absolute; top: -12px; right: 20px; background-color: #E15B2D; color: #FFFFFF; font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 4px; letter-spacing: 0.05em; }
.delpay-page .delpay-card-icon { width: 48px; height: 48px; border-radius: 8px; background-color: #F3F4F6; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #0A0A0A; }
.delpay-page .delpay-card-featured .delpay-card-icon { background-color: #FFF4EE; color: #E15B2D; }
.delpay-page .delpay-badge-carrier { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: #6B7280; text-transform: uppercase; }
.delpay-page .delpay-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.375rem; font-weight: 600; color: #0A0A0A; line-height: 1.3; }
.delpay-page .delpay-card-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 700; color: #E15B2D; line-height: 1.2; }
.delpay-page .delpay-currency { font-size: 1.125rem; font-weight: 600; vertical-align: top; margin-right: 2px; }
.delpay-page .delpay-card-eta { font-size: 0.875rem; font-weight: 500; color: #374151; }
.delpay-page .delpay-card-desc { font-size: 0.9375rem; color: #4B5563; line-height: 1.55; margin-bottom: 0; }
.delpay-page .delpay-calc-wrapper { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 12px; padding: 2.5rem; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04); }
.delpay-page .delpay-subheading-tag { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: #E15B2D; text-transform: uppercase; letter-spacing: 0.05em; }
.delpay-page .delpay-section-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 600; color: #0A0A0A; line-height: 1.25; }
.delpay-page .delpay-section-subtext { font-size: 0.9375rem; color: #4B5563; line-height: 1.55; }
.delpay-page .text-accent { color: #E15B2D; }
.delpay-page .delpay-feature-text { font-size: 0.875rem; color: #374151; font-weight: 500; }
.delpay-page .delpay-calc-card { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 8px; padding: 1.75rem; }
.delpay-page .delpay-form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: #1F2937; margin-bottom: 0.35rem; }
.delpay-page .delpay-select, .delpay-page .delpay-input { width: 100%; background-color: #FFFFFF; color: #0A0A0A; border: 1px solid #D1D5DB; border-radius: 6px; padding: 0.65rem 0.875rem; font-size: 0.9375rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.delpay-page .delpay-select:focus, .delpay-page .delpay-input:focus { outline: none; border-color: #0A0A0A; box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15); }
.delpay-page .delpay-select option { background-color: #FFFFFF; color: #0A0A0A; }
.delpay-page .delpay-calc-result { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 6px; padding: 1.25rem; }
.delpay-page .delpay-result-label { font-size: 0.875rem; color: #6B7280; }
.delpay-page .delpay-result-carrier, .delpay-page .delpay-result-time { font-size: 0.875rem; color: #0A0A0A; }
.delpay-page .delpay-result-total-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #0A0A0A; }
.delpay-page .delpay-result-total-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 700; color: #E15B2D; }
.delpay-page .delpay-payment-card, .delpay-page .delpay-process-card { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 8px; padding: 2rem; height: 100%; }
.delpay-page .delpay-method-item { display: flex; align-items: flex-start; gap: 0.875rem; background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 6px; padding: 1rem; height: 100%; }
.delpay-page .delpay-method-icon { font-size: 1.5rem; color: #0A0A0A; line-height: 1; }
.delpay-page .delpay-method-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #0A0A0A; }
.delpay-page .delpay-method-desc { font-size: 0.8125rem; color: #6B7280; line-height: 1.45; }
.delpay-page .delpay-security-note { font-size: 0.8125rem; color: #374151; background: #FFF4EE; border: 1px solid #FBD5C5; border-radius: 6px; padding: 0.75rem 1rem; display: flex; align-items: center; }
.delpay-page .delpay-steps-list { display: flex; flex-direction: column; gap: 1.25rem; }
.delpay-page .delpay-step-item { display: flex; gap: 1rem; align-items: flex-start; }
.delpay-page .delpay-step-number { font-family: 'JetBrains Mono', monospace; font-size: 0.875rem; font-weight: 700; color: #E15B2D; background: #FFF4EE; border: 1px solid #FBD5C5; border-radius: 6px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.delpay-page .delpay-step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #0A0A0A; }
.delpay-page .delpay-step-desc { font-size: 0.875rem; color: #4B5563; line-height: 1.5; }
.delpay-page .delpay-faq-accordion { max-width: 840px; }
.delpay-page .delpay-faq-item { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 6px; margin-bottom: 0.75rem; overflow: hidden; }
.delpay-page .delpay-faq-trigger { width: 100%; background: transparent; border: none; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #0A0A0A; cursor: pointer; transition: color 0.2s ease, background-color 0.2s ease; }
.delpay-page .delpay-faq-trigger:hover { color: #E15B2D; background-color: #F9FAFB; }
.delpay-page .delpay-faq-chevron { font-size: 0.875rem; transition: transform 0.25s ease; color: #6B7280; }
.delpay-page .delpay-faq-item.active .delpay-faq-chevron { transform: rotate(180deg); color: #E15B2D; }
.delpay-page .delpay-faq-body { padding: 0 1.5rem 1.25rem 1.5rem; font-size: 0.9375rem; color: #4B5563; line-height: 1.6; display: none; }
.delpay-page .delpay-faq-item.active .delpay-faq-body { display: block; }
.delpay-page .delpay-inline-link { color: #E15B2D; text-decoration: underline; font-weight: 500; }
.delpay-page .delpay-inline-link:hover { color: #C8491C; }
.delpay-page .delpay-cta-box { background: #0A0A0A; color: #FFFFFF; border-radius: 12px; padding: 3rem 2rem; }
.delpay-page .delpay-cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 700; color: #FFFFFF; }
.delpay-page .delpay-cta-sub { font-size: 1rem; color: #D1D5DB; max-width: 600px; margin-left: auto; margin-right: auto; }
.delpay-page .delpay-cta-btn { background-color: #E15B2D; border-color: #E15B2D; color: #FFFFFF; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; padding: 0.8125rem 2rem; border-radius: 6px; text-decoration: none; display: inline-block; transition: background-color 0.2s ease, transform 0.2s ease; }
.delpay-page .delpay-cta-btn:hover { background-color: #C8491C; border-color: #C8491C; color: #FFFFFF; transform: scale(1.02); }
@media (max-width: 767.98px) { .delpay-page .delpay-main-title { font-size: 1.125rem; hyphens: auto; } .delpay-page .delpay-section-heading { font-size: 1rem; hyphens: auto; } .delpay-page .delpay-card-title, .delpay-page .delpay-cta-title { font-size: 0.875rem; hyphens: auto; } .delpay-page .delpay-calc-wrapper { padding: 1.25rem; } .delpay-page .delpay-card { padding: 1.25rem; } .delpay-page .delpay-payment-card, .delpay-page .delpay-process-card { padding: 1.25rem; } .delpay-page .delpay-cta-box { padding: 2rem 1.25rem; } }

/* ===== PAGE: contact ===== */
.contact-page-block {
  background-color: #FAFAFA;
  color: #1F2937;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.contact-page-block .text-accent {
  color: #E15B2D !important;
}
.contact-page-block .contact-badge {
  background-color: #FFF4EE;
  color: #E15B2D;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid #FBD5C5;
}
.contact-page-block .contact-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #0A0A0A;
  line-height: 1.25;
}
.contact-page-block .contact-lead-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.contact-page-block .contact-info-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.contact-page-block .contact-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0A0A0A;
}
.contact-page-block .contact-icon-box {
  width: 44px;
  height: 44px;
  background-color: #FFF4EE;
  border: 1px solid #FBD5C5;
}
.contact-page-block .contact-item-heading {
  color: #0A0A0A;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.contact-page-block .contact-link {
  color: #0A0A0A;
  transition: color 0.2s ease;
}
.contact-page-block .contact-link:hover {
  color: #E15B2D !important;
}
.contact-page-block .contact-whatsapp-btn {
  background-color: #25D366;
  border: 1px solid #25D366;
  font-weight: 600;
  padding: 0.4rem 1rem;
  transition: background-color 0.2s ease;
}
.contact-page-block .contact-whatsapp-btn:hover {
  background-color: #1EBE5D;
  border-color: #1EBE5D;
  color: #FFFFFF;
}
.contact-page-block .contact-guarantee-box {
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
}
.contact-page-block .contact-form-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.contact-page-block .contact-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0A0A0A;
}
.contact-page-block .contact-form-label {
  font-size: 0.875rem;
  color: #0A0A0A;
}
.contact-page-block .contact-input-icon {
  background-color: #F9FAFB;
  border: 1px solid #D1D5DB;
  border-right: none;
  color: #6B7280;
}
.contact-page-block .contact-form-input {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: #0A0A0A;
  font-size: 0.9375rem;
  padding: 0.65rem 0.875rem;
}
.contact-page-block .contact-form-input:focus {
  background-color: #FFFFFF;
  color: #0A0A0A;
  border-color: #0A0A0A;
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.18);
}
.contact-page-block .contact-form-input::placeholder {
  color: #9CA3AF;
  opacity: 1;
}
.contact-page-block .contact-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-page-block .contact-checkbox:checked {
  background-color: #E15B2D;
  border-color: #E15B2D;
}
.contact-page-block .contact-submit-btn {
  background-color: #E15B2D;
  border: 1px solid #E15B2D;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-page-block .contact-submit-btn:hover {
  background-color: #C8491C;
  border-color: #C8491C;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.contact-page-block .contact-submit-btn:active {
  background-color: #A83C14;
  border-color: #A83C14;
  transform: translateY(0);
}
.contact-page-block .contact-map-wrapper {
  border-color: #E5E7EB !important;
  background-color: #FFFFFF;
}
.contact-page-block .contact-map-frame-container {
  position: relative;
  width: 100%;
  height: 380px;
}
.contact-page-block .contact-map-iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.contact-page-block .contact-feature-card {
  background-color: #FFFFFF;
  border-color: #E5E7EB !important;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.contact-page-block .contact-feature-card:hover {
  border-color: #D1D5DB !important;
  transform: translateY(-2px);
}
.contact-page-block .contact-feature-icon {
  width: 52px;
  height: 52px;
  background-color: #FFF4EE;
  border: 1px solid #FBD5C5;
}

/* ===== PAGE: privacy ===== */
.privacy-policy-section {
  background-color: #FAFAFA;
  min-height: 80vh;
  color: #0A0A0A;
}

.privacy-policy-section .privacy-header-card {
  border-color: #E5E7EB !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.privacy-policy-section .privacy-badge {
  background-color: #F4F4F5 !important;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.privacy-policy-section .privacy-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  font-size: 2rem;
  line-height: 1.25;
}

.privacy-policy-section .privacy-search-box input {
  background-color: #FFFFFF;
  border-color: #D1D5DB;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #0A0A0A;
  transition: all 0.25s ease;
}

.privacy-policy-section .privacy-search-box input:focus {
  border-color: #0A0A0A;
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
  outline: none;
}

.privacy-policy-section .privacy-search-box input::placeholder {
  color: #9CA3AF;
  opacity: 1;
}

.privacy-policy-section .privacy-nav-sticky {
  top: 90px;
  border-color: #E5E7EB !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.privacy-policy-section .privacy-nav-sticky .nav-link {
  color: #4B5563;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.privacy-policy-section .privacy-nav-sticky .nav-link:hover {
  background-color: #F3F4F6;
  color: #E15B2D;
}

.privacy-policy-section .privacy-nav-sticky .nav-link.active {
  background-color: #0A0A0A;
  color: #FFFFFF;
  font-weight: 600;
}

.privacy-policy-section .hover-bg:hover {
  background-color: #F3F4F6;
  color: #E15B2D !important;
}

.privacy-policy-section .privacy-block {
  border-color: #E5E7EB !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  scroll-margin-top: 100px;
}

.privacy-policy-section .privacy-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #FFF4EE;
  color: #E15B2D;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid #FBD5C5;
  flex-shrink: 0;
}

.privacy-policy-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.015em;
  font-size: 1.375rem;
}

.privacy-policy-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.privacy-policy-section .btn-dark {
  background-color: #0A0A0A;
  border-color: #0A0A0A;
  color: #FFFFFF;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.privacy-policy-section .btn-dark:hover {
  background-color: #E15B2D;
  border-color: #E15B2D;
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .privacy-policy-section .privacy-title {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .privacy-policy-section h2 {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .privacy-policy-section h3 {
    font-size: 1rem;
    hyphens: auto;
  }
  .privacy-policy-section .privacy-block {
    padding: 1.25rem !important;
  }
}

/* ===== PAGE: terms ===== */
.terms-content-section {
  background-color: #FAFAFA;
  color: #0A0A0A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.terms-content-section .terms-badge {
  background-color: #FFF4EE;
  border: 1px solid #FBD5C5;
  color: #E15B2D;
  font-size: 0.8125rem;
  font-weight: 600;
}

.terms-content-section .text-accent {
  color: #E15B2D !important;
}

.terms-content-section .border-accent {
  border-color: #E15B2D !important;
}

.terms-content-section .terms-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}

.terms-content-section .terms-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
}

.terms-content-section .terms-meta-badge {
  background-color: #F3F4F6;
  color: #4B5563;
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid #E5E7EB;
}

.terms-content-section .terms-sidebar {
  background-color: #FFFFFF;
  border-color: #E5E7EB !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  top: 90px;
}

.terms-content-section .terms-search-box .form-control {
  font-size: 0.875rem;
  background-color: #FFFFFF;
  color: #0A0A0A;
  border-color: #E5E7EB;
}

.terms-content-section .terms-search-box .form-control:focus {
  border-color: #0A0A0A;
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.terms-content-section .terms-nav-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4B5563;
  transition: all 0.2s ease;
  width: 100%;
}

.terms-content-section .terms-nav-btn:hover {
  background-color: #F3F4F6;
  color: #E15B2D;
}

.terms-content-section .terms-nav-btn.active {
  background-color: #FFF4EE;
  border-color: #FBD5C5;
  color: #E15B2D;
  font-weight: 600;
}

.terms-content-section .terms-link-item {
  background-color: #F9FAFB;
  color: #374151;
  border: 1px solid #E5E7EB;
  transition: all 0.2s ease;
}

.terms-content-section .terms-link-item:hover {
  background-color: #FFFFFF;
  border-color: #0A0A0A;
  color: #E15B2D;
}

.terms-content-section .terms-card {
  background-color: #FFFFFF;
  border-color: #E5E7EB !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.terms-content-section .terms-number-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #E15B2D;
  background-color: #FFF4EE;
  border: 1px solid #FBD5C5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.terms-content-section .terms-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #0A0A0A;
}

.terms-content-section .terms-paragraph {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
}

.terms-content-section .terms-list {
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.65;
}

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

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

.terms-content-section .text-xs {
  font-size: 0.75rem;
}

.terms-content-section .text-sm {
  font-size: 0.875rem;
}

@media (max-width: 767.98px) {
  .terms-content-section .terms-title {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .terms-content-section .terms-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .terms-content-section .terms-card {
    padding: 1.25rem !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.selects-disclaimer-section {
  background-color: #FAFAFA;
  color: #0A0A0A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.selects-disclaimer-section .text-accent {
  color: #E15B2D !important;
}

.selects-disclaimer-section .selects-disclaimer-badge {
  background-color: #FFF4EE;
  color: #E15B2D;
  border: 1px solid #FBD5C5;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
}

.selects-disclaimer-section .selects-disclaimer-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.selects-disclaimer-section .selects-disclaimer-lead {
  font-size: 1.0625rem;
  color: #4B5563;
  line-height: 1.6;
}

.selects-disclaimer-section .selects-disclaimer-meta {
  font-size: 0.8125rem;
  font-family: 'JetBrains Mono', monospace;
  color: #6B7280;
}

.selects-disclaimer-section h2,
.selects-disclaimer-section h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0A0A0A;
  font-weight: 600;
}

.selects-disclaimer-section .selects-disclaimer-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.selects-disclaimer-section .selects-disclaimer-block {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.75rem;
}

.selects-disclaimer-section .selects-disclaimer-list li strong {
  color: #0A0A0A;
}

.selects-disclaimer-section .selects-disclaimer-links {
  background-color: #F9FAFB !important;
  border-color: #E5E7EB !important;
}

.selects-disclaimer-section .selects-policy-link {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.selects-disclaimer-section .selects-policy-link:hover {
  border-color: #0A0A0A;
  color: #E15B2D;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767.98px) {
  .selects-disclaimer-section .selects-disclaimer-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .selects-disclaimer-section h2 {
    font-size: 1rem;
    hyphens: auto;
  }
  .selects-disclaimer-section h3 {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .selects-disclaimer-section .selects-disclaimer-block {
    padding: 1.25rem;
  }
}

/* ===== PAGE: refund ===== */
.refund-page-section {
  background-color: #FAFAFA;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0A0A0A;
}

.refund-page-section .text-accent {
  color: #E15B2D !important;
}

.refund-page-section .refund-status-badge {
  background-color: #FFF4EE;
  border: 1px solid #FBD5C5;
  border-radius: 9999px;
  color: #E15B2D;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

.refund-page-section .refund-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}

.refund-page-section .refund-lead-text {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 800px;
}

.refund-page-section .refund-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.refund-page-section .refund-feature-card:hover {
  transform: translateY(-4px);
  border-color: #0A0A0A;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.refund-page-section .refund-icon-box {
  width: 52px;
  height: 52px;
  background-color: #FFF4EE;
  border: 1px solid #FBD5C5;
}

.refund-page-section .refund-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A0A0A;
}

.refund-page-section .policy-section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: #E15B2D;
}

.refund-page-section .policy-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #0A0A0A;
}

.refund-page-section .policy-subcard {
  background-color: #F9FAFB;
}

.refund-page-section .process-number-badge {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
}

.refund-page-section .btn-primary {
  background-color: #E15B2D;
  border-color: #E15B2D;
  color: #FFFFFF;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.refund-page-section .btn-primary:hover {
  background-color: #C8491C;
  border-color: #C8491C;
  transform: translateY(-1px);
}

.refund-page-section .form-control:focus,
.refund-page-section .form-select:focus {
  border-color: #0A0A0A;
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.2);
}

.refund-page-section .accordion-button:not(.collapsed) {
  background-color: #FFF4EE;
  color: #E15B2D;
}

.refund-page-section .accordion-button::after {
  background-size: 1rem;
}

.refund-page-section .accordion-item {
  border-color: #E5E7EB;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .refund-page-section .refund-main-title {
    font-size: 1.75rem;
  }
  .refund-page-section .policy-heading {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: delivery ===== */
.delivery-details-section {
  background-color: #FAFAFA;
  color: #0A0A0A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.delivery-details-section .delivery-main-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  line-height: 1.2;
}

.delivery-details-section .delivery-subtitle {
  color: #4B5563;
  font-size: 1.05rem;
  max-width: 800px;
  line-height: 1.6;
}

.delivery-details-section .text-accent {
  color: #E15B2D !important;
}

.delivery-details-section .delivery-link {
  color: #E15B2D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.delivery-details-section .delivery-link:hover {
  color: #C8491C;
  text-decoration: underline;
}

.delivery-details-section .delivery-method-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.delivery-details-section .delivery-method-card:hover {
  transform: translateY(-4px);
  border-color: #0A0A0A;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
}

.delivery-details-section .delivery-method-featured {
  border: 1px solid #E15B2D;
  background-color: #FFFFFF;
}

.delivery-details-section .delivery-badge {
  background-color: #F3F4F6;
  color: #0A0A0A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.delivery-details-section .delivery-badge-featured {
  background-color: #FFF4EE;
  color: #E15B2D;
  border: 1px solid #FBD5C5;
}

.delivery-details-section .delivery-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A0A0A;
}

.delivery-details-section .delivery-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #0A0A0A;
}

.delivery-details-section .delivery-card-desc {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.delivery-details-section .delivery-spec-list li {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.delivery-details-section .delivery-calculator-widget,
.delivery-details-section .delivery-tracker-widget {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.delivery-details-section .delivery-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF4EE;
  border-radius: 8px;
}

.delivery-details-section .form-select,
.delivery-details-section .form-control {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: #0A0A0A;
  font-size: 0.9375rem;
  border-radius: 6px;
  padding: 0.625rem 0.875rem;
}

.delivery-details-section .form-select:focus,
.delivery-details-section .form-control:focus {
  border-color: #0A0A0A;
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
  outline: none;
}

.delivery-details-section .delivery-calc-result {
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
}

.delivery-details-section .delivery-status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.delivery-details-section .delivery-tracker-status-box {
  background-color: #F4F4F5;
  border: 1px solid #E5E7EB;
}

.delivery-details-section .delivery-step-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  transition: border-color 0.25s ease;
}

.delivery-details-section .delivery-step-card:hover {
  border-color: #0A0A0A;
}

.delivery-details-section .delivery-step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: #E15B2D;
  background-color: #FFF4EE;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.delivery-details-section .delivery-policy-block {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.delivery-details-section .delivery-accordion .accordion-item {
  border: 1px solid #E5E7EB;
  border-radius: 8px !important;
  overflow: hidden;
  background-color: #FFFFFF;
}

.delivery-details-section .delivery-accordion .accordion-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0A0A0A;
  background-color: #FFFFFF;
  padding: 1rem 1.25rem;
}

.delivery-details-section .delivery-accordion .accordion-button:not(.collapsed) {
  color: #E15B2D;
  background-color: #FFF4EE;
  box-shadow: none;
}

.delivery-details-section .delivery-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.delivery-details-section .delivery-cta-banner {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

.delivery-details-section .btn-primary {
  background-color: #E15B2D;
  border-color: #E15B2D;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.delivery-details-section .btn-primary:hover {
  background-color: #C8491C;
  border-color: #C8491C;
  transform: scale(1.01);
}

.delivery-details-section .btn-primary:active {
  background-color: #A83C14;
  border-color: #A83C14;
  transform: scale(0.99);
}

.delivery-details-section .btn-outline-dark {
  border-color: #0A0A0A;
  color: #0A0A0A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.delivery-details-section .btn-outline-dark:hover {
  background-color: #0A0A0A;
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .delivery-details-section .delivery-main-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .delivery-details-section h2 {
    font-size: 1rem;
    hyphens: auto;
  }
  .delivery-details-section h3 {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.review-card {
    border-color: #E5E7EB !important;
    background-color: #FFFFFF;
    transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    border-color: #0A0A0A !important;
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03) !important;
}

.review-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid #E5E7EB;
}

.review-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0A0A0A !important;
    letter-spacing: -0.01em;
}

.review-verified-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    background-color: #F9FAFB !important;
    border-color: #E5E7EB !important;
    color: #374151 !important;
}

.review-rating-stars i {
    font-size: 0.875rem;
    color: #E15B2D !important;
}

.review-date {
    font-size: 0.8125rem;
    color: #6B7280 !important;
}

.review-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    color: #0A0A0A !important;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4B5563 !important;
}

.review-card-footer {
    border-top-color: #F3F4F6 !important;
}

.review-action-btn {
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.8125rem;
    color: #6B7280 !important;
    background: transparent;
    transition: all 0.2s ease;
}

.review-action-btn:hover {
    background-color: #F3F4F6;
    color: #0A0A0A !important;
    border-color: #E5E7EB;
}

.review-reply-toggle {
    background-color: #FFF4EE;
    border: 1px solid #FBD5C5;
    color: #E15B2D !important;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.review-reply-toggle:hover {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF !important;
}

.reply-comment-wrapper {
    border-left: 2px solid #E5E7EB !important;
}

.reply-comment-card {
    background-color: #F9FAFB !important;
    border-color: #E5E7EB !important;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.reply-comment-card:hover {
    border-color: #D1D5DB !important;
    background-color: #FFFFFF !important;
}

.reply-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border: 1px solid #E5E7EB;
}

.reply-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A0A0A !important;
}

.reply-staff-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    background-color: #0A0A0A !important;
    color: #FFFFFF !important;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.reply-date {
    font-size: 0.75rem;
    color: #6B7280 !important;
}

.reply-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #4B5563 !important;
}


/* ===== PAGE TEMPLATE: catalog ===== */
.selects-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    z-index: 1020;
}

.selects-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #FFFFFF;
}

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

.selects-header .selects-header-brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: #0A0A0A;
}

.selects-header .selects-header-nav-list {
    gap: 0.25rem;
}

.selects-header .selects-header-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.selects-header .selects-header-nav-link:hover,
.selects-header .selects-header-nav-link:focus {
    color: #E15B2D;
    background-color: #FFF4EE;
}

.selects-header .selects-header-phone {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0A0A0A;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.selects-header .selects-header-phone:hover,
.selects-header .selects-header-phone:focus {
    color: #E15B2D;
    background-color: #FFF4EE;
}

.selects-header .selects-header-phone-icon {
    color: #E15B2D;
    font-size: 0.95rem;
}

.selects-header .selects-header-cart-btn {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    color: #0A0A0A;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.selects-header .selects-header-cart-btn:hover,
.selects-header .selects-header-cart-btn:focus {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.selects-header .selects-header-toggler {
    border: 1px solid #E5E7EB;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.selects-header .selects-header-toggler:focus {
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.25);
}

.site-footer {
    background-color: #F9FAFB;
    color: #0A0A0A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-color: #E5E7EB !important;
}

.site-footer .site-footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: -0.02em;
}

.site-footer .site-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.site-footer .site-footer-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4B5563;
    font-weight: 600;
}

.site-footer .site-footer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4B5563;
}

.site-footer .site-footer-link {
    color: #4B5563;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
    color: #E15B2D;
    text-decoration: none;
}

.site-footer .site-footer-icon {
    color: #E15B2D;
    font-size: 1rem;
    flex-shrink: 0;
}

.site-footer .site-footer-pay-card {
    font-size: 0.8125rem;
    border-color: #E5E7EB !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    min-height: 38px;
}

.site-footer .site-footer-pay-card i {
    font-size: 1.125rem;
}

.site-footer .site-footer-wa-btn {
    background-color: #121212;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid #121212;
    transition: all 0.2s ease;
}

.site-footer .site-footer-wa-btn:hover {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
}

.site-footer .site-footer-bottom {
    border-color: #E5E7EB !important;
}

.site-footer .site-footer-copy,
.site-footer .site-footer-tagline {
    font-size: 0.8125rem;
    color: #4B5563;
}

.blog-detail-template {
    background-color: #FAFAFA;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.blog-detail-template .blog-detail-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0A0A0A;
}

.blog-detail-template .blog-author-avatar-placeholder {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.blog-detail-template .blog-share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.blog-detail-template .blog-share-btn:hover {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
}

.blog-detail-template .blog-featured-image {
    height: auto;
    max-height: 480px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.blog-detail-template .blog-prose h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #0A0A0A;
}

.blog-detail-template .blog-prose h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0A0A0A;
}

.blog-detail-template .blog-prose p {
    color: #374151;
    line-height: 1.75;
}

.blog-detail-template .blog-highlight-box {
    border-left-color: #E15B2D !important;
    background-color: #FFF4EE !important;
}

.blog-detail-template .blog-input {
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    color: #0A0A0A;
}

.blog-detail-template .blog-input::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.blog-detail-template .blog-input:focus {
    border-color: #0A0A0A;
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.blog-detail-template .btn-primary {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.blog-detail-template .btn-primary:hover,
.blog-detail-template .btn-primary:focus {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
}

.blog-detail-template .review-avatar,
.blog-detail-template .reply-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.blog-detail-template .review-author-name,
.blog-detail-template .reply-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.blog-detail-template .review-title {
    font-size: 1rem;
}

.blog-detail-template .review-action-btn {
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    transition: all 0.2s ease;
}

.blog-detail-template .review-action-btn:hover {
    background-color: #FFFFFF;
    color: #0A0A0A !important;
    border-color: #0A0A0A;
}

.blog-detail-template .review-action-btn.active {
    background-color: #FFF4EE;
    color: #E15B2D !important;
    border-color: #E15B2D;
}

.blog-detail-template .review-reply-toggle {
    background-color: transparent;
    border: 1px solid #E5E7EB;
    color: #374151;
    transition: all 0.2s ease;
}

.blog-detail-template .review-reply-toggle:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.blog-detail-template .recent-post-link {
    transition: color 0.2s ease;
}

.blog-detail-template .recent-post-link:hover {
    color: #E15B2D !important;
}

@media (max-width: 767.98px) {
    .blog-detail-template .blog-detail-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .blog-detail-template .blog-prose h2 {
        font-size: 1rem;
        hyphens: auto;
    }

    .blog-detail-template .blog-prose h3 {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .blog-detail-template .blog-author-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-detail-template .blog-share-toolbar {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.selects-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    z-index: 1020;
}

.selects-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #FFFFFF;
}

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

.selects-header .selects-header-brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: #0A0A0A;
}

.selects-header .selects-header-nav-list {
    gap: 0.25rem;
}

.selects-header .selects-header-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.selects-header .selects-header-nav-link:hover,
.selects-header .selects-header-nav-link:focus {
    color: #E15B2D;
    background-color: #FFF4EE;
}

.selects-header .selects-header-phone {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0A0A0A;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.selects-header .selects-header-phone:hover,
.selects-header .selects-header-phone:focus {
    color: #E15B2D;
    background-color: #FFF4EE;
}

.selects-header .selects-header-phone-icon {
    color: #E15B2D;
    font-size: 0.95rem;
}

.selects-header .selects-header-cart-btn {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    color: #0A0A0A;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.selects-header .selects-header-cart-btn:hover,
.selects-header .selects-header-cart-btn:focus {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.selects-header .selects-header-toggler {
    border: 1px solid #E5E7EB;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.selects-header .selects-header-toggler:focus {
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.25);
}

.site-footer {
    background-color: #F9FAFB;
    color: #0A0A0A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-color: #E5E7EB !important;
}

.site-footer .site-footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: -0.02em;
}

.site-footer .site-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.site-footer .site-footer-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4B5563;
    font-weight: 600;
}

.site-footer .site-footer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4B5563;
}

.site-footer .site-footer-link {
    color: #4B5563;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.site-footer .site-footer-link:hover,
.site-footer .site-footer-link:focus {
    color: #E15B2D;
    text-decoration: none;
}

.site-footer .site-footer-icon {
    color: #E15B2D;
    font-size: 1rem;
    flex-shrink: 0;
}

.site-footer .site-footer-pay-card {
    font-size: 0.8125rem;
    border-color: #E5E7EB !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    min-height: 38px;
}

.site-footer .site-footer-pay-card i {
    font-size: 1.125rem;
}

.site-footer .site-footer-wa-btn {
    background-color: #121212;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid #121212;
    transition: all 0.2s ease;
}

.site-footer .site-footer-wa-btn:hover {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
}

.site-footer .site-footer-bottom {
    border-color: #E5E7EB !important;
}

.site-footer .site-footer-copy,
.site-footer .site-footer-tagline {
    font-size: 0.8125rem;
    color: #4B5563;
}

.blog-detail-template {
    background-color: #FAFAFA;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.blog-detail-template .blog-detail-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0A0A0A;
}

.blog-detail-template .blog-author-avatar-placeholder {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.blog-detail-template .blog-share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.blog-detail-template .blog-share-btn:hover {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
}

.blog-detail-template .blog-featured-image {
    height: auto;
    max-height: 480px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.blog-detail-template .blog-prose h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #0A0A0A;
}

.blog-detail-template .blog-prose h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0A0A0A;
}

.blog-detail-template .blog-prose p {
    color: #374151;
    line-height: 1.75;
}

.blog-detail-template .blog-highlight-box {
    border-left-color: #E15B2D !important;
    background-color: #FFF4EE !important;
}

.blog-detail-template .blog-input {
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    color: #0A0A0A;
}

.blog-detail-template .blog-input::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.blog-detail-template .blog-input:focus {
    border-color: #0A0A0A;
    box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.15);
}

.blog-detail-template .btn-primary {
    background-color: #E15B2D;
    border-color: #E15B2D;
    color: #FFFFFF;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.blog-detail-template .btn-primary:hover,
.blog-detail-template .btn-primary:focus {
    background-color: #C8491C;
    border-color: #C8491C;
    color: #FFFFFF;
}

.blog-detail-template .review-avatar,
.blog-detail-template .reply-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.blog-detail-template .review-author-name,
.blog-detail-template .reply-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.blog-detail-template .review-title {
    font-size: 1rem;
}

.blog-detail-template .review-action-btn {
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    transition: all 0.2s ease;
}

.blog-detail-template .review-action-btn:hover {
    background-color: #FFFFFF;
    color: #0A0A0A !important;
    border-color: #0A0A0A;
}

.blog-detail-template .review-action-btn.active {
    background-color: #FFF4EE;
    color: #E15B2D !important;
    border-color: #E15B2D;
}

.blog-detail-template .review-reply-toggle {
    background-color: transparent;
    border: 1px solid #E5E7EB;
    color: #374151;
    transition: all 0.2s ease;
}

.blog-detail-template .review-reply-toggle:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
}

.blog-detail-template .recent-post-link {
    transition: color 0.2s ease;
}

.blog-detail-template .recent-post-link:hover {
    color: #E15B2D !important;
}

@media (max-width: 767.98px) {
    .blog-detail-template .blog-detail-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .blog-detail-template .blog-prose h2 {
        font-size: 1rem;
        hyphens: auto;
    }

    .blog-detail-template .blog-prose h3 {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .blog-detail-template .blog-author-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-detail-template .blog-share-toolbar {
        width: 100%;
        justify-content: flex-start;
    }
}
/* ===== range slider filled track ===== */
.form-range {
    --range-fill-pct: 0%;
}

.form-range::-webkit-slider-runnable-track {
    background: linear-gradient(to right, var(--color-accent-primary) 0%, var(--color-accent-primary) var(--range-fill-pct), #DEE2E6 var(--range-fill-pct), #DEE2E6 100%);
}

.form-range::-moz-range-track {
    background: #DEE2E6;
}

.form-range::-moz-range-progress {
    background: var(--color-accent-primary);
}

/* ===== size-fit calculator result flash ===== */
.size-fit-section .size-fit-calc-result.size-fit-calc-flash {
    animation: sizeFitCalcFlash 0.6s ease;
}

@keyframes sizeFitCalcFlash {
    0% {
        background-color: rgba(225, 91, 45, 0.18);
        border-color: #E15B2D;
    }

    100% {
        background-color: #F9FAFB;
        border-color: #E5E7EB;
    }
}
