:root {
    --primary: #1E40AF;
    --primary-light: #DBEAFE;
    --primary-dark: #172554;
    --accent-teal: #0F766E;
    --accent-teal-light: #CCFBF1;
    --accent-teal-dark: #134E4A;
    --bg-main: #F8FAFC;
    --bg-subtle: #F0FDF4;
    --bg-card: #FFFFFF;
    --bg-pastel-gradient: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --border-subtle: #E2E8F0;
    --border-accent: #BAE6FD;
    --badge-bg: #E0F2FE;
    --badge-text: #0369A1;
    --rating-star: #F59E0B;
    --surface-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07), 0 4px 12px -2px rgba(30, 64, 175, 0.04);
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

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

a:hover {
    color: var(--accent-teal);
}

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

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

.btn-primary:hover {
    background-color: #115E59 !important;
    border-color: #115E59 !important;
}

/* ===== header ===== */
.site-header-block {
    background-color: #FFFFFF;
    border-bottom-color: #E2E8F0;
    z-index: 1030
}

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

.site-header-block .brand-title {
    color: #172554;
    letter-spacing: -0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700
}

.site-header-block .text-primary-dark {
    color: #172554
}

.site-header-block .text-teal {
    color: #0F766E
}

.site-header-block .bg-teal {
    background-color: #0F766E
}

.site-header-block .text-dark-slate {
    color: #0F172A
}

.site-header-block .nav-link {
    color: #0F172A;
    font-size: 0.95rem;
    transition: none;
    border-radius: 9999px
}

.site-header-block .nav-link:hover,
.site-header-block .nav-link:focus {
    color: #0F766E;
    background-color: #F0FDFA
}

.site-header-block .contact-wa-link {
    background-color: #EFF6FF;
    border: 1px solid #BAE6FD;
    color: #0F172A;
    transition: none;
    font-size: 0.875rem
}

.site-header-block .contact-wa-link:hover {
    background-color: #DBEAFE;
    color: #1E40AF
}

.site-header-block .cart-action-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    padding: 0
}

.site-header-block .cart-action-btn:hover {
    border-color: #0F766E;
    background-color: #F0FDFA
}

.site-header-block .cart-count-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 14px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    z-index: 2;
}

.site-header-block .navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid #BAE6FD
}

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

    .site-header-block .nav-link {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        border-radius: 8px
    }
}

/* ===== hero ===== */
.tunderbits-hero-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    overflow: hidden;
    position: relative;
}

.tunderbits-hero-section .tunderbits-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tunderbits-hero-section .tunderbits-hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background-color: #E0F2FE;
    color: #0369A1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1px solid #BAE6FD;
}

.tunderbits-hero-section .tunderbits-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin: 0;
    hyphens: auto;
}

@media (max-width: 767.98px) {
    .tunderbits-hero-section .tunderbits-hero-title {
        font-size: 18px;
    }
}

.tunderbits-hero-section .tunderbits-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.tunderbits-hero-section .tunderbits-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
    .tunderbits-hero-section .tunderbits-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .tunderbits-hero-section .tunderbits-btn-primary,
    .tunderbits-hero-section .tunderbits-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

.tunderbits-hero-section .tunderbits-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0F766E;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
    min-height: 48px;
}

.tunderbits-hero-section .tunderbits-btn-primary:hover {
    background-color: #115E59;
    color: #FFFFFF;
}

.tunderbits-hero-section .tunderbits-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #DBEAFE;
    color: #1E40AF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    border: 1px solid #BAE6FD;
    min-height: 48px;
}

.tunderbits-hero-section .tunderbits-btn-secondary:hover {
    background-color: #BFDBFE;
    color: #1E40AF;
}

.tunderbits-hero-section .tunderbits-hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E2E8F0;
}

@media (max-width: 767.98px) {
    .tunderbits-hero-section .tunderbits-hero-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.tunderbits-hero-section .tunderbits-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tunderbits-hero-section .tunderbits-highlight-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #CCFBF1;
    color: #0F766E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.tunderbits-hero-section .tunderbits-highlight-text {
    display: flex;
    flex-direction: column;
}

.tunderbits-hero-section .tunderbits-highlight-text strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    color: #0F172A;
    font-weight: 700;
    line-height: 1.2;
}

.tunderbits-hero-section .tunderbits-highlight-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #475569;
}

.tunderbits-hero-section .tunderbits-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.tunderbits-hero-section .tunderbits-image-backdrop {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    background: linear-gradient(145deg, #FFFFFF 0%, #E0F2FE 100%);
    border: 1px solid #BAE6FD;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -10px rgba(15, 118, 110, 0.08);
}

.tunderbits-hero-section .tunderbits-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.tunderbits-hero-section .tunderbits-floating-spec {
    position: absolute;
    bottom: 0;
    left: 10%;
    background: #FFFFFF;
    border: 1px solid #CCFBF1;
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.12);
}

@media (max-width: 575.98px) {
    .tunderbits-hero-section .tunderbits-floating-spec {
        left: 5%;
        bottom: -0.5rem;
        padding: 0.5rem 0.85rem;
    }
}

.tunderbits-hero-section .tunderbits-spec-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0F766E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.tunderbits-hero-section .tunderbits-spec-content {
    display: flex;
    flex-direction: column;
}

.tunderbits-hero-section .tunderbits-spec-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}

.tunderbits-hero-section .tunderbits-spec-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #475569;
}

/* ===== bestsellers ===== */
.tb-bestsellers-section {
    background: #F8FAFC;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tb-bestsellers-section .tb-badge-pill {
    background-color: #E0F2FE;
    color: #0369A1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tb-bestsellers-section .tb-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.tb-bestsellers-section .tb-section-subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.tb-bestsellers-section .tb-product-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05);
    position: relative;
}

.tb-bestsellers-section .tb-card-badge-wrap {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
}

.tb-bestsellers-section .tb-tag-highlight {
    background-color: #CCFBF1;
    color: #0F766E;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    display: inline-block;
}

.tb-bestsellers-section .tb-card-media-link {
    display: block;
    text-decoration: none;
}

.tb-bestsellers-section .tb-card-img-wrap {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.tb-bestsellers-section .tb-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tb-bestsellers-section .tb-card-body {
    padding: 0;
}

.tb-bestsellers-section .tb-rating-stars {
    color: #F59E0B;
    font-size: 0.875rem;
    display: flex;
    gap: 2px;
}

.tb-bestsellers-section .tb-rating-val {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0F172A;
}

.tb-bestsellers-section .tb-product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.tb-bestsellers-section .tb-title-link {
    color: #0F172A;
    text-decoration: none;
}

.tb-bestsellers-section .tb-title-link:hover {
    color: #1E40AF;
}

.tb-bestsellers-section .tb-product-specs {
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.45;
    min-height: 2.5rem;
}

.tb-bestsellers-section .tb-stock-info {
    font-size: 0.75rem;
    font-weight: 600;
}

.tb-bestsellers-section .tb-icon-stock {
    color: #0F766E;
    font-size: 0.875rem;
}

.tb-bestsellers-section .tb-stock-text {
    color: #0F766E;
}

.tb-bestsellers-section .tb-price-box {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px solid #F1F5F9;
    padding-top: 0.75rem;
}

.tb-bestsellers-section .tb-price-label {
    font-size: 0.75rem;
    color: #475569;
    text-transform: uppercase;
    font-weight: 600;
}

.tb-bestsellers-section .tb-price-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
}

.tb-bestsellers-section .tb-btn-add {
    background-color: #0F766E;
    color: #FFFFFF;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    width: 100%;
    border: none;
    text-align: center;
}

.tb-bestsellers-section .tb-btn-add:hover {
    background-color: #115E59;
    color: #FFFFFF;
}

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

    .tb-bestsellers-section .tb-product-title {
        font-size: 14px;
        hyphens: auto;
    }

    .tb-bestsellers-section .tb-product-specs {
        min-height: auto;
    }
}

/* ===== ready-solutions ===== */
.tb-ready-solutions {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tb-ready-solutions .max-w-700 {
    max-width: 700px;
}

.tb-ready-solutions .tb-solutions-badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.tb-ready-solutions .tb-solutions-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.25;
    color: #0F172A;
}

.tb-ready-solutions .tb-solutions-lead {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.tb-ready-solutions .tb-filter-wrapper {
    background-color: #EFF6FF;
    border: 1px solid #BAE6FD;
}

.tb-ready-solutions .tb-filter-btn {
    border: none;
    background: transparent;
    color: #1E40AF;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.45rem 1.15rem;
    border-radius: 9999px;
    cursor: pointer;
}

.tb-ready-solutions .tb-filter-btn.active {
    background-color: #0F766E;
    color: #FFFFFF;
}

.tb-ready-solutions .tb-solution-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05);
    position: relative;
}

.tb-ready-solutions .tb-card-badge-wrap {
    margin-bottom: 0.75rem;
}

