/* ============================================================
   Colin Fiyat Hesaplayıcı v3 - Premium SaaS UI
   Tam ekran, sticky sidebar, büyük SVG
   ============================================================ */

:root {
    --cfh-red: #FC0000;
    --cfh-red-hover: #E00000;
    --cfh-black: #000000;
    --cfh-card: #0D0D0D;
    --cfh-card-hover: #141414;
    --cfh-border: rgba(255,255,255,0.06);
    --cfh-border-hover: rgba(255,255,255,0.12);
    --cfh-text: #FFFFFF;
    --cfh-text-muted: #A1A1AA;
    --cfh-radius: 10px;
    --cfh-ease: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --cfh-gold: #FFD700;
    --cfh-green: #00C853;
}

/* ============================================================
   WRAPPER - TAM EKRAN
   ============================================================ */
.cfh-wrapper {
    background: var(--cfh-black);
    color: var(--cfh-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Elementor + Astra tema tam genişlik override */
.elementor-widget-container .cfh-wrapper,
.elementor-element .cfh-wrapper {
    margin: 0;
    padding: 0;
}

/* Astra tema container'ını genişlet */
.ast-plain-container .cfh-wrapper,
.ast-page-builder-template .cfh-wrapper,
.page .cfh-wrapper,
.single .cfh-wrapper {
    max-width: 100% !important;
    width: 100% !important;
}

/* Astra sidebar'ı gizle (fiyat sayfasında) */
body.cfh-page .ast-sidebar,
body.cfh-page #secondary {
    display: none !important;
}

body.cfh-page #primary {
    width: 100% !important;
    max-width: 100% !important;
}

body.cfh-page .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

body.cfh-page .site-content .ast-container {
    max-width: 100% !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.cfh-header {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid var(--cfh-border);
    background: linear-gradient(180deg, rgba(252,0,0,0.03) 0%, transparent 100%);
}

.cfh-header-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cfh-header-subtitle {
    font-size: 0.95rem;
    color: var(--cfh-text-muted);
    margin: 0;
    font-weight: 400;
}

/* ============================================================
   MAIN 3-COLUMN LAYOUT
   ============================================================ */
.cfh-main-layout {
    display: grid;
    grid-template-columns: 300px 1fr 340px;
    gap: 20px;
    padding: 24px 24px 0;
    min-height: calc(100vh - 140px);
    align-items: start;
}

/* ============================================================
   SOL PANEL (Sticky)
   ============================================================ */
.cfh-left-panel {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding-right: 4px;
    z-index: 10;
}

.cfh-left-panel::-webkit-scrollbar {
    width: 3px;
}
.cfh-left-panel::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

/* ============================================================
   ORTA PANEL (Scrollable)
   ============================================================ */
.cfh-center-panel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

/* ============================================================
   SAĞ PANEL (Sticky)
   ============================================================ */
.cfh-right-panel {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding-left: 4px;
    z-index: 10;
}

.cfh-right-panel::-webkit-scrollbar {
    width: 3px;
}
.cfh-right-panel::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

/* ============================================================
   SELECT GROUP
   ============================================================ */
.cfh-select-group {
    background: var(--cfh-card);
    border: 1px solid var(--cfh-border);
    border-radius: var(--cfh-radius);
    padding: 16px;
}

.cfh-group-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--cfh-text-muted);
    margin: 0 0 12px;
}

/* ============================================================
   ARAÇ TİPİ - TEK SEÇENEK
   ============================================================ */
.cfh-type-single {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(252, 0, 0, 0.06);
    border: 1px solid rgba(252, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cfh-text);
}

.cfh-type-icon {
    width: 36px;
    height: 18px;
    color: var(--cfh-red);
    flex-shrink: 0;
}

.cfh-type-note {
    font-size: 0.7rem;
    color: var(--cfh-text-muted);
    margin: 8px 0 0;
    opacity: 0.7;
}

/* ============================================================
   ÜRÜN SEÇİMİ
   ============================================================ */
.cfh-product-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cfh-product-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--cfh-border);
    background: transparent;
    cursor: pointer;
    transition: var(--cfh-ease);
    position: relative;
}

