/* Mutlu Karavan — Modern Aegean Theme */
:root {
    --ocean-deep: #042f3f;
    --ocean-mid: #0a5c6e;
    --ocean-bright: #0d7a8c;
    --lagoon: #14b8a6;
    --mint: #5eead4;
    --seafoam: #ccfbf1;
    --sky: #0ea5e9;
    --sky-deep: #0369a1;
    --sand: #f0fdfa;
    --foam: #ecfeff;
    --ink: #134e4a;
    --muted: #5b8a8e;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(20, 184, 166, 0.22);
    --shadow-glow: 0 24px 80px rgba(10, 92, 110, 0.22);
    --shadow-card: 0 12px 40px rgba(4, 47, 63, 0.12);
    --gradient-hero: linear-gradient(135deg, #042f3f 0%, #0a5c6e 35%, #0d7a8c 65%, #0369a1 100%);
    --gradient-btn: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 50%, #0d7a8c 100%);
    --gradient-mesh: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(94, 234, 212, 0.35), transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(14, 165, 233, 0.25), transparent 50%);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.site-body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--sand);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
}

/* Header */
.site-header {
    background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
    transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.scrolled {
    box-shadow: var(--shadow-card);
    background: rgba(255, 255, 255, 0.92);
}

.logo { color: var(--ocean-deep); line-height: 0; }
.logo-image { display: block; }
.logo-icon { color: var(--lagoon); }

.main-nav .nav-btn::after { display: none; }

/* Buttons */
.btn-primary {
    background: var(--gradient-btn);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    border: none;
    box-shadow: 0 8px 28px rgba(20, 184, 166, 0.4);
}

.btn-glow {
    background: var(--gradient-btn);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    color: var(--white);
    border: none;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.45);
    white-space: nowrap;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(20, 184, 166, 0.5);
    color: var(--white);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero */
.hero { min-height: min(100vh, 900px); }
.hero-overlay {
    background: linear-gradient(145deg, rgba(4, 47, 63, 0.88) 0%, rgba(10, 92, 110, 0.75) 45%, rgba(3, 105, 161, 0.6) 100%);
}

.hero-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 12s ease-in-out infinite;
}

.blob-1 {
    width: 400px; height: 400px;
    background: var(--mint);
    top: 10%; left: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px; height: 300px;
    background: var(--sky);
    bottom: 20%; right: -5%;
    animation-delay: -4s;
}

.blob-3 {
    width: 250px; height: 250px;
    background: var(--lagoon);
    top: 50%; left: 40%;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero h1 { font-family: var(--font-display); }
.hero h1 em { color: var(--mint); font-style: italic; }

.hero-bg-css {
    background: linear-gradient(135deg, #042f3f 0%, #0a5c6e 40%, #0d7a8c 70%, #0369a1 100%);
    transform: none;
}

.hero-home .hero-content {
    max-width: min(1200px, 100%);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    box-sizing: border-box;
    min-width: 0;
}

.hero-home .hero-content .eyebrow {
    font-size: clamp(0.65rem, 2.5vw, 0.8rem);
}

.hero-home .hero-content h1 {
    font-size: clamp(1.75rem, 5.5vw, 3.5rem);
    line-height: 1.15;
    word-wrap: break-word;
}

.hero-home .hero-content p {
    font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-home .hero-content p a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.hero-home .hero-content p a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold-light);
}

.hero-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Mobil: hero + rezervasyon kutusu */
@media (max-width: 767px) {
    .hero.hero-home {
        min-height: auto;
        align-items: flex-start;
        margin-top: var(--header-h);
        padding-bottom: 1.5rem;
        overflow-x: clip;
    }

    .hero-home .hero-content {
        padding: 1.25rem 0 0.5rem;
    }

    .hero-home .hero-content h1 br {
        display: none;
    }

    .hero-home .hero-content p {
        margin-bottom: 1rem;
        opacity: 0.95;
    }

    .hero-booking {
        margin: 0.75rem 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-booking-glow {
        display: none;
    }

    .hero-booking-inner {
        padding: 1rem;
        border-radius: 16px;
    }

    .hero-booking-head h2 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
    }

    .hero-booking-fields {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .booking-field-delivery {
        grid-column: 1;
    }

    .hero-booking-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .hero-booking-total {
        text-align: center;
        flex: none;
        width: 100%;
    }

    .hero-booking-total strong {
        font-size: 1.35rem;
    }

    .hero-booking-submit {
        width: 100%;
        flex: none;
        max-width: none;
        white-space: normal;
        padding: 0.95rem 1rem !important;
        font-size: 1rem;
    }

    .hero-home .hero-actions {
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 0.75rem;
    }

    .hero-home .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        opacity: 0.35;
        transform: scale(0.7);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero rezervasyon kutusu */
.hero-booking {
    position: relative;
    margin: 2rem 0 1.5rem;
    z-index: 2;
}

.hero-booking-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-btn);
    border-radius: calc(var(--radius) + 2px);
    opacity: 0.6;
    filter: blur(12px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.75; }
}

.hero-booking-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-glow);
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content .hero-booking {
    width: 100%;
    min-width: 0;
}

