/* ==========================================================================
   cms.css — şablon üzerine CMS eklentileri
   main.css'ten SONRA yüklenir. Şablonun kendi stillerine dokunulmaz;
   burada yalnızca CMS'in getirdiği yeni parçalar tanımlanır.
   ========================================================================== */

/* --- WhatsApp butonu ------------------------------------------------------
   Orijinal şablonda bu kurallar her sayfaya ayrı ayrı inline <style> olarak
   gömülüydü. Tek yere alındı; renk değerleri şablondaki hâliyle korundu. */
.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    transition: transform .2s, background-color .2s;
}
.whatsapp-btn:hover {
    transform: scale(1.05);
    background-color: #20b958;
    color: #ffffff;
}
.whatsapp-btn i { margin-right: 8px; }

.whatsapp-note {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

/* --- Bal küpü -------------------------------------------------------------
   Bot koruması. Ekran okuyuculardan ve klavyeden de uzak tutulur;
   display:none kullanılmaz, bazı botlar onu tanıyıp alanı atlıyor. */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none;
}

/* --- Güvenlik sorusu ------------------------------------------------------ */
.captcha-slot { margin-bottom: 16px; }
.captcha-label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}
.captcha-slot input {
    max-width: 140px;
    padding: 10px 14px;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
}

/* --- Flash mesajı --------------------------------------------------------- */
.cms-flash {
    padding: 14px 0;
    font-weight: 600;
    text-align: center;
}
.cms-flash--success { background: #e6f7ed; color: #12693a; }
.cms-flash--error   { background: #fdeaea; color: #8c1b1b; }
.cms-flash--info    { background: #e8f1fb; color: #14457d; }

/* --- Bildirim (toast) ----------------------------------------------------- */
.cms-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: none;
    max-width: 340px;
    padding: 16px 20px;
    border-radius: 10px;
    background: #16233a;
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}
.cms-toast.is-visible { display: block; animation: cmsToastIn .25s ease; }
.cms-toast--error   { background: #8c1b1b; }
.cms-toast--success { background: #12693a; }

@keyframes cmsToastIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Boş durum ------------------------------------------------------------ */
.cms-empty {
    padding: 60px 24px;
    text-align: center;
    border: 1px dashed #d8d8d8;
    border-radius: 12px;
    color: #6b6b6b;
}
.cms-empty i { font-size: 40px; margin-bottom: 14px; display: block; opacity: .5; }
.cms-empty h4 { margin-bottom: 8px; }

/* --- Sayfalama ------------------------------------------------------------ */
.cms-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.cms-pagination a,
.cms-pagination span {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    text-decoration: none;
    color: inherit;
}
.cms-pagination .is-current { background: #16233a; border-color: #16233a; color: #fff; }
.cms-pagination .is-disabled { opacity: .4; pointer-events: none; }

/* --- Form durumu ---------------------------------------------------------- */
.cms-form-busy { opacity: .6; pointer-events: none; }
.cms-field-error { border-color: #c53030 !important; }
.cms-error-text { color: #c53030; font-size: 13px; margin-top: 4px; display: block; }

/* --- Rezervasyon kutusu --------------------------------------------------- */
.reservation-box {
    padding: 28px;
    border-radius: 14px;
    background: #f7f9fc;
    border: 1px solid #e8edf4;
}
.reservation-box h4 { margin-bottom: 6px; }
.reservation-box .price { font-size: 26px; font-weight: 700; }
.reservation-box .price small { font-size: 14px; font-weight: 400; opacity: .7; }
.reservation-box .form-row { margin-bottom: 14px; }
.reservation-box input,
.reservation-box select,
.reservation-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
}
.reservation-box textarea { min-height: 96px; resize: vertical; }

/* ==========================================================================
   REZERVASYON FORMU (.rf)
   Tur ve tekne detayında aynı bileşen. Görünür etiketler, canlı tutar,
   güven satırları ve alternatif iletişim kanalları.
   ========================================================================== */

.rf {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .07);
}

.rf__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 22px 26px;
    background: linear-gradient(120deg, var(--theme-color) 0%, #3a2f9e 100%);
    color: #fff;
}
.rf__price strong { display: block; font-size: 32px; font-weight: 800; line-height: 1.1; }
.rf__price span { font-size: 14px; opacity: .85; }
.rf__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .18);
    font-size: 13px;
    font-weight: 700;
}

.rf__title { margin: 24px 26px 6px; font-size: 22px; font-weight: 800; }
.rf__lead { margin: 0 26px 20px; font-size: 15px; line-height: 1.6; color: var(--text); }

.rf__form { padding: 0 26px 26px; }
.rf__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.rf__field--full { grid-column: 1 / -1; }
.rf__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--header);
}
.rf__req { color: var(--theme-color-2); }
.rf__field input,
.rf__field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}
.rf__field input:focus,
.rf__field textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(77, 64, 202, .14);
}
.rf__field textarea { resize: vertical; }
.rf__hint { margin: 5px 0 0; font-size: 12px; color: var(--text); opacity: .75; }