.cfh-product-option:hover {
    border-color: var(--cfh-border-hover);
    background: var(--cfh-card-hover);
}

.cfh-product-option.cfh-product-selected {
    border-color: var(--cfh-red);
    background: rgba(252, 0, 0, 0.06);
}

/* Premium ürünler (ilk 3) - dikkat çekici */
.cfh-product-option.cfh-product-premium {
    border-color: rgba(252, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(252,0,0,0.04) 0%, rgba(252,0,0,0.01) 100%);
}

.cfh-product-option.cfh-product-premium:hover {
    border-color: rgba(252, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(252,0,0,0.08) 0%, rgba(252,0,0,0.03) 100%);
}

.cfh-product-option.cfh-product-premium.cfh-product-selected {
    border-color: var(--cfh-red);
    background: linear-gradient(135deg, rgba(252,0,0,0.12) 0%, rgba(252,0,0,0.05) 100%);
    box-shadow: 0 0 20px rgba(252, 0, 0, 0.1);
}

.cfh-product-badge {
    position: absolute;
    top: -6px;
    right: 8px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--cfh-black);
    background: var(--cfh-red);
    padding: 2px 6px;
    border-radius: 3px;
}

.cfh-product-option-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--cfh-border-hover);
    flex-shrink: 0;
    transition: var(--cfh-ease);
    position: relative;
}

.cfh-product-option.cfh-product-selected .cfh-product-option-radio {
    border-color: var(--cfh-red);
    background: var(--cfh-red);
    box-shadow: inset 0 0 0 3px var(--cfh-black);
}

.cfh-product-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cfh-product-option-name {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cfh-product-option-detail {
    font-size: 0.65rem;
    color: var(--cfh-text-muted);
}

.cfh-product-option-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cfh-red);
    white-space: nowrap;
}

/* ============================================================
   HIZLI SEÇİM
   ============================================================ */
.cfh-quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cfh-quick-btn {
    background: var(--cfh-card-hover);
    border: 1px solid var(--cfh-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cfh-text);
    cursor: pointer;
    transition: var(--cfh-ease);
    text-align: center;
}

.cfh-quick-btn:hover {
    border-color: var(--cfh-red);
    background: rgba(252, 0, 0, 0.06);
    color: var(--cfh-red);
}

.cfh-quick-btn-full {
    background: rgba(252, 0, 0, 0.08);
    border-color: rgba(252, 0, 0, 0.2);
    color: var(--cfh-red);
}

.cfh-quick-btn-full:hover {
    background: rgba(252, 0, 0, 0.15);
}

/* ============================================================
   ARAÇ DİAGRAM - BÜYÜK
   ============================================================ */
.cfh-car-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cfh-car-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 500px;
    color: var(--cfh-text-muted);
    font-size: 0.9rem;
}

.cfh-car-diagram {
    width: 100%;
}

.cfh-car-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG Part Paths */
.cfh-part-path {
    fill: rgba(255, 255, 255, 0.02);
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cfh-part-path:hover {
    fill: rgba(252, 0, 0, 0.08);
    stroke: rgba(252, 0, 0, 0.4);
    stroke-width: 1.5;
}

.cfh-part-selected .cfh-part-path {
    fill: rgba(252, 0, 0, 0.15);
    stroke: var(--cfh-red);
    stroke-width: 1.8;
    filter: url(#cfh-glow);
}

/* SVG Labels */
.cfh-part-label {
    fill: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    font-weight: 600;
    text-anchor: middle;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cfh-part-label.cfh-label-sm {
    font-size: 10px;
}

.cfh-part-label.cfh-label-xs {
    font-size: 9px;
}

.cfh-part-selected .cfh-part-label {
    fill: rgba(255, 255, 255, 0.8);
}

/* Adet Badge */
.cfh-part-adet-badge {
    fill: var(--cfh-red);
    font-size: 14px;
    font-weight: 800;
    text-anchor: middle;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   FİYAT BOX
   ============================================================ */
.cfh-price-box {
    background: var(--cfh-card);
    border: 1px solid var(--cfh-border);
    border-radius: var(--cfh-radius);
    padding: 16px;
}

.cfh-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cfh-price-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--cfh-text-muted);
}

.cfh-price-value {
    font-size: 0.9rem;
    font-weight: 600;
}

.cfh-price-big {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cfh-red);
}

.cfh-price-divider {
    height: 1px;
    background: var(--cfh-border);
    margin: 10px 0;
}

.cfh-price-bump {
    animation: cfhBump 0.25s ease;
}

@keyframes cfhBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ============================================================
   SEÇİLEN PARÇALAR
   ============================================================ */
.cfh-parts-box {
    background: var(--cfh-card);
    border: 1px solid var(--cfh-border);
    border-radius: var(--cfh-radius);
    padding: 14px;
}

.cfh-parts-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cfh-text-muted);
    margin: 0 0 10px;
}