.booking-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ocean-bright);
    background: var(--seafoam);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.hero-booking-head h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.hero-booking-form {
    width: 100%;
}

.hero-booking-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: end;
    width: 100%;
}

.hero-booking-fields .booking-field,
.hero-booking-fields .booking-field-delivery {
    min-width: 0;
}

.booking-field-delivery {
    grid-column: 1 / -1;
}

.booking-time-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    grid-column: 1 / -1;
}

.office-hours-note {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--muted);
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-sm);
}

.office-hours-alert {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-sm);
}

.office-hours-alert[hidden] {
    display: none !important;
}

.cl-bw-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cl-bw-time-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cl-bw-time-field select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    background: #fff;
}

.cl-booking-widget .office-hours-note {
    margin-bottom: 1rem;
}

.booking-field-delivery select {
    min-width: 0;
    width: 100%;
}

.hero-booking-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--seafoam);
    width: 100%;
}

.hero-booking-total {
    flex: 1 1 140px;
    min-width: 0;
}

.hero-booking-total .field-label {
    display: block;
    white-space: normal;
}

.hero-booking-submit {
    flex: 1 1 200px;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.field-icon { font-size: 0.9rem; opacity: 0.7; }
.field-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }

.booking-field input,
.booking-field select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.75rem 0.9rem;
    border: 2px solid var(--seafoam);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .booking-field input,
    .booking-field select {
        font-size: 16px;
        min-height: 48px;
    }
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--lagoon);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.hero-booking-total strong {
    font-size: 1.35rem;
    color: var(--ocean-bright);
    display: block;
}

.hero-booking-note {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

.site-body .hero-booking-submit {
    padding: 0.85rem 1.5rem !important;
    margin-top: 0;
}

/* Scroll reveal — sadece .reveal, .caravan-card, .feature-card, .stat-card */
.reveal,
.caravan-card,
.feature-card,
.stat-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible,
.caravan-card.is-visible,
.feature-card.is-visible,
.stat-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blog kartları her zaman görünür — JS animasyonu yok */
.blog-card {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Blog ve içerik bölümleri her zaman görünür */
.blog-list-section,
.blog-cta-strip,
.blog-related,
.blog-article-body,
.page-hero {
    opacity: 1 !important;
    transform: none !important;
}

/* Blog kartları sayfa yüklenince hemen görünür (JS animasyonundan bağımsız) */
.blog-list-section .blog-card {
    opacity: 1 !important;
    transform: none !important;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease) !important;
}

.blog-list-section .blog-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-glow) !important;
}

/* Ana sayfa hero: ilk ekranda her zaman görünür (mobilde reveal gecikmesi olmasın) */
.hero-home .hero-content.reveal {
    opacity: 1;
    transform: none;
}

/* Cards & sections */
.section-head h2,
.page-hero h1,
.cta-box h2,
.feature-card h3 { font-family: var(--font-display); color: var(--ocean-deep); }

