:root {
    --color-primary: #6366F1;
    --color-primary-dark: #4F46E5;
    --color-primary-light: #818CF8;
    --color-secondary: #3B82F6;
    --color-secondary-dark: #2563EB;
    --color-secondary-light: #60A5FA;
    --accent-gradient-start: #8B5CF6;
    --accent-gradient-end: #3B82F6;
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-alt: #F1F5F9;
    --bg-glossy: rgba(255, 255, 255, 0.85);
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border-subtle: #E2E8F0;
    --border-gradient: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    --shadow-soft: 0 4px 20px -2px rgba(99, 102, 241, 0.08);
    --shadow-medium: 0 10px 30px -4px rgba(99, 102, 241, 0.12);
    --shadow-glossy: 0 20px 40px -6px rgba(79, 70, 229, 0.18);
    --badge-accent: #EEF2FF;
    --badge-accent-text: #4F46E5;
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-primary-hover: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== header ===== */
.tj-header {
    width: 100%;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.08);
}

.tj-header .tj-topbar {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tj-header .tj-topbar-text {
    color: #ffffff;
}

.tj-header .tj-topbar-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.tj-header .tj-topbar-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

.tj-header .tj-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.tj-header .tj-brand {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.tj-header .tj-brand:hover {
    color: #4F46E5;
}

.tj-header .tj-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.tj-header .tj-brand-title {
    background: linear-gradient(135deg, #6366F1 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.tj-header .tj-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
    padding: 0.5rem 0.9rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-nav-link:hover,
.tj-header .tj-nav-link:focus {
    color: #4F46E5;
}

.tj-header .tj-navbar-toggler {
    border: 1px solid #E2E8F0;
    padding: 6px 10px;
    border-radius: 10px;
    background-color: #F8FAFC;
    color: #0F172A;
}

.tj-header .tj-navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.tj-header .tj-toggler-icon {
    font-size: 1.15rem;
    color: #0F172A;
}

.tj-header .tj-dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    margin-top: 8px;
}

.tj-header .tj-dropdown-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0F172A;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tj-header .tj-dropdown-item:hover,
.tj-header .tj-dropdown-item:focus {
    background-color: #EEF2FF;
    color: #4F46E5;
}

.tj-header .tj-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-cart-btn:hover {
    background-color: #F8FAFC;
    color: #6366F1;
    border-color: #818CF8;
    transform: translateY(-1px);
}

.tj-header .tj-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

@media (max-width: 991.98px) {
    .tj-header .tj-navbar {
        background-color: #ffffff;
    }

    .tj-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem 0.5rem;
        border-top: 1px solid #F1F5F9;
        margin-top: 0.5rem;
    }

    .tj-header .tj-nav-link {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #F8FAFC;
    }

    .tj-header .tj-dropdown-menu {
        border: none;
        padding-left: 1rem;
        background-color: #F8FAFC;
    }
}

/* ===== hero ===== */
.trip-hero {
    background-color: #F8FAFC;
    background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 50%), radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.1), transparent 50%);
}

.trip-hero .trip-hero__badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.trip-hero .trip-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0F172A;
}

.trip-hero .trip-hero__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748B;
}

.trip-hero .trip-hero__btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    padding: 14px 28px;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trip-hero .trip-hero__btn-primary:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
    transform: translateY(-1px);
}

.trip-hero .trip-hero__btn-secondary {
    background: #FFFFFF;
    color: #4F46E5;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    padding: 13px 26px;
    border: 1.5px solid #E0E7FF;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trip-hero .trip-hero__btn-secondary:hover {
    background: #F5F3FF;
    border-color: #C7D2FE;
    color: #4338CA;
    transform: translateY(-1px);
}

.trip-hero .trip-hero__feature-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
    white-space: nowrap;
}

.trip-hero .trip-hero__features {
    display: flex;
    flex-wrap: wrap;
}

.trip-hero .trip-hero__features > [class*="col"] {
    width: auto;
    flex: 0 0 auto;
    max-width: 100%;
}

.trip-hero .trip-hero__image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -6px rgba(79, 70, 229, 0.18);
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #FFFFFF;
}

.trip-hero .trip-hero__img {
    object-fit: cover;
    display: block;
    height: auto;
    max-height: 480px;
}

.trip-hero .trip-hero__floating-card {
    bottom: 24px;
    left: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.12);
}

.trip-hero .trip-hero__floating-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.trip-hero .trip-hero__floating-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0F172A;
}

.trip-hero .trip-hero__floating-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .trip-hero .trip-hero__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .trip-hero .trip-hero__desc {
        font-size: 0.875rem;
    }

    .trip-hero .trip-hero__floating-card {
        position: static !important;
        margin-top: 16px;
    }
}

/* ===== product_of_the_day ===== */
.product-deal-section {
    background-color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-deal-section .deal-card-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.12);
}

.product-deal-section .deal-image-container {
    position: relative;
    background: #F1F5F9;
    border-radius: 20px;
    padding: 20px;
}

.product-deal-section .deal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-deal-section .deal-img-link {
    border-radius: 16px;
}

.product-deal-section .deal-product-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.product-deal-section .deal-img-link:hover .deal-product-img {
    transform: scale(1.03);
}

.product-deal-section .deal-timer-panel {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.06);
}

.product-deal-section .timer-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4F46E5;
}

.product-deal-section .timer-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-deal-section .timer-box {
    background: #EEF2FF;
    border-radius: 8px;
    min-width: 58px;
    padding: 6px 8px;
    text-align: center;
    border: 1px solid #C7D2FE;
}

.product-deal-section .timer-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E1B4B;
    line-height: 1.2;
}

.product-deal-section .timer-unit {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6366F1;
    text-transform: uppercase;
}

.product-deal-section .timer-divider {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366F1;
    line-height: 1;
}

.product-deal-section .deal-content-container {
    padding: 8px 4px;
}

.product-deal-section .deal-eyebrow {
    flex-wrap: wrap;
}

.product-deal-section .badge-pill {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.product-deal-section .stock-pill {
    background: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.product-deal-section .deal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0F172A;
}

.product-deal-section .deal-title-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-deal-section .deal-title-link:hover {
    color: #4F46E5;
}

.product-deal-section .rating-stars {
    color: #F59E0B;
    font-size: 0.875rem;
}

.product-deal-section .rating-text {
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.product-deal-section .deal-pricing {
    flex-wrap: wrap;
}

.product-deal-section .price-sale {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #4F46E5;
    line-height: 1;
}

.product-deal-section .price-original {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748B;
    text-decoration: line-through;
    line-height: 1;
}

.product-deal-section .discount-tag {
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.product-deal-section .deal-description {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
}

.product-deal-section .deal-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-deal-section .spec-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.875rem;
    color: #1E293B;
    font-weight: 600;
}

.product-deal-section .spec-item i {
    color: #6366F1;
}

.product-deal-section .qty-picker {
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: 12px;
    overflow: hidden;
    height: 50px;
}

.product-deal-section .qty-btn {
    background: #F1F5F9;
    border: none;
    width: 44px;
    height: 100%;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.product-deal-section .qty-btn:hover {
    background: #E2E8F0;
    color: #4F46E5;
}

.product-deal-section .qty-input {
    width: 100%;
    height: 100%;
    border: none;
    background: #FFFFFF;
    text-align: center;
    font-weight: 700;
    color: #0F172A;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.product-deal-section .qty-input::-webkit-outer-spin-button,
.product-deal-section .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-deal-section .deal-order-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-deal-section .deal-order-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
}

.product-deal-section .deal-guarantees {
    border-color: #E2E8F0 !important;
}

.product-deal-section .guarantee-item {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

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

    .product-deal-section .deal-specs-grid {
        grid-template-columns: 1fr;
    }

    .product-deal-section .price-sale {
        font-size: 1.5rem;
    }

    .product-deal-section .deal-card-wrapper {
        padding: 16px !important;
    }
}

/* ===== catalog_grid ===== */
.trip-jerky-catalog {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.trip-jerky-catalog .trip-jerky-catalog__badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.trip-jerky-catalog .trip-jerky-catalog__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0F172A;
}

.trip-jerky-catalog .trip-jerky-catalog__subtitle {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
}

.trip-jerky-catalog .trip-jerky-catalog__card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trip-jerky-catalog .trip-jerky-catalog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.16);
    border-color: #818CF8;
}

.trip-jerky-catalog .trip-jerky-catalog__img-wrap {
    position: relative;
    background: #F8FAFC;
    border-radius: 16px;
    overflow: hidden;
    padding: 12px;
}

.trip-jerky-catalog .trip-jerky-catalog__image {
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.trip-jerky-catalog .trip-jerky-catalog__card:hover .trip-jerky-catalog__image {
    transform: scale(1.03);
}

.trip-jerky-catalog .trip-jerky-catalog__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.03em;
}

.trip-jerky-catalog .trip-jerky-catalog__tag--hot {
    background: #DC2626;
}

.trip-jerky-catalog .trip-jerky-catalog__rating {
    color: #F59E0B;
    font-size: 0.8125rem;
}

.trip-jerky-catalog .trip-jerky-catalog__review-count {
    color: #64748B;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}

.trip-jerky-catalog .trip-jerky-catalog__product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.3;
}

.trip-jerky-catalog .trip-jerky-catalog__product-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.trip-jerky-catalog .trip-jerky-catalog__product-link:hover {
    color: #4F46E5;
}

.trip-jerky-catalog .trip-jerky-catalog__specs {
    color: #4F46E5;
    font-size: 0.8125rem;
    font-weight: 600;
}

.trip-jerky-catalog .trip-jerky-catalog__desc {
    color: #64748B;
    font-size: 0.875rem;
    line-height: 1.5;
}

.trip-jerky-catalog .trip-jerky-catalog__price {
    color: #0F172A;
    font-size: 1.375rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.trip-jerky-catalog .trip-jerky-catalog__stock {
    color: #10B981;
    font-size: 0.8125rem;
    font-weight: 600;
}

.trip-jerky-catalog .trip-jerky-catalog__btn-add {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 4px 14px -2px rgba(99, 102, 241, 0.35);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.trip-jerky-catalog .trip-jerky-catalog__btn-add:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -2px rgba(99, 102, 241, 0.45);
    color: #FFFFFF;
}

.trip-jerky-catalog .trip-jerky-catalog__form-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.08);
}

.trip-jerky-catalog .trip-jerky-catalog__form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
}

.trip-jerky-catalog .trip-jerky-catalog__form-desc {
    color: #64748B;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.trip-jerky-catalog .trip-jerky-catalog__perk-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #EEF2FF;
    color: #4F46E5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-right: 12px;
}

.trip-jerky-catalog .trip-jerky-catalog__perk-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
}

.trip-jerky-catalog .trip-jerky-catalog__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 6px;
}

.trip-jerky-catalog .trip-jerky-catalog__input {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.9375rem;
    color: #0F172A;
}

.trip-jerky-catalog .trip-jerky-catalog__input:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

.trip-jerky-catalog .trip-jerky-catalog__input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.trip-jerky-catalog .trip-jerky-catalog__submit-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.trip-jerky-catalog .trip-jerky-catalog__submit-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .trip-jerky-catalog .trip-jerky-catalog__title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .trip-jerky-catalog .trip-jerky-catalog__form-title {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .trip-jerky-catalog .trip-jerky-catalog__product-title {
        font-size: 1.0625rem;
        hyphens: auto;
    }
}

/* ===== pre_order ===== */
.trip-jerky-preorder {
    background-color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    position: relative;
    overflow: hidden
}

.trip-jerky-preorder .preorder-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 600
}

.trip-jerky-preorder .preorder-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.02em
}

.trip-jerky-preorder .preorder-subtitle {
    max-width: 720px;
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6
}

.trip-jerky-preorder .flavor-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease
}

.trip-jerky-preorder .flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.16);
    border-color: #818CF8
}

.trip-jerky-preorder .flavor-img-box {
    height: 220px;
    background: #F1F5F9;
    overflow: hidden
}

.trip-jerky-preorder .flavor-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
}

.trip-jerky-preorder .flavor-card:hover .flavor-img {
    transform: scale(1.04)
}

.trip-jerky-preorder .release-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    letter-spacing: 0.02em
}

.trip-jerky-preorder .flavor-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3
}

.trip-jerky-preorder .flavor-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease
}

.trip-jerky-preorder .flavor-link:hover {
    color: #4F46E5
}

.trip-jerky-preorder .preorder-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A
}

.trip-jerky-preorder .old-price {
    font-size: 0.875rem;
    color: #94A3B8;
    text-decoration: line-through
}

.trip-jerky-preorder .flavor-desc {
    color: #64748B;
    font-size: 0.925rem;
    line-height: 1.55;
    margin-bottom: 16px
}

.trip-jerky-preorder .perk-pill {
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.15)
}

.trip-jerky-preorder .preorder-select-btn {
    background: #FFFFFF;
    color: #4F46E5;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid #E0E7FF;
    border-radius: 12px;
    padding: 10px 18px;
    transition: all 0.2s ease
}