.tb-ready-solutions .tb-card-tag {
    background-color: #CCFBF1;
    color: #0F766E;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
}

.tb-ready-solutions .tb-card-tag.tb-tag-premium {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.tb-ready-solutions .tb-card-tag.tb-tag-studio {
    background-color: #F1F5F9;
    color: #334155;
}

.tb-ready-solutions .tb-img-frame {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    border-radius: 16px;
    padding: 1rem;
    height: 200px;
    text-decoration: none;
}

.tb-ready-solutions .tb-product-img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
}

.tb-ready-solutions .tb-star-icon {
    color: #F59E0B;
    font-size: 0.875rem;
}

.tb-ready-solutions .tb-rating-num {
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
}

.tb-ready-solutions .tb-product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.tb-ready-solutions .tb-title-link {
    color: #0F172A;
    text-decoration: none;
}

.tb-ready-solutions .tb-title-link:hover {
    color: #0F766E;
}

.tb-ready-solutions .tb-product-desc {
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
}

.tb-ready-solutions .tb-spec-list {
    font-size: 0.8125rem;
    color: #334155;
}

.tb-ready-solutions .tb-check-icon {
    color: #0F766E;
    font-size: 1rem;
    font-weight: 700;
}

.tb-ready-solutions .tb-price-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748B;
}

.tb-ready-solutions .tb-price-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F766E;
}

.tb-ready-solutions .tb-btn-cart {
    background-color: #0F766E;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.5rem 0.875rem;
    border: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.tb-ready-solutions .tb-btn-cart:hover,
.tb-ready-solutions .tb-btn-cart:focus {
    background-color: #115E59;
    color: #FFFFFF;
}

.tb-ready-solutions .tb-btn-view-all {
    background-color: #1E40AF;
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.tb-ready-solutions .tb-btn-view-all:hover,
.tb-ready-solutions .tb-btn-view-all:focus {
    background-color: #172554;
    color: #FFFFFF;
}

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

    .tb-ready-solutions .tb-product-title {
        font-size: 1rem;
    }
}

/* ===== corporate-clients ===== */
.tunder-corporate-b2b {
    background-color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
}

.tunder-corporate-b2b .tunder-b2b-badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    letter-spacing: 0.02em
}

.tunder-corporate-b2b .tunder-b2b-title {
    color: #0F172A;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.25
}

.tunder-corporate-b2b .tunder-b2b-subtitle {
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.tunder-corporate-b2b .tunder-b2b-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05);
    transition: none
}

.tunder-corporate-b2b .tunder-b2b-card:hover {
    border-color: #BAE6FD;
    background: #FFFFFF
}

.tunder-corporate-b2b .tunder-b2b-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EFF6FF 0%, #CCFBF1 100%);
    color: #0F766E;
    font-size: 1.5rem;
    border: 1px solid #CCFBF1
}

.tunder-corporate-b2b .tunder-b2b-card-title {
    color: #0F172A;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3
}

.tunder-corporate-b2b .tunder-b2b-card-text {
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6
}

.tunder-corporate-b2b .tunder-b2b-banner {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    border: 1px solid #BAE6FD;
    border-radius: 24px;
    box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07)
}

.tunder-corporate-b2b .tunder-b2b-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0F766E;
    display: inline-block
}

.tunder-corporate-b2b .tunder-b2b-status-text {
    color: #0F766E;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.tunder-corporate-b2b .tunder-b2b-banner-title {
    color: #0F172A;
    font-weight: 800;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    line-height: 1.3
}

.tunder-corporate-b2b .tunder-b2b-banner-desc {
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6
}

.tunder-corporate-b2b .tunder-b2b-contact-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px
}

.tunder-corporate-b2b .tunder-b2b-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #DBEAFE;
    color: #1E40AF;
    font-size: 1.2rem;
    flex-shrink: 0
}

.tunder-corporate-b2b .tunder-b2b-contact-label {
    color: #64748B;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px
}

.tunder-corporate-b2b .tunder-b2b-contact-link {
    color: #0F172A;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    word-break: break-all
}

.tunder-corporate-b2b .tunder-b2b-contact-link:hover {
    color: #0F766E
}

.tunder-corporate-b2b .tunder-b2b-btn-primary {
    background-color: #0F766E;
    color: #FFFFFF;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
    text-decoration: none
}

.tunder-corporate-b2b .tunder-b2b-btn-primary:hover {
    background-color: #115E59;
    color: #FFFFFF
}

@media (max-width:767.98px) {
    .tunder-corporate-b2b .tunder-b2b-title {
        font-size: 16px;
        hyphens: auto
    }

    .tunder-corporate-b2b .tunder-b2b-card-title,
    .tunder-corporate-b2b .tunder-b2b-banner-title {
        font-size: 14px;
        hyphens: auto
    }

    .tunder-corporate-b2b .tunder-b2b-card {
        padding: 1.25rem
    }

    .tunder-corporate-b2b .tunder-b2b-banner {
        padding: 1.25rem
    }
}

/* ===== care-and-maintenance ===== */
.tndr-care-section {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tndr-care-section .tndr-care-badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #BAE6FD;
}

.tndr-care-section .tndr-care-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F172A;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.25;
}

.tndr-care-section .tndr-care-subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.tndr-care-section .tndr-care-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.04);
}

.tndr-care-section .tndr-care-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0F766E;
    font-size: 1.25rem;
    border: 1px solid #CCFBF1;
}

.tndr-care-section .tndr-card-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.tndr-care-section .tndr-card-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
}

.tndr-care-section .tndr-care-visual-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDFA 100%);
    border: 1px solid #CCFBF1;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07);
}

.tndr-care-section .tndr-care-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: #EFF6FF;
}

.tndr-care-section .tndr-care-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.tndr-care-section .tndr-care-callout {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.tndr-care-section .text-teal {
    color: #0F766E;
    font-size: 1.15rem;
}

.tndr-care-section .tndr-callout-title {
    color: #0F172A;
    font-size: 0.9375rem;
}

.tndr-care-section .tndr-callout-desc {
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
}

.tndr-care-section .tndr-care-btn {
    background-color: #0F766E;
    color: #FFFFFF;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
}

.tndr-care-section .tndr-care-btn:hover {
    background-color: #115E59;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .tndr-care-section .tndr-care-title {
        font-size: 16px;
        hyphens: auto;
    }

    .tndr-care-section .tndr-card-heading {
        font-size: 14px;
        hyphens: auto;
    }

    .tndr-care-section .tndr-care-img {
        height: 200px;
    }
}

/* ===== blog-grid ===== */
.tundrabits-blog-section {
    background-color: #F8FAFC;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F172A;
}

.tundrabits-blog-section .tundrabits-blog-badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.tundrabits-blog-section .tundrabits-blog-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
}

.tundrabits-blog-section .tundrabits-blog-lead {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.6;
}

.tundrabits-blog-section .tundrabits-blog-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.05), 0 4px 12px -2px rgba(30, 64, 175, 0.03);
    overflow: hidden;
}

.tundrabits-blog-section .tundrabits-card-media {
    position: relative;
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
}

.tundrabits-blog-section .tundrabits-card-img {
    height: 240px;
    object-fit: cover;
    display: block;
}

.tundrabits-blog-section .tundrabits-category-tag {
    background: rgba(255, 255, 255, 0.92);
    color: #0F766E;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #CCFBF1;
}

.tundrabits-blog-section .tundrabits-meta-row {
    font-size: 0.8125rem;
    color: #64748B;
}

.tundrabits-blog-section .tundrabits-meta-item i {
    color: #0F766E;
    font-size: 0.95rem;
}

.tundrabits-blog-section .tundrabits-card-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0F172A;
}

.tundrabits-blog-section .tundrabits-title-link {
    color: #0F172A;
    text-decoration: none;
}

.tundrabits-blog-section .tundrabits-title-link:hover {
    color: #0F766E;
    text-decoration: none;
}

.tundrabits-blog-section .tundrabits-card-excerpt {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
}

.tundrabits-blog-section .tundrabits-card-footer {
    border-color: #F1F5F9 !important;
}

.tundrabits-blog-section .tundrabits-action-btn {
    background-color: #0F766E;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    text-decoration: none;
    border: none;
}

.tundrabits-blog-section .tundrabits-action-btn:hover {
    background-color: #115E59;
    color: #FFFFFF;
    text-decoration: none;
}

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

    .tundrabits-blog-section .tundrabits-card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .tundrabits-blog-section .tundrabits-card-img {
        height: 190px;
    }

    .tundrabits-blog-section .tundrabits-card-body {
        padding: 1.25rem !important;
    }
}

/* ===== footer ===== */
.site-footer {
    background-color: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 3.5rem 0 2rem 0;
    position: relative
}

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

.site-footer .site-footer__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain
}

.site-footer .site-footer__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569
}

.site-footer .site-footer__trust-badges {
    flex-wrap: wrap
}

