:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F8FE;
    --bg-tertiary: #FFF6F0;
    --surface-cards: #FFFFFF;
    --surface-tint-blue: #EEF5FF;
    --surface-tint-orange: #FFF0E6;
    --primary-accent: #1A6BFF;
    --primary-accent-hover: #0B55E0;
    --secondary-accent: #FF6B00;
    --secondary-accent-hover: #E05A00;
    --tertiary-accent: #00A3FF;
    --gradient-primary: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    --text-primary: #0A1B3A;
    --text-secondary: #365380;
    --text-muted: #5F7DAB;
    --border-light-blue: #D8E6FA;
    --border-light-orange: #FFE0CC;
    --border-active: #1A6BFF;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

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

.lounge-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ===== header ===== */
.site-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.site-header-block .navbar {
    padding: 0.875rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D8E6FA;
}

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

.site-header-block .brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1A6BFF;
    line-height: 1.2;
}

.site-header-block .custom-toggler {
    padding: 0.5rem 0.75rem;
    background-color: #EEF5FF;
    border-radius: 10px;
    box-shadow: none;
}

.site-header-block .text-primary-accent {
    color: #1A6BFF;
    font-size: 1.25rem;
}

.site-header-block .nav-link-custom {
    font-size: 1rem;
    font-weight: 600;
    color: #365380;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #1A6BFF;
    background-color: #EEF5FF;
}

.site-header-block .btn-header-cta {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
    text-decoration: none;
}

.site-header-block .btn-header-cta:hover,
.site-header-block .btn-header-cta:focus {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

@media (max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: 16px;
        border: 1px solid #D8E6FA;
        box-shadow: 0 12px 28px rgba(26, 107, 255, 0.08);
    }

    .site-header-block .nav-link-custom {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .site-header-block .header-action-group {
        padding-top: 0.75rem;
        border-top: 1px solid #D8E6FA;
        margin-top: 0.5rem;
    }

    .site-header-block .btn-header-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===== hero ===== */
.lounge-hero-section {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 4rem;
    background-color: #F4F8FE;
    overflow: hidden;
}

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

.lounge-hero-section .lounge-hero-img {
    object-fit: cover;
    object-position: center;
}

.lounge-hero-section .lounge-hero-overlay {
    background: linear-gradient(135deg, rgba(244, 248, 254, 0.94) 0%, rgba(238, 245, 255, 0.88) 50%, rgba(255, 240, 230, 0.84) 100%);
}

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

.lounge-hero-section .lounge-hero-badge {
    background-color: #E5EFFF;
    color: #0B55E0;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lounge-hero-section .lounge-hero-title {
    color: #0A1B3A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.lounge-hero-section .lounge-hero-lead {
    color: #365380;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 650px;
}

.lounge-hero-section .lounge-btn-primary {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(26, 107, 255, 0.28);
    text-decoration: none;
    height: 52px;
}

.lounge-hero-section .lounge-btn-primary:hover {
    background: linear-gradient(135deg, #0B55E0 0%, #0088D6 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(26, 107, 255, 0.38);
}

.lounge-hero-section .lounge-btn-secondary {
    background: #FFFFFF;
    color: #1A6BFF;
    border: 2px solid #1A6BFF;
    border-radius: 50px;
    padding: 12px 26px;
    font-weight: 700;
    text-decoration: none;
    height: 52px;
}

.lounge-hero-section .lounge-btn-secondary:hover {
    background: #EEF5FF;
    color: #0B55E0;
    border-color: #0B55E0;
}

.lounge-hero-section .lounge-feature-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.08);
    height: 100%;
}

.lounge-hero-section .lounge-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #EEF5FF;
    border-radius: 12px;
    border: 1px solid #D8E6FA;
}

.lounge-hero-section .lounge-feature-icon {
    color: #1A6BFF;
    font-size: 1.25rem;
}

.lounge-hero-section .lounge-feature-title {
    color: #0A1B3A;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.lounge-hero-section .lounge-feature-text {
    color: #5F7DAB;
    font-size: 0.875rem;
    line-height: 1.45;
}

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

    .lounge-hero-section .lounge-hero-title {
        font-size: 18px;
        line-height: 1.25;
        hyphens: auto;
    }

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

    .lounge-hero-section .lounge-feature-title {
        font-size: 14px;
    }
}

/* ===== loyalty-program ===== */
.loyalty-section {
    background-color: #F4F8FE;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.loyalty-section .loyalty-badge {
    display: inline-flex;
    align-items: center;
    background-color: #E5EFFF;
    color: #0B55E0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #D8E6FA;
}

.loyalty-section .loyalty-title {
    font-size: 2.125rem;
    line-height: 1.25;
    font-weight: 800;
    color: #0A1B3A;
    letter-spacing: -0.02em;
}

.loyalty-section .loyalty-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
    color: #365380;
    max-width: 720px;
    margin: 0 auto;
}

.loyalty-section .loyalty-tab-control {
    background-color: #FFFFFF;
    border-radius: 50px;
    border: 1.5px solid #D8E6FA;
}

.loyalty-section .loyalty-tab-btn {
    background: transparent;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.925rem;
    color: #365380;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.loyalty-section .loyalty-tab-btn.active {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(26, 107, 255, 0.25);
}

.loyalty-section .loyalty-step-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.loyalty-section .loyalty-step-card:hover {
    border-color: #1A6BFF;
    box-shadow: 0 12px 30px rgba(26, 107, 255, 0.12);
}

.loyalty-section .step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B00;
    background-color: #FFF0E5;
    border-radius: 12px;
    padding: 4px 12px;
    border: 1px solid #FFE0CC;
}

.loyalty-section .step-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: #EEF5FF;
    color: #1A6BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid #D8E6FA;
}

.loyalty-section .step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.35;
}

.loyalty-section .step-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #365380;
}

.loyalty-section .step-perk {
    background-color: #EEF5FF;
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid #D8E6FA;
}

.loyalty-section .perk-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0B55E0;
}

.loyalty-section .loyalty-cta-box {
    background: linear-gradient(135deg, #EEF5FF 0%, #FFF0E6 100%);
    border: 1px solid #FFE0CC;
    border-radius: 20px;
}

.loyalty-section .cta-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.loyalty-section .cta-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: #365380;
}

.loyalty-section .loyalty-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
    transition: filter 0.2s ease;
}

.loyalty-section .loyalty-btn-primary:hover {
    color: #FFFFFF;
    filter: brightness(1.06);
}

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

    .loyalty-section .loyalty-subtitle {
        font-size: 0.875rem;
    }

    .loyalty-section .step-title {
        font-size: 1rem;
    }

    .loyalty-section .cta-heading {
        font-size: 1.1rem;
    }

    .loyalty-section .loyalty-tab-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* ===== seasonal-collection ===== */
.seasonal-collection-block {
    background-color: #F4F8FE;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0A1B3A;
    position: relative;
    overflow: hidden
}

.seasonal-collection-block .seasonal-badge {
    background: #FFF0E5;
    color: #D95200;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid #FFE0CC
}

.seasonal-collection-block .seasonal-title {
    font-size: 2.125rem;
    font-weight: 800;
    line-height: 1.25;
    color: #0A1B3A;
    letter-spacing: -0.02em
}

.seasonal-collection-block .seasonal-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    color: #365380
}

.seasonal-collection-block .seasonal-view-all-btn {
    background: #FFFFFF;
    color: #1A6BFF;
    border: 2px solid #1A6BFF;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: none
}

.seasonal-collection-block .seasonal-view-all-btn:hover {
    background: #1A6BFF;
    color: #FFFFFF;
    border-color: #1A6BFF
}

.seasonal-collection-block .seasonal-filter-pill {
    background: #FFFFFF;
    color: #365380;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer
}

.seasonal-collection-block .seasonal-filter-pill.active {
    background: #1A6BFF;
    color: #FFFFFF;
    border-color: #1A6BFF
}

.seasonal-collection-block .seasonal-pass-card {
    background: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06)
}

.seasonal-collection-block .card-media-wrap {
    background: #EEF5FF
}

.seasonal-collection-block .card-media-wrap img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block
}

.seasonal-collection-block .card-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFF0E5;
    color: #D95200;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #FFE0CC
}

.seasonal-collection-block .card-iata-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #0A1B3A;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px
}

.seasonal-collection-block .rating-stars {
    color: #FF6B00;
    font-size: 0.875rem
}

.seasonal-collection-block .rating-score {
    font-weight: 700;
    color: #0A1B3A
}

.seasonal-collection-block .reviews-count {
    color: #5F7DAB;
    font-size: 0.8rem;
    font-weight: 500
}

.seasonal-collection-block .card-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3
}

.seasonal-collection-block .card-title-link {
    color: #0A1B3A;
    text-decoration: none
}

.seasonal-collection-block .card-title-link:hover {
    color: #1A6BFF
}

.seasonal-collection-block .card-feature-text {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #365380
}

.seasonal-collection-block .card-feature-text i {
    color: #1A6BFF
}

.seasonal-collection-block .price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F7DAB;
    text-transform: uppercase
}

.seasonal-collection-block .price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1
}

.seasonal-collection-block .badge-pill-soft {
    background: #E5EFFF;
    color: #0B55E0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block
}

.seasonal-collection-block .seasonal-card-action-btn {
    background: #1A6BFF;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none
}

.seasonal-collection-block .seasonal-card-action-btn:hover {
    background: #0B55E0;
    color: #FFFFFF
}

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

    .seasonal-collection-block .card-item-title {
        font-size: 0.875rem;
        hyphens: auto
    }

    .seasonal-collection-block .card-media-wrap img {
        height: 160px
    }
}

/* ===== bundle-deals ===== */
.bundle-deals-section {
    background-color: #F4F8FE;
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: #0A1B3A;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.bundle-deals-section .bundle-badge {
    background-color: #E5EFFF;
    color: #0B55E0;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid #D8E6FA
}

.bundle-deals-section .bundle-title {
    font-size: 2.125rem;
    font-weight: 800;
    color: #0A1B3A;
    line-height: 1.25;
    letter-spacing: -0.02em
}

.bundle-deals-section .bundle-subtitle {
    font-size: 1rem;
    color: #365380;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.bundle-deals-section .bundle-filter-btn {
    background-color: #FFFFFF;
    color: #365380;
    border: 1.5px solid #D8E6FA;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    outline: none
}

.bundle-deals-section .bundle-filter-btn:hover {
    background-color: #EEF5FF;
    color: #1A6BFF;
    border-color: #1A6BFF
}

.bundle-deals-section .bundle-filter-btn.active {
    background-color: #1A6BFF;
    color: #FFFFFF;
    border-color: #1A6BFF;
    box-shadow: 0 4px 14px rgba(26, 107, 255, 0.25)
}

.bundle-deals-section .bundle-card {
    background: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
    overflow: hidden
}

.bundle-deals-section .bundle-card:hover {
    border-color: #1A6BFF;
    box-shadow: 0 12px 30px rgba(26, 107, 255, 0.14)
}

.bundle-deals-section .bundle-card-header {
    overflow: hidden;
    height: 210px;
    background-color: #EEF5FF
}

.bundle-deals-section .bundle-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block
}

.bundle-deals-section .bundle-tag-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    z-index: 2
}

.bundle-deals-section .bundle-category {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1A6BFF;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.bundle-deals-section .bundle-seller-pill {
    background: #FFF0E5;
    color: #D95200;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px
}

.bundle-deals-section .bundle-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem
}

.bundle-deals-section .bundle-title-link {
    color: #0A1B3A;
    text-decoration: none
}

.bundle-deals-section .bundle-title-link:hover {
    color: #1A6BFF
}

.bundle-deals-section .bundle-desc {
    font-size: 0.875rem;
    color: #365380;
    line-height: 1.5
}

.bundle-deals-section .bundle-items-included {
    background: #F4F8FE;
    border: 1px solid #D8E6FA;
    border-radius: 12px;
    padding: 10px 14px
}

.bundle-deals-section .bundle-item {
    font-size: 0.8125rem
}

.bundle-deals-section .item-name {
    color: #0A1B3A;
    font-weight: 600
}

.bundle-deals-section .item-name i {
    color: #1A6BFF
}

.bundle-deals-section .item-sep-price {
    color: #5F7DAB;
    font-size: 0.75rem
}

.bundle-deals-section .border-top {
    border-top: 1px solid #D8E6FA !important
}

.bundle-deals-section .price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F7DAB;
    text-transform: uppercase;
    letter-spacing: 0.03em
}