/* Kişi sayısı adımlayıcı */
.rf__stepper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.rf__stepper button {
    flex: none;
    width: 44px;
    border: none;
    background: var(--bg);
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}
.rf__stepper button:hover { background: var(--theme-color); color: #fff; }
.rf__stepper input {
    flex: 1;
    min-width: 0;
    border: none !important;
    border-radius: 0 !important;
    text-align: center;
    font-weight: 700;
    box-shadow: none !important;
    -moz-appearance: textfield;
}
.rf__stepper input::-webkit-outer-spin-button,
.rf__stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Canlı toplam */
.rf__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--bg);
}
.rf__total span { font-size: 15px; font-weight: 600; color: var(--text); }
.rf__total strong { font-size: 26px; font-weight: 800; color: var(--theme-color); }
.rf__note { margin: 6px 0 0; font-size: 12px; color: var(--text); opacity: .75; }

.rf__captcha { margin-top: 18px; }

.rf__trust { list-style: none; margin: 18px 0; padding: 0; }
.rf__trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
    color: var(--text);
}
.rf__trust i { width: 18px; color: #12693a; }

.rf__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px 24px;
    border: none;
    border-radius: 12px;
    background: var(--theme-color-2);
    color: #fff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.rf__submit:hover { background: #e04a22; transform: translateY(-2px); }
.rf__submit:disabled { opacity: .6; cursor: wait; transform: none; }

.rf__alt {
    padding: 20px 26px 24px;
    border-top: 1px solid var(--border);
    background: #fafbfd;
    text-align: center;
}
.rf__or {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text);
    opacity: .8;
}
.rf__wa,
.rf__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.rf__wa { background: #25D366; color: #fff; }
.rf__wa:hover { background: #1fb757; color: #fff; }
.rf__tel { border: 1px solid var(--border); background: #fff; color: var(--theme-color); margin-bottom: 0; }
.rf__tel:hover { background: var(--bg); color: var(--theme-color); }

@media (max-width: 480px) {
    .rf__grid { grid-template-columns: 1fr; }
    .rf__head,
    .rf__form,
    .rf__alt { padding-left: 18px; padding-right: 18px; }
    .rf__title,
    .rf__lead { margin-left: 18px; margin-right: 18px; }
}

/* --- Yıldız gösterimi ----------------------------------------------------- */
.cms-stars { display: inline-flex; gap: 2px; color: var(--ratting, #F8BC26); }
.cms-stars i { font-size: 13px; }
.cms-stars + .rating-count { margin-left: 6px; font-size: 13px; opacity: .7; }


/* ==========================================================================
   CMS blokları
   Buradaki sınıfların hiçbiri şablonun main.css'inde YOKTUR; hepsi CMS ile
   gelen yeni parçalardır (filtre çubuğu, galeri, rezervasyon kutusu, S.S.S.
   akordeonu, teknik özellik tablosu…). Şablonun kendi bloklarını yeniden
   stillemek için buraya kural YAZMAYIN — onlar main.css'e aittir.

   Renkler tema değişkenlerinden gelir ki görünüm sayfanın geri kalanıyla
   aynı dili konuşsun: --theme-color #4D40CA, --theme-color-2 #FB5B32,
   --border #E6EFFF, --bg #EFEEFA, --text #455151, --ratting #F8BC26.
   ========================================================================== */

/* --- Hero eylem satırı ---------------------------------------------------
   Her slide'da butonlar YAN YANA. Şablonun .hero-button'ı tek buton varsayıyordu. */
.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;   /* başlığın tam altında ortalı */
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}
.theme-btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, .8);
    color: #fff !important;
}
.theme-btn-outline:hover {
    background: #fff !important;
    border-color: #fff;
    color: var(--theme-color) !important;
}

/* "Rezervasyon için arayın" — düz bir bağlantı değil, numarayı da gösteren
   belirgin bir eylem kutusu. */
.hero-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px 10px 12px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
}
.hero-call:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 0, 0, .3); }
.hero-call__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 50%;
    background: var(--theme-color-2);
    color: #fff;
    font-size: 18px;
    animation: heroCallPulse 2.4s ease-out infinite;
}
.hero-call__text { display: flex; flex-direction: column; line-height: 1.25; }
.hero-call__text small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
}
.hero-call__text strong { font-size: 21px; font-weight: 800; color: var(--header); }