.cfh-parts-empty {
    text-align: center;
    padding: 12px 0;
}

.cfh-parts-empty p {
    font-size: 0.75rem;
    color: var(--cfh-text-muted);
    margin: 0;
    opacity: 0.6;
}

.cfh-parts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cfh-parts-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    font-size: 0.78rem;
}

.cfh-parts-item-name {
    color: var(--cfh-text);
    font-weight: 500;
}

.cfh-parts-item-adet {
    color: var(--cfh-text-muted);
    font-size: 0.7rem;
    margin-left: 4px;
}

.cfh-parts-item-price {
    color: var(--cfh-red);
    font-weight: 700;
    font-size: 0.78rem;
}

/* ============================================================
   TAKSİT & HEDİYE
   ============================================================ */
.cfh-taksit-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 0, 0, 0.06);
    border: 1px solid rgba(252, 0, 0, 0.12);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cfh-red);
}

.cfh-gifts-box {
    background: var(--cfh-card);
    border: 1px solid var(--cfh-border);
    border-radius: var(--cfh-radius);
    padding: 12px 14px;
}

.cfh-gifts-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cfh-green);
    margin: 0 0 8px;
}

.cfh-gifts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cfh-gifts-list li {
    font-size: 0.78rem;
    color: var(--cfh-text);
    padding-left: 16px;
    position: relative;
}

.cfh-gifts-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cfh-green);
    font-weight: 700;
    font-size: 0.7rem;
}

/* ============================================================
   İNDİRİM KODU
   ============================================================ */
.cfh-coupon-box {
    background: var(--cfh-card);
    border: 1px solid var(--cfh-border);
    border-radius: var(--cfh-radius);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--cfh-ease);
}

.cfh-coupon-box.cfh-coupon-applied {
    border-color: rgba(0, 200, 83, 0.3);
}

.cfh-coupon-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cfh-coupon-percent {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cfh-red);
    letter-spacing: 0.5px;
}

.cfh-coupon-input-wrap {
    display: flex;
    gap: 6px;
    align-items: center;
}

.cfh-coupon-input {
    flex: 1;
    background: #111;
    border: 1px solid var(--cfh-border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cfh-text);
    text-align: center;
    letter-spacing: 1px;
}

.cfh-coupon-input:focus {
    outline: none;
    border-color: var(--cfh-red);
}

.cfh-coupon-btn {
    background: var(--cfh-red);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cfh-text);
    cursor: pointer;
    transition: var(--cfh-ease);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cfh-coupon-btn:hover {
    background: var(--cfh-red-hover);
    transform: scale(1.02);
}

.cfh-coupon-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.cfh-coupon-result {
    padding: 6px 10px;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 6px;
    text-align: center;
    animation: cfhCouponPop 0.4s ease;
}

@keyframes cfhCouponPop {
    0% { opacity: 0; transform: scale(0.9); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.cfh-coupon-saved {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00C853;
    letter-spacing: 0.3px;
}

/* ============================================================
   WHATSAPP CTA
   ============================================================ */
.cfh-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cfh-red);
    color: var(--cfh-text) !important;
    text-decoration: none !important;
    padding: 16px 20px;
    border-radius: var(--cfh-radius);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--cfh-ease);
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(252, 0, 0, 0.2);
}