.bundle-deals-section .separate-price {
    font-size: 0.9375rem;
    color: #5F7DAB;
    font-weight: 600
}

.bundle-deals-section .final-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1
}

.bundle-deals-section .bundle-action-btn {
    background: linear-gradient(135deg, #1A6BFF 0%, #0099FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 16px rgba(26, 107, 255, 0.28)
}

.bundle-deals-section .bundle-action-btn:hover {
    filter: brightness(1.08);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(26, 107, 255, 0.38)
}

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

    .bundle-deals-section .bundle-card-title {
        font-size: 0.875rem;
        hyphens: auto
    }

    .bundle-deals-section .bundle-card-header {
        height: 180px
    }

    .bundle-deals-section .bundle-img {
        height: 180px
    }
}

/* ===== calculator ===== */
.lounge-calculator-section {
    background-color: #F4F8FE;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0A1B3A;
}

.lounge-calculator-section .calc-badge {
    background-color: #E5EFFF;
    color: #0B55E0;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.lounge-calculator-section .calc-main-title {
    color: #0A1B3A;
    font-size: 2.125rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.lounge-calculator-section .calc-subtitle {
    color: #365380;
    font-size: 1.05rem;
    line-height: 1.6;
}

.lounge-calculator-section .calc-card {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
}

.lounge-calculator-section .calc-summary-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #EEF5FF 100%);
    border: 1.5px solid #D8E6FA;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(26, 107, 255, 0.09);
}

.lounge-calculator-section .calc-block-title {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.lounge-calculator-section .text-primary-accent {
    color: #1A6BFF;
}

.lounge-calculator-section .calc-field-label {
    color: #0A1B3A;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.lounge-calculator-section .calc-select,
.lounge-calculator-section .calc-input {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    padding: 12px 16px;
    color: #0A1B3A;
    font-size: 0.95rem;
    font-weight: 500;
}

.lounge-calculator-section .calc-select:focus,
.lounge-calculator-section .calc-input:focus {
    border-color: #1A6BFF;
    background-color: #FFFFFF;
    color: #0A1B3A;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
    outline: none;
}

.lounge-calculator-section .calc-input::placeholder {
    color: #5F7DAB;
    opacity: 1;
}

.lounge-calculator-section .calc-counter-box {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    height: 48px;
}

.lounge-calculator-section .calc-counter-btn {
    width: 34px;
    height: 34px;
    background-color: #EEF5FF;
    border: 1px solid #D8E6FA;
    border-radius: 8px;
    color: #1A6BFF;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.lounge-calculator-section .calc-counter-btn:hover {
    background-color: #1A6BFF;
    color: #FFFFFF;
    border-color: #1A6BFF;
}

.lounge-calculator-section .calc-counter-val {
    color: #0A1B3A;
    font-size: 0.95rem;
}

.lounge-calculator-section .calc-radio-card {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 14px;
    cursor: pointer;
}

.lounge-calculator-section .calc-radio-card:hover {
    border-color: #1A6BFF;
    background-color: #EEF5FF;
}

.lounge-calculator-section .calc-radio-card input[type="radio"]:checked+div {
    color: #0B55E0;
}

.lounge-calculator-section .calc-radio-card input[type="radio"] {
    accent-color: #1A6BFF;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.lounge-calculator-section .calc-tier-title {
    color: #0A1B3A;
    font-size: 0.95rem;
    font-weight: 700;
}

.lounge-calculator-section .calc-tier-desc {
    color: #365380;
    font-size: 0.8rem;
    margin-top: 2px;
}

.lounge-calculator-section .border-bottom-blue {
    border-bottom: 1.5px solid #D8E6FA;
}

.lounge-calculator-section .calc-summary-title {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.lounge-calculator-section .calc-live-pill {
    background-color: #FFF0E5;
    color: #D95200;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.lounge-calculator-section .calc-list-label {
    color: #365380;
    font-size: 0.9rem;
    font-weight: 500;
}

.lounge-calculator-section .calc-list-val {
    color: #0A1B3A;
    font-size: 0.95rem;
    font-weight: 700;
}

.lounge-calculator-section .calc-total-box {
    background: linear-gradient(135deg, #1A6BFF 0%, #0099FF 100%);
    border-radius: 16px;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(26, 107, 255, 0.28);
}

.lounge-calculator-section .calc-total-caption {
    color: #D6E5FF;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lounge-calculator-section .calc-total-price {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
}

.lounge-calculator-section .calc-price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2px;
}

.lounge-calculator-section .calc-price-number {
    font-size: 2.75rem;
    font-weight: 800;
}

.lounge-calculator-section .calc-price-usd {
    font-size: 0.9rem;
    font-weight: 700;
    color: #D6E5FF;
}

.lounge-calculator-section .calc-total-subtext {
    color: #E5EFFF;
    font-size: 0.75rem;
}

.lounge-calculator-section .calc-submit-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
    cursor: pointer;
}

.lounge-calculator-section .calc-submit-btn:hover {
    background: linear-gradient(135deg, #E05A00 0%, #FF8F26 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(255, 107, 0, 0.38);
}

@media (max-width: 767.98px) {
    .lounge-calculator-section .calc-main-title {
        font-size: 16px;
        hyphens: auto;
    }

    .lounge-calculator-section .calc-block-title,
    .lounge-calculator-section .calc-summary-title {
        font-size: 14px;
        hyphens: auto;
    }

    .lounge-calculator-section .calc-price-number {
        font-size: 2.25rem;
    }
}

/* ===== catalog-grid ===== */
.catalog-passes-block {
    background-color: #F4F8FE;
    color: #0A1B3A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.catalog-passes-block .catalog-passes-block__badge {
    display: inline-block;
    background-color: #E5EFFF;
    color: #0B55E0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid #D8E6FA;
}

.catalog-passes-block .catalog-passes-block__title {
    color: #0A1B3A;
    font-size: 2.125rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}

.catalog-passes-block .catalog-passes-block__subtitle {
    color: #365380;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 auto;
}

.catalog-passes-block .catalog-passes-block__filter-group {
    padding: 6px;
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    display: inline-flex;
}

.catalog-passes-block .catalog-passes-block__filter-btn {
    border: none;
    background-color: transparent;
    color: #365380;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
}

.catalog-passes-block .catalog-passes-block__filter-btn.is-active {
    background-color: #1A6BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(26, 107, 255, 0.28);
}

.catalog-passes-block .catalog-passes-block__card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
}

.catalog-passes-block .catalog-passes-block__card:hover {
    border-color: #1A6BFF;
    box-shadow: 0 12px 30px rgba(26, 107, 255, 0.14);
}

.catalog-passes-block .catalog-passes-block__image-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background-color: #EEF5FF;
}

.catalog-passes-block .catalog-passes-block__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.catalog-passes-block .catalog-passes-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-passes-block .catalog-passes-block__status-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #FFF0E5;
    color: #D95200;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid #FFE0CC;
}

.catalog-passes-block .catalog-passes-block__location {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5F7DAB;
}

.catalog-passes-block .catalog-passes-block__rating {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF6B00;
}

.catalog-passes-block .catalog-passes-block__card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.catalog-passes-block .catalog-passes-block__title-link {
    color: #0A1B3A;
    text-decoration: none;
}

.catalog-passes-block .catalog-passes-block__title-link:hover {
    color: #1A6BFF;
}

.catalog-passes-block .catalog-passes-block__card-desc {
    color: #365380;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.catalog-passes-block .catalog-passes-block__price-row {
    border-top: 1px solid #D8E6FA;
}

.catalog-passes-block .catalog-passes-block__price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F7DAB;
    text-transform: uppercase;
}

.catalog-passes-block .catalog-passes-block__price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FF6B00;
}

.catalog-passes-block .catalog-passes-block__buy-btn {
    background: linear-gradient(135deg, #1A6BFF 0%, #0099FF 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 6px 16px rgba(26, 107, 255, 0.25);
    cursor: pointer;
}

.catalog-passes-block .catalog-passes-block__buy-btn:hover {
    background: linear-gradient(135deg, #0B55E0 0%, #0088E0 100%);
}

.catalog-passes-block .catalog-passes-block__modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 27, 58, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}

.catalog-passes-block .catalog-passes-block__modal-backdrop.is-open {
    display: flex;
}

.catalog-passes-block .catalog-passes-block__modal-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    max-width: 620px;
    width: 100%;
    padding: 24px;
    border: 1px solid #D8E6FA;
    box-shadow: 0 20px 40px rgba(10, 27, 58, 0.25);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.catalog-passes-block .catalog-passes-block__modal-badge {
    background-color: #FFF0E5;
    color: #D95200;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.catalog-passes-block .catalog-passes-block__modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0A1B3A;
}

.catalog-passes-block .catalog-passes-block__close-btn {
    border: none;
    background-color: #EEF5FF;
    color: #0B55E0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.catalog-passes-block .catalog-passes-block__selected-info {
    background-color: #EEF5FF;
    border: 1px solid #D8E6FA;
    border-radius: 14px;
}

.catalog-passes-block .catalog-passes-block__info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F7DAB;
    text-transform: uppercase;
}

.catalog-passes-block .catalog-passes-block__info-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A1B3A;
}

.catalog-passes-block .catalog-passes-block__info-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FF6B00;
}

.catalog-passes-block .catalog-passes-block__form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0A1B3A;
    margin-bottom: 6px;
}

.catalog-passes-block .catalog-passes-block__input {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    padding: 10px 14px;
    color: #0A1B3A;
    font-size: 0.95rem;
}

.catalog-passes-block .catalog-passes-block__input:focus {
    border-color: #1A6BFF;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
    outline: none;
}

.catalog-passes-block .catalog-passes-block__input::placeholder {
    color: #5F7DAB;
    opacity: 1;
}

.catalog-passes-block .catalog-passes-block__submit-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
    cursor: pointer;
}

.catalog-passes-block .catalog-passes-block__submit-btn:hover {
    background: linear-gradient(135deg, #E05A00 0%, #F59333 100%);
}

@media (max-width: 767.98px) {
    .catalog-passes-block .catalog-passes-block__title {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .catalog-passes-block .catalog-passes-block__card-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .catalog-passes-block .catalog-passes-block__modal-title {
        font-size: 1.1rem;
        hyphens: auto;
    }

    .catalog-passes-block .catalog-passes-block__modal-card {
        padding: 16px;
    }
}

/* ===== standalone modal (for pages outside .catalog-passes-block) ===== */
.catalog-passes-block__modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 27, 58, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}

.catalog-passes-block__modal-backdrop.is-open {
    display: flex;
}

.catalog-passes-block__modal-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    max-width: 620px;
    width: 100%;
    padding: 24px;
    border: 1px solid #D8E6FA;
    box-shadow: 0 20px 40px rgba(10, 27, 58, 0.25);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.catalog-passes-block__modal-badge {
    background-color: #FFF0E5;
    color: #D95200;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.catalog-passes-block__modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0A1B3A;
}

.catalog-passes-block__close-btn {
    border: none;
    background-color: #EEF5FF;
    color: #0B55E0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.catalog-passes-block__selected-info {
    background-color: #EEF5FF;
    border: 1px solid #D8E6FA;
    border-radius: 14px;
}

.catalog-passes-block__info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F7DAB;
    text-transform: uppercase;
}

.catalog-passes-block__info-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A1B3A;
}

.catalog-passes-block__info-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FF6B00;
}

.catalog-passes-block__form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0A1B3A;
    margin-bottom: 6px;
}

.catalog-passes-block__input {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    padding: 10px 14px;
    color: #0A1B3A;
    font-size: 0.95rem;
}

.catalog-passes-block__input:focus {
    border-color: #1A6BFF;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
    outline: none;
}

.catalog-passes-block__input::placeholder {
    color: #5F7DAB;
    opacity: 1;
}

.catalog-passes-block__submit-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
    cursor: pointer;
}

.catalog-passes-block__submit-btn:hover {
    background: linear-gradient(135deg, #E05A00 0%, #F59333 100%);
}

/* ===== footer ===== */
.site-footer-section {
    background-color: #F4F8FE;
    border-top: 1px solid #D8E6FA;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #365380;
}

.site-footer-section .site-footer-disclaimer-wrapper {
    width: 100%;
}

.site-footer-section .site-footer-disclaimer-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.06);
}

.site-footer-section .site-footer-disclaimer-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #FF6B00;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.site-footer-section .site-footer-disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-disclaimer-text {
    font-size: 0.875rem;
    color: #365380;
    line-height: 1.5;
}