.trip-jerky-preorder .preorder-select-btn:hover {
    background: #F5F3FF;
    border-color: #C7D2FE;
    color: #4338CA;
    transform: translateY(-1px)
}

.trip-jerky-preorder .preorder-form-container {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 32px -4px rgba(99, 102, 241, 0.1)
}

.trip-jerky-preorder .form-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.trip-jerky-preorder .form-main-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3
}

.trip-jerky-preorder .form-subtext {
    font-size: 0.95rem;
    color: #64748B
}

.trip-jerky-preorder .perk-micro {
    font-size: 0.8125rem
}

.trip-jerky-preorder .form-label {
    font-size: 0.875rem;
    color: #334155;
    margin-bottom: 6px
}

.trip-jerky-preorder .preorder-input {
    background-color: #FFFFFF;
    color: #0F172A;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease
}

.trip-jerky-preorder .preorder-input:focus {
    background-color: #FFFFFF;
    color: #0F172A;
    border-color: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
    outline: none
}

.trip-jerky-preorder .preorder-input::placeholder {
    color: #94A3B8;
    opacity: 1
}

.trip-jerky-preorder .check-label {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5
}

.trip-jerky-preorder .submit-preorder-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s ease
}

.trip-jerky-preorder .submit-preorder-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
    transform: translateY(-1px)
}

@media (max-width:767.98px) {
    .trip-jerky-preorder .preorder-title {
        font-size: 16px;
        hyphens: auto
    }

    .trip-jerky-preorder .flavor-name,
    .trip-jerky-preorder .form-main-heading {
        font-size: 14px;
        hyphens: auto
    }

    .trip-jerky-preorder .flavor-img-box {
        height: 180px
    }

    .trip-jerky-preorder .preorder-form-container {
        padding: 20px 16px
    }
}

/* ===== gift_certificates ===== */
.tj-gift-certificates-section {
    background: #F8FAFC;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.tj-gift-certificates-section .tj-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.tj-gift-certificates-section .tj-section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.tj-gift-certificates-section .tj-section-desc {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.tj-gift-certificates-section .tj-config-card,
.tj-gift-certificates-section .tj-preview-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
}

.tj-gift-certificates-section .tj-card-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.tj-gift-certificates-section .tj-card-subtext {
    font-size: 0.875rem;
    color: #64748B;
    line-height: 1.5;
}

.tj-gift-certificates-section .tj-denomination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tj-gift-certificates-section .tj-denom-btn {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tj-gift-certificates-section .tj-denom-btn:hover {
    border-color: #818CF8;
    background: #F8FAFC;
    transform: translateY(-2px);
}

.tj-gift-certificates-section .tj-denom-btn.is-active {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-color: #6366F1;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.18);
}

.tj-gift-certificates-section .tj-denom-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0F172A;
}

.tj-gift-certificates-section .tj-denom-btn.is-active .tj-denom-val {
    color: #4F46E5;
}

.tj-gift-certificates-section .tj-denom-note {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748B;
    margin-top: 2px;
}

.tj-gift-certificates-section .tj-delivery-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tj-gift-certificates-section .tj-delivery-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1.5px solid #E2E8F0;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tj-gift-certificates-section .tj-delivery-option:hover {
    border-color: #818CF8;
}

.tj-gift-certificates-section .tj-delivery-option.is-active {
    border-color: #6366F1;
    background: #F8FAFC;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.08);
}

.tj-gift-certificates-section .tj-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.tj-gift-certificates-section .tj-option-title {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #0F172A;
}

.tj-gift-certificates-section .tj-option-desc {
    display: block;
    font-size: 0.8125rem;
    color: #64748B;
    line-height: 1.4;
}

.tj-gift-certificates-section .tj-total-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748B;
}

.tj-gift-certificates-section .tj-total-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-gift-certificates-section .btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border: none;
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s ease;
}

.tj-gift-certificates-section .btn-primary:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
    transform: translateY(-1px);
    color: #FFFFFF;
}

.tj-gift-certificates-section .tj-voucher-card {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #1E293B 100%);
    border-radius: 18px;
    color: #FFFFFF;
    box-shadow: 0 16px 36px -4px rgba(79, 70, 229, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tj-gift-certificates-section .tj-voucher-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
}

.tj-gift-certificates-section .tj-brand-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #818CF8;
}

.tj-gift-certificates-section .tj-voucher-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #FFFFFF;
}

.tj-gift-certificates-section .tj-voucher-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E2E8F0;
}

.tj-gift-certificates-section .tj-voucher-amount-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 14px;
}

.tj-gift-certificates-section .tj-currency-prefix {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #A5B4FC;
    vertical-align: top;
    margin-right: 4px;
}

.tj-gift-certificates-section .tj-live-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.tj-gift-certificates-section .tj-currency-suffix {
    font-size: 0.875rem;
    font-weight: 600;
    color: #A5B4FC;
    margin-left: 6px;
}

.tj-gift-certificates-section .tj-meta-text {
    font-size: 0.8125rem;
    color: #E2E8F0;
}

.tj-gift-certificates-section .tj-perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.tj-gift-certificates-section .tj-perk-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #0F172A;
}

.tj-gift-certificates-section .tj-perk-desc {
    font-size: 0.8125rem;
    color: #64748B;
    line-height: 1.4;
}

.tj-gift-certificates-section .tj-gift-sets-cta {
    background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 100%);
    border-radius: 20px;
    border: 1px solid #C7D2FE;
    box-shadow: 0 8px 30px -4px rgba(99, 102, 241, 0.08);
}

.tj-gift-certificates-section .tj-cta-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tj-gift-certificates-section .tj-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-gift-certificates-section .tj-cta-desc {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.tj-gift-certificates-section .tj-secondary-btn {
    background: #FFFFFF;
    color: #4F46E5;
    font-weight: 600;
    border-radius: 12px;
    border: 1.5px solid #C7D2FE;
    transition: all 0.2s ease;
}

.tj-gift-certificates-section .tj-secondary-btn:hover {
    background: #F5F3FF;
    border-color: #818CF8;
    color: #4338CA;
    transform: translateY(-1px);
}

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

    .tj-gift-certificates-section .tj-card-heading,
    .tj-gift-certificates-section .tj-cta-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .tj-gift-certificates-section .tj-live-amount {
        font-size: 2.75rem;
    }

    .tj-gift-certificates-section .tj-denomination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ===== product_qa ===== */
.trip-jerky-qa-section {
    background-color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A;
    position: relative;
    overflow: hidden
}

.trip-jerky-qa-section .trip-jerky-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 9999px;
    padding: 6px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em
}

.trip-jerky-qa-section .trip-jerky-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    color: #0F172A;
    letter-spacing: -0.02em
}

.trip-jerky-qa-section .trip-jerky-lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #475569;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.trip-jerky-qa-section .trip-jerky-filter-tabs {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06)
}

.trip-jerky-qa-section .trip-jerky-tab-btn {
    border: none;
    background: transparent;
    color: #475569;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    flex-shrink: 0
}

.trip-jerky-qa-section .trip-jerky-tab-btn:hover {
    color: #4F46E5;
    background: #EEF2FF
}

.trip-jerky-qa-section .trip-jerky-tab-btn.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px -2px rgba(99, 102, 241, 0.35)
}

.trip-jerky-qa-section .trip-jerky-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.trip-jerky-qa-section .trip-jerky-faq-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1)
}

.trip-jerky-qa-section .trip-jerky-faq-item:hover {
    border-color: #818CF8;
    box-shadow: 0 10px 24px -4px rgba(99, 102, 241, 0.1)
}

.trip-jerky-qa-section .trip-jerky-faq-item.active {
    border-color: #818CF8;
    box-shadow: 0 10px 28px -4px rgba(99, 102, 241, 0.12)
}

.trip-jerky-qa-section .trip-jerky-faq-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    outline: none
}

.trip-jerky-qa-section .trip-jerky-faq-question {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #0F172A;
    display: flex;
    align-items: center
}

.trip-jerky-qa-section .text-accent {
    color: #4F46E5
}

.trip-jerky-qa-section .trip-jerky-faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease
}

.trip-jerky-qa-section .trip-jerky-faq-item.active .trip-jerky-faq-icon {
    transform: rotate(180deg);
    background: #EEF2FF;
    color: #4F46E5
}

.trip-jerky-qa-section .trip-jerky-faq-body {
    padding: 0 24px 20px 24px
}

.trip-jerky-qa-section .trip-jerky-faq-content {
    padding-top: 12px;
    border-top: 1px solid #F1F5F9
}

.trip-jerky-qa-section .trip-jerky-faq-content p {
    margin-bottom: 0;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65
}

.trip-jerky-qa-section .trip-jerky-inline-link {
    color: #4F46E5;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease
}

.trip-jerky-qa-section .trip-jerky-inline-link:hover {
    color: #2563EB
}

.trip-jerky-qa-section .trip-jerky-support-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 8px 30px -4px rgba(99, 102, 241, 0.08)
}

.trip-jerky-qa-section .trip-jerky-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0
}

.trip-jerky-qa-section .trip-jerky-support-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0F172A;
    line-height: 1.3
}

.trip-jerky-qa-section .trip-jerky-support-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5
}

.trip-jerky-qa-section .trip-jerky-btn-action {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 18px -3px rgba(99, 102, 241, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap
}

.trip-jerky-qa-section .trip-jerky-btn-action:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -3px rgba(99, 102, 241, 0.45)
}

.trip-jerky-qa-section .trip-jerky-btn-secondary {
    background: #FFFFFF;
    color: #4F46E5;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1.5px solid #E0E7FF;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap
}

.trip-jerky-qa-section .trip-jerky-btn-secondary:hover {
    background: #F5F3FF;
    border-color: #C7D2FE;
    color: #4338CA;
    transform: translateY(-1px)
}

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

    .trip-jerky-qa-section .trip-jerky-support-title {
        font-size: 1.05rem;
        hyphens: auto
    }

    .trip-jerky-qa-section .trip-jerky-faq-question {
        font-size: 0.95rem;
        hyphens: auto
    }

    .trip-jerky-qa-section .trip-jerky-faq-header {
        padding: 16px 16px
    }

    .trip-jerky-qa-section .trip-jerky-faq-body {
        padding: 0 16px 16px 16px
    }

    .trip-jerky-qa-section .trip-jerky-btn-action,
    .trip-jerky-qa-section .trip-jerky-btn-secondary {
        width: 100%
    }
}

/* ===== newsletter ===== */
.trip-jerky-newsletter {
    background: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.trip-jerky-newsletter .newsletter-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.12);
    backdrop-filter: blur(10px);
    overflow: hidden
}

.trip-jerky-newsletter .newsletter-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600
}

.trip-jerky-newsletter .newsletter-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    color: #0F172A;
    letter-spacing: -0.02em
}

@media (max-width:767.98px) {
    .trip-jerky-newsletter .newsletter-title {
        font-size: 1.625rem
    }
}

.trip-jerky-newsletter .newsletter-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 400
}

.trip-jerky-newsletter .newsletter-perks .perk-item {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155
}

.trip-jerky-newsletter .newsletter-perks .perk-item i {
    color: #6366F1;
    font-size: 1rem
}

.trip-jerky-newsletter .newsletter-form-wrapper {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06)
}

.trip-jerky-newsletter .input-group-custom .input-icon {
    left: 18px;
    color: #6366F1;
    font-size: 1rem;
    pointer-events: none;
    z-index: 2
}

.trip-jerky-newsletter .newsletter-input {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 18px 14px 46px;
    font-size: 0.95rem;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease
}

.trip-jerky-newsletter .newsletter-input::placeholder {
    color: #64748B;
    opacity: 1
}

.trip-jerky-newsletter .newsletter-input:focus {
    background: #FFFFFF;
    color: #0F172A;
    border-color: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    outline: none
}

.trip-jerky-newsletter .newsletter-agree-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #475569
}

.trip-jerky-newsletter .newsletter-policy-link {
    color: #4F46E5;
    text-decoration: underline;
    font-weight: 600
}

.trip-jerky-newsletter .newsletter-policy-link:hover {
    color: #3B82F6
}

.trip-jerky-newsletter .form-check-input {
    cursor: pointer;
    border-color: #CBD5E1
}

.trip-jerky-newsletter .form-check-input:checked {
    background-color: #6366F1;
    border-color: #6366F1
}

.trip-jerky-newsletter .newsletter-submit-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    padding: 15px 28px;
    border: none;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer
}

.trip-jerky-newsletter .newsletter-submit-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45)
}

.trip-jerky-newsletter .newsletter-submit-btn:active {
    transform: translateY(0)
}

/* ===== footer ===== */
.trip-footer {
    background: #0F172A;
    color: #E2E8F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.trip-footer__top {
    padding: 64px 0 48px;
}

.trip-footer__brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.trip-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.trip-footer__logo {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.trip-footer__about-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 20px;
}

.trip-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.25);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #818CF8;
}

.trip-footer__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 8px;
}

.trip-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border-radius: 2px;
}

.trip-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-footer__list li {
    margin-bottom: 10px;
}