.caravan-card {
    border: 1px solid var(--glass-border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.caravan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.stats-grid,
.feature-card,
.booking-panel,
.calendar-panel {
    background: var(--white);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.stat-card strong { color: var(--ocean-bright); }

.gallery-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    pointer-events: none;
}

.cta-box {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.1), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.page-hero.small,
.page-hero {
    background: var(--gradient-hero);
}

.site-footer {
    background: var(--ocean-deep);
}

.alert-info {
    background: var(--seafoam);
    color: var(--ocean-deep);
    border: 1px solid var(--lagoon);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Admin müsaitlik */
.admin-avail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    align-items: end;
}

.admin-avail-grid label { font-size: 0.85rem; font-weight: 600; }
.admin-avail-grid input,
.admin-avail-grid select {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.booking-panel .booking-field-delivery select,
.form .booking-field-delivery select {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.85rem 1rem;
    border: 2px solid var(--seafoam);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.admin-check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}

.admin-check-label input { width: auto; margin: 0; }

/* Ödeme sayfası */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.checkout-summary,
.checkout-card {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
}

.checkout-summary h2,
.checkout-card h2 {
    font-family: var(--font-display);
    color: var(--ocean-deep);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.checkout-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}

.checkout-details {
    list-style: none;
    margin-bottom: 1.25rem;
}

.checkout-details li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--seafoam);
    font-size: 0.9rem;
}

.checkout-details li span { color: var(--muted); }
.checkout-details li strong { color: var(--ink); text-align: right; }

.checkout-total-box {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.checkout-total-box strong { font-size: 1.5rem; }

.checkout-edit-link {
    font-size: 0.9rem;
    color: var(--ocean-bright);
}

.checkout-steps {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkout-step-badge {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--seafoam);
    color: var(--ocean-deep);
}

.checkout-step-badge.active {
    background: var(--gradient-btn);
    color: var(--white);
}

.checkout-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.checkout-user-info {
    background: var(--foam);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 2px solid var(--seafoam);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s;
}

.payment-option:has(input:checked) {
    border-color: var(--lagoon);
    background: var(--foam);
}

.payment-note { font-size: 0.8rem; margin-bottom: 1rem; }

.small { font-size: 0.85rem; }

/* Ofiste Ödeme / Hemen Öde kartları */
.pricing-cards-wrap {
    margin-bottom: 1.75rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.pricing-card[data-payment-type] {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.45rem 1rem 0;
    border-radius: 16px;
    cursor: default;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
    overflow: hidden;
    min-height: 178px;
    user-select: none;
}

.pricing-card input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.pricing-card-select {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 26px;
    height: 26px;
    border: 2.5px solid #64748b;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pricing-card-select::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 7px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: translate(-50%, -60%) rotate(-45deg) scale(0);
    transition: transform 0.15s ease;
}

.pricing-card-office.is-selected .pricing-card-select,
.pricing-card-office:has(input:checked) .pricing-card-select {
    border-color: #064e56;
    background: #0a5c6e;
    box-shadow: 0 0 0 4px rgba(10, 92, 110, 0.28);
    transform: scale(1.05);
}

.pricing-card-office.is-selected .pricing-card-select::after,
.pricing-card-office:has(input:checked) .pricing-card-select::after {
    transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}

.pricing-card-office {
    background: #ffffff;
    border: 2.5px solid #cbd5e1;
    color: #1e293b;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.pricing-card-office .pricing-card-title {
    color: #334155;
    font-weight: 700;
    font-size: 0.92rem;
}

.pricing-card-office .pricing-card-price {
    color: #0f172a;
    text-shadow: none;
}

.pricing-card-office.is-selected,
.pricing-card-office:has(input:checked) {
    border-color: #0a5c6e;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(10, 92, 110, 0.18), 0 12px 28px rgba(4, 47, 63, 0.16);
    transform: translateY(-2px) scale(1.01);
}

.pricing-cards-wrap:has(.pricing-card-online.is-selected) .pricing-card-office:not(.is-selected) {
    opacity: 0.78;
    filter: saturate(0.85);
}

.pricing-card-online {
    background: linear-gradient(180deg, #064e56 0%, #0a6575 18%, #0d8f9f 48%, #06b6d4 72%, #38bdf8 100%);
    border: 2.5px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.28);
    opacity: 0.72;
    filter: saturate(0.88);
}

.pricing-card-online.is-selected,
.pricing-card-online:has(input:checked) {
    opacity: 1;
    filter: none;
    border: 4px solid #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 0 0 5px rgba(56, 189, 248, 0.65),
        0 0 0 9px rgba(103, 232, 249, 0.28),
        0 18px 44px rgba(14, 165, 233, 0.55);
}

.pricing-card-online.is-featured:not(.is-selected) {
    opacity: 0.88;
    filter: saturate(0.95);
    transform: none;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.35);
}

.pricing-cards-wrap:has(.pricing-card-office.is-selected) .pricing-card-online:not(.is-selected) {
    opacity: 0.55;
    filter: saturate(0.7) brightness(0.9);
}

.pricing-card-online .pricing-card-select {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.25);
    border-width: 2.5px;
}

.pricing-card-online.is-selected .pricing-card-select,
.pricing-card-online:has(input:checked) .pricing-card-select {
    border-color: #ffffff;
    background: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.55);
    transform: scale(1.08);
}

.pricing-card-online.is-selected .pricing-card-select::after,
.pricing-card-online:has(input:checked) .pricing-card-select::after {
    border-color: #ffffff;
    transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}

.pricing-card:focus-within {
    outline: 3px solid #22d3ee;
    outline-offset: 3px;
}

.pricing-card-badge {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: rgba(255, 255, 255, 0.32);
    color: #ffffff;
    padding: 0.22rem 0.55rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.pricing-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    letter-spacing: 0.01em;
}

.pricing-card-online .pricing-card-title,
.pricing-card-online .pricing-card-price {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.pricing-card-price {
    font-size: 1.62rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: auto;
    padding-bottom: 0.7rem;
    letter-spacing: -0.02em;
}

.pricing-card-savings {
    width: 100%;
    padding: 0.58rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.pricing-card-office .pricing-card-savings {
    background: #7dd3fc;
    color: #1e3a5f;
    border-top: 2px solid #38bdf8;
}

.pricing-card-online .pricing-card-savings {
    background: rgba(4, 47, 63, 0.55);
    color: #ffffff;
    font-weight: 800;
    border-top: 2px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-card-sub {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    margin-top: 0.3rem;
    line-height: 1.3;
}

.pricing-card-office .pricing-card-sub {
    color: #64748b;
}

.pricing-card-online .pricing-card-sub {
    color: #fecaca;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.pricing-picker-hint {
    text-align: center;
    margin: 0.75rem 0 0;
    font-size: 0.84rem;
    color: #475569;
    font-weight: 500;
}

.pricing-picker-hint strong {
    color: #064e56;
    font-weight: 800;
}

.pricing-list-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.pricing-list-note strong {
    color: var(--ink);
    font-weight: 700;
}

.pricing-discount-tag {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%);
    color: #064e56;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 800;
    border: 1.5px solid #0ea5e9;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}

.checkout-guest-hint {
    text-align: center;
    margin: 1rem 0;
}

.checkout-card-payment {
    margin-top: 0.5rem;
}

.checkout-step-badge.done {
    background: var(--seafoam);
    color: var(--ocean-deep);
}

/* Güvence Paketleri */
.insurance-info-bar {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    max-width: 640px;
}

.insurance-info-bar p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.info-icon { font-size: 1.25rem; }

.insurance-steps {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.insurance-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--seafoam);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.insurance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.insurance-card-popular {
    border-color: var(--lagoon);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.2);
}

.insurance-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lagoon), var(--mint));
    color: var(--ocean-deep);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.insurance-card-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 1.25rem 1.25rem;
}