@keyframes heroCallPulse {
    0%   { box-shadow: 0 0 0 0 rgba(251, 91, 50, .55); }
    70%  { box-shadow: 0 0 0 16px rgba(251, 91, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 91, 50, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-call__icon { animation: none; }
}
@media (max-width: 640px) {
    .hero-button { gap: 12px; }
    .hero-call { padding: 8px 18px 8px 8px; }
    .hero-call__icon { width: 40px; height: 40px; font-size: 16px; }
    .hero-call__text strong { font-size: 18px; }
}

/* --- Arama / filtre formu (hero altı) ------------------------------------ */
.search-wrapper {
    position: relative;
    z-index: 5;
    margin-top: -60px;
    padding: 24px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}
.search-form-items { display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.search-item { flex: 1 1 180px; }
.search-item label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.search-item label i { color: var(--theme-color); margin-right: 5px; }
.search-item select,
.search-item input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
}
.search-form-items .theme-btn { flex: none; padding: 12px 28px; border: none; cursor: pointer; }

/* "Günübirlik tur" kutucuğu — diğer alanlarla aynı hizada dursun */
.search-item--check { flex: 0 1 auto; align-self: flex-end; }
.search-check {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px !important;
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .2s, background .2s;
}
.search-check:hover { border-color: var(--theme-color); }
.search-check input { width: auto; margin: 0; accent-color: var(--theme-color); }
.search-check input:checked ~ span { color: var(--theme-color); }
.search-check span i { margin-right: 5px; color: var(--theme-color-2); }

/* --- Liste sayfası kenar çubuğu ------------------------------------------ */
.filter-sidebar {
    position: sticky;
    top: 24px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.sidebar-widget { margin-bottom: 22px; }
.sidebar-widget h5 {
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}
.sidebar-widget input[type="text"],
.sidebar-widget input[type="search"],
.sidebar-widget input[type="number"],
.sidebar-widget input[type="date"],
.sidebar-widget select,
.sidebar-widget textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
}
.sidebar-widget label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 14px;
    cursor: pointer;
}
.sidebar-widget label input { width: auto; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs span { color: var(--text); opacity: .6; }
.filter-sidebar .theme-btn { padding: 12px 20px; border: none; cursor: pointer; text-align: center; }
.clear-filters {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: var(--theme-color-2);
}

/* --- Liste üst çubuğu ---------------------------------------------------- */
.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.result-count { margin: 0; color: var(--text); }
.sort-box { display: flex; align-items: center; gap: 8px; }
.sort-box label { margin: 0; font-size: 14px; color: var(--text); }
.sort-box select {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
}

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-chips .chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--bg);
    font-size: 13px;
    color: var(--theme-color);
    text-decoration: none;
}
.filter-chips .chip:hover { background: var(--theme-color); color: var(--white); }
.filter-chips .chip i { font-size: 11px; }

/* ==========================================================================
   GALERİ DÜZENİ (varyant B — seçilen)
   Kenar çubuğu korunur, içerik 1660px'e genişler, satırda 3 kart ve görsel
   350px yatay — eski tasarımdaki ölçünün aynısı.

   Sütun sayısını değiştirmek isterseniz TEK YER: .gl-grid grid-template-columns.
   ========================================================================== */

.gl-wrap {                      /* "boxed ama geniş" kap */
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Kenar çubuğu + içerik */
.gl-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.gl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.gl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gl-grid--4 { grid-template-columns: repeat(4, 1fr); }

.gl-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.gl-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(0, 0, 0, .12); }

.gl-card__media { position: relative; overflow: hidden; }
.gl-card__media img {
    display: block;
    width: 100%;
    height: 350px;              /* eski tasarımın ölçüsü */
    object-fit: cover;
    transition: transform .6s ease;
}
.gl-card:hover .gl-card__media img { transform: scale(1.05); }

.gl-card__place {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 7px 15px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .58);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.gl-card__place i { margin-right: 6px; }

.gl-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 20px; }
.gl-card__title { margin: 0 0 10px; font-size: 22px; font-weight: 800; line-height: 1.28; }
.gl-card__title a { color: var(--header); text-decoration: none; }
.gl-card__title a:hover { color: var(--theme-color); }
.gl-card__summary { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: var(--text); }

.gl-card__meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    font-size: 14px;
    color: var(--text);
}
.gl-card__meta i { margin-right: 6px; color: var(--theme-color); }

.gl-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.gl-card__price span { display: block; font-size: 13px; color: var(--text); opacity: .8; }
.gl-card__price strong { font-size: 24px; font-weight: 800; color: var(--theme-color); }

.gl-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
    padding: 13px 22px;
    border-radius: 10px;
    background: var(--theme-color);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}