.trip-footer__link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.trip-footer__link:hover {
    color: #818CF8;
    transform: translateX(4px);
}

.trip-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.trip-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.5;
}

.trip-footer__contact-icon {
    color: #818CF8;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.trip-footer__contact-icon--wa {
    color: #22C55E;
}

.trip-footer__contact-link {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.trip-footer__contact-link:hover {
    color: #818CF8;
}

.trip-footer__contact-link--wa {
    color: #4ADE80;
    font-weight: 600;
}

.trip-footer__contact-link--wa:hover {
    color: #86EFAC;
}

.trip-footer__map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.15);
    height: 130px;
    background: #1E293B;
}

.trip-footer__map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(25%) contrast(1.1);
}

.trip-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    background: #090E1A;
}

.trip-footer__copyright {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.trip-footer__payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trip-footer__payments-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trip-footer__payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-footer__payment-card {
    font-size: 1.75rem;
    color: #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2px 8px;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .trip-footer__top {
        padding: 48px 0 36px;
    }

    .trip-footer__heading {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .trip-footer__payments {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== PAGE: about ===== */
.about-story-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-story-section .about-title,
.about-story-section .section-heading,
.about-story-section h1,
.about-story-section h2,
.about-story-section h3 {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
}

.about-story-section .about-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #4F46E5;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.about-story-section .about-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 500;
}

.about-story-section .about-text {
  line-height: 1.6;
}

.about-story-section .metric-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px -2px rgba(99, 102, 241, 0.06);
  text-align: center;
}

.about-story-section .metric-number {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
}

.about-story-section .metric-label {
  font-size: 0.8rem;
  font-weight: 500;
}

.about-story-section .btn-primary-gradient {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  border: none;
  box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-story-section .btn-primary-gradient:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
}

.about-story-section .btn-outline-brand {
  background: #FFFFFF;
  color: #4F46E5;
  border: 1.5px solid #E0E7FF;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-story-section .btn-outline-brand:hover {
  background: #F5F3FF;
  border-color: #C7D2FE;
  color: #4338CA;
  transform: translateY(-1px);
}

.about-story-section .about-visual-stack {
  position: relative;
}

.about-story-section .about-main-image-wrap {
  border: 1px solid rgba(226, 232, 240, 0.8);
  max-height: 480px;
}

.about-story-section .about-main-image-wrap img {
  height: 100%;
  min-height: 380px;
}

.about-story-section .about-floating-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  max-width: 320px;
  border-radius: 18px;
}

.about-story-section .floating-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  flex-shrink: 0;
}

.about-story-section .feature-box {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-story-section .feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.12);
  border-color: #818CF8;
}

.about-story-section .feature-icon-wrapper {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.about-story-section .letter-spacing-1 {
  letter-spacing: 0.08em;
}

.about-story-section .max-w-700 {
  max-width: 700px;
}

.about-story-section .about-image-grid img {
  height: 240px;
}

.about-story-section .accordion-button:not(.collapsed) {
  color: #4F46E5;
  background-color: #EEF2FF;
  box-shadow: none;
}

.about-story-section .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  border-color: #818CF8;
}

.about-story-section .about-cta-banner {
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.8) 0%, rgba(224, 231, 255, 0.6) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

@media (max-width: 767.98px) {
  .about-story-section .about-title {
    font-size: 18px;
    line-height: 1.25;
  }
  .about-story-section h2,
  .about-story-section .section-heading {
    font-size: 16px;
    line-height: 1.3;
  }
  .about-story-section h3,
  .about-story-section .feature-title {
    font-size: 14px;
    line-height: 1.35;
  }
  .about-story-section .about-floating-card {
    position: static !important;
    margin: 16px 0 0 0 !important;
    max-width: 100%;
  }
  .about-story-section .about-image-grid img {
    height: 160px;
  }
}

/* ===== PAGE: catalog ===== */
.trip-catalog-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}

.trip-catalog-section .trip-catalog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trip-catalog-section .trip-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
  color: #4F46E5;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trip-catalog-section .trip-meta-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05);
}

.trip-catalog-section .trip-meta-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.trip-catalog-section .trip-controls-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}

.trip-catalog-section .trip-input {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 16px;
  color: #0F172A;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.trip-catalog-section .trip-input:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.trip-catalog-section .trip-input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.trip-catalog-section .trip-select {
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 14px;
  color: #0F172A;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.trip-catalog-section .trip-select:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.trip-catalog-section .trip-tab-btn {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #64748B;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.trip-catalog-section .trip-tab-btn:hover {
  background: #EEF2FF;
  color: #4F46E5;
  border-color: #C7D2FE;
}

.trip-catalog-section .trip-tab-btn.active {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.trip-catalog-section .trip-product-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.trip-catalog-section .trip-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.16);
  border-color: #818CF8;
}

.trip-catalog-section .trip-card-image-wrapper {
  background: #F1F5F9;
  padding: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-catalog-section .trip-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

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

.trip-catalog-section .trip-card-badge {
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  z-index: 2;
}

.trip-catalog-section .trip-badge-hot {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.trip-catalog-section .trip-badge-extreme {
  background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 100%);
}

.trip-catalog-section .trip-tag {
  background: #EEF2FF;
  color: #4F46E5;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.trip-catalog-section .trip-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.trip-catalog-section .trip-title-link:hover {
  color: #4F46E5 !important;
}

.trip-catalog-section .trip-btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  padding: 9px 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-grow: 1;
  min-height: 40px;
  margin-left: 12px;
}

.trip-catalog-section .trip-price-wrapper {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trip-catalog-section .trip-btn-primary:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.trip-catalog-section .trip-btn-secondary {
  background: #FFFFFF;
  color: #4F46E5;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  border: 1.5px solid #E0E7FF;
  transition: all 0.2s ease;
}

.trip-catalog-section .trip-btn-secondary:hover {
  background: #F5F3FF;
  border-color: #C7D2FE;
  color: #4338CA;
}

.trip-catalog-section .trip-pagination-container .trip-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.trip-catalog-section .trip-pagination-container .trip-page-btn:hover:not(:disabled) {
  background: #EEF2FF;
  border-color: #C7D2FE;
  color: #4F46E5;
}

.trip-catalog-section .trip-pagination-container .trip-page-btn.active {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.trip-catalog-section .trip-pagination-container .trip-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.trip-catalog-section .trip-guarantee-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}

.trip-catalog-section .trip-guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .trip-catalog-section .trip-catalog-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .trip-catalog-section h2 {
    font-size: 1rem !important;
    hyphens: auto;
  }
  .trip-catalog-section h3 {
    font-size: 0.875rem !important;
    hyphens: auto;
  }
  .trip-catalog-section .trip-tab-btn {
    font-size: 0.8125rem;
    padding: 6px 10px;
  }
}

/* ===== PAGE: gift-sets ===== */
.gift-sets-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.gift-sets-section .gift-sets-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #0F172A;
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
  .gift-sets-section .gift-sets-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .gift-sets-section .gift-sets-card-title {
    font-size: 0.875rem;
  }
  .gift-sets-section .gift-sets-perk-card h3 {
    font-size: 0.875rem;
  }
}

.gift-sets-section .gift-sets-subtitle {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.6;
}

.gift-sets-section .gift-sets-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #4F46E5;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gift-sets-section .gift-sets-toolbar {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.04);
}

.gift-sets-section .gift-sets-filter-btn {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.gift-sets-section .gift-sets-filter-btn:hover,
.gift-sets-section .gift-sets-filter-btn.active {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.gift-sets-section .gift-sets-select {
  background-color: #FFFFFF;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 36px 8px 14px;
}

.gift-sets-section .gift-sets-select:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.gift-sets-section .gift-sets-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.gift-sets-section .gift-sets-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.16);
  border-color: #818CF8;
}

.gift-sets-section .gift-sets-card-image-wrap {
  background: #F8FAFC;
  padding: 16px;
}

.gift-sets-section .gift-sets-card-img {
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gift-sets-section .gift-sets-card:hover .gift-sets-card-img {
  transform: scale(1.03);
}

.gift-sets-section .gift-sets-ribbon {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gift-sets-section .gift-sets-ribbon-hot {
  background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
}

.gift-sets-section .gift-sets-card-title a {
  color: #0F172A;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  transition: color 0.2s ease;
}

.gift-sets-section .gift-sets-card-title a:hover {
  color: #4F46E5;
}

.gift-sets-section .gift-sets-price {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  font-size: 1.35rem;
}

.gift-sets-section .gift-sets-btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 12px;
  padding: 10px 18px;
  border: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
  transition: all 0.2s ease;
}

.gift-sets-section .gift-sets-btn-primary:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.4);
}

.gift-sets-section .gift-sets-perk-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.04);
}

.gift-sets-section .gift-sets-perk-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ===== PAGE: blog ===== */
.tj-blog-section {
  background-color: #F8FAFC;
  min-height: 100vh;
}

.tj-blog-section .tj-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
  color: #4F46E5;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.tj-blog-section .tj-main-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #0F172A;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
  .tj-blog-section .tj-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .tj-blog-section .tj-card-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .tj-blog-section .tj-newsletter-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.tj-blog-section .tj-subtitle {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.6;
}

.tj-blog-section .tj-filter-panel {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.tj-blog-section .tj-search-input {
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 16px 10px 42px;
  color: #0F172A;
  font-size: 0.9375rem;
  height: 46px;
}

.tj-blog-section .tj-search-input:focus {
  background-color: #FFFFFF;
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
  color: #0F172A;
}

.tj-blog-section .tj-search-input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.tj-blog-section .tj-filter-btn {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-blog-section .tj-filter-btn:hover {
  background: #EEF2FF;
  color: #4F46E5;
  border-color: #C7D2FE;
}

.tj-blog-section .tj-filter-btn.active {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.tj-blog-section .tj-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-blog-section .tj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.16);
  border-color: #818CF8;
}

.tj-blog-section .tj-card-img-wrapper {
  aspect-ratio: 16 / 9;
  background: #0F172A;
  overflow: hidden;
}

.tj-blog-section .tj-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.tj-blog-section .tj-card-pill {
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tj-blog-section .tj-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.3;
  color: #0F172A;
}

.tj-blog-section .tj-title-link {
  color: #0F172A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tj-blog-section .tj-title-link:hover {
  color: #4F46E5;
}

.tj-blog-section .tj-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748B;
}

.tj-blog-section .tj-btn-read {
  background: #EEF2FF;
  color: #4F46E5;
  border: 1px solid #E0E7FF;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.tj-blog-section .tj-btn-read:hover {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.tj-blog-section .tj-btn-reset {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tj-blog-section .tj-btn-reset:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  color: #FFFFFF;
}

.tj-blog-section .tj-newsletter-box {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  border-color: #E2E8F0;
  box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.08);
}

.tj-blog-section .tj-newsletter-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: #0F172A;
}

.tj-blog-section .tj-newsletter-input {
  max-width: 380px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  padding: 12px 18px;
  color: #0F172A;
  font-size: 0.9375rem;
  height: 48px;
}

.tj-blog-section .tj-newsletter-input:focus {
  background: #FFFFFF;
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
  color: #0F172A;
}

.tj-blog-section .tj-newsletter-input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.tj-blog-section .tj-newsletter-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9375rem;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
  transition: all 0.2s ease;
}

.tj-blog-section .tj-newsletter-btn:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
}

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

.delivery-page-section .delivery-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.delivery-page-section .delivery-main-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.7;
}

.delivery-page-section .delivery-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
  color: #4F46E5;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 9999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

.delivery-page-section .delivery-sub-badge {
  background: #EEF2FF;
  color: #4F46E5;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

.delivery-page-section .delivery-feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-page-section .delivery-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.14);
  border-color: #818CF8;
}

.delivery-page-section .delivery-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.delivery-page-section .delivery-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
}

.delivery-page-section .delivery-card-text {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 0;
}

.delivery-page-section .delivery-calculator-wrapper {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.08);
}

.delivery-page-section .delivery-calc-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
}

.delivery-page-section .delivery-calc-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
}

.delivery-page-section .delivery-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EEF2FF;
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.delivery-page-section .delivery-calculator-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.delivery-page-section .delivery-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.delivery-page-section .delivery-input {
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px 14px;
  color: #0F172A;
  font-size: 0.95rem;
}

.delivery-page-section .delivery-input:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  outline: none;
}

.delivery-page-section .delivery-calc-results {
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}

.delivery-page-section .delivery-result-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #4F46E5;
}

.delivery-page-section .delivery-progress-bar {
  height: 8px;
  background-color: #E2E8F0;
  border-radius: 9999px;
}

.delivery-page-section .delivery-progress-fill {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.delivery-page-section .delivery-section-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
}

.delivery-page-section .delivery-box-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0F172A;
}

.delivery-page-section .delivery-box-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
}

.delivery-page-section .delivery-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EEF2FF;
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.delivery-page-section .delivery-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.delivery-page-section .delivery-method-pill {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1E293B;
  display: inline-flex;
  align-items: center;
}

.delivery-page-section .delivery-guarantee-box {
  background: #F8FAFC;
  border-radius: 12px;
  border-left: 4px solid #6366F1;
}