.insurance-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--seafoam);
}

.insurance-card-header h2 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ocean-bright);
    line-height: 1.3;
    flex: 1;
}

.insurance-card-price {
    text-align: right;
    white-space: nowrap;
}

.insurance-card-price strong {
    display: block;
    font-size: 1.15rem;
    color: var(--ink);
}

.insurance-card-price small {
    font-size: 0.75rem;
    color: var(--muted);
}

.insurance-features {
    list-style: none;
    flex: 1;
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 1rem;
    scrollbar-width: thin;
}

.insurance-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--foam);
    font-size: 0.85rem;
}

.feature-name { flex: 1; color: var(--ink); line-height: 1.35; }

.feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.insurance-features li.included .feature-icon {
    background: #22c55e;
    color: var(--white);
}

.insurance-features li.excluded .feature-icon {
    background: #ef4444;
    color: var(--white);
}

.insurance-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--seafoam);
}

.insurance-detail-btn {
    background: none;
    border: none;
    color: var(--ocean-bright);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
}

.detail-arrow {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lagoon);
    border-radius: 50%;
    font-size: 0.65rem;
}

.btn-insurance-add {
    background: linear-gradient(135deg, var(--ocean-bright), var(--lagoon));
    color: var(--white);
    border: none;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-insurance-add:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(13, 122, 140, 0.35);
}

.insurance-skip-wrap {
    text-align: center;
    margin-top: 2rem;
}

.insurance-skip-link {
    background: none;
    border: none;
    color: var(--ocean-bright);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.95rem;
}

.insurance-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.insurance-modal[hidden] { display: none !important; }

.insurance-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 47, 63, 0.6);
}

.insurance-modal-content {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-glow);
}

.insurance-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
}

/* Ek Hizmetler — referans görsel düzeni */
.extras-section {
    padding-top: 0;
}

.extras-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #e8f4fc;
    border: 1px solid #b8d9ee;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
    font-size: 0.92rem;
    line-height: 1.5;
}

.extras-info-banner .info-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.extras-steps {
    margin-bottom: 1.75rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.extra-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow-card);
}

.extra-card-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
}

.extra-icon {
    font-size: 1.5rem;
    color: #c8102e;
    line-height: 1;
}

.extra-card-header h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #c8102e;
    font-family: var(--font-body);
}

.extra-detail-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
}

.extra-detail-link:hover {
    color: #c8102e;
}

.extra-desc {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}

.extra-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    overflow: hidden;
    background: #f9fafb;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn.qty-plus {
    color: #fff;
    background: #c8102e;
}

.qty-btn.qty-minus:hover {
    background: #e5e7eb;
}

.qty-btn.qty-plus:hover {
    background: #a00d25;
}

.qty-input {
    width: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    background: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.4rem 0;
    -moz-appearance: textfield;
}

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

.extra-price {
    text-align: right;
}

.extra-price strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.extra-price small {
    font-size: 0.75rem;
    color: var(--muted);
}

.extras-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.extras-total span {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
}

.extras-total strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #c8102e;
    margin-top: 0.15rem;
}

.extras-total-hint {
    font-size: 0.75rem;
    color: var(--muted);
}