.gl-card__cta:hover { background: var(--theme-color-2); color: #fff; }

/* Filtre kenar çubuğu (varyant B) */
.gl-side {
    position: sticky;
    top: 24px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}
.gl-side .gl-field { margin-bottom: 16px; }
.gl-side .gl-field--sm { display: inline-block; width: calc(50% - 6px); }
.gl-side .gl-field--sm + .gl-field--sm { margin-left: 8px; }
.gl-side button[type="submit"] { width: 100%; margin-top: 4px; }
.gl-side .gl-checks {
    display: block;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.gl-side .gl-checks label { display: flex; margin-bottom: 10px; }
.gl-main { min-width: 0; }

.gl-field { flex: 0 1 190px; }
.gl-field--grow { flex: 1 1 260px; }
.gl-field--sm { flex: 0 1 120px; }
.gl-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 700;
    color: var(--header);
}
.gl-field input,
.gl-field select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
}
.gl-checks { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.gl-checks label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.gl-filterbar button[type="submit"] {
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    background: var(--theme-color);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}
.gl-filterbar button[type="submit"]:hover { background: #3d32a6; }

/* Bölüm başlığı + sağdaki buton aynı satırda */
.gl-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.gl-head .section-title { margin: 0; }
.gl-head .theme-btn { flex: none; }

/* Bölge kartları — şablonun kendi markup'ı, galeri ölçeğine büyütüldü */
.dest-grid .trending-destinations-card-items { height: 100%; }
.dest-grid .destinations-img { position: relative; overflow: hidden; border-radius: 18px; }
.dest-grid .destinations-img img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .6s ease;
}
.dest-grid .trending-destinations-card-items:hover .destinations-img img { transform: scale(1.06); }
/* Başlık görselin ÜZERİNDE değil ALTINDA: görselin önüne siyah degrade
   koymak koy fotoğrafının alt yarısını karartıyordu. */
.dest-grid .destinations-content {
    margin: 0;
    padding: 16px 4px 0;
    list-style: none;
}
.dest-grid .destinations-content .title a {
    color: var(--header);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}
.dest-grid .destinations-content .title a:hover { color: var(--theme-color); }
.dest-grid .destinations-content li:not(.title) {
    margin-top: 4px;
    font-size: 15px;
    color: var(--text);
}

/* Geniş rezervasyon çağrısı */
.cta-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 48px 44px;
    border-radius: 20px;
    background: linear-gradient(120deg, var(--theme-color) 0%, #3a2f9e 100%);
    color: #fff;
}
.cta-wide__text { flex: 1 1 420px; }
.cta-wide__text h2 { margin: 0 0 10px; font-size: 38px; font-weight: 800; color: #fff; }
.cta-wide__text p { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, .9); }
.cta-wide__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cta-wide__phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}
.cta-wide__phone:hover { color: #fff; opacity: .85; }

@media (max-width: 1400px) {
    .gl-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1200px) {
    .gl-layout { grid-template-columns: 280px 1fr; gap: 28px; }
    .gl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
    .gl-layout { grid-template-columns: 1fr; }
    .gl-grid,
    .gl-grid--3,
    .gl-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .gl-wrap { padding: 0 16px; }
    .gl-grid,
    .gl-grid--3,
    .gl-grid--4 { grid-template-columns: 1fr; gap: 22px; }
    .gl-card__media img { height: 240px; }
    .dest-grid .destinations-img img { height: 260px; }
    .cta-wide { padding: 32px 24px; }
    .cta-wide__text h2 { font-size: 28px; }
}


/* ==========================================================================
   TİPOGRAFİ ÖLÇEĞİ
   Brief: "yazı tipleri okunaklı, daha belirgin" ve "tasarım minimal olmamalı".
   Şablonun main.css'i daha küçük değerler veriyor; burada üzerine yazılıyor.
   ========================================================================== */

.section-title span {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--theme-color);
}
.section-title h2 { font-size: 42px; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; }
.section-title p { font-size: 18px; line-height: 1.7; color: var(--text); max-width: 760px; }
.section-title.text-center p { margin-left: auto; margin-right: auto; }

.breadcrumb-wrapper .page-heading h1 { font-size: 52px; font-weight: 800; }
.breadcrumb-items { font-size: 17px; }

.tour-details-header h2 { font-size: 40px; font-weight: 800; }
.tour-description,
.post-body,
.page-content { font-size: 17px; line-height: 1.8; }
.tour-description h4,
.tour-activities h4,
.tour-amenities h4,
.tour-includes h4,
.boat-specs h4 { font-size: 24px; font-weight: 800; }
.related-section h3 { font-size: 30px; font-weight: 800; }

.amenity-list li,
.check-list li,
.spec-table th,
.spec-table td { font-size: 16px; }

.reservation-box { padding: 32px; }
.reservation-box h4 { font-size: 22px; font-weight: 800; }
.reservation-box .price { font-size: 34px; font-weight: 800; color: var(--theme-color); }
.reservation-box input,
.reservation-box select,
.reservation-box textarea { padding: 14px 16px; font-size: 16px; }

@media (max-width: 991px) {
    .section-title h2 { font-size: 30px; }
    .breadcrumb-wrapper .page-heading h1 { font-size: 34px; }
    .tour-details-header h2 { font-size: 28px; }
}

/* --- Kart eklentileri ---------------------------------------------------- */
.tour-card-item { height: 100%; overflow: hidden; background: var(--white); border-radius: 12px; }
.tour-card-item .tour-image { position: relative; }
.badge-featured,
.badge-type {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--theme-color-2);
}
.badge-type { background: var(--theme-color); }
.tour-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.tour-price span { font-size: 13px; color: var(--text); opacity: .75; }
.tour-price h5 { margin: 0; font-size: 20px; color: var(--theme-color); }

/* --- Detay sayfası ------------------------------------------------------- */
.tour-gallery { margin-bottom: 26px; }
.tour-gallery .main-image {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 14px;
}
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.gallery-thumbs a {
    display: block;
    width: 92px;
    height: 68px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
}
.gallery-thumbs a.is-active { border-color: var(--theme-color); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.tour-details-header { margin-bottom: 24px; }
.tour-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    font-size: 15px;
    color: var(--text);
}
.tour-meta i { margin-right: 5px; color: var(--theme-color); }

.tour-description,
.tour-activities,
.tour-amenities,
.tour-includes,
.boat-specs { margin-bottom: 30px; }
.tour-description h4,
.tour-activities h4,
.tour-amenities h4,
.tour-includes h4,
.boat-specs h4,
.related-section h3 { margin-bottom: 14px; }

.tag-list { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.tag-list a {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 20px;
    background: var(--bg);
    font-size: 14px;
    color: var(--theme-color);
    text-decoration: none;
}
.tag-list a:hover { background: var(--theme-color); color: var(--white); }

.amenity-list,
.check-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.amenity-list li,
.check-list li { display: flex; align-items: center; gap: 9px; font-size: 15px; }
.amenity-list i,
.check-list i { width: 18px; color: var(--theme-color); }
.check-list--no i { color: var(--theme-color-2); }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
    padding: 11px 14px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}