.delivery-page-section .delivery-faq-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #0F172A;
}

.delivery-page-section .delivery-faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.delivery-page-section .delivery-faq-btn {
  background: #FFFFFF;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: left;
}

.delivery-page-section .delivery-faq-btn:hover {
  background-color: #F8FAFC;
}

.delivery-page-section .delivery-faq-content {
  border-top: 1px solid #F1F5F9;
  background: #FAFAFA;
}

.delivery-page-section .faq-chevron {
  transition: transform 0.2s ease;
  color: #64748B;
}

.delivery-page-section .delivery-faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #4F46E5;
}

.delivery-page-section .delivery-cta-box {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border: 1px solid #C7D2FE;
  border-radius: 24px;
}

.delivery-page-section .delivery-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E1B4B;
}

.delivery-page-section .delivery-cta-desc {
  color: #4338CA;
  font-size: 1rem;
}

.delivery-page-section .delivery-btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 24px;
  border: none;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 6px 16px -2px rgba(99, 102, 241, 0.35);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-page-section .delivery-btn-primary:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.delivery-page-section .delivery-btn-secondary {
  background: #FFFFFF;
  color: #4F46E5;
  font-weight: 600;
  border-radius: 12px;
  padding: 11px 22px;
  border: 1.5px solid #E0E7FF;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-page-section .delivery-btn-secondary:hover {
  background: #F5F3FF;
  border-color: #C7D2FE;
  color: #4F46E5;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .delivery-page-section .delivery-main-title {
    font-size: 1.75rem;
  }
  .delivery-page-section .delivery-calc-heading {
    font-size: 1.35rem;
  }
  .delivery-page-section .delivery-faq-heading {
    font-size: 1.35rem;
  }
  .delivery-page-section .delivery-card-title {
    font-size: 1.15rem;
  }
}

/* ===== PAGE: contact ===== */
.contact-section {
  background-color: #F8FAFC;
  color: #0F172A;
  position: relative;
  overflow: hidden;
}

.contact-section__badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #4F46E5;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-section__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.contact-section__subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #64748B;
}

.contact-section__info-card {
  background: linear-gradient(135deg, #4F46E5 0%, #2563EB 100%);
  border-radius: 24px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px -4px rgba(79, 70, 229, 0.25);
  position: relative;
}

.contact-section__info-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.contact-section__info-desc {
  color: #E2E8F0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-section__icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.contact-section__item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
}

.contact-section__item-text {
  color: #E2E8F0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-section__link {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.2s ease;
}

.contact-section__link:hover {
  color: #EEF2FF;
  text-decoration: underline;
}

.contact-section__item-note {
  color: #CBD5E1;
  font-size: 0.8125rem;
}

.contact-section__trust-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
}

.contact-section__trust-icon {
  font-size: 1.5rem;
  color: #A5B4FC;
}

.contact-section__trust-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFFFFF;
}

.contact-section__trust-desc {
  font-size: 0.8125rem;
  color: #E2E8F0;
}

.contact-section__form-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.08);
  height: 100%;
}

.contact-section__form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.contact-section__form-subtitle {
  color: #64748B;
  font-size: 0.95rem;
}

.contact-section__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.contact-section__topic-btn {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-section__topic-btn:hover {
  background: #EEF2FF;
  border-color: #C7D2FE;
  color: #4F46E5;
}

.contact-section__topic-btn.active {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.contact-section__input-wrapper {
  position: relative;
}

.contact-section__input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 0.9rem;
  pointer-events: none;
}

.contact-section__input {
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px 12px 40px;
  font-size: 0.9375rem;
  color: #0F172A;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-section__input:focus {
  background-color: #FFFFFF;
  border-color: #6366F1;
  color: #0F172A;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.contact-section__input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.contact-section__textarea {
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: #0F172A;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-section__textarea:focus {
  background-color: #FFFFFF;
  border-color: #6366F1;
  color: #0F172A;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.contact-section__textarea::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.contact-section__checkbox-label {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.5;
}

.contact-section__checkbox:checked {
  background-color: #4F46E5;
  border-color: #4F46E5;
}

.contact-section__policy-link {
  color: #4F46E5;
  text-decoration: underline;
}

.contact-section__policy-link:hover {
  color: #3730A3;
}

.contact-section__submit-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  padding: 14px 32px;
  border: none;
  box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-section__submit-btn:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.contact-section__quick-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-section__quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -4px rgba(99, 102, 241, 0.16);
  border-color: #818CF8;
}

.contact-section__quick-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.contact-section__quick-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
}

.contact-section__quick-text {
  color: #64748B;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-section__quick-link {
  color: #4F46E5;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section__quick-link:hover {
  color: #3730A3;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .contact-section__title {
    font-size: 1.875rem;
  }
  .contact-section__info-heading,
  .contact-section__form-title {
    font-size: 1.375rem;
  }
  .contact-section__quick-title {
    font-size: 1.125rem;
  }
  .contact-section__submit-btn {
    width: 100%;
  }
}