.cfh-whatsapp-btn:hover {
    background: var(--cfh-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(252, 0, 0, 0.3);
}

.cfh-whatsapp-btn svg {
    flex-shrink: 0;
}

.cfh-phone {
    text-align: center;
    font-size: 0.8rem;
    color: var(--cfh-text-muted);
    margin: 6px 0 0;
}

/* ============================================================
   TOOLTIP
   ============================================================ */
.cfh-tooltip {
    position: fixed;
    background: var(--cfh-card-hover);
    border: 1px solid var(--cfh-border-hover);
    color: var(--cfh-text);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.cfh-tooltip.cfh-tooltip-visible {
    opacity: 1;
}

.cfh-tooltip-price {
    color: var(--cfh-red);
    font-weight: 700;
    margin-left: 6px;
}

/* ============================================================
   ÜCRETSİZ İŞLEM HAZIRLIĞI BÖLÜMÜ
   ============================================================ */
.cfh-section {
    padding: 60px 24px;
    border-top: 1px solid var(--cfh-border);
}

.cfh-section-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cfh-section-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cfh-red);
    background: rgba(252, 0, 0, 0.08);
    border: 1px solid rgba(252, 0, 0, 0.15);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.cfh-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cfh-section-desc {
    font-size: 0.9rem;
    color: var(--cfh-text-muted);
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Free Grid */
.cfh-free-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cfh-free-item {
    background: var(--cfh-card);
    border: 1px solid var(--cfh-border);
    border-radius: var(--cfh-radius);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--cfh-ease);
}

.cfh-free-item:hover {
    border-color: rgba(252, 0, 0, 0.2);
    background: var(--cfh-card-hover);
    transform: translateY(-2px);
}

.cfh-free-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 0, 0, 0.08);
    border-radius: 50%;
    color: var(--cfh-red);
}

.cfh-free-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cfh-text);
    text-align: center;
    line-height: 1.3;
}

/* ============================================================
   AŞAMALAR BÖLÜMÜ
   ============================================================ */
.cfh-section-steps {
    background: linear-gradient(180deg, rgba(252,0,0,0.02) 0%, transparent 100%);
}

.cfh-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cfh-step-card {
    background: var(--cfh-card);
    border: 1px solid var(--cfh-border);
    border-radius: var(--cfh-radius);
    padding: 28px 22px;
    text-align: left;
    position: relative;
    transition: var(--cfh-ease);
}

.cfh-step-card:hover {
    border-color: rgba(252, 0, 0, 0.2);
    transform: translateY(-2px);
}

.cfh-step-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(252, 0, 0, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.cfh-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cfh-text);
    margin: 0 0 8px;
}

.cfh-step-desc {
    font-size: 0.82rem;
    color: var(--cfh-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .cfh-main-layout {
        grid-template-columns: 280px 1fr 320px;
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .cfh-main-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cfh-left-panel,
    .cfh-right-panel {
        position: static;
        max-height: none;
    }

    .cfh-left-panel {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 14px;
    }

    .cfh-car-container {
        max-width: 500px;
    }

    .cfh-free-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cfh-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cfh-header {
        padding: 30px 16px 20px;
    }

    .cfh-header-title {
        font-size: 1.4rem;
    }

    .cfh-main-layout {
        padding: 16px 12px 0;
    }

    .cfh-left-panel {
        grid-template-columns: 1fr;
    }

    .cfh-car-container {
        max-width: 340px;
    }

    .cfh-section {
        padding: 40px 16px;
    }

    .cfh-section-title {
        font-size: 1.3rem;
    }

    .cfh-free-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cfh-header-title {
        font-size: 1.2rem;
    }

    .cfh-header-subtitle {
        font-size: 0.85rem;
    }

    .cfh-price-big {
        font-size: 1.3rem !important;
    }

    .cfh-whatsapp-btn {
        font-size: 0.8rem;
        padding: 14px 16px;
    }

    .cfh-free-grid {
        grid-template-columns: 1fr;
    }

    .cfh-section-title {
        font-size: 1.1rem;
    }
}