.spec-table th { width: 40%; font-weight: 600; color: var(--text); }

.sticky-box { position: sticky; top: 24px; }
.reservation-box .theme-btn { border: none; cursor: pointer; text-align: center; }
.call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 700;
    color: var(--theme-color);
}
.related-section { margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border); }

/* --- Özellik ve sayaç kutuları -------------------------------------------
   Orijinal şablon bu blokları hiç kullanmıyordu (yalnızca odometer kütüphanesini
   yüklüyordu), bu yüzden sadık kalınacak bir markup yok — tamamen CMS'e ait. */
.feature-card-items,
.counter-card-items {
    height: 100%;
    padding: 30px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: box-shadow .3s, transform .3s;
}
.feature-card-items:hover,
.counter-card-items:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, .06);
}
.feature-card-items .icon,
.counter-card-items .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--bg);
    font-size: 24px;
    color: var(--theme-color);
}
.feature-card-items h5,
.counter-card-items h5 { margin-bottom: 6px; font-size: 17px; }
.feature-card-items p,
.counter-card-items p { margin: 0; font-size: 14px; color: var(--text); }
.counter-card-items h2 { margin-bottom: 4px; font-size: 38px; color: var(--theme-color); }

/* --- Blog listesi: geniş, alt alta -------------------------------------- */
.blog-layout { display: grid; grid-template-columns: 1fr 360px; gap: 46px; align-items: start; }
.blog-side.sticky-style { position: sticky; top: 24px; }

.blog-wide {
    margin-bottom: 46px;
    padding-bottom: 46px;
    border-bottom: 1px solid var(--border);
}
.blog-wide:last-of-type { border-bottom: none; }

.blog-wide__media {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 18px;
}
.blog-wide__media img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform .6s ease;
}
.blog-wide__media:hover img { transform: scale(1.04); }
.blog-wide__cat {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--theme-color-2);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}
.blog-wide__title { margin: 10px 0 14px; font-size: 34px; font-weight: 800; line-height: 1.25; }
.blog-wide__title a { color: var(--header); text-decoration: none; }
.blog-wide__title a:hover { color: var(--theme-color); }
.blog-wide__excerpt { margin-bottom: 22px; font-size: 17px; line-height: 1.75; color: var(--text); }

.side-search { display: flex; }
.side-search input { border-radius: 8px 0 0 8px; border-right: none; }
.side-search button {
    flex: none;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 8px 8px 0;
    background: var(--theme-color);
    color: #fff;
    cursor: pointer;
}
.sidebar-cta { padding: 24px; background: var(--bg); border-radius: 14px; text-align: center; }
.sidebar-cta p { font-size: 15px; color: var(--text); }

@media (max-width: 1100px) {
    .blog-layout { grid-template-columns: 1fr; gap: 40px; }
    .blog-side.sticky-style { position: static; }
}
@media (max-width: 767px) {
    .blog-wide__media img { height: 240px; }
    .blog-wide__title { font-size: 24px; }
}

/* --- Blog kenar çubuğu ve içerik ----------------------------------------- */
.category-list { list-style: none; margin: 0; padding: 0; }
.category-list li { border-bottom: 1px solid var(--border); }
.category-list li:last-child { border-bottom: none; }
.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    color: var(--text);
    text-decoration: none;
}
.category-list a:hover,
.category-list li.active a { color: var(--theme-color); }
.category-list span { font-size: 13px; opacity: .6; }

.recent-post-items {
    display: flex;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}
.recent-post-items:last-child { border-bottom: none; }
.recent-post-items .thumb { flex: none; width: 76px; height: 62px; overflow: hidden; border-radius: 8px; }
.recent-post-items .thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-items h6 { margin: 3px 0 0; font-size: 15px; line-height: 1.35; }
.recent-post-items .price { font-size: 14px; font-weight: 700; color: var(--theme-color); }

.post-list,
.post-date {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    font-size: 13px;
    color: var(--text);
}
.post-list i,
.post-date i { margin-right: 5px; color: var(--theme-color); }
.post-cover img { width: 100%; margin-bottom: 22px; border-radius: 14px; }
.post-body { font-size: 16px; line-height: 1.75; }
.post-body h3, .post-body h4 { margin-top: 26px; }
.post-media img { width: 100%; border-radius: 10px; }
.page-content { font-size: 16px; line-height: 1.8; }
.page-content h3 { margin-top: 28px; margin-bottom: 10px; }

/* --- S.S.S. akordeonu ----------------------------------------------------
   Belirgin, kalın çerçeveli; açık olan soru tema rengiyle işaretlenir. */