/* ===== PAGE: cart ===== */
.cart-page-section { background-color: #F8FAFC; min-height: 70vh; font-family: 'Plus Jakarta Sans', sans-serif; color: #0F172A; } .cart-page-section .cart-header-wrapper { margin-bottom: 24px; } .cart-page-section .cart-badge { display: inline-block; background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%); color: #4F46E5; border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 9999px; padding: 6px 14px; font-size: 0.8125rem; font-weight: 600; } .cart-page-section .cart-main-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 2.25rem; line-height: 1.2; color: #0F172A; } @media (max-width: 767.98px) { .cart-page-section .cart-main-title { font-size: 1.125rem; hyphens: auto; } } .cart-page-section .cart-lead-text { color: #64748B; font-size: 1rem; line-height: 1.6; margin-bottom: 0; } .cart-page-section .cart-items-card, .cart-page-section .cart-summary-card, .cart-page-section .cart-benefits-card, .cart-page-section .checkout-card, .cart-page-section .confirmation-card { background: #FFFFFF; border-radius: 20px; border: 1px solid #E2E8F0; padding: 24px; box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06); } .cart-page-section .cart-section-heading { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.35rem; color: #0F172A; } @media (max-width: 767.98px) { .cart-page-section .cart-section-heading { font-size: 1rem; hyphens: auto; } } .cart-page-section .cart-items-count-tag { background: #EEF2FF; color: #4F46E5; font-size: 0.8125rem; font-weight: 600; padding: 4px 10px; border-radius: 8px; } .cart-page-section .cart-item-row { border-bottom: 1px solid #F1F5F9; padding: 16px 0; } .cart-page-section .cart-item-row:last-child { border-bottom: none; } .cart-page-section .cart-item-img-box { width: 72px; height: 72px; border-radius: 12px; background: #F8FAFC; border: 1px solid #E2E8F0; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .cart-page-section .cart-item-img { width: 100%; height: 100%; object-fit: cover; } .cart-page-section .cart-item-title { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 600; color: #0F172A; margin-bottom: 4px; } @media (max-width: 767.98px) { .cart-page-section .cart-item-title { font-size: 0.875rem; } } .cart-page-section .cart-item-price { color: #4F46E5; font-weight: 700; font-size: 1rem; } .cart-page-section .cart-qty-control { display: flex; align-items: center; background: #F8FAFC; border: 1.5px solid #E2E8F0; border-radius: 10px; overflow: hidden; width: fit-content; } .cart-page-section .cart-qty-btn { background: #FFFFFF; border: none; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: #0F172A; cursor: pointer; transition: background 0.2s ease; font-size: 0.75rem; } .cart-page-section .cart-qty-btn:hover { background: #EEF2FF; color: #4F46E5; } .cart-page-section .product-quantity-input { width: 40px; text-align: center; border: none; background: transparent; font-weight: 600; color: #0F172A; font-size: 0.875rem; -moz-appearance: textfield; } .cart-page-section .product-quantity-input::-webkit-outer-spin-button, .cart-page-section .product-quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } .cart-page-section .cart-remove-item-button { background: transparent; border: none; color: #94A3B8; font-size: 1rem; cursor: pointer; transition: color 0.2s ease; padding: 6px; } .cart-page-section .cart-remove-item-button:hover { color: #EF4444; } .cart-page-section .cart-empty-icon { font-size: 3rem; color: #C7D2FE; } .cart-page-section .cart-empty-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: #0F172A; } .cart-page-section .cart-empty-text { font-size: 0.9375rem; } .cart-page-section .cart-action-btn { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; border-radius: 12px; padding: 12px 24px; border: none; transition: all 0.2s ease; display: inline-flex; align-items: center; justify-content: center; font-size: 0.9375rem; } .cart-page-section .cart-btn-primary { background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%); color: #FFFFFF; box-shadow: 0 6px 16px -2px rgba(99, 102, 241, 0.35); } .cart-page-section .cart-btn-primary:hover { background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%); color: #FFFFFF; transform: translateY(-1px); } .cart-page-section .cart-btn-secondary { background: #FFFFFF; color: #4F46E5; border: 1.5px solid #E0E7FF; } .cart-page-section .cart-btn-secondary:hover { background: #F5F3FF; color: #4338CA; border-color: #C7D2FE; } .cart-page-section .cart-summary-label { color: #64748B; font-size: 0.9375rem; } .cart-page-section .cart-summary-value { color: #0F172A; font-weight: 600; font-size: 0.9375rem; } .cart-page-section .cart-summary-total-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.125rem; color: #0F172A; } .cart-page-section .cart-summary-total-value { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: #4F46E5; } .cart-page-section .cart-divider { border-color: #E2E8F0; opacity: 1; } .cart-page-section .cart-benefit-item { display: flex; align-items: center; gap: 12px; } .cart-page-section .cart-benefit-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); color: #4F46E5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; } .cart-page-section .cart-benefit-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.875rem; color: #0F172A; margin-bottom: 2px; } .cart-page-section .cart-benefit-sub { font-size: 0.75rem; color: #64748B; margin-bottom: 0; } .cart-page-section .checkout-form-label { display: block; font-weight: 600; font-size: 0.875rem; color: #0F172A; margin-bottom: 6px; } .cart-page-section .checkout-form-input { width: 100%; background: #FFFFFF; border: 1.5px solid #E2E8F0; border-radius: 12px; padding: 10px 14px; font-size: 0.9375rem; color: #0F172A; transition: border-color 0.2s ease, box-shadow 0.2s ease; } .cart-page-section .checkout-form-input::placeholder { color: #94A3B8; opacity: 1; } .cart-page-section .checkout-form-input:focus { outline: none; border-color: #6366F1; box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1); } .cart-page-section .checkout-order-summary-box { background: #EEF2FF; border: 1px solid #C7D2FE; } .cart-page-section .checkout-order-summary-text { color: #3730A3; font-size: 0.9375rem; } .cart-page-section .checkout-order-summary-price { color: #4F46E5; font-size: 1.25rem; font-weight: 800; font-family: 'Outfit', sans-serif; } .cart-page-section .cart-back-btn { background: #F1F5F9; border: 1px solid #E2E8F0; color: #475569; border-radius: 8px; padding: 6px 12px; font-size: 0.8125rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; } .cart-page-section .cart-back-btn:hover { background: #E2E8F0; color: #0F172A; } .cart-page-section .confirmation-icon-wrapper { font-size: 4rem; color: #10B981; } .cart-page-section .confirmation-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.75rem; color: #0F172A; } @media (max-width: 767.98px) { .cart-page-section .confirmation-title { font-size: 1rem; } } .cart-page-section .confirmation-message { font-size: 1.125rem; color: #4F46E5; font-weight: 700; } .cart-page-section .confirmation-info-box { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 12px; } .cart-page-section .confirmation-info-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: #0F172A; } .cart-page-section .confirmation-info-text { font-size: 0.875rem; color: #64748B; }

/* ===== PAGE: privacy ===== */
.privacy-section { background-color: #F8FAFC; min-height: 80vh; font-family: 'Plus Jakarta Sans', sans-serif; color: #0F172A; }
.privacy-section .privacy-sidebar { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 20px; box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06); top: 24px; }
.privacy-section .privacy-badge { display: inline-flex; align-items: center; background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%); color: #4F46E5; border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 9999px; padding: 6px 14px; font-size: 0.8125rem; font-weight: 600; }
.privacy-section .privacy-sidebar-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: #0F172A; }
.privacy-section .privacy-sidebar-desc { font-size: 0.875rem; color: #64748B; line-height: 1.5; }
.privacy-section .privacy-nav-link { color: #64748B; text-decoration: none; padding: 10px 14px; border-radius: 10px; font-size: 0.9375rem; font-weight: 500; transition: all 0.2s ease; border: 1px solid transparent; }
.privacy-section .privacy-nav-link:hover { color: #4F46E5; background-color: #EEF2FF; }
.privacy-section .privacy-nav-link.active { color: #4F46E5; background: #EEF2FF; border-color: rgba(99, 102, 241, 0.2); font-weight: 600; }
.privacy-section .privacy-contact-card { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 14px; }
.privacy-section .privacy-icon-pill { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); color: #4F46E5; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.privacy-section .privacy-contact-title { font-weight: 700; font-size: 0.9375rem; color: #0F172A; }
.privacy-section .privacy-contact-sub { font-size: 0.8125rem; color: #64748B; }
.privacy-section .privacy-content-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 24px; box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06); }
.privacy-section .privacy-pill-badge { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%); color: #4F46E5; border: 1px solid rgba(139, 92, 246, 0.2); font-size: 0.75rem; font-weight: 600; padding: 6px 12px; border-radius: 20px; }
.privacy-section .privacy-main-heading { font-family: 'Outfit', sans-serif; font-size: 2.25rem; font-weight: 800; color: #0F172A; letter-spacing: -0.02em; line-height: 1.2; }
.privacy-section .privacy-date-tag { font-size: 0.875rem; }
.privacy-section .privacy-lead-text { font-size: 1.0625rem; line-height: 1.7; color: #475569; font-weight: 400; }
.privacy-section .privacy-clause-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: #0F172A; display: flex; align-items: center; gap: 10px; }
.privacy-section .privacy-clause-num { font-size: 0.875rem; color: #4F46E5; background: #EEF2FF; padding: 3px 8px; border-radius: 6px; font-weight: 700; }
.privacy-section .privacy-text { font-size: 0.9375rem; line-height: 1.65; color: #475569; }
.privacy-section .privacy-sub-box { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 14px; transition: transform 0.2s ease, border-color 0.2s ease; }
.privacy-section .privacy-sub-box:hover { transform: translateY(-2px); border-color: #C7D2FE; }
.privacy-section .privacy-sub-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 6px; }
.privacy-section .privacy-sub-desc { font-size: 0.875rem; color: #64748B; margin-bottom: 0; line-height: 1.5; }
.privacy-section .privacy-feature-list li { font-size: 0.9375rem; color: #334155; line-height: 1.6; }
.privacy-section .privacy-inline-link { color: #4F46E5; text-decoration: underline; font-weight: 600; }
.privacy-section .privacy-inline-link:hover { color: #3730A3; }
.privacy-section .privacy-note-card { background: #EEF2FF; border-left: 4px solid #4F46E5; border-radius: 8px; font-size: 0.875rem; color: #334155; line-height: 1.5; }
.privacy-section .privacy-table { border-collapse: separate; border-spacing: 0; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden; font-size: 0.875rem; }
.privacy-section .privacy-table th { background: #F8FAFC; color: #0F172A; font-weight: 700; border-bottom: 1px solid #E2E8F0; padding: 12px 16px; }
.privacy-section .privacy-table td { padding: 12px 16px; color: #475569; border-bottom: 1px solid #F1F5F9; }
.privacy-section .privacy-table tbody tr:last-child td { border-bottom: none; }
.privacy-section .privacy-right-card { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 14px; }
.privacy-section .btn-primary { background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%); color: #FFFFFF; font-weight: 600; border-radius: 12px; padding: 12px 24px; border: none; box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25); transition: all 0.2s ease; }
.privacy-section .btn-primary:hover { background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%); color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35); }
.privacy-section .btn-secondary { background: #FFFFFF; color: #4F46E5; font-weight: 600; border-radius: 12px; padding: 12px 24px; border: 1.5px solid #E0E7FF; transition: all 0.2s ease; }
.privacy-section .btn-secondary:hover { background: #F5F3FF; border-color: #C7D2FE; color: #4338CA; transform: translateY(-1px); }
@media (max-width: 767.98px) { .privacy-section .privacy-main-heading { font-size: 1.125rem; hyphens: auto; } .privacy-section .privacy-clause-title { font-size: 1rem; } .privacy-section .privacy-sidebar-title { font-size: 0.95rem; } .privacy-section .privacy-sub-title { font-size: 0.875rem; } .privacy-section .privacy-content-card { padding: 20px 16px; } }

/* ===== PAGE: terms ===== */
.terms-main-section{background-color:#F8FAFC;min-height:70vh}.terms-nav-card{background:#FFFFFF;border-radius:20px;border:1px solid #E2E8F0;box-shadow:0 4px 20px -2px rgba(99,102,241,0.08)}.terms-meta-pill{display:inline-flex;align-items:center;background:linear-gradient(135deg,rgba(139,92,246,0.1) 0%,rgba(59,130,246,0.1) 100%);color:#4F46E5;border:1px solid rgba(139,92,246,0.2);border-radius:9999px;padding:6px 14px;font-size:0.8125rem;font-weight:600;font-family:'Plus Jakarta Sans',sans-serif}.terms-nav-title{font-family:'Outfit',sans-serif;font-size:1.25rem;font-weight:700;color:#0F172A;margin:0}.terms-nav-item{display:flex;align-items:center;padding:10px 14px;border-radius:10px;color:#64748B;text-decoration:none;font-size:0.875rem;font-weight:500;font-family:'Plus Jakarta Sans',sans-serif;transition:all 0.2s cubic-bezier(0.4,0,0.2,1);background:transparent}.terms-nav-item:hover,.terms-nav-item.active{background:#EEF2FF;color:#4F46E5;transform:translateX(4px)}.terms-support-box{background:#F8FAFC;border:1px solid #E2E8F0;border-radius:14px}.terms-support-icon{width:40px;height:40px;border-radius:10px;background:linear-gradient(135deg,#8B5CF6 0%,#3B82F6 100%);color:#FFFFFF;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}.terms-support-label{font-size:0.8125rem;color:#64748B;font-family:'Plus Jakarta Sans',sans-serif}.terms-support-link{color:#4F46E5;font-weight:600;font-size:0.875rem;text-decoration:none}.terms-support-link:hover{text-decoration:underline;color:#3B82F6}.terms-content-card{background:#FFFFFF;border-radius:24px;border:1px solid #E2E8F0;box-shadow:0 8px 30px -4px rgba(99,102,241,0.08)}.terms-badge{background:linear-gradient(135deg,rgba(139,92,246,0.1) 0%,rgba(59,130,246,0.1) 100%);color:#4F46E5;border:1px solid rgba(139,92,246,0.2);border-radius:9999px;padding:6px 14px;font-size:0.8125rem;font-weight:600}.terms-main-heading{font-family:'Outfit',sans-serif;font-size:2.5rem;font-weight:800;color:#0F172A;line-height:1.2;letter-spacing:-0.02em}.terms-effective-date{color:#64748B;font-size:0.875rem;font-family:'Plus Jakarta Sans',sans-serif}.terms-section-title{font-family:'Outfit',sans-serif;font-size:1.375rem;font-weight:700;color:#0F172A;margin-bottom:1rem;display:flex;align-items:center}.terms-paragraph{font-family:'Plus Jakarta Sans',sans-serif;font-size:1rem;line-height:1.7;color:#64748B;margin-bottom:1rem}.terms-highlight-callout{background:#F8FAFC;border-left:4px solid #6366F1;border-radius:0 12px 12px 0;padding:16px 20px}.terms-list{padding-left:1.25rem;color:#64748B;font-family:'Plus Jakarta Sans',sans-serif;font-size:0.9375rem;line-height:1.7}.terms-list li{margin-bottom:8px}.terms-list strong{color:#0F172A}.terms-inline-link{color:#4F46E5;font-weight:600;text-decoration:none;transition:color 0.2s ease}.terms-inline-link:hover{color:#2563EB;text-decoration:underline}.terms-action-box{background:linear-gradient(135deg,rgba(139,92,246,0.06) 0%,rgba(59,130,246,0.06) 100%);border:1px solid rgba(99,102,241,0.2);border-radius:14px}.terms-action-text{font-family:'Plus Jakarta Sans',sans-serif;font-weight:600;color:#0F172A;font-size:0.9375rem}.terms-contact-btn{background:linear-gradient(135deg,#8B5CF6 0%,#3B82F6 100%);color:#FFFFFF;font-family:'Plus Jakarta Sans',sans-serif;font-weight:600;border-radius:12px;padding:10px 22px;border:none;box-shadow:0 8px 20px -4px rgba(99,102,241,0.35);transition:all 0.2s ease;text-decoration:none;display:inline-block;white-space:nowrap}.terms-contact-btn:hover{background:linear-gradient(135deg,#7C3AED 0%,#2563EB 100%);color:#FFFFFF;transform:translateY(-1px);box-shadow:0 12px 24px -2px rgba(99,102,241,0.45)}@media(max-width:767.98px){.terms-main-heading{font-size:1.875rem}.terms-section-title{font-size:1.125rem}.terms-content-card{padding:1.5rem !important}.terms-sidebar-wrapper{position:static !important}}

/* ===== PAGE: disclaimer ===== */
.disclaimer-page-section { background-color: #F8FAFC; color: #0F172A; font-family: 'Plus Jakarta Sans', sans-serif; min-height: 70vh; }
.disclaimer-page-section .disclaimer-breadcrumb .breadcrumb-item, .disclaimer-page-section .disclaimer-breadcrumb .breadcrumb-item a { font-size: 0.875rem; color: #64748B; text-decoration: none; font-weight: 500; }
.disclaimer-page-section .disclaimer-breadcrumb .breadcrumb-item a:hover { color: #4F46E5; }
.disclaimer-page-section .disclaimer-breadcrumb .breadcrumb-item.active { color: #0F172A; font-weight: 600; }
.disclaimer-page-section .disclaimer-header-card { background: #FFFFFF; border-radius: 24px; border: 1px solid #E2E8F0; box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.08); position: relative; overflow: hidden; }
.disclaimer-page-section .disclaimer-header-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%); }
.disclaimer-page-section .disclaimer-badge { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%); color: #4F46E5; border: 1px solid rgba(139, 92, 246, 0.2); border-radius: 9999px; padding: 6px 14px; font-size: 0.8125rem; font-weight: 600; display: inline-flex; align-items: center; }
.disclaimer-page-section .disclaimer-date { font-size: 0.8125rem; color: #64748B; font-weight: 500; }
.disclaimer-page-section .disclaimer-main-title { font-family: 'Outfit', sans-serif; font-size: 2.25rem; font-weight: 800; color: #0F172A; line-height: 1.2; letter-spacing: -0.02em; }
.disclaimer-page-section .disclaimer-lead { font-size: 1.0625rem; color: #64748B; line-height: 1.7; font-weight: 500; }
.disclaimer-page-section .disclaimer-nav-sticky { position: sticky; top: 24px; }
.disclaimer-page-section .disclaimer-nav-box { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 16px; box-shadow: 0 4px 16px rgba(99, 102, 241, 0.05); }
.disclaimer-page-section .disclaimer-nav-heading { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 700; color: #0F172A; }
.disclaimer-page-section .disclaimer-nav-link { display: flex; align-items: center; padding: 10px 14px; border-radius: 10px; color: #64748B; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: all 0.2s ease; }
.disclaimer-page-section .disclaimer-nav-link:hover { color: #4F46E5; background-color: #F8FAFC; transform: translateX(3px); }
.disclaimer-page-section .disclaimer-nav-link.active { background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%); color: #4F46E5; font-weight: 700; }
.disclaimer-page-section .disclaimer-block { background: #FFFFFF; border-radius: 20px; border: 1px solid #E2E8F0; box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06); }
.disclaimer-page-section .disclaimer-icon-badge { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); color: #4F46E5; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.disclaimer-page-section .disclaimer-section-title { font-family: 'Outfit', sans-serif; font-size: 1.375rem; font-weight: 700; color: #0F172A; line-height: 1.3; }
.disclaimer-page-section .disclaimer-text { font-size: 0.9375rem; color: #475569; line-height: 1.65; margin-bottom: 1rem; }
.disclaimer-page-section .disclaimer-alert-card { background: #F8FAFC; border: 1px solid #E2E8F0; border-left: 4px solid #6366F1; border-radius: 12px; }
.disclaimer-page-section .disclaimer-card-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: #0F172A; }
.disclaimer-page-section .disclaimer-small-text { font-size: 0.85rem; color: #64748B; line-height: 1.55; }
.disclaimer-page-section .disclaimer-info-box { background: #EEF2FF; border: 1px solid #C7D2FE; border-radius: 14px; }
.disclaimer-page-section .disclaimer-inline-link { color: #4F46E5; font-weight: 600; text-decoration: none; }
.disclaimer-page-section .disclaimer-inline-link:hover { text-decoration: underline; color: #2563EB; }
.disclaimer-page-section .disclaimer-contact-card { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 14px; text-align: center; }
.disclaimer-page-section .disclaimer-btn { background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%); color: #FFFFFF; font-weight: 600; font-size: 0.875rem; border-radius: 10px; padding: 10px 16px; border: none; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25); transition: all 0.2s ease; }
.disclaimer-page-section .disclaimer-btn:hover { background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%); color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35); }
.disclaimer-page-section .disclaimer-btn-secondary { background: #FFFFFF; color: #4F46E5; font-weight: 600; font-size: 0.875rem; border-radius: 10px; padding: 9px 16px; border: 1.5px solid #E0E7FF; transition: all 0.2s ease; }
.disclaimer-page-section .disclaimer-btn-secondary:hover { background: #F5F3FF; border-color: #C7D2FE; color: #4F46E5; transform: translateY(-1px); }
@media (max-width: 767.98px) {
  .disclaimer-page-section .disclaimer-main-title { font-size: 1.625rem; }
  .disclaimer-page-section .disclaimer-section-title { font-size: 1.125rem; }
  .disclaimer-page-section .disclaimer-header-card { padding: 1.5rem !important; }
  .disclaimer-page-section .disclaimer-block { padding: 1.5rem !important; }
}

/* ===== PAGE: refound ===== */
.refund-policy-section {
  padding: 48px 0;
  background-color: #F8FAFC;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0F172A;
}

@media (min-width: 768px) {
  .refund-policy-section {
    padding: 64px 0;
  }
}

@media (min-width: 1200px) {
  .refund-policy-section {
    padding: 80px 0;
  }
}

.refund-policy-section .refund-breadcrumb-nav .breadcrumb-item a {
  color: #6366F1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}

.refund-policy-section .refund-breadcrumb-nav .breadcrumb-item a:hover {
  color: #4F46E5;
  text-decoration: underline;
}

.refund-policy-section .refund-breadcrumb-nav .breadcrumb-item.active {
  color: #64748B;
  font-size: 0.875rem;
}

.refund-policy-section .refund-header-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.08);
}

@media (min-width: 768px) {
  .refund-policy-section .refund-header-card {
    padding: 40px 36px;
  }
}

.refund-policy-section .refund-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #4F46E5;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.refund-policy-section .refund-update-tag {
  font-size: 0.8125rem;
  color: #64748B;
  font-weight: 500;
}

.refund-policy-section .refund-main-title {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
  hyphens: auto;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-main-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .refund-policy-section .refund-main-title {
    font-size: 2.75rem;
  }
}

.refund-policy-section .refund-lead-text {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-lead-text {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.refund-policy-section .refund-highlight-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.refund-policy-section .refund-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -4px rgba(99, 102, 241, 0.14);
}

.refund-policy-section .refund-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.refund-policy-section .refund-card-title {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-card-title {
    font-size: 1.25rem;
  }
}

.refund-policy-section .refund-card-desc {
  color: #64748B;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.refund-policy-section .refund-article-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 30px -4px rgba(99, 102, 241, 0.08);
}

@media (min-width: 768px) {
  .refund-policy-section .refund-article-card {
    padding: 36px;
  }
}

.refund-policy-section .refund-search-box .refund-input-icon {
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-right: none;
  color: #6366F1;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-left: 16px;
  padding-right: 12px;
}

.refund-policy-section .refund-search-input {
  background-color: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #E2E8F0;
  border-left: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.refund-policy-section .refund-search-input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.refund-policy-section .refund-search-input:focus {
  background-color: #FFFFFF;
  color: #0F172A;
  border-color: #6366F1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.refund-policy-section .refund-clause {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #F1F5F9;
}

.refund-policy-section .refund-clause:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.refund-policy-section .refund-clause-title {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-clause-title {
    font-size: 1.35rem;
  }
}

.refund-policy-section .refund-check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.refund-policy-section .refund-check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.refund-policy-section .refund-check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: #6366F1;
  font-size: 0.8125rem;
}

.refund-policy-section .refund-inline-link {
  color: #4F46E5;
  font-weight: 600;
  text-decoration: underline;
}

.refund-policy-section .refund-inline-link:hover {
  color: #3730A3;
}

.refund-policy-section .refund-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.refund-policy-section .refund-step {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.refund-policy-section .refund-step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.refund-policy-section .refund-step-title {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-step-title {
    font-size: 1rem;
  }
}

.refund-policy-section .refund-step-desc {
  color: #64748B;
  font-size: 0.8125rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.refund-policy-section .refund-table {
  margin-bottom: 0;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
}

.refund-policy-section .refund-table thead th {
  background-color: #F1F5F9;
  color: #0F172A;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 16px;
  border-bottom: 1px solid #E2E8F0;
}

.refund-policy-section .refund-table tbody td {
  padding: 12px 16px;
  color: #334155;
  font-size: 0.875rem;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9;
}

.refund-policy-section .refund-empty-state {
  text-align: center;
  padding: 48px 16px;
  color: #64748B;
}

.refund-policy-section .refund-empty-state i {
  font-size: 2.5rem;
  color: #94A3B8;
}

.refund-policy-section .refund-empty-title {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.refund-policy-section .refund-empty-desc {
  color: #64748B;
  font-size: 0.875rem;
  max-width: 360px;
  margin: 0 auto 16px;
}

.refund-policy-section .refund-reset-btn {
  background: #EEF2FF;
  color: #4F46E5;
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 0.875rem;
  border: 1px solid #C7D2FE;
  transition: all 0.2s ease;
}

.refund-policy-section .refund-reset-btn:hover {
  background: #E0E7FF;
  color: #3730A3;
}

.refund-policy-section .refund-sidebar-title {
  font-family: 'Outfit', sans-serif;
  color: #0F172A;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-sidebar-title {
    font-size: 1.25rem;
  }
}

.refund-policy-section .refund-help-card,
.refund-policy-section .refund-quick-faq-card,
.refund-policy-section .refund-banner-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
}

.refund-policy-section .refund-sidebar-desc {
  color: #64748B;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.refund-policy-section .refund-primary-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 20px;
  border: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.refund-policy-section .refund-primary-btn:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}

.refund-policy-section .refund-outline-btn {
  background: #FFFFFF;
  color: #4F46E5;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  padding: 11px 20px;
  border: 1.5px solid #E0E7FF;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.refund-policy-section .refund-outline-btn:hover {
  background: #F5F3FF;
  border-color: #C7D2FE;
  color: #3730A3;
  transform: translateY(-1px);
}

.refund-policy-section .refund-help-badge {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
  text-align: center;
}

.refund-policy-section .refund-accordion .accordion-item {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.refund-policy-section .refund-accordion .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #0F172A;
  background-color: #FFFFFF;
  padding: 14px 16px;
  box-shadow: none;
}

.refund-policy-section .refund-accordion .accordion-button:not(.collapsed) {
  color: #4F46E5;
  background-color: #F8FAFC;
}

.refund-policy-section .refund-accordion .accordion-body {
  padding: 14px 16px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748B;
  background-color: #FFFFFF;
}

.refund-policy-section .refund-banner-card {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
  color: #FFFFFF;
  border: none;
  position: relative;
  overflow: hidden;
}

.refund-policy-section .refund-banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #E0E7FF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.refund-policy-section .refund-banner-title {
  font-family: 'Outfit', sans-serif;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .refund-policy-section .refund-banner-title {
    font-size: 1.125rem;
  }
}

.refund-policy-section .refund-banner-desc {
  color: #C7D2FE;
  font-size: 0.8125rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

.shop-comment-card.main-comment {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-comment-card.main-comment:hover {
    border-color: #818CF8;
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.12);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    user-select: none;
}

.avatar-gradient-user {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
}

.comment-badge-verified {
    display: inline-flex;
    align-items: center;
    background: #EEF2FF;
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 9999px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.comment-star-rating {
    color: #F59E0B;
    font-size: 0.8125rem;
    letter-spacing: 2px;
}

.comment-dot-separator {
    color: #CBD5E1;
    font-size: 0.75rem;
}

.comment-date {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

.btn-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.btn-option-icon:hover {
    background: #F8FAFC;
    color: #4F46E5;
    border-color: #CBD5E1;
}

.comment-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
}

.comment-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}

.comment-footer {
    border-top: 1px solid #F1F5F9;
}

.btn-comment-action {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 6px 14px;
    transition: all 0.2s ease;
}

.btn-comment-action:hover {
    background: #EEF2FF;
    color: #4F46E5;
    border-color: #C7D2FE;
}

.btn-comment-action.active {
    background: rgba(99, 102, 241, 0.1);
    color: #4F46E5;
    border-color: rgba(99, 102, 241, 0.3);
}

.comment-item-tag {
    font-size: 0.78125rem;
    color: #64748B;
    background: #F1F5F9;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.shop-comment-card.reply-comment {
    position: relative;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-left: 3px solid #6366F1;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-comment-card.reply-comment:hover {
    background: #FFFFFF;
    border-color: #CBD5E1;
    border-left-color: #4F46E5;
    box-shadow: 0 4px 16px -2px rgba(99, 102, 241, 0.08);
}

.avatar-gradient-brand {
    background: linear-gradient(135deg, #4F46E5 0%, #2563EB 100%);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.comment-badge-brand {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: #4F46E5;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 9999px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
}


/* ===== PAGE TEMPLATE: catalog-items ===== */
.tj-detail-body {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tj-header {
    width: 100%;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.08);
}

.tj-header .tj-topbar {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tj-header .tj-topbar-text {
    color: #ffffff;
}

.tj-header .tj-topbar-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.tj-header .tj-topbar-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

.tj-header .tj-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.tj-header .tj-brand {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.tj-header .tj-brand:hover {
    color: #4F46E5;
}

.tj-header .tj-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.tj-header .tj-brand-title {
    background: linear-gradient(135deg, #6366F1 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.tj-header .tj-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
    padding: 0.5rem 0.9rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-nav-link:hover,
.tj-header .tj-nav-link:focus,
.tj-header .tj-nav-link.active {
    color: #4F46E5;
}

.tj-header .tj-navbar-toggler {
    border: 1px solid #E2E8F0;
    padding: 6px 10px;
    border-radius: 10px;
    background-color: #F8FAFC;
    color: #0F172A;
}

.tj-header .tj-navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.tj-header .tj-toggler-icon {
    font-size: 1.15rem;
    color: #0F172A;
}

.tj-header .tj-dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    margin-top: 8px;
}

.tj-header .tj-dropdown-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0F172A;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tj-header .tj-dropdown-item:hover,
.tj-header .tj-dropdown-item:focus {
    background-color: #EEF2FF;
    color: #4F46E5;
}

.tj-header .tj-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-cart-btn:hover {
    background-color: #F8FAFC;
    color: #6366F1;
    border-color: #818CF8;
    transform: translateY(-1px);
}

.tj-header .tj-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.tj-product-page-main .tj-breadcrumb-section {
    background-color: #F1F5F9;
    border-bottom: 1px solid #E2E8F0;
}

.tj-product-page-main .tj-breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
    color: #94A3B8;
}

.tj-product-page-main .tj-bc-link {
    color: #64748B;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.tj-product-page-main .tj-bc-link:hover {
    color: #4F46E5;
}

.tj-product-page-main .breadcrumb-item.active {
    color: #0F172A;
    font-weight: 600;
    font-size: 0.875rem;
}

.tj-product-page-main .tj-gallery-card {
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.08);
}

.tj-product-page-main .tj-gallery-main {
    background-color: #F8FAFC;
    max-height: 480px;
}

.tj-product-page-main .tj-main-product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.tj-product-page-main .tj-badge-badge {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.tj-product-page-main .tj-feat-badge-item {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.tj-product-page-main .tj-feat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0F172A;
}

.tj-product-page-main .tj-product-info-panel {
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.08);
}

.tj-product-page-main .tj-category-tag {
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.tj-product-page-main .tj-rating-stars {
    color: #F59E0B;
    font-size: 0.875rem;
}

.tj-product-page-main .tj-rating-count {
    color: #64748B;
    font-weight: 600;
}

.tj-product-page-main .tj-product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0F172A;
}

.tj-product-page-main .tj-product-lead {
    font-size: 1rem;
    line-height: 1.6;
}

.tj-product-page-main .tj-pricing-block {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #F8FAFC 100%);
    border: 1px solid #C7D2FE;
}

.tj-product-page-main .tj-price-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tj-product-page-main .tj-detail-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
}

.tj-product-page-main .tj-stock-badge {
    background: #DCFCE7;
    color: #15803D;
    border: 1px solid #86EFAC;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 9999px;
}

.tj-product-page-main .tj-label-sm {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0F172A;
}

.tj-product-page-main .tj-qty-group .form-control {
    font-weight: 700;
    color: #0F172A;
    background-color: #FFFFFF;
    border-color: #E2E8F0;
}

.tj-product-page-main .tj-qty-group .btn {
    background-color: #F8FAFC;
    color: #0F172A;
    border-color: #E2E8F0;
}

.tj-product-page-main .tj-qty-group .btn:hover {
    background-color: #EEF2FF;
    color: #4F46E5;
}

.tj-product-page-main .tj-btn-add-cart {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 20px;
    border: none;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-product-page-main .tj-btn-add-cart:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
    transform: translateY(-1px);
}

.tj-product-page-main .tj-direct-order-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.tj-product-page-main .tj-quick-order-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-product-page-main .tj-quick-order-desc {
    font-size: 0.8125rem;
    color: #64748B;
}

.tj-product-page-main .tj-input {
    background-color: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: #0F172A;
}

.tj-product-page-main .tj-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.tj-product-page-main .tj-input:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background-color: #FFFFFF;
    color: #0F172A;
}

.tj-product-page-main .tj-btn-order-direct {
    background: #0F172A;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 12px;
    border: none;
    transition: all 0.2s ease;
}

.tj-product-page-main .tj-btn-order-direct:hover {
    background: #4F46E5;
    color: #FFFFFF;
}

.tj-product-page-main .tj-product-tabs-wrapper {
    box-shadow: 0 8px 30px -4px rgba(99, 102, 241, 0.08);
}

.tj-product-page-main .tj-tabs-nav {
    border-bottom: 2px solid #F1F5F9;
    gap: 8px;
}

.tj-product-page-main .tj-tab-button {
    border-radius: 10px !important;
    font-weight: 600;
    color: #64748B;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.tj-product-page-main .tj-tab-button:hover {
    color: #4F46E5;
    background: #EEF2FF;
}

.tj-product-page-main .tj-tab-button.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%) !important;
    color: #FFFFFF !important;
    border-color: transparent !important;
}

.tj-product-page-main .tj-tab-pane {
    display: none;
}

.tj-product-page-main .tj-tab-pane.show-pane {
    display: block;
}

.tj-product-page-main .tj-content-scope h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.tj-product-page-main .tj-content-scope h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0F172A;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tj-product-page-main .tj-content-scope p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
}

.tj-product-page-main .tj-feature-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

.tj-product-page-main .tj-feature-list strong {
    color: #0F172A;
}

.tj-product-page-main .tj-spec-table {
    margin-bottom: 0;
}

.tj-product-page-main .tj-table-th {
    background-color: #F8FAFC;
    color: #0F172A;
    width: 30%;
    font-weight: 600;
}

.tj-product-page-main .tj-reviews-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-product-page-main .shop-comment-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px -2px rgba(99, 102, 241, 0.05);
}

.tj-product-page-main .shop-comment-card.reply-comment {
    background: #F8FAFC;
    border-left: 4px solid #6366F1;
    position: relative;
}

.tj-product-page-main .comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #FFFFFF;
}

.tj-product-page-main .avatar-gradient-user {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
}

.tj-product-page-main .avatar-gradient-brand {
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
}

.tj-product-page-main .comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-product-page-main .comment-badge-verified {
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
}

.tj-product-page-main .comment-badge-brand {
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
}

.tj-product-page-main .comment-star-rating {
    color: #F59E0B;
    font-size: 0.8125rem;
}

.tj-product-page-main .comment-dot-separator {
    color: #94A3B8;
}

.tj-product-page-main .comment-date {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.tj-product-page-main .btn-option-icon {
    color: #94A3B8;
    border: none;
    background: transparent;
    padding: 4px 8px;
}

.tj-product-page-main .btn-option-icon:hover {
    color: #0F172A;
}

.tj-product-page-main .comment-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-product-page-main .comment-text {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #475569;
}

.tj-product-page-main .btn-comment-action {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 4px 12px;
    transition: all 0.2s ease;
}

.tj-product-page-main .btn-comment-action:hover,
.tj-product-page-main .btn-comment-action.active {
    background: #EEF2FF;
    color: #4F46E5;
    border-color: #C7D2FE;
}

.tj-product-page-main .comment-item-tag {
    font-size: 0.8125rem;
    color: #64748B;
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 6px;
}

.tj-product-page-main .tj-leave-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-product-page-main .tj-btn-submit-review {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    transition: all 0.2s ease;
}

.tj-product-page-main .tj-btn-submit-review:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
}

.trip-footer {
    background: #0F172A;
    color: #E2E8F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.trip-footer__top {
    padding: 64px 0 48px;
}

.trip-footer__brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.trip-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.trip-footer__logo {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.trip-footer__about-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 20px;
}

.trip-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.25);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #818CF8;
}

.trip-footer__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 8px;
}

.trip-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border-radius: 2px;
}

.trip-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-footer__list li {
    margin-bottom: 10px;
}

.trip-footer__link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.trip-footer__link:hover {
    color: #818CF8;
    transform: translateX(4px);
}

.trip-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.trip-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.5;
}

.trip-footer__contact-icon {
    color: #818CF8;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.trip-footer__contact-icon--wa {
    color: #22C55E;
}

.trip-footer__contact-link {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.trip-footer__contact-link:hover {
    color: #818CF8;
}

.trip-footer__contact-link--wa {
    color: #4ADE80;
    font-weight: 600;
}

.trip-footer__contact-link--wa:hover {
    color: #86EFAC;
}

.trip-footer__map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.15);
    height: 130px;
    background: #1E293B;
}

.trip-footer__map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(25%) contrast(1.1);
}

.trip-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    background: #090E1A;
}

.trip-footer__copyright {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.trip-footer__payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trip-footer__payments-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trip-footer__payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-footer__payment-card {
    font-size: 1.75rem;
    color: #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2px 8px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .tj-header .tj-navbar {
        background-color: #ffffff;
    }

    .tj-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem 0.5rem;
        border-top: 1px solid #F1F5F9;
        margin-top: 0.5rem;
    }

    .tj-header .tj-nav-link {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #F8FAFC;
    }

    .tj-header .tj-dropdown-menu {
        border: none;
        padding-left: 1rem;
        background-color: #F8FAFC;
    }
}

@media (max-width: 767.98px) {
    .tj-product-page-main .tj-product-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .tj-product-page-main .tj-product-lead {
        font-size: 0.875rem;
    }

    .tj-product-page-main .tj-content-scope h3 {
        font-size: 1rem;
    }

    .tj-product-page-main .tj-content-scope h4 {
        font-size: 0.875rem;
    }

    .tj-product-page-main .tj-reviews-heading {
        font-size: 1rem;
    }

    .trip-footer__top {
        padding: 48px 0 36px;
    }

    .trip-footer__heading {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .trip-footer__payments {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== PAGE TEMPLATE: gift-set-items ===== */
.tj-header {
    width: 100%;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.08);
}

.tj-header .tj-topbar {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tj-header .tj-topbar-text {
    color: #ffffff;
}

.tj-header .tj-topbar-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.tj-header .tj-topbar-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

.tj-header .tj-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.tj-header .tj-brand {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.tj-header .tj-brand:hover {
    color: #4F46E5;
}

.tj-header .tj-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.tj-header .tj-brand-title {
    background: linear-gradient(135deg, #6366F1 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.tj-header .tj-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
    padding: 0.5rem 0.9rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-nav-link:hover,
.tj-header .tj-nav-link:focus {
    color: #4F46E5;
}

.tj-header .tj-navbar-toggler {
    border: 1px solid #E2E8F0;
    padding: 6px 10px;
    border-radius: 10px;
    background-color: #F8FAFC;
    color: #0F172A;
}

.tj-header .tj-navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.tj-header .tj-toggler-icon {
    font-size: 1.15rem;
    color: #0F172A;
}

.tj-header .tj-dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    margin-top: 8px;
}

.tj-header .tj-dropdown-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0F172A;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tj-header .tj-dropdown-item:hover,
.tj-header .tj-dropdown-item:focus {
    background-color: #EEF2FF;
    color: #4F46E5;
}

.tj-header .tj-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-cart-btn:hover {
    background-color: #F8FAFC;
    color: #6366F1;
    border-color: #818CF8;
    transform: translateY(-1px);
}

.tj-header .tj-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

@media (max-width: 991.98px) {
    .tj-header .tj-navbar {
        background-color: #ffffff;
    }

    .tj-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem 0.5rem;
        border-top: 1px solid #F1F5F9;
        margin-top: 0.5rem;
    }

    .tj-header .tj-nav-link {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #F8FAFC;
    }

    .tj-header .tj-dropdown-menu {
        border: none;
        padding-left: 1rem;
        background-color: #F8FAFC;
    }
}


.gift-detail-page {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.gift-breadcrumbs-nav {
    background-color: #F1F5F9;
    border-bottom: 1px solid #E2E8F0;
}

.gift-breadcrumbs-nav .breadcrumb-item a {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.gift-breadcrumbs-nav .breadcrumb-item.active {
    color: #64748B;
    font-size: 0.875rem;
}

.gift-hero-section {
    background-color: #F8FAFC;
    background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent 50%), radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 50%);
}

.gift-detail-page .gift-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.12);
}

.gift-detail-page .gift-main-img {
    object-fit: cover;
    display: block;
    height: auto;
    max-height: 480px;
}

.gift-detail-page .gift-badge-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.gift-detail-page .gift-tag {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.gift-detail-page .gift-rating-text {
    font-size: 0.875rem;
    color: #64748B;
    font-weight: 600;
}

.gift-detail-page .gift-product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gift-detail-page .gift-product-subtitle {
    font-size: 1.0625rem;
    color: #64748B;
    line-height: 1.6;
}

.gift-detail-page .gift-price-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.gift-detail-page .gift-price-current {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #4F46E5;
}

.gift-detail-page .gift-price-original {
    font-size: 1.125rem;
    color: #94A3B8;
    text-decoration: line-through;
}

.gift-detail-page .gift-tax-note {
    font-size: 0.8125rem;
    color: #64748B;
}

.gift-detail-page .gift-spec-pill {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0F172A;
    display: flex;
    align-items: center;
}

.gift-detail-page .gift-btn-cart {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 700;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s ease;
}

.gift-detail-page .gift-btn-cart:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.gift-detail-page .gift-btn-instant {
    background: #FFFFFF;
    color: #4F46E5;
    border: 1.5px solid #C7D2FE;
    border-radius: 12px;
    padding: 13px 24px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.gift-detail-page .gift-btn-instant:hover {
    background: #EEF2FF;
    color: #4338CA;
    transform: translateY(-1px);
}

.gift-detail-page .gift-guarantee-row {
    background: #FFFFFF;
    border-color: #E2E8F0 !important;
}

.gift-detail-page .gift-guarantee-heading {
    color: #0F172A;
    font-size: 0.9375rem;
}

.gift-detail-page .gift-guarantee-sub {
    color: #64748B;
    font-size: 0.8125rem;
}


.gift-tabs-section {
    background-color: #F8FAFC;
}

.gift-tabs-card {
    border-color: #E2E8F0 !important;
}

.gift-tabs-header .nav-pills .nav-link {
    border-radius: 10px;
    color: #64748B;
    font-weight: 600;
    padding: 10px 20px;
    background: #F1F5F9;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.gift-tabs-header .nav-pills .nav-link:hover {
    color: #4F46E5;
    background: #EEF2FF;
}

.gift-tabs-header .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
}

.gift-rendered-content h2.gift-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
}

.gift-rendered-content h3.gift-sub-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
}

.gift-rendered-content h4.gift-feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0F172A;
}

.gift-rendered-content p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.gift-spec-table th {
    color: #0F172A;
    font-weight: 600;
}

.gift-spec-table td {
    color: #475569;
}


.shop-comment-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.04);
    position: relative;
}

.reply-comment {
    background: #F8FAFC;
    border-left: 3px solid #818CF8;
}

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

.avatar-gradient-user {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
}

.avatar-gradient-brand {
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
    color: #818CF8;
}

.comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0F172A;
}

.comment-badge-verified {
    font-size: 0.75rem;
    color: #10B981;
    background: #ECFDF5;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 600;
}

.comment-badge-brand {
    font-size: 0.75rem;
    color: #6366F1;
    background: #EEF2FF;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 600;
}

.comment-star-rating {
    color: #F59E0B;
    font-size: 0.75rem;
}

.comment-dot-separator {
    color: #CBD5E1;
    font-size: 0.75rem;
}

.comment-date {
    color: #94A3B8;
    font-size: 0.75rem;
}

.btn-option-icon {
    color: #94A3B8;
    background: transparent;
    border: none;
    padding: 4px 8px;
}

.comment-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0F172A;
}

.comment-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.comment-footer {
    border-top: 1px solid #F1F5F9;
}

.btn-comment-action {
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
    transition: all 0.2s ease;
}

.btn-comment-action:hover,
.btn-comment-action.active {
    background: #EEF2FF;
    color: #4F46E5;
    border-color: #C7D2FE;
}

.comment-item-tag {
    font-size: 0.75rem;
    color: #64748B;
}

.gift-star-btn {
    border: 1px solid #E2E8F0;
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-star-btn.active {
    background: #FEF3C7;
    border-color: #FDE68A;
}

.gift-review-form-container {
    border-color: #E2E8F0 !important;
}

.gift-review-form-container .form-control {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    color: #0F172A;
}

.gift-review-form-container .form-control::placeholder {
    color: #94A3B8;
}

.gift-review-form-container .form-control:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.gift-submit-review-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 10px;
}


.gift-order-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-color: #E2E8F0 !important;
}

.gift-order-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: #0F172A;
}

.gift-order-desc {
    color: #64748B;
    line-height: 1.6;
    font-size: 0.95rem;
}

.gift-form-card {
    border-color: #E2E8F0 !important;
    box-shadow: 0 10px 30px -4px rgba(99, 102, 241, 0.08);
}

.gift-checkout-form .form-control,
.gift-checkout-form .form-select {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    color: #0F172A;
}

.gift-checkout-form .form-control::placeholder {
    color: #94A3B8;
}

.gift-checkout-form .form-control:focus,
.gift-checkout-form .form-select:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.gift-order-submit-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border: none;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s ease;
}

.gift-order-submit-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    transform: translateY(-1px);
}


.trip-footer {
    background: #0F172A;
    color: #E2E8F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.trip-footer__top {
    padding: 64px 0 48px;
}

.trip-footer__brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.trip-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.trip-footer__logo {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.trip-footer__about-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 20px;
}

.trip-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.25);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #818CF8;
}

.trip-footer__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 8px;
}

.trip-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border-radius: 2px;
}

.trip-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-footer__list li {
    margin-bottom: 10px;
}

.trip-footer__link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.trip-footer__link:hover {
    color: #818CF8;
    transform: translateX(4px);
}

.trip-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.trip-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.5;
}

.trip-footer__contact-icon {
    color: #818CF8;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.trip-footer__contact-icon--wa {
    color: #22C55E;
}

.trip-footer__contact-link {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.trip-footer__contact-link:hover {
    color: #818CF8;
}

.trip-footer__contact-link--wa {
    color: #4ADE80;
    font-weight: 600;
}

.trip-footer__contact-link--wa:hover {
    color: #86EFAC;
}

.trip-footer__map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.15);
    height: 130px;
    background: #1E293B;
}

.trip-footer__map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(25%) contrast(1.1);
}

.trip-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    background: #090E1A;
}

.trip-footer__copyright {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.trip-footer__payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trip-footer__payments-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trip-footer__payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-footer__payment-card {
    font-size: 1.75rem;
    color: #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2px 8px;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .gift-detail-page .gift-product-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .gift-detail-page .gift-product-subtitle {
        font-size: 0.875rem;
    }

    .gift-rendered-content h2.gift-section-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .gift-rendered-content h3.gift-sub-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .gift-order-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .trip-footer__top {
        padding: 48px 0 36px;
    }

    .trip-footer__heading {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .trip-footer__payments {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== PAGE TEMPLATE: blog-posts ===== */
.tj-blog-post-page {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tj-header {
    width: 100%;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.08);
}

.tj-header .tj-topbar {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tj-header .tj-topbar-text {
    color: #ffffff;
}

.tj-header .tj-topbar-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.tj-header .tj-topbar-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

.tj-header .tj-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.tj-header .tj-brand {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.tj-header .tj-brand:hover {
    color: #4F46E5;
}

.tj-header .tj-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.tj-header .tj-brand-title {
    background: linear-gradient(135deg, #6366F1 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.tj-header .tj-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
    padding: 0.5rem 0.9rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-nav-link:hover,
.tj-header .tj-nav-link:focus,
.tj-header .tj-nav-link.active {
    color: #4F46E5;
}

.tj-header .tj-navbar-toggler {
    border: 1px solid #E2E8F0;
    padding: 6px 10px;
    border-radius: 10px;
    background-color: #F8FAFC;
    color: #0F172A;
}

.tj-header .tj-navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.tj-header .tj-toggler-icon {
    font-size: 1.15rem;
    color: #0F172A;
}

.tj-header .tj-dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    margin-top: 8px;
}

.tj-header .tj-dropdown-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0F172A;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tj-header .tj-dropdown-item:hover,
.tj-header .tj-dropdown-item:focus {
    background-color: #EEF2FF;
    color: #4F46E5;
}

.tj-header .tj-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-header .tj-cart-btn:hover {
    background-color: #F8FAFC;
    color: #6366F1;
    border-color: #818CF8;
    transform: translateY(-1px);
}

.tj-header .tj-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.tj-blog-detail-wrapper .tj-article-header {
    background-color: #F8FAFC;
    background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 45%), radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 45%);
    border-bottom: 1px solid #E2E8F0;
}

.tj-blog-detail-wrapper .tj-breadcrumb .breadcrumb-item a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.tj-blog-detail-wrapper .tj-breadcrumb .breadcrumb-item a:hover {
    color: #4F46E5;
}

.tj-blog-detail-wrapper .tj-breadcrumb .breadcrumb-item.active {
    color: #0F172A;
    font-size: 0.875rem;
    font-weight: 600;
}

.tj-blog-detail-wrapper .tj-post-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4F46E5;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tj-blog-detail-wrapper .tj-article-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-article-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto;
}

.tj-blog-detail-wrapper .tj-article-meta .meta-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
}

.tj-blog-detail-wrapper .tj-post-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
}

.tj-blog-detail-wrapper .tj-post-hero-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    background-color: #F1F5F9;
}

.tj-blog-detail-wrapper .tj-post-main-img {
    object-fit: cover;
    display: block;
    max-height: 480px;
}

.tj-blog-detail-wrapper .tj-post-lead-box {
    background: linear-gradient(135deg, rgba(238, 242, 255, 0.8) 0%, rgba(224, 231, 255, 0.4) 100%);
    border-left: 4px solid #6366F1;
}

.tj-blog-detail-wrapper .tj-lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.7;
    color: #1E293B;
}

.tj-blog-detail-wrapper .tj-post-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.tj-blog-detail-wrapper .tj-post-h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
}