.btn-extras-next {
    background: #c8102e;
    color: var(--white);
    border: none;
    padding: 0.95rem 2.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-extras-next:hover {
    background: #a00d25;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }

    .insurance-card-popular {
        margin-top: 1rem;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .extra-card-header {
        grid-template-columns: auto 1fr;
    }

    .extra-detail-link {
        grid-column: 1 / -1;
        justify-self: start;
        margin-left: 2.15rem;
    }

    .extra-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .extra-price {
        text-align: left;
    }

    .extras-footer-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-extras-next {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .checkout-grid,
    .checkout-auth-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet: 2 sütun, teslimat tam genişlik */
@media (min-width: 768px) and (max-width: 1099px) {
    .hero-booking-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-field-delivery {
        grid-column: 1 / -1;
    }

    .hero-booking-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-booking-total {
        text-align: center;
    }

    .hero-booking-submit {
        width: 100%;
        flex: none;
    }
}

/* Geniş ekran: tek satır form */
@media (min-width: 1100px) {
    .hero-booking-fields {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .booking-field-delivery {
        grid-column: span 2;
    }

    .hero-booking-actions {
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: flex-end;
    }

    .hero-booking-total {
        text-align: left;
    }

    .hero-booking-submit {
        flex: 0 0 auto;
        width: auto;
        min-width: 200px;
        max-width: 280px;
    }
}

/* Ana sayfa — hafif menü */
.home-minimal-page {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.home-minimal-page .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.home-minimal-page .logo {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.home-minimal {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    padding: 2rem 0 3rem;
    margin-top: var(--header-h);
    background: linear-gradient(160deg, var(--foam) 0%, var(--sand) 45%, var(--seafoam) 100%);
}

.home-minimal-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.home-minimal-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ocean-bright);
    margin: 0 0 0.5rem;
}

.home-minimal-title {
    font-family: inherit;
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 800;
    color: var(--ocean-deep);
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.home-minimal-lead {
    color: var(--muted);
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
}

.home-menu {
    display: grid;
    gap: 0.65rem;
    text-align: left;
}

.home-menu-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--seafoam);
    border-radius: var(--radius-sm);
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
    box-shadow: var(--shadow-card);
}

.home-menu-item:hover {
    border-color: var(--lagoon);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.18);
    transform: translateY(-1px);
}

.home-menu-primary {
    background: var(--gradient-btn);
    color: var(--white);
    border-color: transparent;
}

.home-menu-primary:hover {
    color: var(--white);
    border-color: transparent;
}

.home-menu-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.home-menu-label {
    flex: 1;
    font-size: 0.95rem;
}

.home-minimal-seo {
    margin-top: 1.5rem;
}

@media (max-width: 576px) {
    .home-minimal {
        padding: 1.25rem 0 2rem;
        min-height: calc(100dvh - var(--header-h));
    }

    .home-menu-item {
        padding: 0.8rem 1rem;
    }
}

/* Bilgi Bankası — footer accordion SEO */
.knowledge-base {
    background: var(--ocean-deep);
    color: var(--seafoam);
    padding: 3rem 0 2.5rem;
    border-top: 3px solid var(--lagoon);
}

.kb-header {
    text-align: center;
    margin-bottom: 2rem;
}

.kb-header .eyebrow {
    color: var(--mint);
}

.kb-header h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0.5rem 0;
}

.kb-intro {
    max-width: 720px;
    margin: 0 auto 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.kb-search {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
    padding: 0.75rem 1rem;
    border: 2px solid var(--glass-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
}

.kb-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.kb-search:focus {
    outline: none;
    border-color: var(--lagoon);
    background: rgba(255, 255, 255, 0.15);
}

.kb-thumb-gallery {
    margin-bottom: 1.75rem;
}

.kb-thumb-lead {
    text-align: center;
    margin: 0 0 1rem;
}

.kb-thumb-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.65rem;
}

.kb-thumb-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
    border: 1px solid rgba(20, 184, 166, 0.22);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(4, 47, 63, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.kb-thumb-btn:hover,
.kb-thumb-btn:focus-visible {
    transform: translateY(-2px);
    border-color: var(--lagoon);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    outline: none;
}

.kb-thumb-btn img {
    width: 100%;
    height: auto;
    aspect-ratio: 200 / 130;
    object-fit: cover;
    display: block;
}

.kb-thumb-label {
    font-size: 0.65rem;
    line-height: 1.2;
    padding: 0.35rem 0.4rem;
    text-align: center;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .kb-thumb-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 0.75rem;
    }
}

.kb-group {
    margin-bottom: 1.75rem;
}

.kb-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mint);
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.kb-count {
    font-weight: 500;
    opacity: 0.7;
    font-size: 0.85em;
}

.kb-group-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kb-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.kb-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--white);
}

.kb-summary::-webkit-details-marker {
    display: none;
}

.kb-summary::before {
    content: '+';
    flex-shrink: 0;
    width: 1.25rem;
    color: var(--lagoon);
    font-weight: 700;
}

.kb-item[open] .kb-summary::before {
    content: '−';
}

.kb-keyword {
    flex: 1;
    text-align: left;
    font-size: 0.92rem;
}

.kb-meta {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--mint);
    white-space: nowrap;
}

.kb-content {
    padding: 0 1.1rem 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.7;
}

.kb-content h3 {
    color: var(--mint);
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
}

.kb-content p {
    margin-bottom: 0.75rem;
}

.kb-content ul {
    margin: 0 0 0.75rem 1.1rem;
}

.kb-content a {
    color: var(--mint);
    text-decoration: underline;
}

.kb-footer-note {
    text-align: center;
    margin-top: 1.5rem;
}

.kb-footer-note a {
    color: var(--mint);
}

.footer-kb-link {
    margin-left: 1rem;
    color: var(--lagoon);
    font-size: 0.85rem;
}