.faq-group { margin-bottom: 44px; }
.faq-group-title {
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 26px;
    font-weight: 800;
    color: var(--theme-color);
    border-bottom: 2px solid var(--border);
}
.faq-item {
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 14px;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: #cdd7f0; }
.faq-item.is-open { border-color: var(--theme-color); box-shadow: 0 8px 30px rgba(77, 64, 202, .1); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px 26px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    color: var(--header);
    cursor: pointer;
}
.faq-item.is-open .faq-question { color: var(--theme-color); }
.faq-question i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--theme-color);
    font-size: 14px;
    transition: transform .25s, background .2s;
}
.faq-item.is-open .faq-question i { transform: rotate(180deg); background: var(--theme-color); color: #fff; }
.faq-answer { display: none; padding: 0 26px 24px; }
.faq-answer p { margin: 0; font-size: 17px; line-height: 1.75; color: var(--text); }
.faq-item.is-open .faq-answer { display: block; }
.faq-contact-box { padding: 30px 26px; text-align: center; background: var(--bg); border-radius: 16px; }
.faq-contact-box h5 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.faq-contact-box p { font-size: 16px; }

/* --- Instagram şeridi ----------------------------------------------------
   Brief: "carousel genişliğinde, resimler daha belirgin ve geniş".
   Swiper KULLANILMAZ (bkz. render_instagram() notu) — tam genişlik ızgara. */
.instagram-section { padding: 0; }
.instagram-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}
.instagram-image { position: relative; overflow: hidden; }
.instagram-image img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .6s ease;
}
.instagram-image:hover img { transform: scale(1.08); }
.instagram-image .icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 64, 202, .78);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: opacity .3s;
}
.instagram-image:hover .icon { opacity: 1; }

@media (max-width: 1100px) {
    .instagram-strip { grid-template-columns: repeat(3, 1fr); }
    .instagram-image img { height: 240px; }
}
@media (max-width: 640px) {
    .instagram-strip { grid-template-columns: repeat(2, 1fr); }
    .instagram-image img { height: 180px; }
    .faq-question { padding: 18px; font-size: 17px; }
    .faq-answer { padding: 0 18px 20px; }
}

/* --- İletişim ------------------------------------------------------------ */
.contact-form-wrapper,
.contact-info-box {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.contact-info-box { margin-bottom: 18px; }
.contact-form-items input,
.contact-form-items textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
}
.contact-form-items textarea { resize: vertical; }
.contact-form-items .theme-btn { border: none; cursor: pointer; }
.contact-info-list { list-style: none; margin: 0 0 18px; padding: 0; }
.contact-info-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list i { flex: none; width: 20px; margin-top: 3px; color: var(--theme-color); }
.contact-social { margin-top: 10px; }
.contact-map iframe { display: block; border-radius: 14px; }

/* --- Çeşitli ------------------------------------------------------------- */
.block-title { margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.cta-wrapper { padding: 46px 30px; border-radius: 16px; background: var(--theme-color-2); color: var(--white); }
.cta-wrapper h3 { color: var(--white); }
.cta-wrapper p { color: rgba(255, 255, 255, .9); }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.topbar-promo { padding: 9px 0; text-align: center; font-size: 14px; background: var(--theme-color); color: var(--white); }
.error-image { width: 100%; max-width: 380px; margin-bottom: 26px; }
.error-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 991px) {
    .filter-sidebar,
    .sticky-box { position: static; }
    .search-wrapper { margin-top: 0; }
    .tour-gallery .main-image { height: 300px; }
}


/* ==========================================================================
   Tur iptal duyuruları
   ========================================================================== */