.tj-blog-detail-wrapper .tj-post-p {
    font-size: 1rem;
    line-height: 1.75;
    color: #334155;
}

.tj-blog-detail-wrapper .tj-quote-card {
    background-color: #F8FAFC;
    border-left-color: #6366F1 !important;
}

.tj-blog-detail-wrapper .tj-quote-icon {
    font-size: 1.5rem;
    color: #6366F1;
}

.tj-blog-detail-wrapper .tj-blockquote-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-blockquote-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748B;
}

.tj-blog-detail-wrapper .tj-post-list {
    list-style-type: none;
    padding-left: 0;
}

.tj-blog-detail-wrapper .tj-post-list-item {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
}

.tj-blog-detail-wrapper .tj-post-list-item::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #6366F1;
    font-size: 0.95rem;
}

.tj-blog-detail-wrapper .tj-highlight-card {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
    border: 1px solid #E0E7FF;
}

.tj-blog-detail-wrapper .tj-highlight-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #312E81;
}

.tj-blog-detail-wrapper .tj-highlight-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4338CA;
}

.tj-blog-detail-wrapper .tj-tags-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-tag-pill {
    background: #F1F5F9;
    color: #475569;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 6px 12px;
    border-radius: 8px;
}

.tj-blog-detail-wrapper .tj-author-box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.tj-blog-detail-wrapper .tj-author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    font-size: 1.5rem;
}