.site-footer .site-footer__badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #BAE6FD
}

.site-footer .site-footer__badge-icon {
    font-size: 0.875rem;
    color: #0369A1
}

.site-footer .site-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em
}

.site-footer .site-footer__list {
    margin-bottom: 0
}

.site-footer .site-footer__item {
    margin-bottom: 0.5rem
}

.site-footer .site-footer__link {
    color: #475569;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.15s ease-in-out
}

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

.site-footer .site-footer__link--bold {
    font-weight: 600;
    color: #0F172A
}

.site-footer .site-footer__link--wa {
    color: #0F766E;
    font-weight: 600
}

.site-footer .site-footer__contact-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1rem
}

.site-footer .site-footer__icon {
    font-size: 1.125rem;
    color: #0F766E;
    flex-shrink: 0
}

.site-footer .site-footer__map-wrapper {
    position: relative;
    width: 100%;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background-color: #E2E8F0
}

.site-footer .site-footer__map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

.site-footer .site-footer__bottom {
    border-color: #E2E8F0 !important
}

.site-footer .site-footer__copyright {
    font-size: 0.8125rem;
    color: #475569
}

.site-footer .site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569
}

.site-footer .site-footer__payments {
    flex-wrap: wrap
}

.site-footer .site-footer__payment-chip {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0F172A
}

.site-footer .site-footer__pay-icon {
    font-size: 1.1rem;
    color: #1E40AF
}

.site-footer .site-footer__payment-chip:hover {
    border-color: #0F766E
}

@media (max-width:767.98px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem 0
    }

    .site-footer .site-footer__title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem
    }

    .site-footer .site-footer__map-wrapper {
        height: 120px
    }
}