.site-footer-section .site-footer-main-grid {
    border-bottom: 1px solid #D8E6FA;
}

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

.site-footer-section .site-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A6BFF;
    letter-spacing: -0.02em;
}

.site-footer-section .site-footer-brand-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.6;
}

.site-footer-section .site-footer-contact-icon {
    color: #1A6BFF;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.site-footer-section .site-footer-contact-icon-wa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-contact-val,
.site-footer-section .site-footer-contact-link {
    font-size: 0.875rem;
    color: #0A1B3A;
    text-decoration: none;
    font-weight: 500;
}

.site-footer-section .site-footer-contact-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-col-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-nav-link {
    color: #365380;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.site-footer-section .site-footer-nav-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-payment-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.5;
}

.site-footer-section .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 10px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 107, 255, 0.05);
}

.site-footer-section .site-footer-pay-icon-visa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-pay-icon-mc {
    color: #FF6B00;
}

.site-footer-section .site-footer-security-note {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0A1B3A;
}

.site-footer-section .site-footer-lock-icon {
    color: #1A6BFF;
}

.site-footer-section .site-footer-bottom-bar {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.site-footer-section .site-footer-copyright-text,
.site-footer-section .site-footer-copyright-sub {
    color: #5F7DAB;
}

@media (max-width: 767.98px) {
    .site-footer-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .site-footer-section .site-footer-disclaimer-title {
        font-size: 0.9375rem;
    }

    .site-footer-section .site-footer-col-title {
        font-size: 1rem;
    }
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    color: #0A1B3A;
    margin: 0;
    padding: 0;
}

.site-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.site-header-block .navbar {
    padding: 0.875rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D8E6FA;
}

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

.site-header-block .brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1A6BFF;
    line-height: 1.2;
}

.site-header-block .custom-toggler {
    padding: 0.5rem 0.75rem;
    background-color: #EEF5FF;
    border-radius: 10px;
    box-shadow: none;
}

.site-header-block .text-primary-accent {
    color: #1A6BFF;
    font-size: 1.25rem;
}

.site-header-block .nav-link-custom {
    font-size: 1rem;
    font-weight: 600;
    color: #365380;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #1A6BFF;
    background-color: #EEF5FF;
}

.site-header-block .btn-header-cta {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
    text-decoration: none;
}

.site-header-block .btn-header-cta:hover,
.site-header-block .btn-header-cta:focus {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

@media (max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: 16px;
        border: 1px solid #D8E6FA;
        box-shadow: 0 12px 28px rgba(26, 107, 255, 0.08);
    }

    .site-header-block .nav-link-custom {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .site-header-block .header-action-group {
        padding-top: 0.75rem;
        border-top: 1px solid #D8E6FA;
        margin-top: 0.5rem;
    }

    .site-header-block .btn-header-cta {
        width: 100%;
        justify-content: center;
    }
}

.catalog-banner-block {
    background-color: #F4F8FE;
    border-bottom: 1px solid #D8E6FA;
    padding: 3.5rem 0;
}

.catalog-banner-block .catalog-badge-top {
    display: inline-flex;
    align-items: center;
    background-color: #E5EFFF;
    color: #0B55E0;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #D8E6FA;
}

.catalog-banner-block .catalog-main-title {
    color: #0A1B3A;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.catalog-banner-block .catalog-main-subtitle {
    color: #365380;
    font-size: 1.0625rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 680px;
}

.catalog-banner-block .catalog-stats-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(26, 107, 255, 0.06);
}

.catalog-banner-block .catalog-stats-icon-box {
    width: 44px;
    height: 44px;
    background-color: #EEF5FF;
    color: #1A6BFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.catalog-banner-block .catalog-stats-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.2;
}

.catalog-banner-block .catalog-stats-sub {
    font-size: 0.8125rem;
    color: #5F7DAB;
    line-height: 1.3;
}

.catalog-main-section {
    background-color: #FFFFFF;
}

.catalog-main-section .catalog-controls-card {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
    border-radius: 16px;
}

.catalog-main-section .catalog-search-wrap .catalog-search-icon {
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #5F7DAB;
    font-size: 0.95rem;
}

.catalog-main-section .catalog-search-input {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 50px;
    padding: 10px 16px 10px 42px;
    color: #0A1B3A;
    font-size: 0.9375rem;
}

.catalog-main-section .catalog-search-input::placeholder {
    color: #5F7DAB;
    opacity: 1;
}

.catalog-main-section .catalog-search-input:focus {
    border-color: #1A6BFF;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
    background-color: #FFFFFF;
}

.catalog-main-section .catalog-filter-btn {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    color: #365380;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: none;
}

.catalog-main-section .catalog-filter-btn:hover {
    background-color: #EEF5FF;
    color: #1A6BFF;
    border-color: #1A6BFF;
}

.catalog-main-section .catalog-filter-btn.active {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-color: #1A6BFF;
    box-shadow: 0 4px 12px rgba(26, 107, 255, 0.25);
}

.catalog-main-section .catalog-item-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
}

.catalog-main-section .catalog-item-card:hover {
    border-color: #1A6BFF;
    box-shadow: 0 12px 30px rgba(26, 107, 255, 0.14);
}

.catalog-main-section .catalog-item-image-wrap {
    height: 220px;
    overflow: hidden;
    background-color: #EEF5FF;
}

.catalog-main-section .catalog-item-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.catalog-main-section .catalog-pill-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #FFFFFF;
    color: #0B55E0;
    border: 1px solid #D8E6FA;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.catalog-main-section .catalog-rating-tag {
    background-color: #FFF0E5;
    color: #D95200;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.catalog-main-section .catalog-star-icon {
    color: #FF6B00;
}

.catalog-main-section .catalog-reviews-count {
    color: #5F7DAB;
    font-weight: 500;
}

.catalog-main-section .catalog-category-tag {
    color: #5F7DAB;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.catalog-main-section .catalog-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.catalog-main-section .catalog-title-link {
    color: #0A1B3A;
    text-decoration: none;
}

.catalog-main-section .catalog-title-link:hover {
    color: #1A6BFF;
}

.catalog-main-section .catalog-item-desc {
    color: #365380;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.catalog-main-section .catalog-price-label {
    font-size: 0.75rem;
    color: #5F7DAB;
    font-weight: 600;
    text-transform: uppercase;
}

.catalog-main-section .catalog-price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1;
}

.catalog-main-section .catalog-btn-details {
    background-color: #EEF5FF;
    color: #1A6BFF;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
}

.catalog-main-section .catalog-btn-details:hover {
    background-color: #D8E6FA;
    color: #0B55E0;
}

.catalog-main-section .catalog-btn-order {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(26, 107, 255, 0.25);
}

.catalog-main-section .catalog-btn-order:hover {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
}

.catalog-main-section .catalog-empty-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #EEF5FF;
    color: #1A6BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.catalog-main-section .catalog-empty-title {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.catalog-main-section .catalog-empty-text {
    color: #5F7DAB;
    font-size: 0.95rem;
}

.catalog-main-section .catalog-btn-reset {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
}

.catalog-purchase-card {
    background: linear-gradient(135deg, #EEF5FF 0%, #FFF0E6 100%);
    border: 1px solid #FFE0CC;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.08);
}

.catalog-purchase-badge {
    display: inline-flex;
    align-items: center;
    background-color: #FFF0E5;
    color: #D95200;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #FFE0CC;
}

.catalog-purchase-heading {
    color: #0A1B3A;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
}

.catalog-purchase-lead {
    color: #365380;
    font-size: 0.95rem;
    line-height: 1.6;
}

.catalog-selected-pass-box {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 14px;
}

.catalog-selected-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F7DAB;
    text-transform: uppercase;
}

.catalog-selected-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A1B3A;
}

.catalog-selected-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FF6B00;
}

.catalog-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A1B3A;
    margin-bottom: 6px;
}

.catalog-form-input,
.catalog-form-textarea {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    padding: 12px 16px;
    color: #0A1B3A;
    font-size: 0.9375rem;
}

.catalog-form-input::placeholder,
.catalog-form-textarea::placeholder {
    color: #5F7DAB;
    opacity: 1;
}

.catalog-form-input:focus,
.catalog-form-textarea:focus {
    background-color: #FFFFFF;
    border-color: #1A6BFF;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
}

.catalog-form-submit-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
}

.catalog-form-submit-btn:hover {
    background: linear-gradient(135deg, #E05A00 0%, #FF9124 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(255, 107, 0, 0.38);
}

.site-footer-section {
    background-color: #F4F8FE;
    border-top: 1px solid #D8E6FA;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #365380;
}

.site-footer-section .site-footer-disclaimer-wrapper {
    width: 100%;
}

.site-footer-section .site-footer-disclaimer-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.06);
}

.site-footer-section .site-footer-disclaimer-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #FF6B00;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.site-footer-section .site-footer-disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-disclaimer-text {
    font-size: 0.875rem;
    color: #365380;
    line-height: 1.5;
}

.site-footer-section .site-footer-main-grid {
    border-bottom: 1px solid #D8E6FA;
}

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

.site-footer-section .site-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A6BFF;
    letter-spacing: -0.02em;
}

.site-footer-section .site-footer-brand-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.6;
}

.site-footer-section .site-footer-contact-icon {
    color: #1A6BFF;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.site-footer-section .site-footer-contact-icon-wa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-contact-val,
.site-footer-section .site-footer-contact-link {
    font-size: 0.875rem;
    color: #0A1B3A;
    text-decoration: none;
    font-weight: 500;
}

.site-footer-section .site-footer-contact-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-col-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-nav-link {
    color: #365380;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.site-footer-section .site-footer-nav-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-payment-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.5;
}

.site-footer-section .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 10px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 107, 255, 0.05);
}

.site-footer-section .site-footer-pay-icon-visa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-pay-icon-mc {
    color: #FF6B00;
}

.site-footer-section .site-footer-security-note {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0A1B3A;
}

.site-footer-section .site-footer-lock-icon {
    color: #1A6BFF;
}