.tj-blog-detail-wrapper .tj-author-box-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-author-box-role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6366F1;
}

.tj-blog-detail-wrapper .tj-author-box-bio {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748B;
}

.tj-blog-detail-wrapper .tj-comments-container {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.06);
}

.tj-blog-detail-wrapper .tj-section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-comment-count-badge {
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
}

.tj-blog-detail-wrapper .shop-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.tj-blog-detail-wrapper .shop-comment-card.reply-comment {
    background-color: #F8FAFC;
    border-left: 3px solid #6366F1;
}

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

.tj-blog-detail-wrapper .avatar-gradient-user {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
}

.tj-blog-detail-wrapper .avatar-gradient-brand {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #FFFFFF;
}

.tj-blog-detail-wrapper .comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .comment-badge-verified {
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
}

.tj-blog-detail-wrapper .comment-badge-brand {
    background: #EEF2FF;
    color: #4338CA;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
}

.tj-blog-detail-wrapper .comment-star-rating {
    color: #F59E0B;
    font-size: 0.75rem;
}

.tj-blog-detail-wrapper .comment-dot-separator {
    color: #94A3B8;
    font-size: 0.75rem;
}

.tj-blog-detail-wrapper .comment-date {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.tj-blog-detail-wrapper .btn-option-icon {
    background: transparent;
    border: none;
    color: #94A3B8;
    padding: 4px 8px;
}

.tj-blog-detail-wrapper .btn-option-icon:hover {
    color: #0F172A;
}

.tj-blog-detail-wrapper .comment-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .comment-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
}