/* ===== PAGE: catalog ===== */
.catalog-block { background-color: #F8FAFC; color: #0F172A; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.catalog-block h1, .catalog-block h2, .catalog-block h3, .catalog-block .catalog-block__heading { font-family: 'Plus Jakarta Sans', sans-serif; color: #0F172A; font-weight: 700; }
.catalog-block .catalog-block__heading { font-size: clamp(1.85rem, 3.5vw, 2.5rem); line-height: 1.25; }
.catalog-block .catalog-block__badge { background-color: #E0F2FE; color: #0369A1; font-size: 0.8125rem; }
.catalog-block .catalog-block__lead { font-size: 1.0625rem; line-height: 1.6; max-width: 760px; }
.catalog-block .catalog-block__search-box .input-group-text { background-color: #FFFFFF; border-color: #CBD5E1; color: #0F766E; font-size: 1.125rem; border-top-left-radius: 12px; border-bottom-left-radius: 12px; }
.catalog-block .catalog-block__search-box .form-control { background-color: #FFFFFF; border-color: #CBD5E1; color: #0F172A; border-top-right-radius: 12px; border-bottom-right-radius: 12px; font-size: 0.9375rem; padding: 0.625rem 1rem; }
.catalog-block .catalog-block__search-box .form-control::placeholder { color: #64748B; opacity: 1; }
.catalog-block .catalog-block__search-box .form-control:focus { border-color: #0F766E; box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15); }
.catalog-block .catalog-block__sort-label { font-size: 0.875rem; color: #475569; font-weight: 500; }
.catalog-block .catalog-block__sort-label + select { background-color: #FFFFFF; border: 1.5px solid #CBD5E1; border-radius: 12px; color: #0F172A; font-size: 0.875rem; padding: 0.5rem 2rem 0.5rem 0.875rem; }
.catalog-block .catalog-block__sort-label + select:focus { border-color: #0F766E; box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15); }
.catalog-block .catalog-block__filter-btn { background-color: #FFFFFF; color: #334155; border: 1px solid #E2E8F0; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; padding: 0.45rem 1.15rem; transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.catalog-block .catalog-block__filter-btn:hover { background-color: #EFF6FF; border-color: #BAE6FD; color: #1E40AF; }
.catalog-block .catalog-block__filter-btn.active { background-color: #0F766E; border-color: #0F766E; color: #FFFFFF; font-weight: 600; }
.catalog-block .catalog-block__card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.catalog-block .catalog-block__card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -5px rgba(15, 118, 110, 0.12); }
.catalog-block .catalog-block__card-img-wrap { background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%); padding: 1.5rem; text-align: center; border-top-left-radius: 20px; border-top-right-radius: 20px; }
.catalog-block .catalog-block__card-img { max-height: 200px; object-fit: contain; width: auto; margin: 0 auto; }
.catalog-block .catalog-block__card-tag { position: absolute; top: 12px; left: 12px; background-color: rgba(255, 255, 255, 0.92); color: #0F766E; border: 1px solid #CCFBF1; font-weight: 600; font-size: 0.75rem; border-radius: 9999px; padding: 0.3rem 0.65rem; }
.catalog-block .catalog-block__item-link { color: #0F172A; text-decoration: none; font-weight: 700; transition: color 0.15s ease; }
.catalog-block .catalog-block__item-link:hover { color: #1E40AF; }
.catalog-block .catalog-block__item-desc { font-size: 0.875rem; line-height: 1.5; }
.catalog-block .catalog-block__specs { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.catalog-block .catalog-block__specs .badge { background-color: #F1F5F9; color: #475569; font-weight: 500; font-size: 0.75rem; padding: 0.35rem 0.6rem; border-radius: 6px; }
.catalog-block .catalog-block__specs .badge i { color: #0F766E; margin-right: 2px; }
.catalog-block .catalog-block__buy-btn { background-color: #0F766E; color: #FFFFFF; border-radius: 9999px; padding: 0.55rem 1.25rem; font-weight: 600; font-size: 0.875rem; border: none; transition: background-color 0.15s ease; }
.catalog-block .catalog-block__buy-btn:hover { background-color: #115E59; color: #FFFFFF; }
.catalog-block .catalog-block__loadmore-btn { background-color: #DBEAFE; color: #1E40AF; border: 1px solid #BAE6FD; border-radius: 9999px; padding: 0.6rem 1.5rem; font-weight: 600; font-size: 0.875rem; }
.catalog-block .catalog-block__loadmore-btn:hover { background-color: #BFDBFE; color: #172554; }
.catalog-block .catalog-block__btn-outline { background-color: #FFFFFF; color: #0F766E; border: 1px solid #0F766E; border-radius: 9999px; padding: 0.5rem 1.5rem; font-weight: 600; }
.catalog-block .catalog-block__btn-outline:hover { background-color: #F0FDFA; color: #115E59; }

/* ===== PAGE: about ===== */
.tb-about-section {
  background-color: #F8FAFC;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F172A;
}
.tb-about-section .tb-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #172554;
  hyphens: auto;
}
.tb-about-section .tb-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0F172A;
  hyphens: auto;
}
.tb-about-section .tb-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0F172A;
}
.tb-about-section .tb-banner-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: #172554;
}
.tb-about-section .tb-lead-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}
.tb-about-section .tb-body-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}
.tb-about-section .tb-card-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
}
.tb-about-section .tb-banner-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}
.tb-about-section .tb-badge {
  display: inline-flex;
  align-items: center;
  background-color: #E0F2FE;
  color: #0369A1;
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tb-about-section .tb-image-frame {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
  border: 1px solid #BAE6FD;
  border-radius: 24px;
  box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07);
}
.tb-about-section .tb-featured-image {
  border-radius: 18px;
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.tb-about-section .tb-value-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.04);
}
.tb-about-section .tb-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: #CCFBF1;
  color: #0F766E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.tb-about-section .tb-banner-box {
  background: linear-gradient(135deg, #DBEAFE 0%, #CCFBF1 100%);
  border: 1px solid #BAE6FD;
}
.tb-about-section .tb-btn-primary {
  background-color: #0F766E;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.2);
}
.tb-about-section .tb-btn-primary:hover {
  background-color: #115E59;
  color: #FFFFFF;
}
.tb-about-section .tb-btn-secondary {
  background-color: #DBEAFE;
  color: #1E40AF;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #BAE6FD;
}
.tb-about-section .tb-btn-secondary:hover {
  background-color: #BFDBFE;
  color: #1E40AF;
}
.tb-about-section .tb-stat-box {
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.04);
}
.tb-about-section .tb-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #0F766E;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.tb-about-section .tb-stat-label {
  font-size: 0.8125rem;
  color: #475569;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .tb-about-section .tb-featured-image {
    height: 260px;
  }
  .tb-about-section .tb-main-title {
    font-size: 1.125rem;
  }
  .tb-about-section .tb-section-title {
    font-size: 1rem;
  }
  .tb-about-section .tb-card-title {
    font-size: 0.875rem;
  }
  .tb-about-section .tb-banner-title {
    font-size: 1rem;
  }
}

/* ===== PAGE: blog ===== */
.tb-blog-section { background-color: #F8FAFC; color: #0F172A; min-height: 50vh; } .tb-blog-section .tb-badge { background-color: #E0F2FE; color: #0369A1; font-size: 0.8125rem; font-weight: 700; padding: 0.35rem 0.95rem; border-radius: 9999px; border: 1px solid #BAE6FD; } .tb-blog-section .tb-blog-main-title { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 800; color: #0F172A; line-height: 1.25; } .tb-blog-section .tb-blog-subtitle { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.0625rem; color: #475569; max-width: 680px; line-height: 1.6; } .tb-blog-section .tb-filter-btn { background-color: #FFFFFF; color: #475569; border: 1.5px solid #E2E8F0; border-radius: 9999px; padding: 0.55rem 1.35rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; } .tb-blog-section .tb-filter-btn:hover { background-color: #F0FDFA; color: #0F766E; border-color: #0F766E; } .tb-blog-section .tb-filter-btn.active { background-color: #0F766E; color: #FFFFFF; border-color: #0F766E; } .tb-blog-section .tb-blog-card { background-color: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.05); overflow: hidden; } .tb-blog-section .tb-card-media-wrapper { background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%); height: 260px; } .tb-blog-section .tb-media-link { height: 100%; width: 100%; display: block; } .tb-blog-section .tb-card-img { width: 100%; height: 100%; object-fit: cover; } .tb-blog-section .tb-card-category-badge { position: absolute; top: 1rem; left: 1rem; background-color: rgba(255, 255, 255, 0.94); color: #0F766E; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 9999px; border: 1px solid #CCFBF1; box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08); } .tb-blog-section .tb-card-meta { font-size: 0.8125rem; color: #64748B; font-weight: 500; } .tb-blog-section .tb-card-title { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.25rem; font-weight: 700; line-height: 1.35; color: #0F172A; } .tb-blog-section .tb-title-link { color: #0F172A; text-decoration: none; } .tb-blog-section .tb-title-link:hover { color: #0F766E; } .tb-blog-section .tb-card-excerpt { font-size: 0.9375rem; color: #475569; line-height: 1.6; } .tb-blog-section .tb-card-footer { border-color: #F1F5F9 !important; } .tb-blog-section .tb-btn-readmore { background-color: #DBEAFE; color: #1E40AF; border: 1px solid #BAE6FD; border-radius: 9999px; padding: 0.45rem 1.15rem; font-size: 0.875rem; font-weight: 600; text-decoration: none; } .tb-blog-section .tb-btn-readmore:hover { background-color: #BFDBFE; color: #172554; } .tb-blog-section .tb-reading-time { font-size: 0.8125rem; color: #64748B; font-weight: 500; } @media (max-width: 767.98px) { .tb-blog-section .tb-blog-main-title { font-size: 1.125rem; hyphens: auto; } .tb-blog-section .tb-card-title { font-size: 1rem; hyphens: auto; } .tb-blog-section .tb-card-media-wrapper { height: 210px; } }

/* ===== PAGE: contact ===== */
.tb-contact-info {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tb-contact-info .tb-contact-badge {
  background-color: #E0F2FE;
  color: #0369A1;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tb-contact-info .tb-contact-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0F172A;
}

.tb-contact-info .tb-contact-subtext {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

.tb-contact-info .tb-contact-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05);
}

.tb-contact-info .tb-card-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #EFF6FF;
  color: #1E40AF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.tb-contact-info .tb-card-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.tb-contact-info .tb-card-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.tb-contact-info .tb-card-highlight {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F766E;
  word-break: break-word;
}

.tb-contact-info .tb-card-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E40AF;
  text-decoration: none;
  word-break: break-all;
}

.tb-contact-info .tb-card-link:hover {
  color: #0F766E;
  text-decoration: underline;
}

.tb-contact-info .tb-info-panel {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDFA 100%);
  border: 1px solid #CCFBF1;
  border-radius: 20px;
  box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07);
}

.tb-contact-info .tb-panel-tag {
  background-color: #CCFBF1;
  color: #0F766E;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tb-contact-info .tb-panel-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
}

.tb-contact-info .tb-schedule-icon {
  font-size: 1.25rem;
  color: #0F766E;
}

.tb-contact-info .tb-schedule-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
}

.tb-contact-info .tb-schedule-text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.tb-contact-info .tb-quick-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0F172A;
}

.tb-contact-info .tb-pill-link {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #BAE6FD;
  color: #1E40AF;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

.tb-contact-info .tb-pill-link:hover {
  background: #DBEAFE;
  color: #172554;
}

.tb-contact-info .tb-map-container {
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  background-color: #E2E8F0;
  min-height: 420px;
  box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05);
}

.tb-contact-info .tb-map-frame {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767.98px) {
  .tb-contact-info .tb-contact-heading {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .tb-contact-info .tb-panel-heading {
    font-size: 1.25rem;
    hyphens: auto;
  }
  .tb-contact-info .tb-card-title {
    font-size: 1rem;
  }
  .tb-contact-info .tb-schedule-title {
    font-size: 0.95rem;
  }
  .tb-contact-info .tb-map-container {
    min-height: 320px;
  }
}

/* ===== PAGE: faq ===== */
.faq-content-section { background-color: #F8FAFC; color: #0F172A; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.faq-content-section h1, .faq-content-section h2, .faq-content-section h3, .faq-content-section h4 { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: #0F172A; }
.faq-content-section .text-teal { color: #0F766E !important; }
.faq-content-section .faq-badge { background-color: #E0F2FE; border: 1px solid #BAE6FD; }
.faq-content-section .fs-7 { font-size: 0.75rem; letter-spacing: 0.05em; }
.faq-content-section .faq-lead { max-width: 680px; font-size: 1.05rem; line-height: 1.6; color: #475569; }
.faq-content-section .faq-search-box .form-control { background-color: #FFFFFF; border-color: #CBD5E1; color: #0F172A; box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.04); font-size: 0.95rem; }
.faq-content-section .faq-search-box .form-control:focus { border-color: #0F766E; outline: none; box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15); }
.faq-content-section .faq-search-box .form-control::placeholder { color: #94A3B8; }
.faq-content-section .faq-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #64748B; font-size: 1.2rem; pointer-events: none; }
.faq-content-section .js-faq-clear-btn { background-color: #E2E8F0; color: #475569; border: none; padding: 4px 8px; }
.faq-content-section .js-faq-clear-btn:hover { background-color: #CBD5E1; color: #0F172A; }
.faq-content-section .js-faq-filter { background-color: #FFFFFF; color: #475569; border: 1px solid #E2E8F0; }
.faq-content-section .js-faq-filter:hover { background-color: #F1F5F9; color: #0F172A; border-color: #CBD5E1; }
.faq-content-section .js-faq-filter.active { background-color: #0F766E; color: #FFFFFF; border-color: #0F766E; }
.faq-content-section .accordion-item { background-color: #FFFFFF; border-color: #E2E8F0 !important; box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.03); }
.faq-content-section .accordion-button { background-color: #FFFFFF; color: #0F172A; font-size: 1.05rem; box-shadow: none; }
.faq-content-section .accordion-button:not(.collapsed) { background-color: #F0FDFA; color: #0F766E; box-shadow: inset 0 -1px 0 #CCFBF1; }
.faq-content-section .accordion-button:focus { box-shadow: none; border-color: #BAE6FD; }
.faq-content-section .accordion-body { background-color: #FFFFFF; line-height: 1.65; font-size: 0.95rem; }
.faq-content-section .faq-help-card { background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%); border-color: #CCFBF1 !important; }
.faq-content-section .faq-btn-primary { background-color: #0F766E; color: #FFFFFF; border: none; }
.faq-content-section .faq-btn-primary:hover { background-color: #115E59; color: #FFFFFF; }
.faq-content-section .faq-btn-secondary { background-color: #DBEAFE; color: #1E40AF; border: 1px solid #BAE6FD; }
.faq-content-section .faq-btn-secondary:hover { background-color: #BFDBFE; color: #172554; }

/* ===== PAGE: privacy ===== */
.tb-privacy-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.tb-privacy-section .tb-privacy-header-card {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
  border: 1px solid #BAE6FD;
}
.tb-privacy-section .tb-privacy-badge {
  background-color: #DBEAFE;
  color: #0369A1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  display: inline-block;
}
.tb-privacy-section .tb-privacy-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: #0F172A;
  line-height: 1.25;
}
.tb-privacy-section .tb-privacy-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
}
.tb-privacy-section .tb-privacy-nav {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.04);
}
.tb-privacy-section .tb-nav-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
}
.tb-privacy-section .tb-nav-link {
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
}
.tb-privacy-section .tb-nav-link:hover,
.tb-privacy-section .tb-nav-link.active {
  background-color: #EFF6FF;
  color: #1E40AF;
  border-color: #DBEAFE;
  font-weight: 600;
}
.tb-privacy-section .tb-privacy-content-card {
  border: 1px solid #E2E8F0;
}
.tb-privacy-section .tb-icon-pill {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tb-privacy-section .tb-policy-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #0F172A;
  line-height: 1.3;
}
.tb-privacy-section .tb-policy-text {
  color: #475569;
  line-height: 1.7;
  font-size: 0.9375rem;
}
.tb-privacy-section .tb-sub-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
}
.tb-privacy-section .tb-sub-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
}
.tb-privacy-section .tb-bullet-list {
  color: #475569;
  line-height: 1.7;
}
.tb-privacy-section .tb-custom-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
}
.tb-privacy-section .tb-custom-table th {
  background-color: #EFF6FF;
  color: #1E40AF;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #DBEAFE;
}
.tb-privacy-section .tb-custom-table td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #475569;
  border-bottom: 1px solid #F1F5F9;
}
.tb-privacy-section .tb-inline-link {
  color: #0F766E;
  font-weight: 600;
  text-decoration: underline;
}
.tb-privacy-section .tb-security-notice {
  background-color: #F0FDF4;
  border: 1px solid #CCFBF1;
}
.tb-privacy-section .tb-btn-primary {
  background-color: #0F766E;
  color: #FFFFFF;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
}
.tb-privacy-section .tb-btn-primary:hover {
  background-color: #115E59;
  color: #FFFFFF;
}
.tb-privacy-section .tb-btn-secondary {
  background-color: #DBEAFE;
  color: #1E40AF;
  border-radius: 9999px;
  font-weight: 600;
  border: 1px solid #BAE6FD;
}
.tb-privacy-section .tb-btn-secondary:hover {
  background-color: #BFDBFE;
  color: #1E40AF;
}
@media (max-width: 767.98px) {
  .tb-privacy-section .tb-privacy-main-title { font-size: 1.5rem; hyphens: auto; }
  .tb-privacy-section .tb-policy-title { font-size: 1.15rem; }
  .tb-privacy-section .tb-sub-title { font-size: 0.95rem; }
  .tb-privacy-section .tb-privacy-nav { position: static !important; }
}

/* ===== PAGE: terms ===== */
.terms-page-section {
  background-color: #F8FAFC;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 60vh;
}

.terms-page-section .terms-header {
  max-width: 760px;
}

.terms-page-section .terms-badge {
  background-color: #E0F2FE;
  color: #0369A1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  letter-spacing: 0.03em;
}

.terms-page-section .terms-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0F172A;
  line-height: 1.25;
}

.terms-page-section .terms-lead-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

.terms-page-section .terms-card-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07), 0 4px 12px -2px rgba(30, 64, 175, 0.04);
}

.terms-page-section .terms-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0F172A;
}

.terms-page-section .terms-icon {
  color: #0F766E;
  font-size: 1.25rem;
}

.terms-page-section .terms-text {
  line-height: 1.65;
  font-size: 0.975rem;
}

.terms-page-section .terms-inline-link {
  color: #0F766E;
  font-weight: 500;
  transition: color 0.15s ease;
}

.terms-page-section .terms-inline-link:hover {
  color: #115E59;
  text-decoration: underline !important;
}

.terms-page-section .terms-btn-primary {
  background-color: #0F766E;
  border: 1px solid #0F766E;
  color: #FFFFFF;
}

.terms-page-section .terms-btn-primary:hover {
  background-color: #115E59;
  border-color: #115E59;
  color: #FFFFFF;
}

.terms-page-section .terms-btn-secondary {
  background-color: #DBEAFE;
  color: #1E40AF;
  border: 1px solid #BAE6FD;
}

.terms-page-section .terms-btn-secondary:hover {
  background-color: #BFDBFE;
  border-color: #93C5FD;
  color: #1E40AF;
}

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

/* ===== PAGE: disclaimer ===== */
.disclaimer-page-wrapper { background-color: #F8FAFC; color: #0F172A; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.disclaimer-page-wrapper .disclaimer-header-card { background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%); border: 1px solid #BAE6FD; border-radius: 20px; }
.disclaimer-page-wrapper .disclaimer-badge { background-color: #E0F2FE; color: #0369A1; font-size: 0.75rem; font-weight: 700; }
.disclaimer-page-wrapper .disclaimer-main-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #172554; font-size: clamp(1.85rem, 3.5vw, 2.5rem); line-height: 1.25; }
.disclaimer-page-wrapper .disclaimer-subtitle { font-size: 1rem; color: #475569; line-height: 1.6; max-width: 800px; }
.disclaimer-page-wrapper .disclaimer-content-panel { background-color: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.04); }
.disclaimer-page-wrapper .disclaimer-icon-box { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background-color: #CCFBF1; color: #0F766E; border-radius: 10px; font-size: 1.2rem; flex-shrink: 0; }
.disclaimer-page-wrapper .disclaimer-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.25rem, 2vw, 1.45rem); font-weight: 700; color: #0F172A; line-height: 1.3; }
.disclaimer-page-wrapper .disclaimer-text { font-size: 0.975rem; line-height: 1.7; color: #475569; margin-bottom: 1rem; }
.disclaimer-page-wrapper .disclaimer-sidebar { position: static; }
.disclaimer-page-wrapper .disclaimer-info-box { background-color: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.04); }
.disclaimer-page-wrapper .disclaimer-sidebar-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 700; color: #0F172A; line-height: 1.3; }
.disclaimer-page-wrapper .disclaimer-sidebar-desc { font-size: 0.875rem; color: #475569; line-height: 1.5; }
.disclaimer-page-wrapper .disclaimer-nav-link { padding: 0.75rem 1rem; background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 12px; color: #1E40AF; text-decoration: none; font-weight: 600; font-size: 0.875rem; }
.disclaimer-page-wrapper .disclaimer-nav-link:hover { background-color: #DBEAFE; color: #172554; border-color: #BAE6FD; }
.disclaimer-page-wrapper .disclaimer-contact-card { background: linear-gradient(180deg, #FFFFFF 0%, #F0FDFA 100%); border: 1px solid #CCFBF1; border-radius: 20px; }
.disclaimer-page-wrapper .text-teal { color: #0F766E; }
.disclaimer-page-wrapper .disclaimer-btn-contact { background-color: #0F766E; color: #FFFFFF; border-radius: 9999px; padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.95rem; border: none; }
.disclaimer-page-wrapper .disclaimer-btn-contact:hover { background-color: #115E59; color: #FFFFFF; }
@media (max-width: 767.98px) {
  .disclaimer-page-wrapper .disclaimer-main-title { font-size: 18px !important; hyphens: auto; }
  .disclaimer-page-wrapper .disclaimer-section-title { font-size: 16px !important; hyphens: auto; }
  .disclaimer-page-wrapper .disclaimer-sidebar-title { font-size: 14px !important; hyphens: auto; }
  .disclaimer-page-wrapper .disclaimer-subtitle, .disclaimer-page-wrapper .disclaimer-text, .disclaimer-page-wrapper .disclaimer-sidebar-desc { font-size: 0.875rem; }
}

/* ===== PAGE: refound ===== */
.tb-refund-section { background-color: #F8FAFC; color: #0F172A; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.tb-refund-section .tb-refund-main-title { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 800; color: #0F172A; line-height: 1.25; }
.tb-refund-section .tb-refund-badge { background-color: #E0F2FE; color: #0369A1; font-weight: 700; font-size: 0.8125rem; border-radius: 9999px; padding: 0.4rem 1rem; display: inline-flex; align-items: center; border: 1px solid #BAE6FD; }
.tb-refund-section .tb-refund-subtitle { max-width: 680px; font-size: 1.0625rem; line-height: 1.6; }
.tb-refund-section .tb-policy-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05); }
.tb-refund-section .tb-policy-icon { width: 44px; height: 44px; margin: 0 auto; background: #EFF6FF; color: #0F766E; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; border: 1px solid #CCFBF1; }
.tb-refund-section .tb-policy-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #0F172A; }
.tb-refund-section .tb-policy-card-desc { line-height: 1.5; }
.tb-refund-section .tb-tab-btn { background: #FFFFFF; color: #475569; border: 1px solid #E2E8F0; border-radius: 9999px; font-weight: 600; font-size: 0.9375rem; padding: 0.65rem 1.4rem; box-shadow: none; }
.tb-refund-section .tb-tab-btn:hover { background: #F0FDFA; color: #0F766E; border-color: #CCFBF1; }
.tb-refund-section .tb-tab-btn.active { background: #0F766E; color: #FFFFFF; border-color: #0F766E; }
.tb-refund-section .tb-refund-content-box { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 24px; box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07), 0 4px 12px -2px rgba(30, 64, 175, 0.04); }
.tb-refund-section .tb-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #0F172A; display: flex; align-items: center; }
.tb-refund-section .tb-sub-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #1E40AF; }
.tb-refund-section .tb-accent-icon { color: #0F766E; font-size: 1.4rem; }
.tb-refund-section .tb-body-text { color: #475569; font-size: 0.95rem; line-height: 1.65; }
.tb-refund-section .tb-custom-list { list-style: none; padding-left: 0; }
.tb-refund-section .tb-custom-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.65rem; color: #475569; font-size: 0.95rem; line-height: 1.55; }
.tb-refund-section .tb-custom-list li::before { content: "•"; position: absolute; left: 0.35rem; color: #0F766E; font-size: 1.3rem; line-height: 1; top: -0.1rem; }
.tb-refund-section .tb-step-item { background: linear-gradient(180deg, #FFFFFF 0%, #F0FDFA 100%); border: 1px solid #CCFBF1; border-radius: 16px; position: relative; }
.tb-refund-section .tb-step-number { width: 32px; height: 32px; border-radius: 8px; background: #0F766E; color: #FFFFFF; font-weight: 700; font-size: 0.8125rem; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.tb-refund-section .tb-step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #0F172A; }
.tb-refund-section .tb-table { border-collapse: separate; border-spacing: 0; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden; }
.tb-refund-section .tb-thead { background: #EFF6FF; color: #1E40AF; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 700; }
.tb-refund-section .tb-thead th { padding: 0.85rem 1rem; border-bottom: 1px solid #BAE6FD; }
.tb-refund-section .tb-table tbody td { padding: 0.85rem 1rem; color: #475569; font-size: 0.875rem; border-bottom: 1px solid #F1F5F9; }
.tb-refund-section .tb-table tbody tr:last-child td { border-bottom: none; }
.tb-refund-section .tb-inline-link { color: #0F766E; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.tb-refund-section .tb-inline-link:hover { color: #134E4A; }
.tb-refund-section .tb-cta-banner { background: linear-gradient(135deg, #DBEAFE 0%, #CCFBF1 100%); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.8); }
.tb-refund-section .tb-cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #0F172A; }
.tb-refund-section .tb-cta-desc { font-size: 0.95rem; line-height: 1.5; }
.tb-refund-section .tb-btn-primary { background: #0F766E; color: #FFFFFF; border-radius: 9999px; padding: 0.7rem 1.5rem; font-weight: 600; font-size: 0.9375rem; border: none; }
.tb-refund-section .tb-btn-primary:hover { background: #115E59; color: #FFFFFF; }
.tb-refund-section .tb-btn-secondary { background: #FFFFFF; color: #1E40AF; border-radius: 9999px; padding: 0.7rem 1.5rem; font-weight: 600; font-size: 0.9375rem; border: 1px solid #BAE6FD; }
.tb-refund-section .tb-btn-secondary:hover { background: #EFF6FF; color: #1E40AF; }
@media (max-width: 767.98px) {
  .tb-refund-section h1.tb-refund-main-title { font-size: 18px !important; hyphens: auto; }
  .tb-refund-section h2.tb-section-title, .tb-refund-section h2.tb-cta-title, .tb-refund-section h2.tb-policy-card-title { font-size: 16px !important; hyphens: auto; }
  .tb-refund-section h3.tb-sub-title, .tb-refund-section h3.tb-step-title { font-size: 14px !important; hyphens: auto; }
  .tb-refund-section .tb-refund-content-box { padding: 1.25rem !important; }
}

/* ===== PAGE: delivery ===== */
.tb-delivery-page { background-color: #F8FAFC; color: #0F172A; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.tb-delivery-page .tb-main-heading { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 800; color: #172554; line-height: 1.25; }
.tb-delivery-page .tb-lead-desc { max-width: 720px; font-size: 1.1rem; color: #475569; line-height: 1.6; }
.tb-delivery-page .tb-badge-pill { background-color: #E0F2FE; color: #0369A1; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.5px; text-transform: uppercase; }
.tb-delivery-page .tb-feature-card { background: linear-gradient(180deg, #FFFFFF 0%, #F0FDFA 100%); border: 1px solid #CCFBF1; border-radius: 20px; box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05); }
.tb-delivery-page .tb-icon-box { width: 50px; height: 50px; border-radius: 14px; background-color: #DBEAFE; color: #1E40AF; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.tb-delivery-page .tb-card-title { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 700; color: #0F172A; }
.tb-delivery-page .tb-card-text { font-size: 0.95rem; color: #475569; line-height: 1.6; }
.tb-delivery-page .tb-content-box { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.04); }
.tb-delivery-page .tb-box-heading { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 700; color: #172554; }
.tb-delivery-page .tb-pill-icon { width: 36px; height: 36px; border-radius: 10px; background: #E0F2FE; color: #0F766E; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.tb-delivery-page .tb-custom-table { border-collapse: separate; border-spacing: 0; }
.tb-delivery-page .tb-custom-table thead th { background-color: #F1F5F9; color: #1E293B; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; border-bottom: 2px solid #CBD5E1; padding: 0.85rem 1rem; }
.tb-delivery-page .tb-custom-table tbody td { padding: 1rem; border-bottom: 1px solid #E2E8F0; font-size: 0.95rem; color: #334155; }
.tb-delivery-page .tb-carrier-name { color: #0F172A; font-weight: 600; }
.tb-delivery-page .tb-rate-badge { display: inline-block; background-color: #CCFBF1; color: #0F766E; font-weight: 700; border-radius: 9999px; padding: 0.25rem 0.75rem; font-size: 0.9rem; }
.tb-delivery-page .text-teal { color: #0F766E !important; }
.tb-delivery-page .tb-calc-box { background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%); border: 1px solid #BAE6FD; border-radius: 20px; }
.tb-delivery-page .tb-form-label { font-weight: 600; font-size: 0.9rem; color: #1E293B; }
.tb-delivery-page .tb-select { background-color: #FFFFFF; border: 1.5px solid #CBD5E1; border-radius: 12px; font-size: 0.95rem; color: #0F172A; padding: 0.65rem 1rem; }
.tb-delivery-page .tb-select:focus { border-color: #0F766E; box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15); }
.tb-delivery-page .tb-calc-result { background-color: #FFFFFF; border: 1px solid #E2E8F0; }
.tb-delivery-page .tb-result-label { font-size: 0.9rem; color: #475569; }
.tb-delivery-page .tb-result-value { font-size: 0.95rem; }
.tb-delivery-page .tb-border-subtle { border-color: #CBD5E1 !important; }
.tb-delivery-page .tb-note-text { font-size: 0.82rem; color: #64748B; }
.tb-delivery-page .tb-step-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.04); }
.tb-delivery-page .tb-step-item { background-color: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 16px; height: 100%; }
.tb-delivery-page .tb-step-number { width: 44px; height: 44px; margin: 0 auto; border-radius: 50%; background-color: #1E40AF; color: #FFFFFF; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.tb-delivery-page .tb-step-title { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 700; color: #0F172A; }
.tb-delivery-page .tb-step-text { font-size: 0.88rem; color: #475569; line-height: 1.5; }
.tb-delivery-page .tb-accordion-item { border: 1px solid #E2E8F0; border-radius: 14px !important; overflow: hidden; background: #FFFFFF; }
.tb-delivery-page .tb-accordion-btn { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 600; font-size: 1rem; color: #0F172A; background-color: #FFFFFF; padding: 1.1rem 1.25rem; border: none; box-shadow: none !important; }
.tb-delivery-page .tb-accordion-btn:not(.collapsed) { background-color: #F0FDFA; color: #0F766E; font-weight: 700; }
.tb-delivery-page .tb-accordion-body { padding: 1.25rem; color: #475569; font-size: 0.95rem; line-height: 1.6; background-color: #FFFFFF; }
.tb-delivery-page .tb-inline-link { color: #0F766E; font-weight: 600; text-decoration: underline; }
.tb-delivery-page .tb-inline-link:hover { color: #115E59; }
.tb-delivery-page .tb-support-box { background: linear-gradient(135deg, #DBEAFE 0%, #CCFBF1 100%); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 20px; box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05); }
.tb-delivery-page .tb-support-icon { width: 56px; height: 56px; border-radius: 16px; background-color: #FFFFFF; color: #0F766E; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 12px rgba(15, 118, 110, 0.08); }
.tb-delivery-page .tb-info-list li { font-size: 0.92rem; color: #1E293B; font-weight: 500; }
.tb-delivery-page .tb-btn-primary { background-color: #0F766E; color: #FFFFFF; border-radius: 9999px; padding: 0.75rem 1.5rem; font-weight: 600; border: none; }
.tb-delivery-page .tb-btn-primary:hover { background-color: #115E59; color: #FFFFFF; }
.tb-delivery-page .tb-btn-secondary { background-color: #FFFFFF; color: #1E40AF; border-radius: 9999px; padding: 0.75rem 1.5rem; font-weight: 600; border: 1px solid #BAE6FD; }
.tb-delivery-page .tb-btn-secondary:hover { background-color: #F1F5F9; color: #1E40AF; }
@media (max-width: 767.98px) { .tb-delivery-page .tb-main-heading { font-size: 1.125rem; } .tb-delivery-page h2 { font-size: 1rem; } .tb-delivery-page h3 { font-size: 0.875rem; } .tb-delivery-page .tb-lead-desc { font-size: 0.95rem; } }

/* ===== PAGE: cookies ===== */
.cookies-policy-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.cookies-policy-section .cookies-header-card {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
  border: 1px solid #BAE6FD;
}

.cookies-policy-section .cookies-badge {
  background-color: #E0F2FE;
  color: #0369A1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
}

.cookies-policy-section .cookies-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #172554;
  line-height: 1.25;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

.cookies-policy-section .cookies-lead-text {
  color: #475569;
  font-size: 1.0625rem;
  max-width: 800px;
}

.cookies-policy-section .cookies-meta {
  font-size: 0.875rem;
  color: #0F766E;
  font-weight: 600;
}

.cookies-policy-section .cookies-meta-divider {
  color: #94A3B8;
}

.cookies-policy-section .cookies-interactive-box {
  background-color: #FFFFFF;
  border: 1px solid #CCFBF1;
  box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07);
}

.cookies-policy-section .cookies-box-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #0F766E;
}

.cookies-policy-section .cookies-pref-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  transition: border-color 0.15s ease;
}

.cookies-policy-section .cookies-pref-card:hover {
  border-color: #BAE6FD;
}

.cookies-policy-section .cookies-pref-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #172554;
}

.cookies-policy-section .cookies-badge-locked {
  background-color: #E2E8F0;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
}

.cookies-policy-section .cookies-tech-tag {
  background-color: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #DBEAFE;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 0.25rem;
}

.cookies-policy-section .form-check-input:checked {
  background-color: #0F766E;
  border-color: #0F766E;
}

.cookies-policy-section .cookies-btn-primary {
  background-color: #0F766E;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.65rem 1.4rem;
  border: none;
}

.cookies-policy-section .cookies-btn-primary:hover {
  background-color: #115E59;
  color: #FFFFFF;
}

.cookies-policy-section .cookies-btn-secondary {
  background-color: #DBEAFE;
  color: #1E40AF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.65rem 1.4rem;
  border: 1px solid #BAE6FD;
}

.cookies-policy-section .cookies-btn-secondary:hover {
  background-color: #BFDBFE;
  color: #172554;
}

.cookies-policy-section .cookies-content-body {
  border: 1px solid #E2E8F0;
}

.cookies-policy-section .cookies-section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: #172554;
}

.cookies-policy-section .cookies-sub-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #0F766E;
}

.cookies-policy-section .cookies-inline-link {
  color: #1E40AF;
  text-decoration: underline;
  font-weight: 600;
}

.cookies-policy-section .cookies-inline-link:hover {
  color: #0F766E;
}

.cookies-policy-section .cookies-list li {
  margin-bottom: 0.5rem;
  color: #334155;
}

.cookies-policy-section .cookies-feedback-alert {
  background-color: #CCFBF1;
  color: #134E4A;
  border: 1px solid #99F6E4;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .cookies-policy-section .cookies-main-title {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .cookies-policy-section .cookies-section-heading {
    font-size: 1.2rem;
    hyphens: auto;
  }
  .cookies-policy-section .cookies-sub-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .cookies-policy-section .cookies-btn-group {
    width: 100%;
  }
  .cookies-policy-section .cookies-btn-group .btn {
    flex: 1 1 auto;
  }
}

.review-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05);
}

.review-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #DBEAFE 0%, #CCFBF1 100%);
    color: #0F766E;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid #BAE6FD;
}

.review-author-name {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
}

.review-verified-badge {
    background-color: #CCFBF1;
    color: #0F766E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
}

.review-verified-badge i {
    font-size: 0.875rem;
}

.review-date {
    color: #64748B;
    font-size: 0.8125rem;
}

.review-star-icon {
    color: #F59E0B;
    font-size: 1.125rem;
}

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

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

.review-action-btn {
    background-color: #F8FAFC;
    color: #475569;
    border: 1px solid #E2E8F0;
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0.4rem 0.9rem;
}

.review-action-btn:hover {
    background-color: #EFF6FF;
    color: #1E40AF;
    border-color: #BFDBFE;
}

.review-item-tag {
    font-size: 0.8125rem;
    color: #64748B;
}

.review-reply-item {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDFA 100%);
    border: 1px solid #CCFBF1;
    border-radius: 16px;
    border-left: 3px solid #0F766E;
}

.review-reply-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #0F766E 0%, #134E4A 100%);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
}

.review-reply-author {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
}

.review-staff-badge {
    background-color: #DBEAFE;
    color: #1E40AF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
}

.review-staff-badge i {
    font-size: 0.75rem;
}

.review-reply-text {
    color: #334155;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
}


/* ===== PAGE TEMPLATE: catalog ===== */
.tunderbits-detail-page-body {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.site-header-block {
    background-color: #FFFFFF;
    border-bottom-color: #E2E8F0;
    z-index: 1030;
}

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

.site-header-block .brand-title {
    color: #172554;
    letter-spacing: -0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.site-header-block .text-primary-dark {
    color: #172554;
}

.site-header-block .text-teal {
    color: #0F766E;
}

.site-header-block .bg-teal {
    background-color: #0F766E;
}

.site-header-block .text-dark-slate {
    color: #0F172A;
}

.site-header-block .nav-link {
    color: #0F172A;
    font-size: 0.95rem;
    border-radius: 9999px;
}

.site-header-block .nav-link:hover,
.site-header-block .nav-link:focus {
    color: #0F766E;
    background-color: #F0FDFA;
}

.site-header-block .contact-wa-link {
    background-color: #EFF6FF;
    border: 1px solid #BAE6FD;
    color: #0F172A;
    font-size: 0.875rem;
}

.site-header-block .contact-wa-link:hover {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.site-header-block .cart-action-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    padding: 0;
}

.site-header-block .cart-action-btn:hover {
    border-color: #0F766E;
    background-color: #F0FDFA;
}

.site-header-block .cart-count-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 14px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    z-index: 2;
}

.tunderbits-detail-page .tunderbits-breadcrumb-section {
    background-color: #FFFFFF;
}

.tunderbits-detail-page .breadcrumb-item a {
    color: #475569;
    font-size: 0.875rem;
}

.tunderbits-detail-page .breadcrumb-item.active {
    color: #172554;
    font-size: 0.875rem;
}

.tunderbits-detail-page .tunderbits-product-visual {
    background: linear-gradient(145deg, #FFFFFF 0%, #EFF6FF 100%);
    border: 1px solid #BAE6FD;
    box-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.06);
}

.tunderbits-detail-page .tunderbits-hero-chip {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #BAE6FD;
}

.tunderbits-detail-page .tunderbits-image-wrapper {
    max-width: 420px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tunderbits-detail-page .tunderbits-main-product-img {
    max-height: 100%;
    object-fit: contain;
}

.tunderbits-detail-page .tunderbits-category-badge {
    background-color: #CCFBF1;
    color: #0F766E;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.4rem 0.85rem;
}

.tunderbits-detail-page .tunderbits-product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    hyphens: auto;
}

@media (max-width: 767.98px) {
    .tunderbits-detail-page .tunderbits-product-title {
        font-size: 18px;
    }
}

.tunderbits-detail-page .tunderbits-price-panel {
    background: linear-gradient(135deg, #F0FDFA 0%, #EFF6FF 100%);
    border: 1px solid #CCFBF1;
}

.tunderbits-detail-page .tunderbits-current-price {
    color: #0F766E;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tunderbits-detail-page .bg-teal-subtle {
    background-color: #CCFBF1;
}

.tunderbits-detail-page .text-teal {
    color: #0F766E;
}

.tunderbits-detail-page .text-primary-dark {
    color: #172554;
}

.tunderbits-detail-page .text-slate {
    color: #475569;
    line-height: 1.65;
}

.tunderbits-detail-page .tunderbits-spec-tile {
    background-color: #FFFFFF;
    border-color: #E2E8F0 !important;
}

.tunderbits-detail-page .tunderbits-cart-btn {
    background-color: #0F766E;
    border: 1px solid transparent;
    color: #FFFFFF;
    min-height: 52px;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
}

.tunderbits-detail-page .tunderbits-cart-btn:hover,
.tunderbits-detail-page .tunderbits-cart-btn:focus {
    background-color: #115E59;
    color: #FFFFFF;
}

.tunderbits-detail-page .js-tab-nav .nav-link {
    color: #475569;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
}

.tunderbits-detail-page .js-tab-nav .nav-link.active {
    color: #FFFFFF;
    background-color: #0F766E;
    border-color: #0F766E;
}

.tunderbits-detail-page .tunderbits-feature-box {
    background-color: #FFFFFF;
    border-color: #E2E8F0 !important;
}

.tunderbits-detail-page .review-avatar {
    width: 44px;
    height: 44px;
    background-color: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BAE6FD;
    font-size: 0.95rem;
}

.tunderbits-detail-page .review-verified-badge {
    background-color: #CCFBF1;
    color: #0F766E;
    font-size: 0.75rem;
}

.tunderbits-detail-page .review-star-icon {
    color: #F59E0B;
}

.tunderbits-detail-page .review-action-btn {
    background-color: #F8FAFC;
    border: 1px solid #CBD5E1;
    color: #475569;
}

.tunderbits-detail-page .review-action-btn.active {
    background-color: #CCFBF1;
    color: #0F766E;
    border-color: #0F766E;
}

.tunderbits-detail-page .review-reply-avatar {
    width: 38px;
    height: 38px;
    background-color: #DBEAFE;
    color: #1E40AF;
    font-size: 0.85rem;
}

.tunderbits-detail-page .review-staff-badge {
    background-color: #DBEAFE;
    color: #1E40AF;
    font-size: 0.75rem;
}

.site-footer {
    background-color: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 3.5rem 0 2rem 0;
    position: relative;
}

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

.site-footer .site-footer__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-footer .site-footer__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
}

.site-footer .site-footer__trust-badges {
    flex-wrap: wrap;
}

.site-footer .site-footer__badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #BAE6FD;
}

.site-footer .site-footer__badge-icon {
    font-size: 0.875rem;
    color: #0369A1;
}

.site-footer .site-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.site-footer .site-footer__list {
    margin-bottom: 0;
}

.site-footer .site-footer__item {
    margin-bottom: 0.5rem;
}

.site-footer .site-footer__link {
    color: #475569;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
}

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

.site-footer .site-footer__link--bold {
    font-weight: 600;
    color: #0F172A;
}

.site-footer .site-footer__link--wa {
    color: #0F766E;
    font-weight: 600;
}

.site-footer .site-footer__contact-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1rem;
}

.site-footer .site-footer__icon {
    font-size: 1.125rem;
    color: #0F766E;
    flex-shrink: 0;
}

.site-footer .site-footer__map-wrapper {
    position: relative;
    width: 100%;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background-color: #E2E8F0;
}

.site-footer .site-footer__map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.site-footer .site-footer__bottom {
    border-color: #E2E8F0 !important;
}

.site-footer .site-footer__copyright {
    font-size: 0.8125rem;
    color: #475569;
}

.site-footer .site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.site-footer .site-footer__payments {
    flex-wrap: wrap;
}

.site-footer .site-footer__payment-chip {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0F172A;
}

.site-footer .site-footer__pay-icon {
    font-size: 1.1rem;
    color: #1E40AF;
}

.site-footer .site-footer__payment-chip:hover {
    border-color: #0F766E;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .site-footer .site-footer__title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .site-footer .site-footer__map-wrapper {
        height: 120px;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.site-header-block {
    background-color: #FFFFFF;
    border-bottom-color: #E2E8F0;
    z-index: 1030;
}

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

.site-header-block .brand-title {
    color: #172554;
    letter-spacing: -0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.site-header-block .text-primary-dark {
    color: #172554;
}

.site-header-block .text-teal {
    color: #0F766E;
}

.site-header-block .bg-teal {
    background-color: #0F766E;
}

.site-header-block .text-dark-slate {
    color: #0F172A;
}

.site-header-block .nav-link {
    color: #0F172A;
    font-size: 0.95rem;
    transition: none;
    border-radius: 9999px;
}

.site-header-block .nav-link:hover,
.site-header-block .nav-link:focus {
    color: #0F766E;
    background-color: #F0FDFA;
}

.site-header-block .contact-wa-link {
    background-color: #EFF6FF;
    border: 1px solid #BAE6FD;
    color: #0F172A;
    transition: none;
    font-size: 0.875rem;
}

.site-header-block .contact-wa-link:hover {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.site-header-block .cart-action-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    padding: 0;
}

.site-header-block .cart-action-btn:hover {
    border-color: #0F766E;
    background-color: #F0FDFA;
}

.site-header-block .cart-count-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 14px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    z-index: 2;
}

.site-header-block .navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid #BAE6FD;
}

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

    .site-header-block .nav-link {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        border-radius: 8px;
    }
}

.blog-detail-page {
    background-color: #F8FAFC;
    min-height: 80vh;
}

.blog-detail-page .blog-detail-hero {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    border-bottom: 1px solid #E2E8F0;
}

.blog-detail-page .blog-category-badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid #BAE6FD;
}

.blog-detail-page .blog-main-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: #0F172A;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .blog-detail-page .blog-main-heading {
        font-size: 18px;
        hyphens: auto;
    }
}

.blog-detail-page .blog-meta-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
}

.blog-detail-page .text-teal {
    color: #0F766E !important;
}

.blog-detail-page .border-teal-subtle {
    border-color: #CCFBF1 !important;
}

.blog-detail-page .bg-subtle-teal {
    background-color: #F0FDFA;
}

.blog-detail-page .blog-single-feature-img {
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.blog-detail-page .blog-lead-box {
    background: #EFF6FF;
    border-left: 4px solid #1E40AF;
}

.blog-detail-page .blog-prose-content h2,
.blog-detail-page .blog-prose-content h3,
.blog-detail-page .blog-prose-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
}

@media (max-width: 767.98px) {
    .blog-detail-page .blog-prose-content h2 {
        font-size: 16px;
        hyphens: auto;
    }

    .blog-detail-page .blog-prose-content h3 {
        font-size: 14px;
        hyphens: auto;
    }
}

.blog-detail-page .blog-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
}

.blog-detail-page .btn-outline-teal {
    color: #0F766E;
    border-color: #0F766E;
    background-color: transparent;
    font-weight: 600;
}

.blog-detail-page .btn-outline-teal:hover {
    background-color: #0F766E;
    color: #FFFFFF;
}

.blog-detail-page .blog-related-link:hover {
    color: #0F766E !important;
}

.blog-detail-page .review-avatar {
    width: 44px;
    height: 44px;
    background-color: #E0F2FE;
    color: #172554;
    font-size: 0.95rem;
}

.blog-detail-page .review-verified-badge {
    background-color: #CCFBF1;
    color: #0F766E;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-detail-page .review-star-icon {
    color: #F59E0B;
    font-size: 0.9rem;
}

.blog-detail-page .review-action-btn {
    background-color: #F1F5F9;
    color: #475569;
    border: 1px solid #E2E8F0;
    font-weight: 500;
}

.blog-detail-page .review-action-btn:hover,
.blog-detail-page .review-action-btn.active {
    background-color: #CCFBF1;
    color: #0F766E;
    border-color: #0F766E;
}

.blog-detail-page .review-reply-avatar {
    width: 36px;
    height: 36px;
    background-color: #DBEAFE;
    color: #1E40AF;
    font-size: 0.85rem;
}

.blog-detail-page .review-staff-badge {
    background-color: #DBEAFE;
    color: #1E40AF;
    font-size: 0.75rem;
    font-weight: 600;
}

.site-footer {
    background-color: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 3.5rem 0 2rem 0;
    position: relative;
}

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

.site-footer .site-footer__logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.site-footer .site-footer__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
}

.site-footer .site-footer__trust-badges {
    flex-wrap: wrap;
}

.site-footer .site-footer__badge {
    background-color: #E0F2FE;
    color: #0369A1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #BAE6FD;
}

.site-footer .site-footer__badge-icon {
    font-size: 0.875rem;
    color: #0369A1;
}

.site-footer .site-footer__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.site-footer .site-footer__list {
    margin-bottom: 0;
}

.site-footer .site-footer__item {
    margin-bottom: 0.5rem;
}

.site-footer .site-footer__link {
    color: #475569;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}

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

.site-footer .site-footer__link--bold {
    font-weight: 600;
    color: #0F172A;
}

.site-footer .site-footer__link--wa {
    color: #0F766E;
    font-weight: 600;
}

.site-footer .site-footer__contact-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1rem;
}

.site-footer .site-footer__icon {
    font-size: 1.125rem;
    color: #0F766E;
    flex-shrink: 0;
}

.site-footer .site-footer__map-wrapper {
    position: relative;
    width: 100%;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background-color: #E2E8F0;
}

.site-footer .site-footer__map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.site-footer .site-footer__bottom {
    border-color: #E2E8F0 !important;
}

.site-footer .site-footer__copyright {
    font-size: 0.8125rem;
    color: #475569;
}

.site-footer .site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.site-footer .site-footer__payments {
    flex-wrap: wrap;
}

.site-footer .site-footer__payment-chip {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0F172A;
}

.site-footer .site-footer__pay-icon {
    font-size: 1.1rem;
    color: #1E40AF;
}

.site-footer .site-footer__payment-chip:hover {
    border-color: #0F766E;
}

@media (max-width:767.98px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .site-footer .site-footer__title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .site-footer .site-footer__map-wrapper {
        height: 120px;
    }
}