.site-footer .knowledge-base + .footer-bottom {
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 576px) {
    .kb-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Blog */
.blog-hero .lead { max-width: 640px; margin: 0 auto; color: var(--muted); }

.blog-list-section {
    padding: 3rem 0 4rem;
    background: var(--foam, #f4f9fa);
}

.blog-list-count {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
}

.blog-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px dashed var(--seafoam);
}

.blog-empty p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--seafoam);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    display: block;
    aspect-ratio: 1200 / 630;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h2 {
    font-size: 1.1rem;
    margin: 0.35rem 0;
    line-height: 1.35;
}

.blog-card h2 a {
    color: var(--ocean-deep);
    text-decoration: none;
}

.blog-card h2 a:hover { color: var(--lagoon); }

.blog-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ocean-bright);
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: auto;
    padding-top: 0.75rem;
}

.blog-read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lagoon);
}

.blog-featured-image {
    margin: 0;
    max-height: 420px;
    overflow: hidden;
    background: var(--ocean-deep);
}

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

.content-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.content-image-grid figure {
    margin: 0;
    border-radius: var(--radius, 12px);
    overflow: hidden;
    border: 1px solid rgba(20, 184, 166, 0.2);
    background: var(--ocean-deep);
}

.content-image-grid img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.kb-content .content-image-grid {
    margin-top: 1rem;
}

.content-image-grid--compact {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.25rem;
    max-width: 520px;
}

.content-image-grid--compact img {
    aspect-ratio: 16 / 9;
    max-height: 140px;
    object-fit: cover;
}

@media (max-width: 480px) {
    .content-image-grid--compact {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
}

.blog-article-hero-inner {
    padding: 2rem 0 1rem;
}

.blog-meta {
    font-size: 0.88rem;
    color: var(--muted);
    margin-top: 0.75rem;
}

.blog-article-body {
    padding: 2.5rem 0 4rem;
    max-width: 780px;
}

.blog-content.prose h2 {
    font-family: var(--font-display);
    color: var(--ocean-deep);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.blog-content.prose h3 {
    color: var(--ocean-bright);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.15rem;
}

.blog-content.prose p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--ink);
}

.blog-content.prose ul {
    margin: 0 0 1.25rem 1.25rem;
    line-height: 1.75;
}

.blog-content.prose a {
    color: var(--ocean-bright);
    font-weight: 600;
    text-decoration: underline;
}

.blog-content.prose .blog-internal-hub {
    margin: 1.5rem 0 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--foam);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
}

.blog-content.prose .blog-internal-hub ul {
    margin: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.blog-content.prose .blog-internal-hub a {
    text-decoration: none;
}

.blog-content.prose .blog-internal-hub a:hover {
    text-decoration: underline;
}

.blog-toc {
    margin: 1.75rem 0 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f0f9f8 0%, var(--foam) 100%);
    border-radius: var(--radius-sm);
    border: 1px solid var(--seafoam);
}

.blog-toc-title {
    font-weight: 700;
    color: var(--ocean-deep);
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.blog-toc-list {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.7;
}

.blog-toc-list a {
    color: var(--ocean-bright);
    text-decoration: none;
    font-weight: 600;
}

.blog-toc-list a:hover {
    text-decoration: underline;
}

.blog-faq-section {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: var(--foam);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
}

.blog-faq-grid {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.blog-faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--seafoam);
    overflow: hidden;
}

.blog-faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--ocean-deep);
    list-style: none;
}

.blog-faq-summary::-webkit-details-marker {
    display: none;
}

.blog-faq-chevron {
    font-size: 0.7rem;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.blog-faq-item[open] .blog-faq-chevron {
    transform: rotate(180deg);
}

.blog-faq-body {
    padding: 0 1.15rem 1rem;
}

.blog-faq-body p {
    margin: 0;
    line-height: 1.75;
    color: var(--ink);
}

.blog-share {
    margin: 2.5rem 0;
    padding: 1.25rem;
    background: var(--foam);
    border-radius: var(--radius-sm);
    border: 1px solid var(--seafoam);
}

.blog-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.blog-internal-cta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 2px solid var(--seafoam);
}