.tj-blog-detail-wrapper .comment-footer {
    border-top: 1px solid #F1F5F9;
}

.tj-blog-detail-wrapper .btn-comment-action {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #475569;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 4px 10px;
    transition: all 0.2s ease;
}

.tj-blog-detail-wrapper .btn-comment-action:hover {
    background: #EEF2FF;
    color: #4F46E5;
    border-color: #C7D2FE;
}

.tj-blog-detail-wrapper .btn-comment-action.active {
    background: #EEF2FF;
    color: #4F46E5;
    border-color: #818CF8;
}

.tj-blog-detail-wrapper .comment-item-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
}

.tj-blog-detail-wrapper .tj-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-auth-status-box {
    background-color: #FEF3C7;
    border: 1px solid #FCD34D;
    color: #92400E;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tj-blog-detail-wrapper .tj-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-input {
    background-color: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-input:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.tj-blog-detail-wrapper .tj-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.tj-blog-detail-wrapper .tj-star-btn {
    color: #E2E8F0;
    font-size: 1.25rem;
    transition: color 0.15s ease;
}

.tj-blog-detail-wrapper .tj-star-btn.active {
    color: #F59E0B;
}

.tj-blog-detail-wrapper .tj-btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    border: none;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tj-blog-detail-wrapper .tj-btn-primary:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 24px -2px rgba(99, 102, 241, 0.45);
    transform: translateY(-1px);
}

.tj-blog-detail-wrapper .tj-sidebar-widget {
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.05);
}

.tj-blog-detail-wrapper .tj-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-recent-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.tj-blog-detail-wrapper .tj-recent-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94A3B8;
}

.tj-blog-detail-wrapper .tj-recent-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.925rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0F172A;
    transition: color 0.2s ease;
}

.tj-blog-detail-wrapper .tj-recent-title:hover {
    color: #4F46E5;
}

.tj-blog-detail-wrapper .tj-craft-badge {
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
}

.tj-blog-detail-wrapper .tj-craft-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

.tj-blog-detail-wrapper .tj-craft-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748B;
}

.tj-blog-detail-wrapper .tj-craft-list span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.tj-blog-detail-wrapper .tj-newsletter-widget {
    background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.tj-blog-detail-wrapper .tj-nl-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.2);
    color: #818CF8;
    font-size: 1.25rem;
}

.tj-blog-detail-wrapper .tj-nl-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.tj-blog-detail-wrapper .tj-nl-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #94A3B8;
}

.tj-blog-detail-wrapper .tj-input-nl {
    background-color: #0F172A;
    border: 1px solid rgba(226, 232, 240, 0.2);
    color: #FFFFFF;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
}

.tj-blog-detail-wrapper .tj-input-nl:focus {
    background-color: #0F172A;
    color: #FFFFFF;
    border-color: #818CF8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.25);
}

.tj-blog-detail-wrapper .tj-input-nl::placeholder {
    color: #64748B;
    opacity: 1;
}

.trip-footer {
    background: #0F172A;
    color: #E2E8F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.trip-footer__top {
    padding: 64px 0 48px;
}

.trip-footer__brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.trip-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.trip-footer__logo {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.trip-footer__about-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 20px;
}

.trip-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.25);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #818CF8;
}

.trip-footer__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 8px;
}

.trip-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border-radius: 2px;
}

.trip-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-footer__list li {
    margin-bottom: 10px;
}

.trip-footer__link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.trip-footer__link:hover {
    color: #818CF8;
    transform: translateX(4px);
}

.trip-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.trip-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.5;
}

.trip-footer__contact-icon {
    color: #818CF8;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.trip-footer__contact-icon--wa {
    color: #22C55E;
}

.trip-footer__contact-link {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.trip-footer__contact-link:hover {
    color: #818CF8;
}

.trip-footer__contact-link--wa {
    color: #4ADE80;
    font-weight: 600;
}

.trip-footer__contact-link--wa:hover {
    color: #86EFAC;
}

.trip-footer__map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.15);
    height: 130px;
    background: #1E293B;
}

.trip-footer__map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(25%) contrast(1.1);
}

.trip-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    background: #090E1A;
}

.trip-footer__copyright {
    font-size: 0.8125rem;
    color: #94A3B8;
}

.trip-footer__payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trip-footer__payments-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trip-footer__payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-footer__payment-card {
    font-size: 1.75rem;
    color: #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 2px 8px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .tj-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem 0.5rem;
        border-top: 1px solid #F1F5F9;
        margin-top: 0.5rem;
    }

    .tj-header .tj-nav-link {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #F8FAFC;
    }

    .tj-header .tj-dropdown-menu {
        border: none;
        padding-left: 1rem;
        background-color: #F8FAFC;
    }
}

@media (max-width: 767.98px) {
    .tj-blog-detail-wrapper .tj-article-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .tj-blog-detail-wrapper .tj-post-h2 {
        font-size: 1rem;
        hyphens: auto;
    }

    .tj-blog-detail-wrapper .tj-post-h3 {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .tj-blog-detail-wrapper .tj-post-card,
    .tj-blog-detail-wrapper .tj-comments-container {
        padding: 1.25rem !important;
    }

    .trip-footer__top {
        padding: 48px 0 36px;
    }

    .trip-footer__heading {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .trip-footer__payments {
        flex-direction: column;
        gap: 8px;
    }
}