/* --- Sayfa üstü şerit (yalnızca BUGÜN geçerli iptal varsa) --------------- */
.cancel-strip { background: #8a2b12; color: #fff; }
.cancel-strip__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 0;
}
.cancel-strip__icon { flex: none; font-size: 22px; }
.cancel-strip__text { flex: 1; min-width: 240px; }
.cancel-strip__text strong { display: block; font-size: 17px; }
.cancel-strip__text span { font-size: 15px; opacity: .92; }
.cancel-strip__link {
    flex: none;
    padding: 9px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.cancel-strip__link:hover { background: #fff; color: #8a2b12; }

/* --- Tur detayındaki kutu ------------------------------------------------ */
.cancel-box {
    padding: 22px;
    margin-bottom: 22px;
    background: #fff5f2;
    border: 1px solid #f6c9bc;
    border-radius: 14px;
}
.cancel-box h4 { margin-bottom: 14px; font-size: 18px; color: #8a2b12; }
.cancel-box h4 i { margin-right: 8px; }
.cancel-box__foot { margin: 14px 0 0; font-size: 14px; color: var(--text); }

.cancel-list { list-style: none; margin: 0; padding: 0; }
.cancel-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f6c9bc; }
.cancel-list li:last-child { border-bottom: none; }
.cancel-list i { flex: none; width: 22px; margin-top: 3px; color: #b8431f; }
.cancel-list strong { display: block; font-size: 16px; }
.cancel-list span { font-size: 14px; color: var(--text); }
.cancel-list p { margin: 4px 0 0; font-size: 14px; color: var(--text); }

/* --- Duyuru sayfası ------------------------------------------------------ */
.cancel-intro { margin-bottom: 34px; }
.cancel-intro h2 { margin-bottom: 12px; font-size: 32px; }
.cancel-intro p { font-size: 17px; line-height: 1.7; color: var(--text); }

.cancel-heading { margin: 34px 0 18px; font-size: 24px; }
.cancel-heading--muted { color: var(--text); opacity: .75; }

.cancel-cards { display: flex; flex-direction: column; gap: 16px; }
.cancel-card {
    display: flex;
    gap: 22px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 5px solid #c3ccda;
    border-radius: 14px;
}
.cancel-card.is-today { border-left-color: #b8431f; background: #fff5f2; }
.cancel-card__date { flex: none; width: 110px; text-align: center; }
.cancel-card__date .day { display: block; font-size: 38px; font-weight: 800; line-height: 1; color: #b8431f; }
.cancel-card__date .mon { display: block; margin-top: 4px; font-size: 13px; color: var(--text); }
.cancel-card__date .tag {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 11px;
    border-radius: 12px;
    background: #b8431f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.cancel-card__body h4 { margin-bottom: 8px; font-size: 20px; }
.cancel-card__reason { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: #8a2b12; }
.cancel-card__reason i { margin-right: 7px; }
.cancel-card__range { margin: 0 0 6px; font-size: 14px; color: var(--text); }
.cancel-card__note { margin: 0; font-size: 15px; color: var(--text); }

.cancel-clear {
    padding: 54px 24px;
    text-align: center;
    background: #f2fbf5;
    border: 1px dashed #b5e0c4;
    border-radius: 14px;
}
.cancel-clear i { display: block; margin-bottom: 16px; font-size: 46px; color: #f5a623; }
.cancel-clear h3 { margin-bottom: 8px; }
.cancel-clear p { margin-bottom: 18px; color: var(--text); }

.cancel-past { list-style: none; margin: 0; padding: 0; }
.cancel-past li {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.cancel-past__date { min-width: 160px; font-weight: 600; }
.cancel-past__tour { flex: 1; min-width: 180px; }
.cancel-past__reason { color: var(--text); opacity: .8; }

.cancel-contact {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg);
    border-radius: 14px;
    text-align: center;
}
.cancel-contact h4 { margin-bottom: 6px; font-size: 20px; }
.cancel-contact p { margin-bottom: 18px; color: var(--text); }
.cancel-contact__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Modal ----------------------------------------------------------------
   Her sayfada basılır ama oturumda bir kez açılır (cms.js). */
.cancel-modal { position: fixed; inset: 0; z-index: 9998; }
.cancel-modal[hidden] { display: none; }
.cancel-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 28, .68);
    animation: cancelFade .25s ease;
}
.cancel-modal__panel {
    position: relative;
    max-width: 620px;
    max-height: 88vh;
    margin: 6vh auto;
    overflow-y: auto;
    padding: 34px 34px 28px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    animation: cancelPop .3s cubic-bezier(.2, .9, .3, 1.2);
}
.cancel-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f1f3f7;
    color: #444;
    font-size: 17px;
    cursor: pointer;
}
.cancel-modal__close:hover { background: #b8431f; color: #fff; }
.cancel-modal__close:focus-visible,
.cancel-modal__dismiss:focus-visible { outline: 3px solid var(--theme-color); outline-offset: 2px; }

.cancel-modal__head { margin-bottom: 22px; text-align: center; }
.cancel-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #fff0eb;
    color: #b8431f;
    font-size: 28px;
}
.cancel-modal__head h2 { margin-bottom: 8px; font-size: 26px; }
.cancel-modal__head p { margin: 0; font-size: 16px; color: var(--text); }

.cancel-modal__list { list-style: none; margin: 0 0 18px; padding: 0; }
.cancel-modal__list li {
    display: flex;
    gap: 13px;
    padding: 14px;
    margin-bottom: 10px;
    background: #f8f9fc;
    border-radius: 10px;
}
.cancel-modal__list li.is-today { background: #fff5f2; border: 1px solid #f6c9bc; }
.cancel-modal__list i { flex: none; width: 22px; margin-top: 3px; color: #b8431f; }
.cancel-modal__list strong { display: block; font-size: 16px; }
.cancel-modal__list strong em {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 10px;
    border-radius: 11px;
    background: #b8431f;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}
.cancel-modal__list span { font-size: 14px; color: var(--text); }
.cancel-modal__list p { margin: 5px 0 0; font-size: 14px; color: var(--text); }

.cancel-modal__note {
    padding: 13px 16px;
    margin-bottom: 20px;
    background: var(--bg);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
}
.cancel-modal__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cancel-modal__dismiss {
    padding: 13px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
}
.cancel-modal__dismiss:hover { background: #f1f3f7; }

@keyframes cancelFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cancelPop  { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    .cancel-modal__backdrop,
    .cancel-modal__panel { animation: none; }
}

@media (max-width: 640px) {
    .cancel-modal__panel {
        margin: 0;
        max-height: 100vh;
        min-height: 100vh;
        padding: 26px 20px;
        border-radius: 0;
    }
    .cancel-card { flex-direction: column; gap: 12px; }
    .cancel-card__date { display: flex; align-items: center; gap: 10px; width: auto; text-align: left; }
    .cancel-card__date .day { font-size: 28px; }
    .cancel-card__date .mon { margin-top: 0; }
}


/* ==========================================================================
   REZERVASYON SAYFASI (/rezervasyon)
   ========================================================================== */

.rez-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.rez-main { min-width: 0; }

/* --- Katılım kuralları uyarısı -------------------------------------------
   Formun ÜSTÜNDE ve kalın: ziyaretçi doldurmadan önce okumalı, sonradan
   reddedilmemeli. */
.rez-notice {
    margin-bottom: 32px;
    padding: 28px 30px;
    background: #fff6f3;
    border: 2px solid #f0a68e;
    border-left: 8px solid #c93c12;
    border-radius: 16px;
}
.rez-notice__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.rez-notice__head i { font-size: 30px; color: #c93c12; }
.rez-notice__head h2 { margin: 0; font-size: 24px; font-weight: 800; color: #8a2b12; }

.rez-notice__list { list-style: none; margin: 0; padding: 0; }
.rez-notice__list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px dashed #f0c3b4;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #6d2410;
}
.rez-notice__list li:last-child { border-bottom: none; }
.rez-notice__list i { flex: none; width: 24px; margin-top: 3px; color: #c93c12; }
.rez-notice__list li.is-lead { font-size: 18px; color: #4a1a0b; }
.rez-notice__foot {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid #f0c3b4;
    font-size: 15px;
    color: #8a2b12;
}

/* --- Form kartı ----------------------------------------------------------- */
.rez-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 44px rgba(0, 0, 0, .07);
}
.rez-card__head {
    padding: 30px 34px;
    background: linear-gradient(120deg, var(--theme-color) 0%, #3a2f9e 100%);
    color: #fff;
}
.rez-card__head h2 { margin: 0 0 8px; font-size: 30px; font-weight: 800; color: #fff; }
.rez-card__head p { margin: 0; font-size: 17px; color: rgba(255, 255, 255, .92); }

.rez-form { padding: 30px 34px 34px; }

.rez-fieldset { border: none; margin: 0 0 30px; padding: 0; }
.rez-fieldset:last-of-type { margin-bottom: 0; }
.rez-fieldset legend {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    font-size: 20px;
    font-weight: 800;
    color: var(--header);
}
.rez-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}
.rez-legend-note { margin: -8px 0 18px; font-size: 15px; color: var(--text); }

.rez-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rez-field--full { grid-column: 1 / -1; }
.rez-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--header);
}
.rez-req { color: var(--theme-color-2); }
.rez-field input[type="text"],
.rez-field input[type="tel"],
.rez-field input[type="email"],
.rez-field input[type="date"],
.rez-field input[type="number"],
.rez-field select,
.rez-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}
.rez-field input:focus,
.rez-field select:focus,
.rez-field textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(77, 64, 202, .14);
}
.rez-field textarea { resize: vertical; }
.rez-hint { margin: 6px 0 0; font-size: 13px; color: var(--text); opacity: .8; }

.rez-check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    cursor: pointer;
}
.rez-check input { width: auto !important; accent-color: var(--theme-color); }

.rez-stepper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.rez-stepper button {
    flex: none;
    width: 50px;
    border: none;
    background: var(--bg);
    color: var(--theme-color);
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
}
.rez-stepper button:hover { background: var(--theme-color); color: #fff; }
.rez-stepper input {
    flex: 1;
    min-width: 0;
    border: none !important;
    border-radius: 0 !important;
    text-align: center;
    font-weight: 800;
    font-size: 18px !important;
    box-shadow: none !important;
    -moz-appearance: textfield;
}
.rez-stepper input::-webkit-outer-spin-button,
.rez-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.rez-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--bg);
    font-size: 17px;
    font-weight: 700;
    color: var(--theme-color);
}
.rez-summary i { font-size: 20px; }
.rez-summary.is-warn { background: #fff6f3; color: #8a2b12; }

.rez-confirm {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 0;
    padding: 18px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: #fafbfd;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    cursor: pointer;
}
.rez-confirm input { flex: none; width: 20px; height: 20px; margin-top: 3px; accent-color: var(--theme-color); }
.rez-confirm:has(input:checked) { border-color: var(--theme-color); background: #f6f5ff; }

.rez-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    padding: 19px 28px;
    border: none;
    border-radius: 12px;
    background: var(--theme-color-2);
    color: #fff;
    font-family: inherit;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.rez-submit:hover { background: #e04a22; transform: translateY(-2px); }

/* --- Kenar çubuğu --------------------------------------------------------- */
.rez-side { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 20px; }
.rez-box {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.rez-box h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 19px; font-weight: 800; }
.rez-box h3 i { color: var(--theme-color); }
.rez-box p { font-size: 15px; line-height: 1.6; color: var(--text); }
.rez-box__wa,
.rez-box__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    margin-top: 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.rez-box__wa { background: #25D366; color: #fff; }
.rez-box__wa:hover { background: #1fb757; color: #fff; }
.rez-box__tel { border: 1px solid var(--border); color: var(--theme-color); }
.rez-box__tel:hover { background: var(--bg); color: var(--theme-color); }
.rez-box__addr { margin: 0; }
.rez-box__hours { margin: 10px 0 0; font-size: 14px; }

.rez-steps { margin: 0; padding-left: 20px; }
.rez-steps li { margin-bottom: 12px; font-size: 15px; line-height: 1.6; color: var(--text); }
.rez-steps li:last-child { margin-bottom: 0; }
.rez-steps strong { color: var(--header); }

@media (max-width: 1100px) {
    .rez-layout { grid-template-columns: 1fr; }
    .rez-side { position: static; }
}
@media (max-width: 640px) {
    .rez-grid { grid-template-columns: 1fr; }
    .rez-card__head,
    .rez-form { padding-left: 20px; padding-right: 20px; }
    .rez-notice { padding: 20px; }
    .rez-notice__head h2 { font-size: 20px; }
    .rez-notice__list li { font-size: 16px; }
}