.site-footer-section .site-footer-bottom-bar {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.site-footer-section .site-footer-copyright-text,
.site-footer-section .site-footer-copyright-sub {
    color: #5F7DAB;
}

@media (max-width: 767.98px) {
    .catalog-banner-block .catalog-main-title {
        font-size: 18px;
        hyphens: auto;
    }

    .catalog-banner-block .catalog-main-subtitle {
        font-size: 0.9rem;
    }

    .catalog-main-section .catalog-item-title {
        font-size: 16px;
    }

    .catalog-purchase-heading {
        font-size: 16px;
    }

    .site-footer-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .site-footer-section .site-footer-disclaimer-title {
        font-size: 0.9375rem;
    }

    .site-footer-section .site-footer-col-title {
        font-size: 1rem;
    }
}


/* ===== PAGE: reviews ===== */
.reviews-section { background-color: #F4F8FE; min-height: 80vh; }
.reviews-section .reviews-section__badge { background-color: #E5EFFF; color: #0B55E0; font-size: 0.8125rem; letter-spacing: 0.05em; }
.reviews-section .reviews-section__title { color: #0A1B3A; font-weight: 800; font-size: 2.5rem; letter-spacing: -0.02em; line-height: 1.2; }
.reviews-section .reviews-section__lead { color: #365380; font-size: 1.125rem; max-width: 720px; line-height: 1.6; }
.reviews-section .reviews-section__controls { background-color: #FFFFFF; border: 1px solid #D8E6FA; box-shadow: 0 4px 16px rgba(26, 107, 255, 0.04); }
.reviews-section .reviews-section__search-wrap .form-control { background-color: #F4F8FE; border: 1.5px solid #D8E6FA; color: #0A1B3A; font-size: 0.95rem; }
.reviews-section .reviews-section__search-wrap .form-control:focus { background-color: #FFFFFF; border-color: #1A6BFF; box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15); }
.reviews-section .reviews-section__search-wrap .form-control::placeholder { color: #5F7DAB; opacity: 1; }
.reviews-section .reviews-section__filter-label { color: #0A1B3A; font-size: 0.95rem; }
.reviews-section .reviews-section__filter-wrap .form-select { background-color: #F4F8FE; border: 1.5px solid #D8E6FA; color: #0A1B3A; font-weight: 600; font-size: 0.95rem; min-width: 170px; }
.reviews-section .reviews-section__filter-wrap .form-select:focus { border-color: #1A6BFF; box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15); }
.reviews-section .reviews-section__card { background-color: #FFFFFF; border: 1px solid #D8E6FA !important; border-radius: 20px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.reviews-section .reviews-section__card:hover { border-color: #1A6BFF !important; box-shadow: 0 12px 30px rgba(26, 107, 255, 0.12) !important; }
.reviews-section .reviews-section__card-media { height: 220px; overflow: hidden; background-color: #EEF5FF; }
.reviews-section .reviews-section__card-img { height: 220px; width: 100%; object-fit: cover; transition: transform 0.3s ease; }
.reviews-section .reviews-section__card:hover .reviews-section__card-img { transform: scale(1.03); }
.reviews-section .reviews-section__hub-badge { background-color: rgba(10, 27, 58, 0.85); color: #FFFFFF; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.03em; backdrop-filter: blur(4px); }
.reviews-section .reviews-section__card-title a { color: #0A1B3A; font-weight: 700; transition: color 0.15s ease; }
.reviews-section .reviews-section__card-title a:hover { color: #1A6BFF; }
.reviews-section .reviews-section__card-footer { border-color: #D8E6FA !important; }
.reviews-section .reviews-section__comment-badge { background-color: #EEF5FF; color: #0B55E0; font-size: 0.8rem; font-weight: 600; padding: 6px 12px; }
.reviews-section .reviews-section__cta-banner { background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%); color: #FFFFFF; border: 1px solid #1A6BFF; }
.reviews-section .reviews-section__cta-badge { background-color: rgba(255, 255, 255, 0.2); color: #FFFFFF; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.reviews-section .reviews-section__cta-heading { color: #FFFFFF; font-weight: 800; }
.reviews-section .reviews-section__cta-subtext { color: #D6E5FF; font-size: 1rem; max-width: 600px; }
.reviews-section .reviews-section__cta-btn { background: #FF6B00; border: none; color: #FFFFFF; font-weight: 700; box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3); transition: background-color 0.2s ease; }
.reviews-section .reviews-section__cta-btn:hover { background-color: #E05A00; color: #FFFFFF; }
@media (max-width: 767.98px) { .reviews-section .reviews-section__title { font-size: 1.125rem; hyphens: auto; } .reviews-section .reviews-section__cta-heading { font-size: 1rem; } .reviews-section .reviews-section__card-title { font-size: 0.875rem; } }

/* ===== PAGE: how-it-works ===== */
.lounge-how-it-works {
  background-color: #FFFFFF;
  color: #0A1B3A;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lounge-how-it-works__heading {
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0A1B3A;
}

.lounge-how-it-works__subheading {
  font-size: 1.05rem;
  color: #365380;
  max-width: 650px;
  line-height: 1.55;
}

.lounge-how-it-works__badge {
  background-color: #E5EFFF;
  color: #0B55E0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #D8E6FA;
}

.lounge-how-it-works__badge-secondary {
  background-color: #FFF0E5;
  color: #D95200;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #FFE0CC;
}

.lounge-how-it-works__toggle-wrapper {
  background-color: #F4F8FE;
  border: 1.5px solid #D8E6FA;
  border-radius: 50px;
}

.lounge-how-it-works__toggle-btn {
  border: none;
  background: transparent;
  color: #365380;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 50px;
  outline: none;
  cursor: pointer;
}

.lounge-how-it-works__toggle-btn.active {
  background-color: #1A6BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(26, 107, 255, 0.25);
}

.lounge-how-it-works__card {
  background-color: #FFFFFF;
  border: 1px solid #D8E6FA;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
  position: relative;
}

.lounge-how-it-works__icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #EEF5FF;
  border: 1px solid #D8E6FA;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lounge-how-it-works__icon {
  font-size: 1.75rem;
  color: #1A6BFF;
}

.lounge-how-it-works__step-number {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #FF6B00;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
}

.lounge-how-it-works__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A1B3A;
  line-height: 1.35;
}

.lounge-how-it-works__card-text {
  font-size: 0.95rem;
  color: #365380;
  line-height: 1.6;
}

.lounge-how-it-works__banner {
  background: linear-gradient(135deg, #EEF5FF 0%, #FFF0E6 100%);
  border: 1px solid #FFE0CC;
  border-radius: 24px;
}

.lounge-how-it-works__banner-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0A1B3A;
  line-height: 1.3;
}

.lounge-how-it-works__banner-text {
  font-size: 1rem;
  color: #365380;
  line-height: 1.6;
}

.lounge-how-it-works__btn-primary {
  background: linear-gradient(135deg, #1A6BFF 0%, #0099FF 100%);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(26, 107, 255, 0.28);
  border: none;
}

.lounge-how-it-works__accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #D8E6FA;
  border-radius: 16px;
  overflow: hidden;
}

.lounge-how-it-works__accordion-header {
  background-color: #FFFFFF;
  border: none;
  color: #0A1B3A;
  font-size: 1.05rem;
  cursor: pointer;
  outline: none;
}

.lounge-how-it-works__accordion-icon {
  color: #1A6BFF;
  font-size: 1rem;
}

.lounge-how-it-works__accordion-body {
  background-color: #F4F8FE;
  border-top: 1px solid #D8E6FA;
  color: #365380;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .lounge-how-it-works__heading {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .lounge-how-it-works__banner-title {
    font-size: 1.25rem;
  }
  .lounge-how-it-works__card-title {
    font-size: 1.1rem;
  }
  .lounge-how-it-works__toggle-btn {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}

/* ===== PAGE: blog ===== */
.lounge-blog-section{background-color:#F4F8FE;position:relative;overflow:hidden}.lounge-blog-heading{color:#0A1B3A;font-size:2.125rem;line-height:1.25}.lounge-blog-subhead{color:#365380;font-size:1.05rem;line-height:1.6}.lounge-blog-search-box{width:100%}.lounge-blog-search-icon{left:18px;top:50%;transform:translateY(-50%);color:#5F7DAB;font-size:1rem;pointer-events:none;z-index:4}.lounge-blog-search-input{background-color:#FFFFFF;border:1.5px solid #D8E6FA;border-radius:50px;padding:12px 20px 12px 46px;font-size:0.95rem;color:#0A1B3A}.lounge-blog-search-input:focus{background-color:#FFFFFF;border-color:#1A6BFF;box-shadow:0 0 0 4px rgba(26,107,255,0.12);color:#0A1B3A}.lounge-blog-search-input::placeholder{color:#5F7DAB;opacity:1}.lounge-filter-btn{background-color:#FFFFFF;color:#365380;border:1px solid #D8E6FA;border-radius:50px;padding:8px 20px;font-size:0.9rem;font-weight:600}.lounge-filter-btn:hover{background-color:#EEF5FF;color:#0B55E0;border-color:#1A6BFF}.lounge-filter-btn.active{background:linear-gradient(135deg,#1A6BFF 0%,#00A3FF 100%);color:#FFFFFF;border-color:transparent;box-shadow:0 4px 14px rgba(26,107,255,0.25)}.lounge-post-card{background:#FFFFFF;border-radius:20px;border:1px solid #D8E6FA;transition:transform 0.2s ease,box-shadow 0.2s ease}.lounge-post-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(26,107,255,0.12);border-color:#1A6BFF}.lounge-post-img-wrap{height:240px;background-color:#EEF5FF;border-top-left-radius:20px;border-top-right-radius:20px;overflow:hidden}.lounge-post-img{width:100%;height:240px;object-fit:cover}.lounge-card-category-badge{background:rgba(10,27,58,0.75);color:#FFFFFF;backdrop-filter:blur(6px);font-size:0.75rem;padding:6px 12px;border-radius:50px;font-weight:600;letter-spacing:0.02em}.lounge-post-meta{font-size:0.85rem;color:#5F7DAB}.lounge-post-author,.lounge-post-date{display:inline-flex;align-items:center}.lounge-post-title-link{color:#0A1B3A;text-decoration:none;transition:color 0.15s ease}.lounge-post-title-link:hover{color:#1A6BFF}.lounge-post-text{color:#365380;font-size:0.95rem;line-height:1.6}.lounge-btn-read-more{background-color:#EEF5FF;color:#0B55E0;border:1px solid #D8E6FA;border-radius:50px;padding:10px 22px;font-weight:600;font-size:0.9rem;display:inline-flex;align-items:center;transition:background-color 0.15s ease,color 0.15s ease}.lounge-btn-read-more:hover{background:linear-gradient(135deg,#1A6BFF 0%,#00A3FF 100%);color:#FFFFFF;border-color:transparent}.lounge-newsletter-card{background:linear-gradient(135deg,#1A6BFF 0%,#0A1B3A 100%);border-radius:24px;box-shadow:0 16px 36px rgba(26,107,255,0.2)}.lounge-newsletter-input{background-color:#FFFFFF;border:none;border-radius:50px 0 0 50px;padding:14px 22px;color:#0A1B3A;font-size:0.95rem}.lounge-newsletter-input:focus{background-color:#FFFFFF;color:#0A1B3A;box-shadow:none}.lounge-newsletter-input::placeholder{color:#5F7DAB;opacity:1}.lounge-btn-subscribe{background:linear-gradient(135deg,#FF6B00 0%,#FFA043 100%);color:#FFFFFF;border:none;border-radius:0 50px 50px 0;font-weight:700;font-size:0.95rem}.lounge-btn-subscribe:hover{background:linear-gradient(135deg,#E05A00 0%,#FF8C24 100%);color:#FFFFFF}@media (max-width:767.98px){.lounge-blog-heading{font-size:1.5rem}.lounge-post-img-wrap,.lounge-post-img{height:200px}.lounge-newsletter-input{border-radius:50px;margin-bottom:10px}.lounge-btn-subscribe{border-radius:50px;width:100%}.lounge-newsletter-card .input-group{flex-direction:column}}

/* ===== PAGE: privacy ===== */
.privacy-policy-section {
  background-color: #F4F8FE;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0A1B3A;
}
.privacy-policy-section .privacy-sidebar-card {
  background-color: #FFFFFF;
  border: 1px solid #D8E6FA;
}
.privacy-policy-section .privacy-badge-icon {
  width: 44px;
  height: 44px;
  background: #E5EFFF;
  color: #1A6BFF;
}
.privacy-policy-section .privacy-pill-tag {
  background-color: #E5EFFF;
  color: #0B55E0;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 10px;
}
.privacy-policy-section .privacy-toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A1B3A;
}
.privacy-policy-section .privacy-search-wrap .input-group-text {
  border-color: #D8E6FA;
  color: #1A6BFF;
}
.privacy-policy-section .privacy-search-wrap .form-control {
  border-color: #D8E6FA;
  color: #0A1B3A;
  font-size: 0.9rem;
}
.privacy-policy-section .privacy-search-wrap .form-control:focus {
  border-color: #1A6BFF;
  box-shadow: none;
}
.privacy-policy-section .privacy-toc-link {
  color: #365380;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.privacy-policy-section .privacy-toc-link:hover,
.privacy-policy-section .privacy-toc-link.active {
  color: #1A6BFF;
  background-color: #EEF5FF;
  font-weight: 600;
}
.privacy-policy-section .privacy-help-box {
  background-color: #EEF5FF;
  border: 1px solid #D8E6FA;
}
.privacy-policy-section .privacy-btn-sm {
  background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
  border: none;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 16px;
}
.privacy-policy-section .privacy-content-card {
  background-color: #FFFFFF;
  border: 1px solid #D8E6FA;
}
.privacy-policy-section .privacy-badge-tag {
  background-color: #E5EFFF;
  color: #0B55E0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
}
.privacy-policy-section .privacy-badge-tag-secondary {
  background-color: #FFF0E5;
  color: #D95200;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
}
.privacy-policy-section .privacy-main-heading {
  font-size: 2.125rem;
  font-weight: 800;
  color: #0A1B3A;
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 12px;
}
.privacy-policy-section .privacy-lead-text {
  font-size: 1.05rem;
  color: #365380;
  line-height: 1.6;
  margin-bottom: 0;
}
.privacy-policy-section .privacy-section-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0A1B3A;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #EEF5FF;
}
.privacy-policy-section p {
  color: #365380;
  line-height: 1.6;
  font-size: 0.95rem;
}
.privacy-policy-section .privacy-highlight-box {
  background-color: #FFF6F0;
  border-left: 4px solid #FF6B00;
}
.privacy-policy-section .privacy-mini-card {
  background-color: #F4F8FE;
  border: 1px solid #D8E6FA;
}
.privacy-policy-section .privacy-right-item {
  background-color: #FFFFFF;
  border-color: #D8E6FA !important;
}
.privacy-policy-section .privacy-table th {
  background-color: #EEF5FF;
  color: #0A1B3A;
  font-size: 0.85rem;
  font-weight: 700;
  border-color: #D8E6FA;
}
.privacy-policy-section .privacy-table td {
  font-size: 0.85rem;
  color: #365380;
  border-color: #D8E6FA;
}
.privacy-policy-section .privacy-contact-card {
  background-color: #EEF5FF;
  border: 1px solid #D8E6FA;
}
.privacy-policy-section .privacy-btn-outline {
  color: #1A6BFF;
  border: 2px solid #1A6BFF;
  border-radius: 50px;
  font-weight: 600;
  background: #FFFFFF;
}
.privacy-policy-section .privacy-btn-outline:hover {
  background: #1A6BFF;
  color: #FFFFFF;
}
@media (max-width: 767.98px) {
  .privacy-policy-section .privacy-main-heading {
    font-size: 1.125rem;
  }
  .privacy-policy-section .privacy-section-heading {
    font-size: 1rem;
  }
  .privacy-policy-section h3 {
    font-size: 0.875rem;
  }
  .privacy-policy-section .privacy-sidebar-card {
    position: static !important;
    margin-bottom: 1.5rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-page-section { background-color: #F4F8FE; min-height: 80vh; }
.terms-sidebar .terms-toc-card { background-color: #FFFFFF; border: 1px solid #D8E6FA; top: 100px; }
.terms-icon-box { width: 42px; height: 42px; border-radius: 12px; background-color: #EEF5FF; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #1A6BFF; }
.terms-badge-blue { background-color: #E5EFFF; color: #0B55E0; font-weight: 600; padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.terms-badge-orange { background-color: #FFF0E5; color: #D95200; font-weight: 700; padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; }
.terms-nav-list .terms-nav-link { color: #365380; font-weight: 500; font-size: 0.9rem; padding: 10px 14px; border-radius: 10px; margin-bottom: 4px; cursor: pointer; transition: none; display: flex; align-items: center; }
.terms-nav-list .terms-nav-link:hover { color: #1A6BFF; background-color: #EEF5FF; }
.terms-nav-list .terms-nav-link.active { color: #FFFFFF; background-color: #1A6BFF; font-weight: 700; }
.terms-article-card { background-color: #FFFFFF; border: 1px solid #D8E6FA; }
.terms-step-number { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1.1rem; color: #1A6BFF; background-color: #EEF5FF; width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.terms-callout-blue { background-color: #EEF5FF; border: 1px solid #D8E6FA; }
.terms-callout-orange { background-color: #FFF0E6; border: 1px solid #FFE0CC; }
.terms-subcard { background-color: #FFFFFF; border-color: #D8E6FA; }
.terms-check-list { list-style: none; padding-left: 0; }
.terms-check-list li { margin-bottom: 10px; font-size: 0.95rem; }
.terms-inline-link { color: #1A6BFF; text-decoration: underline; }
.terms-inline-link:hover { color: #0B55E0; }
.terms-btn-primary { background: linear-gradient(135deg, #1A6BFF 0%, #0099FF 100%); color: #FFFFFF; border: none; box-shadow: 0 8px 20px rgba(26, 107, 255, 0.28); }
.terms-btn-primary:hover { background: #0B55E0; color: #FFFFFF; }
.terms-btn-outline { border: 2px solid #1A6BFF; color: #1A6BFF; background: #FFFFFF; }
.terms-btn-outline:hover { background: #EEF5FF; color: #0B55E0; border-color: #0B55E0; }
@media (max-width: 991.98px) { .terms-sidebar .terms-toc-card { position: static !important; } }

/* ===== PAGE: disclaimer ===== */
.disclaimer-section { background-color: #F4F8FE; min-height: 80vh; }
.disclaimer-section .disclaimer-card { background: #FFFFFF; border: 1px solid #D8E6FA; border-radius: 20px; box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06); }
.disclaimer-section .disclaimer-badge { background: #E5EFFF; color: #0B55E0; font-size: 0.8125rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.04em; }
.disclaimer-section .disclaimer-title { color: #0A1B3A; font-weight: 800; font-size: 2.125rem; line-height: 1.25; }
@media (max-width: 767.98px) { .disclaimer-section .disclaimer-title { font-size: 1.125rem; hyphens: auto; } }
.disclaimer-section .disclaimer-subtitle { color: #365380; font-size: 1.0625rem; line-height: 1.6; }
.disclaimer-section .disclaimer-heading { color: #0A1B3A; font-size: 1.25rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.75rem; }
@media (max-width: 767.98px) { .disclaimer-section .disclaimer-heading { font-size: 0.875rem; hyphens: auto; } }
.disclaimer-section .disclaimer-text { color: #365380; font-size: 0.9375rem; line-height: 1.65; margin-bottom: 0.75rem; }
.disclaimer-section .disclaimer-list { color: #365380; font-size: 0.9375rem; line-height: 1.65; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.disclaimer-section .disclaimer-list li { margin-bottom: 0.375rem; }
.disclaimer-section .disclaimer-link { color: #1A6BFF; font-weight: 600; text-decoration: underline; }
.disclaimer-section .disclaimer-link:hover { color: #0B55E0; }
.disclaimer-section .disclaimer-contact-box { background-color: #EEF5FF; border: 1px solid #D8E6FA; }
.disclaimer-section .contact-box-title { color: #0A1B3A; font-size: 1.125rem; font-weight: 700; }
@media (max-width: 767.98px) { .disclaimer-section .contact-box-title { font-size: 0.875rem; hyphens: auto; } }
.disclaimer-section .contact-box-desc { color: #5F7DAB; font-size: 0.875rem; }
.disclaimer-section .disclaimer-cta-btn { background: linear-gradient(135deg, #1A6BFF 0%, #0099FF 100%); color: #FFFFFF; border-radius: 50px; padding: 12px 24px; font-weight: 700; border: none; box-shadow: 0 8px 20px rgba(26, 107, 255, 0.28); font-size: 0.875rem; }
.disclaimer-section .disclaimer-cta-btn:hover { background: linear-gradient(135deg, #0B55E0 0%, #0088E0 100%); color: #FFFFFF; }

/* ===== PAGE: refound ===== */
.refund-policy-section{background-color:#F4F8FE;color:#0A1B3A;font-family:'Plus Jakarta Sans',sans-serif}.refund-policy-section .refund-header-card{background:#FFFFFF;border:1px solid #D8E6FA;border-radius:20px;box-shadow:0 8px 24px rgba(26,107,255,0.06)}.refund-policy-section .refund-badge{background:#E5EFFF;color:#0B55E0;border-radius:50px;font-size:0.875rem;font-weight:700}.refund-policy-section .refund-main-title{font-size:2.25rem;font-weight:800;color:#0A1B3A;line-height:1.2;letter-spacing:-0.02em}.refund-policy-section .refund-subtitle{font-size:1.125rem;color:#365380;line-height:1.6;font-weight:500}.refund-policy-section .meta-item{font-size:0.875rem;color:#5F7DAB;font-weight:600;display:inline-flex;align-items:center}.refund-policy-section .meta-item i{color:#1A6BFF}.refund-policy-section .refund-search-box{background:#FFFFFF;border:1.5px solid #D8E6FA;border-radius:14px;box-shadow:0 4px 12px rgba(26,107,255,0.04)}.refund-policy-section .refund-search-box .form-control{color:#0A1B3A;font-size:1rem;font-weight:500;background:transparent}.refund-policy-section .refund-search-box .form-control:focus{box-shadow:none;outline:none}.refund-policy-section .refund-search-box .form-control::placeholder{color:#5F7DAB;opacity:1}.refund-policy-section .refund-pillar-card{background:#FFFFFF;border:1px solid #D8E6FA;border-radius:16px;box-shadow:0 8px 24px rgba(26,107,255,0.04)}.refund-policy-section .pillar-icon{width:48px;height:48px;border-radius:12px;background:#EEF5FF;color:#1A6BFF;display:flex;align-items:center;justify-content:center;font-size:1.25rem}.refund-policy-section .pillar-title{font-size:1.25rem;font-weight:700;color:#0A1B3A;margin-bottom:0.5rem;line-height:1.3}.refund-policy-section .pillar-text{font-size:0.9375rem;color:#365380;line-height:1.55;margin-bottom:0}.refund-policy-section .refund-content-wrapper{background:#FFFFFF;border:1px solid #D8E6FA;border-radius:20px;box-shadow:0 8px 24px rgba(26,107,255,0.06)}.refund-policy-section .section-title{font-size:1.375rem;font-weight:700;color:#0A1B3A;margin-bottom:1rem;display:flex;align-items:center;line-height:1.3}.refund-policy-section .section-title i{color:#1A6BFF}.refund-policy-section p{color:#365380;font-size:1rem;line-height:1.6}.refund-policy-section .refund-list{list-style:none;padding-left:0}.refund-policy-section .refund-list li{position:relative;padding-left:1.75rem;margin-bottom:0.75rem;color:#365380;line-height:1.55}.refund-policy-section .refund-list li::before{content:'\f00c';font-family:'Font Awesome 5 Free';font-weight:900;position:absolute;left:0;top:2px;color:#1A6BFF;font-size:0.875rem}.refund-policy-section .refund-table{border:1px solid #D8E6FA;border-radius:12px;overflow:hidden}.refund-policy-section .refund-table thead{background:#EEF5FF}.refund-policy-section .refund-table th{color:#0A1B3A;font-weight:700;font-size:0.875rem;border-bottom:1px solid #D8E6FA;padding:12px 16px}.refund-policy-section .refund-table td{color:#365380;font-size:0.9375rem;border-bottom:1px solid #D8E6FA;padding:12px 16px}.refund-policy-section .text-muted-custom{color:#5F7DAB}.refund-policy-section .text-primary-dark{color:#0A1B3A}.refund-policy-section .step-box{background:#F4F8FE;border:1px solid #D8E6FA;border-radius:12px}.refund-policy-section .step-number{display:inline-block;padding:4px 10px;background:#1A6BFF;color:#FFFFFF;border-radius:20px;font-size:0.75rem;font-weight:700;letter-spacing:0.04em;text-transform:uppercase}.refund-policy-section .step-title{font-size:1.0625rem;font-weight:700;color:#0A1B3A;margin-bottom:0.35rem;line-height:1.3}.refund-policy-section .step-desc{font-size:0.875rem;color:#365380;line-height:1.5;margin-bottom:0}.refund-policy-section .policy-inline-link{color:#1A6BFF;font-weight:600;text-decoration:underline}.refund-policy-section .policy-inline-link:hover{color:#0B55E0}.refund-policy-section .refund-empty-state{background:#EEF5FF;border:1px dashed #D8E6FA;border-radius:12px}.refund-policy-section .refund-action-banner{background:linear-gradient(135deg,#EEF5FF 0%,#FFF0E6 100%);border:1px solid #FFE0CC;border-radius:20px}.refund-policy-section .banner-title{font-size:1.5rem;font-weight:800;color:#0A1B3A;line-height:1.3}.refund-policy-section .banner-desc{font-size:1rem;color:#365380;line-height:1.55}.refund-policy-section .refund-btn-primary{background:linear-gradient(135deg,#1A6BFF 0%,#0099FF 100%);color:#FFFFFF;border-radius:50px;font-weight:700;border:none;box-shadow:0 8px 20px rgba(26,107,255,0.28);display:inline-flex;align-items:center;justify-content:center;white-space:nowrap}.refund-policy-section .refund-btn-primary:hover{background:linear-gradient(135deg,#0B55E0 0%,#0088EE 100%);color:#FFFFFF;box-shadow:0 10px 24px rgba(26,107,255,0.38)}@media (max-width:767.98px){.refund-policy-section .refund-main-title{font-size:1.125rem}.refund-policy-section .pillar-title,.refund-policy-section .section-title,.refund-policy-section .banner-title{font-size:1rem}.refund-policy-section .step-title{font-size:0.875rem}.refund-policy-section .refund-header-card,.refund-policy-section .refund-content-wrapper,.refund-policy-section .refund-action-banner{padding:1.25rem!important}}

/* ===== PAGE: delivery ===== */
.delivery-page-section {
  background-color: #F4F8FE;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.delivery-page-section .border-light-blue {
  border-color: #D8E6FA !important;
}

.delivery-page-section .border-light-orange {
  border-color: #FFE0CC !important;
}

.delivery-page-section .bg-light-blue {
  background-color: #EEF5FF !important;
}

.delivery-page-section .bg-light-orange {
  background-color: #FFF0E5 !important;
}

.delivery-page-section .text-primary {
  color: #1A6BFF !important;
}

.delivery-page-section .text-warning {
  color: #FF6B00 !important;
}

.delivery-page-section .text-secondary-blue {
  color: #365380 !important;
}

.delivery-page-section .text-muted-blue {
  color: #5F7DAB !important;
}

.delivery-page-section .delivery-hero-badge {
  background-color: #EEF5FF;
  color: #1A6BFF;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.delivery-page-section .delivery-main-heading {
  color: #0A1B3A;
  font-size: 2.25rem;
  line-height: 1.25;
}

.delivery-page-section .delivery-lead-text {
  color: #365380;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 760px;
}

.delivery-page-section .delivery-highlight-box {
  background-color: #F4F8FE;
  border: 1px solid #D8E6FA;
}

.delivery-page-section .delivery-step-card {
  transition: none;
}

.delivery-page-section .step-badge-number {
  font-size: 1.75rem;
  color: #1A6BFF;
  font-family: 'JetBrains Mono', monospace;
}

.delivery-page-section .step-icon-wrapper {
  width: 48px;
  height: 48px;
}

.delivery-page-section .method-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-page-section .form-control {
  background-color: #FFFFFF;
  border: 1.5px solid #D8E6FA;
  border-radius: 12px;
  padding: 10px 14px;
  color: #0A1B3A;
}

.delivery-page-section .form-control:focus {
  border-color: #1A6BFF;
  box-shadow: none;
}

.delivery-page-section .form-control::placeholder {
  color: #5F7DAB;
  opacity: 1;
}

.delivery-page-section .btn-primary {
  background: linear-gradient(135deg, #1A6BFF 0%, #0099FF 100%);
  border: none;
  color: #FFFFFF;
}

.delivery-page-section .btn-primary:hover {
  filter: brightness(1.06);
}

.delivery-page-section .btn-outline-primary {
  background-color: #FFFFFF;
  color: #1A6BFF;
  border: 2px solid #1A6BFF;
}

.delivery-page-section .btn-outline-primary:hover {
  background-color: #EEF5FF;
  color: #0B55E0;
}

.delivery-page-section .accordion-button {
  background-color: #FFFFFF;
  color: #0A1B3A;
  box-shadow: none;
}

.delivery-page-section .accordion-button:not(.collapsed) {
  background-color: #EEF5FF;
  color: #1A6BFF;
}

.delivery-page-section .delivery-action-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, #F4F8FE 100%);
}

@media (max-width: 767.98px) {
  .delivery-page-section .delivery-main-heading {
    font-size: 1.65rem;
    hyphens: auto;
  }
  .delivery-page-section .delivery-lead-text {
    font-size: 0.95rem;
  }
  .delivery-page-section h2 {
    font-size: 1.25rem;
  }
  .delivery-page-section h3 {
    font-size: 1.1rem;
  }
}

.market-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
    margin-bottom: 1.5rem
}

.comment-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    user-select: none;
    object-fit: cover
}

.avatar-primary {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border: 2px solid #D8E6FA
}

.avatar-initials {
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.02em
}

.comment-author-name {
    color: #0A1B3A;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3
}

.badge-verified {
    background-color: #FFF0E5;
    color: #D95200;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #FFE0CC
}

.badge-hub {
    background-color: #EEF5FF;
    color: #0B55E0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #D8E6FA
}

.comment-meta-info {
    color: #5F7DAB;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px
}

.meta-dot {
    color: #D8E6FA
}

.pass-tag {
    color: #365380;
    font-weight: 600
}

.star-rating {
    color: #FF6B00;
    font-size: 0.9rem;
    letter-spacing: 2px
}

.rating-value {
    color: #0A1B3A;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 4px;
    background-color: #FFF0E6;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #FFE0CC
}

.comment-text {
    color: #365380;
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 0
}

.comment-highlights {
    margin-top: 0.75rem
}

.highlight-chip {
    background-color: #F4F8FE;
    color: #0A1B3A;
    border: 1px solid #D8E6FA;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center
}

.text-primary-accent {
    color: #1A6BFF !important
}

.text-secondary-accent {
    color: #FF6B00 !important
}

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

.action-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #365380;
    cursor: pointer
}

.action-btn:hover {
    background-color: #EEF5FF;
    color: #1A6BFF
}

.action-btn.active {
    background-color: #EEF5FF;
    color: #1A6BFF
}

.action-count {
    font-weight: 700
}

.trust-indicator {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5F7DAB
}

.market-reply-wrapper {
    position: relative;
    border-left: 2px solid #D8E6FA
}

.market-comment-card.reply-thread {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
    border-radius: 16px;
    padding: 20px;
    box-shadow: none
}

.avatar-secondary {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border: 2px solid #FFE0CC
}

.badge-official {
    background-color: #E5EFFF;
    color: #0B55E0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #D8E6FA
}

.badge-status {
    background-color: #FFFFFF;
    color: #0A1B3A;
    border: 1px solid #D8E6FA;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700
}

.seller-guarantee-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #D95200;
    display: inline-flex;
    align-items: center
}


/* ===== PAGE TEMPLATE: catalog-items ===== */
.site-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.site-header-block .navbar {
    padding: 0.875rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D8E6FA;
}

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

.site-header-block .brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1A6BFF;
    line-height: 1.2;
}

.site-header-block .custom-toggler {
    padding: 0.5rem 0.75rem;
    background-color: #EEF5FF;
    border-radius: 10px;
    box-shadow: none;
}

.site-header-block .text-primary-accent {
    color: #1A6BFF;
    font-size: 1.25rem;
}

.site-header-block .nav-link-custom {
    font-size: 1rem;
    font-weight: 600;
    color: #365380;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #1A6BFF;
    background-color: #EEF5FF;
}

.site-header-block .btn-header-cta {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
    text-decoration: none;
}

.site-header-block .btn-header-cta:hover,
.site-header-block .btn-header-cta:focus {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

@media (max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: 16px;
        border: 1px solid #D8E6FA;
        box-shadow: 0 12px 28px rgba(26, 107, 255, 0.08);
    }

    .site-header-block .nav-link-custom {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .site-header-block .header-action-group {
        padding-top: 0.75rem;
        border-top: 1px solid #D8E6FA;
        margin-top: 0.5rem;
    }

    .site-header-block .btn-header-cta {
        width: 100%;
        justify-content: center;
    }
}

.blog-detail-template-wrapper {
    background-color: #FFFFFF;
    color: #0A1B3A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-detail-template-wrapper .blog-breadcrumb-section {
    background-color: #F4F8FE;
    border-bottom: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .breadcrumb-link {
    color: #365380;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .breadcrumb-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.blog-detail-template-wrapper .breadcrumb-item.active {
    color: #0A1B3A;
    font-weight: 600;
    font-size: 0.875rem;
    max-width: 320px;
}

.blog-detail-template-wrapper .blog-article-hero-section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    background: linear-gradient(180deg, #F4F8FE 0%, #FFFFFF 100%);
}

.blog-detail-template-wrapper .blog-post-main-title {
    color: #0A1B3A;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.blog-detail-template-wrapper .blog-post-main-subtitle {
    color: #365380;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
}

.blog-detail-template-wrapper .blog-author-bar {
    background-color: #EEF5FF;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .author-avatar {
    width: 44px;
    height: 44px;
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 50%;
    font-size: 1.125rem;
}

.blog-detail-template-wrapper .author-name-tag {
    color: #0A1B3A;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}

.blog-detail-template-wrapper .article-publish-date {
    color: #5F7DAB;
    font-size: 0.825rem;
    font-weight: 500;
}

.blog-detail-template-wrapper .read-time-pill {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.825rem;
    font-weight: 600;
    color: #365380;
}

.blog-detail-template-wrapper .blog-featured-media-card {
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
    background-color: #F4F8FE;
}

.blog-detail-template-wrapper .blog-post-primary-image {
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

.blog-detail-template-wrapper .blog-article-prose {
    color: #365380;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.blog-detail-template-wrapper .lead-paragraph {
    font-size: 1.15rem;
    font-weight: 500;
    color: #0A1B3A;
    line-height: 1.7;
}

.blog-detail-template-wrapper .article-subheading {
    color: #0A1B3A;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-top: 1.75rem;
}

.blog-detail-template-wrapper .blog-callout-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
}

.blog-detail-template-wrapper .callout-heading {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .callout-text {
    color: #365380;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-detail-template-wrapper .amenity-checklist-box {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .checklist-title {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .custom-check-list {
    list-style-type: none;
    padding-left: 0;
}

.blog-detail-template-wrapper .custom-check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #365380;
    font-size: 0.95rem;
}

.blog-detail-template-wrapper .custom-check-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #1A6BFF;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .badge-hub {
    background-color: #EEF5FF;
    color: #0B55E0;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.blog-detail-template-wrapper .badge-verified {
    background-color: #FFF0E5;
    color: #D95200;
    border: 1px solid #FFE0CC;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .badge-official {
    background-color: #E5EFFF;
    color: #0B55E0;
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .badge-status {
    background-color: #FFF0E5;
    color: #D95200;
    border-radius: 8px;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
}

.blog-detail-template-wrapper .newsletter-card {
    background: linear-gradient(135deg, #EEF5FF 0%, #FFF0E6 100%);
    border: 1px solid #FFE0CC;
}

.blog-detail-template-wrapper .sidebar-heading {
    color: #0A1B3A;
    font-size: 1.15rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .sidebar-text {
    color: #365380;
    font-size: 0.875rem;
    line-height: 1.55;
}

.blog-detail-template-wrapper .icon-pill-box {
    width: 36px;
    height: 36px;
    background-color: #EEF5FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-template-wrapper .post-item-date {
    color: #5F7DAB;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .post-item-title {
    color: #0A1B3A;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.blog-detail-template-wrapper .recent-post-link:hover .post-item-title {
    color: #1A6BFF;
}

.blog-detail-template-wrapper .btn-primary-action {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
}

.blog-detail-template-wrapper .btn-primary-action:hover {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

.blog-detail-template-wrapper .btn-secondary-action {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.24);
    text-decoration: none;
}

.blog-detail-template-wrapper .btn-secondary-action:hover {
    background: linear-gradient(135deg, #E05A00 0%, #E68830 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(255, 107, 0, 0.34);
}

.blog-detail-template-wrapper .discussion-heading {
    color: #0A1B3A;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .discussion-subtext {
    color: #5F7DAB;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .market-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(26, 107, 255, 0.05);
}

.blog-detail-template-wrapper .market-comment-card.reply-thread {
    background-color: #F4F8FE;
    border-color: #D8E6FA;
}

.blog-detail-template-wrapper .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.blog-detail-template-wrapper .avatar-primary {
    background-color: #EEF5FF;
    color: #1A6BFF;
    border: 1.5px solid #D8E6FA;
}

.blog-detail-template-wrapper .avatar-secondary {
    background-color: #FFF0E6;
    color: #FF6B00;
    border: 1.5px solid #FFE0CC;
}

.blog-detail-template-wrapper .comment-author-name {
    color: #0A1B3A;
    font-size: 1rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .comment-meta-info {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.blog-detail-template-wrapper .meta-dot {
    margin: 0 6px;
}

.blog-detail-template-wrapper .pass-tag {
    color: #1A6BFF;
    font-weight: 600;
}

.blog-detail-template-wrapper .star-rating {
    color: #FF6B00;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .rating-value {
    color: #0A1B3A;
    font-size: 0.875rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .comment-text {
    color: #365380;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-detail-template-wrapper .highlight-chip {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0A1B3A;
}

.blog-detail-template-wrapper .border-top-subtle {
    border-top: 1px solid #EEF5FF;
}

.blog-detail-template-wrapper .action-btn {
    background: #EEF5FF;
    border: 1px solid #D8E6FA;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #365380;
    cursor: pointer;
}

.blog-detail-template-wrapper .action-btn.active {
    background: #1A6BFF;
    color: #FFFFFF;
    border-color: #1A6BFF;
}

.blog-detail-template-wrapper .trust-indicator,
.blog-detail-template-wrapper .seller-guarantee-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5F7DAB;
}

.blog-detail-template-wrapper .comment-form-box {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .form-title {
    color: #0A1B3A;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .form-desc {
    color: #5F7DAB;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .text-label {
    color: #0A1B3A;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .custom-input {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    color: #0A1B3A;
    padding: 10px 14px;
    font-size: 0.9375rem;
}

.blog-detail-template-wrapper .custom-input:focus {
    border-color: #1A6BFF;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
    background-color: #FFFFFF;
    color: #0A1B3A;
}

.blog-detail-template-wrapper .custom-input::placeholder {
    color: #5F7DAB;
    opacity: 0.9;
}

.blog-detail-template-wrapper .form-note {
    font-size: 0.75rem;
    color: #5F7DAB;
    font-weight: 500;
}

.site-footer-section {
    background-color: #F4F8FE;
    border-top: 1px solid #D8E6FA;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #365380;
}

.site-footer-section .site-footer-disclaimer-wrapper {
    width: 100%;
}

.site-footer-section .site-footer-disclaimer-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.06);
}

.site-footer-section .site-footer-disclaimer-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #FF6B00;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.site-footer-section .site-footer-disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-disclaimer-text {
    font-size: 0.875rem;
    color: #365380;
    line-height: 1.5;
}

.site-footer-section .site-footer-main-grid {
    border-bottom: 1px solid #D8E6FA;
}

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

.site-footer-section .site-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A6BFF;
    letter-spacing: -0.02em;
}

.site-footer-section .site-footer-brand-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.6;
}

.site-footer-section .site-footer-contact-icon {
    color: #1A6BFF;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.site-footer-section .site-footer-contact-icon-wa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-contact-val,
.site-footer-section .site-footer-contact-link {
    font-size: 0.875rem;
    color: #0A1B3A;
    text-decoration: none;
    font-weight: 500;
}

.site-footer-section .site-footer-contact-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-col-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-nav-link {
    color: #365380;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.site-footer-section .site-footer-nav-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-payment-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.5;
}

.site-footer-section .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 10px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 107, 255, 0.05);
}

.site-footer-section .site-footer-pay-icon-visa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-pay-icon-mc {
    color: #FF6B00;
}

.site-footer-section .site-footer-security-note {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0A1B3A;
}

.site-footer-section .site-footer-lock-icon {
    color: #1A6BFF;
}

.site-footer-section .site-footer-bottom-bar {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.site-footer-section .site-footer-copyright-text,
.site-footer-section .site-footer-copyright-sub {
    color: #5F7DAB;
}

@media (max-width: 767.98px) {
    .blog-detail-template-wrapper .blog-post-main-title {
        font-size: 18px;
        line-height: 1.25;
        hyphens: auto;
    }

    .blog-detail-template-wrapper .article-subheading {
        font-size: 16px;
    }

    .blog-detail-template-wrapper .callout-heading,
    .blog-detail-template-wrapper .checklist-title,
    .blog-detail-template-wrapper .discussion-heading {
        font-size: 14px;
    }

    .site-footer-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .site-footer-section .site-footer-disclaimer-title {
        font-size: 0.9375rem;
    }

    .site-footer-section .site-footer-col-title {
        font-size: 1rem;
    }
}

/* ===== PAGE TEMPLATE: review-items ===== */
.site-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.site-header-block .navbar {
    padding: 0.875rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D8E6FA;
}

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

.site-header-block .brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1A6BFF;
    line-height: 1.2;
}

.site-header-block .custom-toggler {
    padding: 0.5rem 0.75rem;
    background-color: #EEF5FF;
    border-radius: 10px;
    box-shadow: none;
}

.site-header-block .text-primary-accent {
    color: #1A6BFF;
    font-size: 1.25rem;
}

.site-header-block .nav-link-custom {
    font-size: 1rem;
    font-weight: 600;
    color: #365380;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #1A6BFF;
    background-color: #EEF5FF;
}

.site-header-block .btn-header-cta {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
    text-decoration: none;
}

.site-header-block .btn-header-cta:hover,
.site-header-block .btn-header-cta:focus {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

@media (max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: 16px;
        border: 1px solid #D8E6FA;
        box-shadow: 0 12px 28px rgba(26, 107, 255, 0.08);
    }

    .site-header-block .nav-link-custom {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .site-header-block .header-action-group {
        padding-top: 0.75rem;
        border-top: 1px solid #D8E6FA;
        margin-top: 0.5rem;
    }

    .site-header-block .btn-header-cta {
        width: 100%;
        justify-content: center;
    }
}

.blog-detail-template-wrapper {
    background-color: #FFFFFF;
    color: #0A1B3A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-detail-template-wrapper .blog-breadcrumb-section {
    background-color: #F4F8FE;
    border-bottom: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .breadcrumb-link {
    color: #365380;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .breadcrumb-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.blog-detail-template-wrapper .breadcrumb-item.active {
    color: #0A1B3A;
    font-weight: 600;
    font-size: 0.875rem;
    max-width: 320px;
}

.blog-detail-template-wrapper .blog-article-hero-section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    background: linear-gradient(180deg, #F4F8FE 0%, #FFFFFF 100%);
}

.blog-detail-template-wrapper .blog-post-main-title {
    color: #0A1B3A;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.blog-detail-template-wrapper .blog-post-main-subtitle {
    color: #365380;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
}

.blog-detail-template-wrapper .blog-author-bar {
    background-color: #EEF5FF;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .author-avatar {
    width: 44px;
    height: 44px;
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 50%;
    font-size: 1.125rem;
}

.blog-detail-template-wrapper .author-name-tag {
    color: #0A1B3A;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}

.blog-detail-template-wrapper .article-publish-date {
    color: #5F7DAB;
    font-size: 0.825rem;
    font-weight: 500;
}

.blog-detail-template-wrapper .read-time-pill {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.825rem;
    font-weight: 600;
    color: #365380;
}

.blog-detail-template-wrapper .blog-featured-media-card {
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
    background-color: #F4F8FE;
}

.blog-detail-template-wrapper .blog-post-primary-image {
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

.blog-detail-template-wrapper .blog-article-prose {
    color: #365380;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.blog-detail-template-wrapper .lead-paragraph {
    font-size: 1.15rem;
    font-weight: 500;
    color: #0A1B3A;
    line-height: 1.7;
}

.blog-detail-template-wrapper .article-subheading {
    color: #0A1B3A;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-top: 1.75rem;
}

.blog-detail-template-wrapper .blog-callout-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
}

.blog-detail-template-wrapper .callout-heading {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .callout-text {
    color: #365380;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-detail-template-wrapper .amenity-checklist-box {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .checklist-title {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .custom-check-list {
    list-style-type: none;
    padding-left: 0;
}

.blog-detail-template-wrapper .custom-check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #365380;
    font-size: 0.95rem;
}

.blog-detail-template-wrapper .custom-check-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #1A6BFF;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .badge-hub {
    background-color: #EEF5FF;
    color: #0B55E0;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.blog-detail-template-wrapper .badge-verified {
    background-color: #FFF0E5;
    color: #D95200;
    border: 1px solid #FFE0CC;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .badge-official {
    background-color: #E5EFFF;
    color: #0B55E0;
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .badge-status {
    background-color: #FFF0E5;
    color: #D95200;
    border-radius: 8px;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
}

.blog-detail-template-wrapper .newsletter-card {
    background: linear-gradient(135deg, #EEF5FF 0%, #FFF0E6 100%);
    border: 1px solid #FFE0CC;
}

.blog-detail-template-wrapper .sidebar-heading {
    color: #0A1B3A;
    font-size: 1.15rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .sidebar-text {
    color: #365380;
    font-size: 0.875rem;
    line-height: 1.55;
}

.blog-detail-template-wrapper .icon-pill-box {
    width: 36px;
    height: 36px;
    background-color: #EEF5FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-template-wrapper .post-item-date {
    color: #5F7DAB;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .post-item-title {
    color: #0A1B3A;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.blog-detail-template-wrapper .recent-post-link:hover .post-item-title {
    color: #1A6BFF;
}

.blog-detail-template-wrapper .btn-primary-action {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
}

.blog-detail-template-wrapper .btn-primary-action:hover {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

.blog-detail-template-wrapper .btn-secondary-action {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.24);
    text-decoration: none;
}

.blog-detail-template-wrapper .btn-secondary-action:hover {
    background: linear-gradient(135deg, #E05A00 0%, #E68830 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(255, 107, 0, 0.34);
}

.blog-detail-template-wrapper .discussion-heading {
    color: #0A1B3A;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .discussion-subtext {
    color: #5F7DAB;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .market-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(26, 107, 255, 0.05);
}

.blog-detail-template-wrapper .market-comment-card.reply-thread {
    background-color: #F4F8FE;
    border-color: #D8E6FA;
}

.blog-detail-template-wrapper .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.blog-detail-template-wrapper .avatar-primary {
    background-color: #EEF5FF;
    color: #1A6BFF;
    border: 1.5px solid #D8E6FA;
}

.blog-detail-template-wrapper .avatar-secondary {
    background-color: #FFF0E6;
    color: #FF6B00;
    border: 1.5px solid #FFE0CC;
}

.blog-detail-template-wrapper .comment-author-name {
    color: #0A1B3A;
    font-size: 1rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .comment-meta-info {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.blog-detail-template-wrapper .meta-dot {
    margin: 0 6px;
}

.blog-detail-template-wrapper .pass-tag {
    color: #1A6BFF;
    font-weight: 600;
}

.blog-detail-template-wrapper .star-rating {
    color: #FF6B00;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .rating-value {
    color: #0A1B3A;
    font-size: 0.875rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .comment-text {
    color: #365380;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-detail-template-wrapper .highlight-chip {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0A1B3A;
}

.blog-detail-template-wrapper .border-top-subtle {
    border-top: 1px solid #EEF5FF;
}

.blog-detail-template-wrapper .action-btn {
    background: #EEF5FF;
    border: 1px solid #D8E6FA;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #365380;
    cursor: pointer;
}

.blog-detail-template-wrapper .action-btn.active {
    background: #1A6BFF;
    color: #FFFFFF;
    border-color: #1A6BFF;
}

.blog-detail-template-wrapper .trust-indicator,
.blog-detail-template-wrapper .seller-guarantee-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5F7DAB;
}

.blog-detail-template-wrapper .comment-form-box {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .form-title {
    color: #0A1B3A;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .form-desc {
    color: #5F7DAB;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .text-label {
    color: #0A1B3A;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .custom-input {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    color: #0A1B3A;
    padding: 10px 14px;
    font-size: 0.9375rem;
}

.blog-detail-template-wrapper .custom-input:focus {
    border-color: #1A6BFF;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
    background-color: #FFFFFF;
    color: #0A1B3A;
}

.blog-detail-template-wrapper .custom-input::placeholder {
    color: #5F7DAB;
    opacity: 0.9;
}

.blog-detail-template-wrapper .form-note {
    font-size: 0.75rem;
    color: #5F7DAB;
    font-weight: 500;
}

.site-footer-section {
    background-color: #F4F8FE;
    border-top: 1px solid #D8E6FA;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #365380;
}

.site-footer-section .site-footer-disclaimer-wrapper {
    width: 100%;
}

.site-footer-section .site-footer-disclaimer-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.06);
}

.site-footer-section .site-footer-disclaimer-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #FF6B00;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.site-footer-section .site-footer-disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-disclaimer-text {
    font-size: 0.875rem;
    color: #365380;
    line-height: 1.5;
}

.site-footer-section .site-footer-main-grid {
    border-bottom: 1px solid #D8E6FA;
}

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

.site-footer-section .site-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A6BFF;
    letter-spacing: -0.02em;
}

.site-footer-section .site-footer-brand-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.6;
}

.site-footer-section .site-footer-contact-icon {
    color: #1A6BFF;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.site-footer-section .site-footer-contact-icon-wa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-contact-val,
.site-footer-section .site-footer-contact-link {
    font-size: 0.875rem;
    color: #0A1B3A;
    text-decoration: none;
    font-weight: 500;
}

.site-footer-section .site-footer-contact-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-col-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-nav-link {
    color: #365380;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.site-footer-section .site-footer-nav-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-payment-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.5;
}

.site-footer-section .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 10px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 107, 255, 0.05);
}

.site-footer-section .site-footer-pay-icon-visa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-pay-icon-mc {
    color: #FF6B00;
}

.site-footer-section .site-footer-security-note {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0A1B3A;
}

.site-footer-section .site-footer-lock-icon {
    color: #1A6BFF;
}

.site-footer-section .site-footer-bottom-bar {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.site-footer-section .site-footer-copyright-text,
.site-footer-section .site-footer-copyright-sub {
    color: #5F7DAB;
}

@media (max-width: 767.98px) {
    .blog-detail-template-wrapper .blog-post-main-title {
        font-size: 18px;
        line-height: 1.25;
        hyphens: auto;
    }

    .blog-detail-template-wrapper .article-subheading {
        font-size: 16px;
    }

    .blog-detail-template-wrapper .callout-heading,
    .blog-detail-template-wrapper .checklist-title,
    .blog-detail-template-wrapper .discussion-heading {
        font-size: 14px;
    }

    .site-footer-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .site-footer-section .site-footer-disclaimer-title {
        font-size: 0.9375rem;
    }

    .site-footer-section .site-footer-col-title {
        font-size: 1rem;
    }
}

/* ===== PAGE TEMPLATE: blog-items ===== */
.site-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.site-header-block .navbar {
    padding: 0.875rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D8E6FA;
}

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

.site-header-block .brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1A6BFF;
    line-height: 1.2;
}

.site-header-block .custom-toggler {
    padding: 0.5rem 0.75rem;
    background-color: #EEF5FF;
    border-radius: 10px;
    box-shadow: none;
}

.site-header-block .text-primary-accent {
    color: #1A6BFF;
    font-size: 1.25rem;
}

.site-header-block .nav-link-custom {
    font-size: 1rem;
    font-weight: 600;
    color: #365380;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
}

.site-header-block .nav-link-custom:hover,
.site-header-block .nav-link-custom:focus {
    color: #1A6BFF;
    background-color: #EEF5FF;
}

.site-header-block .btn-header-cta {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
    text-decoration: none;
}

.site-header-block .btn-header-cta:hover,
.site-header-block .btn-header-cta:focus {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

@media (max-width:991.98px) {
    .site-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: 16px;
        border: 1px solid #D8E6FA;
        box-shadow: 0 12px 28px rgba(26, 107, 255, 0.08);
    }

    .site-header-block .nav-link-custom {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .site-header-block .header-action-group {
        padding-top: 0.75rem;
        border-top: 1px solid #D8E6FA;
        margin-top: 0.5rem;
    }

    .site-header-block .btn-header-cta {
        width: 100%;
        justify-content: center;
    }
}

.blog-detail-template-wrapper {
    background-color: #FFFFFF;
    color: #0A1B3A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-detail-template-wrapper .blog-breadcrumb-section {
    background-color: #F4F8FE;
    border-bottom: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .breadcrumb-link {
    color: #365380;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .breadcrumb-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.blog-detail-template-wrapper .breadcrumb-item.active {
    color: #0A1B3A;
    font-weight: 600;
    font-size: 0.875rem;
    max-width: 320px;
}

.blog-detail-template-wrapper .blog-article-hero-section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    background: linear-gradient(180deg, #F4F8FE 0%, #FFFFFF 100%);
}

.blog-detail-template-wrapper .blog-post-main-title {
    color: #0A1B3A;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.blog-detail-template-wrapper .blog-post-main-subtitle {
    color: #365380;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
}

.blog-detail-template-wrapper .blog-author-bar {
    background-color: #EEF5FF;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .author-avatar {
    width: 44px;
    height: 44px;
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 50%;
    font-size: 1.125rem;
}

.blog-detail-template-wrapper .author-name-tag {
    color: #0A1B3A;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
}

.blog-detail-template-wrapper .article-publish-date {
    color: #5F7DAB;
    font-size: 0.825rem;
    font-weight: 500;
}

.blog-detail-template-wrapper .read-time-pill {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.825rem;
    font-weight: 600;
    color: #365380;
}

.blog-detail-template-wrapper .blog-featured-media-card {
    border: 1px solid #D8E6FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
    background-color: #F4F8FE;
}

.blog-detail-template-wrapper .blog-post-primary-image {
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

.blog-detail-template-wrapper .blog-article-prose {
    color: #365380;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.blog-detail-template-wrapper .lead-paragraph {
    font-size: 1.15rem;
    font-weight: 500;
    color: #0A1B3A;
    line-height: 1.7;
}

.blog-detail-template-wrapper .article-subheading {
    color: #0A1B3A;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-top: 1.75rem;
}

.blog-detail-template-wrapper .blog-callout-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
}

.blog-detail-template-wrapper .callout-heading {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .callout-text {
    color: #365380;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-detail-template-wrapper .amenity-checklist-box {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .checklist-title {
    color: #0A1B3A;
    font-size: 1.25rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .custom-check-list {
    list-style-type: none;
    padding-left: 0;
}

.blog-detail-template-wrapper .custom-check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #365380;
    font-size: 0.95rem;
}

.blog-detail-template-wrapper .custom-check-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #1A6BFF;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .badge-hub {
    background-color: #EEF5FF;
    color: #0B55E0;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.blog-detail-template-wrapper .badge-verified {
    background-color: #FFF0E5;
    color: #D95200;
    border: 1px solid #FFE0CC;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .badge-official {
    background-color: #E5EFFF;
    color: #0B55E0;
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .badge-status {
    background-color: #FFF0E5;
    color: #D95200;
    border-radius: 8px;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    box-shadow: 0 8px 24px rgba(26, 107, 255, 0.06);
}

.blog-detail-template-wrapper .newsletter-card {
    background: linear-gradient(135deg, #EEF5FF 0%, #FFF0E6 100%);
    border: 1px solid #FFE0CC;
}

.blog-detail-template-wrapper .sidebar-heading {
    color: #0A1B3A;
    font-size: 1.15rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .sidebar-text {
    color: #365380;
    font-size: 0.875rem;
    line-height: 1.55;
}

.blog-detail-template-wrapper .icon-pill-box {
    width: 36px;
    height: 36px;
    background-color: #EEF5FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-template-wrapper .post-item-date {
    color: #5F7DAB;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .post-item-title {
    color: #0A1B3A;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.blog-detail-template-wrapper .recent-post-link:hover .post-item-title {
    color: #1A6BFF;
}

.blog-detail-template-wrapper .btn-primary-action {
    background: linear-gradient(135deg, #1A6BFF 0%, #00A3FF 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(26, 107, 255, 0.24);
}

.blog-detail-template-wrapper .btn-primary-action:hover {
    background: linear-gradient(135deg, #0B55E0 0%, #0090E0 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(26, 107, 255, 0.34);
}

.blog-detail-template-wrapper .btn-secondary-action {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA043 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.24);
    text-decoration: none;
}

.blog-detail-template-wrapper .btn-secondary-action:hover {
    background: linear-gradient(135deg, #E05A00 0%, #E68830 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(255, 107, 0, 0.34);
}

.blog-detail-template-wrapper .discussion-heading {
    color: #0A1B3A;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .discussion-subtext {
    color: #5F7DAB;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .market-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(26, 107, 255, 0.05);
}

.blog-detail-template-wrapper .market-comment-card.reply-thread {
    background-color: #F4F8FE;
    border-color: #D8E6FA;
}

.blog-detail-template-wrapper .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.blog-detail-template-wrapper .avatar-primary {
    background-color: #EEF5FF;
    color: #1A6BFF;
    border: 1.5px solid #D8E6FA;
}

.blog-detail-template-wrapper .avatar-secondary {
    background-color: #FFF0E6;
    color: #FF6B00;
    border: 1.5px solid #FFE0CC;
}

.blog-detail-template-wrapper .comment-author-name {
    color: #0A1B3A;
    font-size: 1rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .comment-meta-info {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.blog-detail-template-wrapper .meta-dot {
    margin: 0 6px;
}

.blog-detail-template-wrapper .pass-tag {
    color: #1A6BFF;
    font-weight: 600;
}

.blog-detail-template-wrapper .star-rating {
    color: #FF6B00;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .rating-value {
    color: #0A1B3A;
    font-size: 0.875rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .comment-text {
    color: #365380;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-detail-template-wrapper .highlight-chip {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0A1B3A;
}

.blog-detail-template-wrapper .border-top-subtle {
    border-top: 1px solid #EEF5FF;
}

.blog-detail-template-wrapper .action-btn {
    background: #EEF5FF;
    border: 1px solid #D8E6FA;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #365380;
    cursor: pointer;
}

.blog-detail-template-wrapper .action-btn.active {
    background: #1A6BFF;
    color: #FFFFFF;
    border-color: #1A6BFF;
}

.blog-detail-template-wrapper .trust-indicator,
.blog-detail-template-wrapper .seller-guarantee-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5F7DAB;
}

.blog-detail-template-wrapper .comment-form-box {
    background-color: #F4F8FE;
    border: 1px solid #D8E6FA;
}

.blog-detail-template-wrapper .form-title {
    color: #0A1B3A;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-detail-template-wrapper .form-desc {
    color: #5F7DAB;
    font-size: 0.875rem;
}

.blog-detail-template-wrapper .text-label {
    color: #0A1B3A;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-detail-template-wrapper .custom-input {
    background-color: #FFFFFF;
    border: 1.5px solid #D8E6FA;
    border-radius: 12px;
    color: #0A1B3A;
    padding: 10px 14px;
    font-size: 0.9375rem;
}

.blog-detail-template-wrapper .custom-input:focus {
    border-color: #1A6BFF;
    box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.15);
    background-color: #FFFFFF;
    color: #0A1B3A;
}

.blog-detail-template-wrapper .custom-input::placeholder {
    color: #5F7DAB;
    opacity: 0.9;
}

.blog-detail-template-wrapper .form-note {
    font-size: 0.75rem;
    color: #5F7DAB;
    font-weight: 500;
}

.site-footer-section {
    background-color: #F4F8FE;
    border-top: 1px solid #D8E6FA;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #365380;
}

.site-footer-section .site-footer-disclaimer-wrapper {
    width: 100%;
}

.site-footer-section .site-footer-disclaimer-card {
    background-color: #FFF0E6;
    border: 1.5px solid #FFE0CC;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.06);
}

.site-footer-section .site-footer-disclaimer-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #FF6B00;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.site-footer-section .site-footer-disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-disclaimer-text {
    font-size: 0.875rem;
    color: #365380;
    line-height: 1.5;
}

.site-footer-section .site-footer-main-grid {
    border-bottom: 1px solid #D8E6FA;
}

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

.site-footer-section .site-footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A6BFF;
    letter-spacing: -0.02em;
}

.site-footer-section .site-footer-brand-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.6;
}

.site-footer-section .site-footer-contact-icon {
    color: #1A6BFF;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.site-footer-section .site-footer-contact-icon-wa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-contact-val,
.site-footer-section .site-footer-contact-link {
    font-size: 0.875rem;
    color: #0A1B3A;
    text-decoration: none;
    font-weight: 500;
}

.site-footer-section .site-footer-contact-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-col-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A1B3A;
    line-height: 1.3;
}

.site-footer-section .site-footer-nav-link {
    color: #365380;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.site-footer-section .site-footer-nav-link:hover {
    color: #1A6BFF;
    text-decoration: underline;
}

.site-footer-section .site-footer-payment-desc {
    font-size: 0.875rem;
    color: #5F7DAB;
    line-height: 1.5;
}

.site-footer-section .site-footer-payment-badge {
    background-color: #FFFFFF;
    border: 1px solid #D8E6FA;
    border-radius: 10px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 107, 255, 0.05);
}

.site-footer-section .site-footer-pay-icon-visa {
    color: #1A6BFF;
}

.site-footer-section .site-footer-pay-icon-mc {
    color: #FF6B00;
}

.site-footer-section .site-footer-security-note {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0A1B3A;
}

.site-footer-section .site-footer-lock-icon {
    color: #1A6BFF;
}

.site-footer-section .site-footer-bottom-bar {
    font-size: 0.8125rem;
    color: #5F7DAB;
}

.site-footer-section .site-footer-copyright-text,
.site-footer-section .site-footer-copyright-sub {
    color: #5F7DAB;
}

@media (max-width: 767.98px) {
    .blog-detail-template-wrapper .blog-post-main-title {
        font-size: 18px;
        line-height: 1.25;
        hyphens: auto;
    }

    .blog-detail-template-wrapper .article-subheading {
        font-size: 16px;
    }

    .blog-detail-template-wrapper .callout-heading,
    .blog-detail-template-wrapper .checklist-title,
    .blog-detail-template-wrapper .discussion-heading {
        font-size: 14px;
    }

    .site-footer-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .site-footer-section .site-footer-disclaimer-title {
        font-size: 0.9375rem;
    }

    .site-footer-section .site-footer-col-title {
        font-size: 1rem;
    }
}