.blog-cta-links {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.blog-cta-links li {
    padding: 0.4rem 0;
}

.blog-cta-links a {
    font-weight: 600;
    color: var(--ocean-bright);
}

.blog-related h2 {
    margin-bottom: 1.25rem;
}

.blog-cta-strip {
    padding-top: 0;
}

/* ——— İstanbul Hero ——— */
.ist-hero {
    position: relative;
    background: linear-gradient(135deg, #021f2a 0%, #042f3f 40%, #0a5c6e 75%, #0e8a9a 100%);
    padding: 7rem 0 5rem;
    overflow: hidden;
    margin-top: var(--header-h);
}

.ist-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.ist-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.ist-blob-1 {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, #14b8a6, transparent);
}
.ist-blob-2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -80px;
    background: radial-gradient(circle, #e8b84a, transparent);
    opacity: 0.06;
}

.ist-skyline {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0 80L40 80L40 40L60 40L60 20L80 20L80 40L100 40L100 60L130 60L130 30L150 30L150 10L170 10L170 30L190 30L190 60L220 60L220 45L240 45L240 60L270 60L270 35L290 35L290 15L310 15L310 35L330 35L330 60L360 60L360 40L380 40L380 60L420 60L420 50L440 50L440 35L460 35L460 55L490 55L490 30L510 30L510 55L540 55L540 45L560 45L560 60L600 60L600 40L630 40L630 20L650 20L650 40L680 40L680 55L710 55L710 40L740 40L740 60L780 60L780 35L800 35L800 60L840 60L840 45L860 45L860 60L900 60L900 40L920 40L920 60L960 60L960 50L980 50L980 30L1000 30L1000 50L1020 50L1020 60L1060 60L1060 40L1080 40L1080 20L1100 20L1100 40L1130 40L1130 60L1160 60L1160 45L1180 45L1180 60L1220 60L1220 35L1240 35L1240 60L1280 60L1280 50L1300 50L1300 35L1320 35L1320 60L1360 60L1360 80L1440 80L1440 120L0 120Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

.ist-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.ist-hero-content { max-width: 680px; }

.ist-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ist-breadcrumb a { color: rgba(255,255,255,0.65); }
.ist-breadcrumb a:hover { color: #fff; }

.ist-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #14b8a6;
    background: rgba(20,184,166,0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(20,184,166,0.3);
    margin-bottom: 1.25rem;
}

.ist-heading {
    font-family: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}
.ist-heading em {
    font-style: italic;
    color: #14b8a6;
}

.ist-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.ist-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2rem;
}
.ist-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.ist-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.ist-hero-cta .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.ist-hero-cta .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

.ist-hero-stat-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex-shrink: 0;
}
.ist-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
}
.ist-stat-card:hover { background: rgba(255,255,255,0.13); }
.ist-stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.ist-stat-card span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 900px) {
    .ist-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .ist-hero-stat-stack { grid-template-columns: repeat(3, 1fr); }
    .ist-hero { padding: 6rem 0 3.5rem; }
}
@media (max-width: 576px) {
    .ist-hero-stat-stack { grid-template-columns: 1fr 1fr; }
    .ist-heading { font-size: 2.2rem; }
    .ist-hero-cta { flex-direction: column; }
    .ist-hero-cta .btn { width: 100%; text-align: center; }
}

.istanbul-districts-section {
    background: linear-gradient(180deg, rgba(4, 47, 63, 0.04) 0%, transparent 100%);
}

.istanbul-district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.istanbul-district-card {
    background: var(--white);
    border-radius: var(--radius, 12px);
    overflow: hidden;
    border: 1px solid rgba(20, 184, 166, 0.15);
    box-shadow: var(--shadow-card, 0 8px 24px rgba(4, 47, 63, 0.08));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.istanbul-district-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(4, 47, 63, 0.12);
}

.istanbul-district-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.istanbul-district-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.istanbul-district-card-body {
    padding: 1rem 1.15rem 1.25rem;
}

.istanbul-district-side {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lagoon);
    font-weight: 700;
}

.istanbul-district-card h3 {
    font-size: 1.05rem;
    margin: 0.35rem 0 0.5rem;
    color: var(--ink);
}

.istanbul-district-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 0.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* SEO içerik bölümleri */
.seo-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}

.seo-checklist {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--seafoam);
    box-shadow: var(--shadow-card);
}

.seo-checklist li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--ink);
}

.seo-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lagoon);
    font-weight: 700;
}

.seo-list {
    padding-left: 1.25rem;
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    gap: 0.75rem;
    max-width: 820px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--seafoam);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    color: var(--ocean-deep);
}

.faq-item p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

/* ——— Homepage FAQ — Modern ——— */
.home-faq-section { background: linear-gradient(180deg, #f0f9f8 0%, var(--foam, #f8fcfc) 100%); }

.home-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    max-width: 980px;
    margin: 0 auto 2rem;
}

.hfaq-item {
    background: var(--white);
    border: 1.5px solid rgba(20, 184, 166, 0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(4,47,63,0.05);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.hfaq-item:hover,
.hfaq-item[open] {
    border-color: var(--lagoon, #14b8a6);
    box-shadow: 0 6px 24px rgba(20,184,166,0.1);
}

.hfaq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.hfaq-summary::-webkit-details-marker { display: none; }

.hfaq-q {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ocean-deep, #042f3f);
    line-height: 1.4;
    flex: 1;
}

.hfaq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(20,184,166,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lagoon, #14b8a6);
    transition: transform 0.25s ease, background 0.2s;
}

.hfaq-item[open] .hfaq-chevron {
    transform: rotate(180deg);
    background: var(--lagoon, #14b8a6);
    color: #fff;
}

.hfaq-body {
    padding: 0 1.25rem 1.1rem;
    animation: faqIn 0.25s ease;
}

.hfaq-body p {
    font-size: 0.88rem;
    color: var(--muted, #5a7a7e);
    line-height: 1.65;
    margin: 0;
    border-top: 1px solid rgba(20,184,166,0.1);
    padding-top: 0.85rem;
}

@keyframes faqIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
    .home-faq-grid { grid-template-columns: 1fr; }
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: inherit;
    text-decoration: underline;
}

.seo-aside-card {
    background: var(--foam);
    border-radius: var(--radius);
    padding: 1rem;
    border: 1px solid var(--seafoam);
}

.seo-aside-card .hero-booking {
    margin: 0.75rem 0 0;
}

/* Yan sütun / dar alan — her zaman dikey form */
.seo-aside-card .hero-booking-fields {
    grid-template-columns: 1fr;
}

.seo-aside-card .booking-field-delivery {
    grid-column: 1;
}

.seo-aside-card .hero-booking-actions {
    flex-direction: column;
    align-items: stretch;
}

.seo-aside-card .hero-booking-total {
    text-align: center;
}

.seo-aside-card .hero-booking-submit {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.seo-content-section .lead {
    font-size: 1.1rem;
    max-width: 640px;
}

@media (max-width: 992px) {
    .seo-intro-grid,
    .seo-content-section .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-booking-note {
        font-size: 0.8rem;
        line-height: 1.45;
    }
}

.checkout-price-totals { margin-top: 1.25rem; padding: 1rem 1.1rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; }
.checkout-price-totals-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.35rem 0; font-size: 0.9rem; }
.checkout-price-totals-grand { margin-top: 0.5rem; padding-top: 0.65rem; border-top: 2px solid #e2e8f0; font-weight: 700; }
.checkout-price-totals-grand strong { font-size: 1.15rem; color: #0a3d42; }

.checkout-iban-info {
    margin-top: 1.25rem;
    padding: 0;
    background: #ffffff;
    border: 2.5px solid rgba(14, 165, 233, 0.35);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 3px rgba(56, 189, 248, 0.2),
        0 10px 28px rgba(14, 165, 233, 0.22);
}

.checkout-iban-info__banner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.15rem;
    background: linear-gradient(180deg, #064e56 0%, #0a6575 35%, #0d8f9f 70%, #06b6d4 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.checkout-iban-info__icon {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.checkout-iban-info__title {
    margin: 0;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.checkout-iban-info__body {
    padding: 1.1rem 1.15rem 1.15rem;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

.checkout-iban-info__label {
    margin: 0.75rem 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #0a5c6e;
}

.checkout-iban-info__label:first-child {
    margin-top: 0;
}

.checkout-iban-info__value {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.45;
    color: #0f172a;
}

.checkout-iban-info__iban-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border: 2.5px dashed #38bdf8;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.15);
}

.checkout-iban-info__iban {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.05rem;
    font-weight: 900;
    color: #064e56;
    letter-spacing: 0.05em;
}

.checkout-iban-info__copy {
    padding: 0.5rem 1rem;
    border: 2px solid #0a5c6e;
    border-radius: 10px;
    background: linear-gradient(180deg, #0a6575 0%, #0d8f9f 100%);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 12px rgba(10, 92, 110, 0.25);
}

.checkout-iban-info__copy:hover {
    background: linear-gradient(180deg, #064e56 0%, #0a6575 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 92, 110, 0.32);
}

.checkout-iban-info__hint {
    margin: 0.9rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
}

.checkout-card-soon {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    border: 2px solid #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.18);
    text-align: center;
}

.checkout-card-soon__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #b45309;
}

.checkout-card-soon__text {
    margin: 0.45rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #78350f;
}

.checkout-office-kapora-notice {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 1.35rem 1.25rem 1.4rem;
    border-radius: 16px;
    border: 2.5px solid rgba(10, 101, 117, 0.45);
    background: linear-gradient(180deg, #ecfeff 0%, #f0fdfa 45%, #ffffff 100%);
    box-shadow:
        0 0 0 3px rgba(6, 182, 212, 0.15),
        0 10px 28px rgba(10, 101, 117, 0.18);
    text-align: center;
}

.checkout-office-kapora-notice__lead {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f4c5c;
    line-height: 1.4;
}

.checkout-office-kapora-notice__title {
    margin: 0.55rem 0 0;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    color: #064e56;
    text-transform: uppercase;
}

.checkout-office-kapora-notice__amount {
    margin: 0.5rem 0 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    color: #0a3d42;
    letter-spacing: -0.02em;
}

.checkout-office-kapora-notice__sub {
    margin: 0.65rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0d8f9f;
}

.checkout-office-kapora-notice__text {
    margin: 0.75rem 0 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}

#confirmPayBtn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.checkout-deposit-note { margin: 0.65rem 0 0; font-size: 0.78rem; line-height: 1.45; color: #64748b; }
.checkout-summary-divider { height: 1px; background: #d1e4e6; margin: 0.75rem 0; padding: 0 !important; list-style: none; }
.checkout-summary-total { font-weight: 700; font-size: 1.05rem; }
.checkout-summary-total strong { color: #0a3d42; font-size: 1.15rem; }
