/* ===== Akordeon (Kaya Yachting stili) ===== */
:root {
    --ky-bg: #f6f8fb;
    --ky-card: #fff;
    --ky-fg: #0f172a;
    --ky-muted: #64748b;
    --ky-brand: #1e60aa;
    --ky-accent: #fc8c03;
    --ky-ok: #22c55e;
    --ky-shadow: 0 12px 30px rgba(15, 23, 42, .10);
    --ky-shadow-strong: 0 18px 50px rgba(15, 23, 42, .16);
    --ky-rad: 16px;
}

.cabins-accordion {
    background: linear-gradient(180deg, #ffffff, #f3f6fb);
    border-radius: calc(var(--ky-rad) + 4px);
    padding: 18px;
    box-shadow: var(--ky-shadow);
}

.cab-card {
    border-radius: var(--ky-rad);
    background: var(--ky-card);
    box-shadow: var(--ky-shadow);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    margin-bottom: 14px;
    border: 1px solid rgba(30, 96, 170, .10);
}

.cab-card:has(.acc-trigger[aria-expanded="true"]) {
    box-shadow: var(--ky-shadow-strong);
    transform: translateY(-1px);
    border-color: rgba(30, 96, 170, .18);
}

.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background:
        radial-gradient(120% 220% at 0% 0%, rgba(30, 96, 170, .06), transparent 60%),
        radial-gradient(120% 220% at 100% 0%, rgba(252, 140, 3, .06), transparent 60%),
        var(--ky-card);
    color: var(--ky-fg);
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.acc-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.acc-title h3 {
    font-size: clamp(16px, 1.6vw, 18px);
    margin: 0;
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--ky-brand);
}

.acc-sub {
    font-size: 13px;
    color: var(--ky-muted);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(30, 96, 170, .10), rgba(252, 140, 3, .10));
    font-weight: 700;
    font-size: 12px;
    color: #18467e;
    border: 1px solid rgba(30, 96, 170, .14);
}

.acc-ind {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(30, 96, 170, .18);
    display: grid;
    place-items: center;
    transition: transform .25s ease, background .25s ease;
    background: linear-gradient(180deg, #fff, #f3f7fd);
}

.acc-trigger[aria-expanded="true"] .acc-ind {
    transform: rotate(45deg);
    background: linear-gradient(180deg, #fff, #eef5ff);
}

.acc-ind svg {
    width: 16px;
    height: 16px;
    fill: #1e60aa
}

.acc-panel[hidden] {
    display: none !important;
}

.acc-panel {
    padding: 0 20px 20px;
    animation: accFade .25s ease;
}

@keyframes accFade {
    from {
        opacity: 0;
        transform: translateY(-4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.cab-media {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
}

@media (max-width: 820px) {
    .cab-media {
        grid-template-columns: 1fr;
    }
}

.cab-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
    background: #fafbfd;
}

.cab-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.cab-text p {
    margin: 0 0 10px;
    line-height: 1.6;
    color: #1b2744;

}

.cab-quote {
    margin: 0 0 14px;
    padding: 14px 16px;
    border-left: 4px solid var(--ky-accent);
    background: linear-gradient(180deg, rgba(252, 140, 3, .08), rgba(252, 140, 3, .04));
    border-radius: 10px;
    color: #6b4a1e;
    font-weight: 600;
}

.cab-hr {
    height: 1px;
    border: 0;
    background: linear-gradient(90deg, rgba(30, 96, 170, .12), rgba(252, 140, 3, .18), rgba(30, 96, 170, .12));
    margin: 14px 0 0;
}



/* Modal stil ayarları */

/* Başlangıçta metin 100px yüksekliğe sabitlenip taşan içerik gizleniyor */
.accordion-content.collapsed {
    max-height: 100px;
    /* Bu değeri metnin ne kadar görünmesini istediğinize göre ayarlayın */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content {
    transition: max-height 0.3s ease;
}

/* Buton başlangıçta gizli; JS ile içerik uzunluğuna göre gösterilecek */
.accordion-button {
    display: none;
}


/* Container ayarları */
.blog-author {
    padding: 2rem;
    background-color: #fafafa;
    border-radius: .5rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

/* Başlık */
.dahilharicbaslik {
    margin-bottom: 1rem;
    color: #2d3748;


}

/* İki kolonluk düzen için */
.blog-author .author-info .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.blog-author .author-info .col-md-6 {
    flex: 0 0 50%;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Liste öğeleri */
.blog-author .included-item,
.blog-author .excluded-item {
    display: flex;
    align-items: center;
    margin-bottom: .75rem;
    font-size: 0.9375rem;
    /* text-15 */
    color: #1a202c;
    /* text-dark-1 */
}

.blog-author .included-item i,
.blog-author .excluded-item i {
    font-size: 1rem;
    /* text-10 → yaklaşık 1rem/16px */
    margin-right: .5rem;
}

/* Icon renkleri */
.blog-author .included-item i.icon-check {
    color: #38a169;
    /* yeşil ton */
}

.blog-author .excluded-item i.icon-close {
    color: #e53e3e;
    /* kırmızı ton */
}

/* Responsive: küçük ekranlarda üst üste geçiş */
@media (max-width: 767px) {
    .blog-author .author-info .col-md-6 {
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
    }
}



.swiper-slide .galeri-ratio {
    height: 400px !important;
    overflow: hidden !important;
}

.swiper-slide .galeri-ratio img {
    width: 100% !important;
    /* auto yerine %100 */
    height: 100% !important;
    /* tam doldur */
    object-fit: cover !important;
    display: block !important;
}

.galeri-swiper {
    width: 100% !important;
}

.swiper-slide {
    width: auto !important;
}



.yorumgonder {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #fc8c03;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.yorumgonder .icon-arrow-top-right {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.yorumgonder:hover {
    background: #112c5c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.yorumgonder:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Mobilde tam genişlik istersen: */
@media (max-width: 576px) {
    .yorumgonder {
        width: 100%;
        justify-content: center;
    }
}


.foto-goster-buton {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 20;
}

.foto-goster-buton button {
    background-color: #0d6efd;
    border: none;

    padding: 8px 16px;
    border-radius: 8px;
    color: white;
}

@media (max-width: 768px) {
    .foto-goster-buton {
        bottom: 5px;
        right: 5px;
    }
}

/* Özel stil: Başlık ve paylaş butonunu yan yana hizalamak için */
.blog-header {
    display: flex;
    align-items: center;
    /* Dikey ortalama */
    justify-content: space-between;
    /* Başlık sola, buton sağa */
    flex-wrap: wrap;
    /* Dar ekranlarda alt alta geçmesini sağlıyor */
    gap: 1rem;
    /* Elemanlar arası boşluk */
    margin-bottom: 1.25rem;
    /* mb-20 yerine */
}

.blog-header .blog-details-title {
    margin: 0;
    /* Başlığın varsayılan marjını sıfırla */
    font-size: 2rem;
    /* İhtiyaca göre ayarla */
}

.blog-header .share-button {
    margin: 0;
    /* Varsayılan margin’leri kaldır */
    white-space: nowrap;
    /* Metin tek satırda kalsın */
}

/* Ürün meta listesini 4 eşit kolona böl */
.urun-meta ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Her bir li öğesi eşit genişlikte */
.urun-meta ul li {
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    display: block;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    flex: 1 1 25%;
}

/* İkon stili */
.urun-meta ul li i {
    font-size: 1.2rem;
    color: #0d6efd;
}

/* Dar ekranlarda 2 sütuna düşürmek istersen */
@media (max-width: 768px) {
    .urun-meta ul li {
        flex: 1 1 50%;
    }
}



.emojistil {
    display: inline-block;
    font-size: 2rem;
    /* Emoji boyutu */
    line-height: 1;
    /* Yüksekliği sıkı tut */
    padding: 0.3rem;
    /* Emoji etrafındaki boşluk */
    background-color: #f0f4ff;
    /* Açık mavi arka plan */
    border: 2px solid #a0b9ff;
    /* Hafif mavi kenarlık */
    border-radius: 50%;
    /* Tam yuvarlak şekil */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.emojistil:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.ozellikliste {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    /* dikey boşluk */
    border-bottom: 1px solid #e2e8f0;
    /* isterseniz ayırıcı çizgi */

}

.liste {
    font-weight: bolder;

}

.listekarsi {
    /* otomatik olarak sağa yaslamak için */
    margin-left: auto;
}

/* Son elemanın alt çizgisi olmasın isterseniz: */
.widget.social .ozellikliste:last-child {
    border-bottom: none;
}


/* Genel container ayarları */
.program-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.program-item:hover {
    background-color: #fafafa;
}

/* İkon (sıra numarası) */
.program-icon {
    flex: 0 0 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* İçerik kısmı */
.program-content {
    margin-left: 20px;
    flex: 1;
}

/* Mekan başlığı */
.program-content .program-location {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

/* Aktivite açıklaması */
.program-content .program-activity {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #555;
}

/* Durak ve süre bilgisi */
.program-content .program-duration {
    font-size: 14px;
    line-height: 1.3;
    color: #888;
}

/* Responsive ayar */
@media (max-width: 576px) {
    .program-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px;
        /* padding’i küçülttük */
        margin-bottom: 8px;
        /* her item arası boşluk */
        border-radius: 4px;
        /* hafif yuvarlaklık */
        box-shadow: none;
        /* gölgeyi kaldırdık */
        border-bottom: 1px solid #e0e0e0;
        /* alt çizgi geri geldi */
    }

    .program-icon {
        flex: 0 0 32px;
        /* ikon boyutu küçüldü */
        width: 32px;
        height: 32px;
        font-size: 14px;
        /* sayı yazısı küçüldü */
        line-height: 32px;
        margin-bottom: 6px;
        /* alt boşluk azaltıldı */
    }

    .program-content {
        margin-left: 0;
        width: 100%;
    }

    .program-content .program-location {
        font-size: 14px;
        /* yazı boyutları küçüldü */
        margin-bottom: 4px;
    }

    .program-content .program-activity {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .program-content .program-duration {
        font-size: 12px;
        margin-bottom: 0;
    }
}


.share-modal {
    display: none;
    /* Başlangıçta gizli */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.share-modal-content {
    background-color: #77c1ff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 300px;
    text-align: center;
    position: relative;
    color: white;
    border: 1px solid;
}

.share-modal-content .share-link {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #072f15;
    font-size: 16px;
}

.share-modal-content .close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.share-modal-content .close:hover {
    color: #000;
}


.col-md-6 .liste {
    margin-right: 1.5rem;
    /* istediğin değeri ayarla: 1rem / 2rem vs. */
}



.blog-sidebar .widget {
    background: #f0f2f5;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    /* İsteğe bağlı: Hafif bir kenarlık ekleyerek widget'ı belirginleştirir */
    border: 1px solid #e0e0e0;
}

/* Not: Mevcut padding, border-radius gibi değerleri koruyoruz */
.blog-single .blockqoute {
    /* YENİ ARKA PLAN: Çok açık, sıcak krem/bej tonu */
    background: #fffaf0;

    /* Vurgu çizgisi aynı kalsın (Kurumsal Mavi) */
    border-left: 6px solid var(--corporate-blue);

    padding: 30px 40px 30px 50px;
    font-size: 18px;
    font-style: italic;
    margin: 30px 0;
    border-radius: 8px;
    position: relative;
    color: var(--corporate-text-dark);
    overflow: hidden;
    line-height: 1.6;
    z-index: 1;
}

/* Büyük tırnak işareti (::before) aynı kalsın ki kurumsal mavi bağını korusun */
.blog-single .blockqoute::before {
    content: '“';
    position: absolute;
    top: 0;
    left: 15px;
    font-size: 10rem;
    font-family: var(--font-serif);
    font-weight: 900;
    line-height: 1;
    /* Renk: Çok silik kurumsal mavi */
    color: rgba(0, 51, 102, 0.07);
    z-index: 0;
}

.blog-single {
    position: relative;
}

.py-80 {
    padding: 80px 0;
}

.blog-header .share-button {
    margin: 0;
    white-space: nowrap;
    background: #73bffd;
    padding: 17px;
    border-radius: 10px;
    color: white;
    font-weight: bolder;
    border: none;
    font-size: medium;
}

.blog-single .blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: rgb(118, 193, 255);
    margin: 50px 0;
    padding: 20px;
    border-radius: 15px;
}

.container {
    max-width: 1371px;
}

.blog-sidebar .widget .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 22px;
    color: #0A2155;
    font-weight: 700;
}

.blog-header .blog-details-title {
    margin: 0;
    font-size: 2rem;
    color: #0A2155;
}

.dahilharicbaslik {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #0A2155;
}



/* Genel stil */
.availability-calendar {
    width: 100%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.availability-calendar h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.legend {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.legend span {
    margin: 0 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.legend-box {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 3px;
}

/* Müsait günler */
.legend-box.available {
    background-color: #81ff76;
    border: 1px solid #00b300;
}

/* Tam dolu günler */
.legend-box.full {
    background-color: #ff4d4d;
    border: 1px solid #cc0000;
}

/* Giriş için yarım sağ kırmızı */
.legend-box.half-right {
    background: linear-gradient(to left, #ff4d4d 50%, transparent 50%);
    border: 1px solid #cc0000;
}

/* Çıkış için yarım sol kırmızı */
.legend-box.half-left {
    background: linear-gradient(to right, #ff4d4d 50%, transparent 50%);
    border: 1px solid #cc0000;
}

/* Takvim üst bilgi */
.calendar-header {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.calendar-header button {
    background-color: #1e60aa;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    color: white;
}

.calendar-header button:hover {
    background-color: #ddd;
}

/* Takvim tablosu */
.calendar-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    table-layout: fixed;
    position: relative;
    /* Tooltip'in doğru konumlanmasını sağlar */
    overflow: visible;
    /* Tooltip'in kesilmesini engeller */
}

.calendar-table th {
    font-size: 17px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #555;
}

.calendar-table td {
    height: 70px;
    vertical-align: top;
    position: relative;
    border: 1px solid #fff;
    cursor: pointer;
    background-color: #4caf50;
    transition: background-color 0.3s ease;
}

/* Kapalı tarih için tam dolu hücre */
.calendar-table td.full {
    background-color: #ff4d4d !important;
    color: #fff !important;
}

/* Kapalı tarih başlangıcı için yarım hücre (sağ) */
.calendar-table td.half-left {
    background: linear-gradient(to left, rgb(255, 255, 255) 50%, transparent 50%);
    color: #fff !important;
}

/* Kapalı tarih bitişi için yarım hücre (sol) */
.calendar-table td.half-right {
    background: linear-gradient(to right, rgb(255, 255, 255) 50%, transparent 50%);
    color: #fff !important;
}

/* Geçmiş tarih */
.calendar-table td.past-date {
    background-color: #f0f0f0 !important;
    color: #aaa;
    cursor: not-allowed;
}

.calendar-table td.past-date .price {
    display: none;
}

/* Fiyat ve tarih */
.calendar-table td .date {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    /* Tarih ile fiyat/durum arasındaki boşluk */
    color: #333;
}

.calendar-table td .price {
    display: block;
    font-size: 18px;
    font-weight: normal;
    color: #555;
    margin-top: 5px;
    background: white;
    text-align: center;
}

/* Tooltip görünümü varsayılan olarak gizli */
.calendar-table td .tooltipx {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 10;
    white-space: nowrap;
}

/* Tooltip aktif olduğunda */
.calendar-table td.active .tooltipx {
    display: block;
}

/* Mobil için hücreye tıklama */
@media (max-width: 768px) {
    .calendar-table td .price {
        display: none;
    }



    .blog-header .blog-details-title {
        margin: 0;
        font-size: 24px;
        color: #0A2155;
    }
}

.rating .icon-star {
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
    /* boş yıldız rengi */
}

.rating .icon-star::before {
    content: '☆';
    /* boş yıldız */
}

.rating .icon-star.active {
    color: #ffc107;
    /* dolu yıldız rengi */
}

.rating .icon-star.active::before {
    content: '★';
    /* dolu yıldız */
}

#calendarModal {
    z-index: 1000;
}

.calendar-table td {
    cursor: pointer;
    text-align: center;
    height: 40px;
    width: 40px;
    vertical-align: middle;
    position: relative;
}

.calendar-table td.selected {
    background-color: #ffeb3b;
}

.calendar-table td.in-range {
    background-color: #fff176;
}

.closed-date {
    background-color: #ff4d4d !important;
    color: white;
    pointer-events: none;
    /* Tıklanamaz hale getir */
    cursor: not-allowed;
    text-align: center;
}

/* ================================
   CABIN TABS — Glam Glass + Neon
   ================================ */

/* Marka renklerini kolay değiştirmek için */
:root {
    --tab-fg: #0b1b3a;
    --tab-fg-inv: #ffffff;
    --tab-surface: rgba(255, 255, 255, .65);
    --tab-surface-dim: rgba(255, 255, 255, .35);
    --tab-stroke: rgba(30, 96, 170, .35);

    --accent-1: #1e60aa;
    --accent-2: #1e60aa;
    --accent-3: #1e60aa;

    --grad: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
    --shadow-1: 0 8px 24px rgba(30, 96, 170, .18);
    --shadow-2: 0 14px 34px rgba(3, 229, 252, .22);
}

/* Kapsayıcı: yatay kaydırma + yumuşak kenar maskesi */
.cabin-tabs-wrap {
    position: relative;
    padding: 10px 8px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, .3));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--tab-stroke);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06) inset;
}

/* UL: pill’ler arası boşluk, scroll ve snap */
#cabinTabs {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px;
    margin: 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge legacy */
    scroll-snap-type: x proximity;
}

#cabinTabs::-webkit-scrollbar {
    display: none;
}

/* WebKit */

/* LI default boşluklarını sıfırla */
#cabinTabs .nav-item {
    margin: 0;
    scroll-snap-align: start;
}

/* Bootstrap override: nav-pills linkleri biz kontrol edeceğiz */
#cabinTabs .nav-link {
    border: none;
    border-radius: 999px !important;
    color: var(--tab-fg);
    background: transparent;
    transition:
        transform .18s ease,
        box-shadow .25s ease,
        color .18s ease,
        background .25s ease,
        border-color .25s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* pseudo katmanlar için */
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1;
    padding: 12px 18px;
    min-height: 42px;
    white-space: nowrap;
    user-select: none;
}

/* Neon-çerçeveli cam düğme: gradientli border + cam yüzey */
#cabinTabs .nav-link.cabin-tab {
    background:
        linear-gradient(var(--tab-surface), var(--tab-surface)) padding-box,
        var(--grad) border-box;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Hover: hafif yukarı kalkış + parıltı */
#cabinTabs .nav-link.cabin-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-1);
}

/* Aktif tab: full neon dolgu + kuvvetli glow */
#cabinTabs .nav-link.cabin-tab.active {
    color: var(--tab-fg-inv) !important;
    background: var(--grad);
    border-color: transparent;
    box-shadow: var(--shadow-1), var(--shadow-2);
    padding: 10px !important;
}

/* Aktif tab iç parıltı çizgisi (soldan sağa akan highlight) */
#cabinTabs .nav-link.cabin-tab.active::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120px 24px at -20% 50%, rgba(255, 255, 255, .65), transparent 60%),
        radial-gradient(120px 24px at 120% 50%, rgba(255, 255, 255, .45), transparent 60%);
    mix-blend-mode: screen;
    animation: cabinSheen 2.2s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes cabinSheen {
    0% {
        transform: translateX(-6%);
    }

    100% {
        transform: translateX(6%);
    }
}

/* İnteraktif odak halkası (klavye erişilebilirlik) */
#cabinTabs .nav-link.cabin-tab:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(3, 229, 252, .35),
        0 0 0 6px rgba(30, 96, 170, .20);
}

/* Basılı tutma feedback (mobil için “klik” hissi) */
#cabinTabs .nav-link.cabin-tab:active:not(.active) {
    transform: translateY(0);
    filter: brightness(.97);
}

/* Min/fiyat rozetini eklemek istersen .badge sınıfını güzelleştir */
#cabinTabs .nav-link .badge {
    margin-left: 8px;
    font-weight: 800;
    border-radius: 999px;
    padding: 5px 8px;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
}

/* Koyu mod desteği (istemci tercihi) */
@media (prefers-color-scheme: dark) {
    :root {
        --tab-fg: #e8f0ff;
        --tab-surface: rgba(255, 255, 255, .08);
        --tab-surface-dim: rgba(255, 255, 255, .05);
        --tab-stroke: rgba(255, 255, 255, .15);
    }

    .cabin-tabs-wrap {
        position: relative;
        padding: 10px 8px;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, .3));
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid var(--tab-stroke);
        box-shadow: 0 6px 24px rgba(0, 0, 0, .06) inset;
        color: #0a2155;
    }

    #cabinTabs .nav-link.cabin-tab {
        color: #dbe8ff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
    }
}

/* Küçük ekran optimizasyonu */
@media (max-width: 520px) {
    #cabinTabs .nav-link.cabin-tab {
        padding: 10px 14px;
        font-weight: 700;
        font-size: .95rem;
    }
}

/* Hareketi azalt tercihine saygı */
@media (prefers-reduced-motion: reduce) {

    #cabinTabs .nav-link,
    #cabinTabs .nav-link.cabin-tab.active::after {
        transition: none !important;
        animation: none !important;
    }
}

/* ===================== ULTRA-PREMIUM COMMENT FORM ===================== */
/* Palet & ölçüler */
:root {
    --brand: #1e60aa;
    --brand-2: #03e5fc;
    --ink: #13223a;
    --muted: #6a7686;
    --bg: #f5f8fc;
    --card: #ffffff;

    --radius-xxl: 22px;
    --radius-xl: 18px;
    --radius-lg: 14px;
    --radius-md: 12px;

    --shadow-1: 0 10px 24px rgba(18, 44, 92, .08);
    --shadow-2: 0 18px 40px rgba(18, 44, 92, .14);
    --ring: 0 0 0 4px rgba(3, 229, 252, .18);
}

/* Dark mode otomatik */
@media (prefers-color-scheme: dark) {
    :root {
        --ink: #e8eef7;
        --muted: #b7c0cc;
        --bg: #0e1422;
        --card: #121c2f;
        --shadow-1: 0 10px 24px rgba(0, 0, 0, .45);
        --shadow-2: 0 18px 40px rgba(0, 0, 0, .6);
        --ring: 0 0 0 5px rgba(3, 229, 252, .20);
    }
}

/* ***************** Dış Kapsayıcı ***************** */
#commentForm {
    position: relative;
    border-radius: var(--radius-xxl);
    padding: 28px;
    background:
        radial-gradient(1100px 160px at 15% -10%, rgba(3, 229, 252, .09), transparent 60%),
        radial-gradient(900px 140px at 110% -15%, rgba(30, 96, 170, .10), transparent 55%),
        var(--bg);
    box-shadow: var(--shadow-1);
    border: 1px solid rgba(30, 96, 170, .12);
    overflow: hidden;
}

/* Dekoratif yumuşak parıltı */
#commentForm::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(900px 450px at -10% -15%, rgba(3, 229, 252, .08), transparent 40%),
        radial-gradient(700px 360px at 110% -10%, rgba(30, 96, 170, .08), transparent 40%);
    pointer-events: none;
}

/* Başlık (h3 üst konteynerdeyse etkilenir) */
.blog-comment-form h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: .2px;
    color: var(--ink);
    margin-bottom: 18px;
}

.blog-comment-form h3::after {
    content: "";
    width: 48px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 22px rgba(30, 96, 170, .28);
}

/* Satır aralıkları */
#commentForm .row {
    row-gap: 14px;
}

/* Mikro etiket (kategori başlıkları: location/staff...) */
#commentForm .liste {
    color: var(--muted);
    font-weight: 800;
    letter-spacing: .25px;
    background: linear-gradient(180deg, rgba(30, 96, 170, .10), rgba(3, 229, 252, .08));
    border: 1px solid rgba(30, 96, 170, .14);
    padding: 7px 12px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(18, 44, 92, .08) inset;
}

/* Form inputları genişlik ayarı */
#commentForm .form-control {
    width: 100% !important;
    /* Her zaman tam genişlik */
    max-width: 100%;
    /* Daraltılmasını engeller */
    display: block;
    box-sizing: border-box;
}

/* İki kolon yan yana dursun diye */
#commentForm .col-md-6 {
    flex: 0 0 50%;
    /* %50 genişlik */
    max-width: 50%;
}

/* Mobilde tek kolon olsun */
@media (max-width: 767.98px) {
    #commentForm .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ***************** YILDIZ OYLAMA ***************** */
/* HTML: <div class="rating" data-rating-name="rating_location"><span class="icon-star" data-value="1">… */
.rating {
    --star: 24px;
    --gap: 8px;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--gap);
    margin-left: 10px;
    user-select: none;
}

.rating .icon-star {
    position: relative;
    width: var(--star);
    height: var(--star);
    cursor: pointer;
    transform: translateZ(0);
}

/* Kontur (boş yıldız) */
.rating .icon-star::before {
    content: "★";
    position: absolute;
    inset: 0;
    font-size: var(--star);
    color: rgba(30, 96, 170, .30);
    filter: drop-shadow(0 2px 8px rgba(18, 44, 92, .10));
    transition: transform .16s ease, color .18s ease, opacity .18s ease;
}

/* Dolu yıldız – gradyan ışıltı */
.rating .icon-star::after {
    content: "★";
    position: absolute;
    inset: 0;
    font-size: var(--star);
    color: transparent;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow:
        0 8px 22px rgba(30, 96, 170, .25),
        0 0 0 rgba(0, 0, 0, 0);
    opacity: 0;
    transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease;
}

/* Hover: bulunduğu ve solundakiler dolu görünsün */
.rating .icon-star:hover::after,
.rating .icon-star:hover~.icon-star::after {
    opacity: 1;
    transform: translateY(-1px);
}

.rating .icon-star:hover::before,
.rating .icon-star:hover~.icon-star::before {
    color: rgba(30, 96, 170, .12);
    transform: translateY(-1px) scale(1.02);
}

/* Seçili (JS ile .is-active ekle) */
.rating .icon-star.is-active::after,
.rating .icon-star.is-active~.icon-star::after {
    opacity: 1;
}

.rating .icon-star.is-active::before,
.rating .icon-star.is-active~.icon-star::before {
    color: rgba(30, 96, 170, .12);
}

/* Klavye odak */
.rating .icon-star:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 229, 252, .55);
    border-radius: 6px;
}

/* ***************** FORM KONTROLLERİ ***************** */
#commentForm .form-group {
    margin-bottom: 12px;
}

#commentForm .form-control {
    border: 1.5px solid rgba(30, 96, 170, .18);
    background: linear-gradient(180deg, var(--card), color-mix(in oklab, var(--card) 92%, #fff));
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    line-height: 1.35;
    transition: border-color .18s ease, box-shadow .18s ease, transform .06s ease, background .18s ease;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 0 0 rgba(0, 0, 0, 0);
}

#commentForm .form-control::placeholder {
    color: color-mix(in oklab, var(--muted) 78%, white);
}

/* Focus: cam halka + hafif kaldırma */
#commentForm .form-control:focus {
    border-color: color-mix(in oklab, var(--brand) 72%, white);
    box-shadow: var(--ring), 0 10px 26px rgba(30, 96, 170, .12);
    transform: translateY(-1px);
    outline: none;
}

/* Textarea */
#commentForm textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Durum renkleri (JS/Backend ile .has-… sınıfını form-group’a ekle) */
#commentForm .has-error .form-control {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .14);
}

#commentForm .has-success .form-control {
    border-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, .14);
}

/* ***************** GÖNDER BUTONU ***************** */
.yorumgonder {
    --pad-x: 26px;
    --pad-y: 13px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: var(--pad-y) var(--pad-x);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    letter-spacing: .25px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 12px 26px rgba(30, 96, 170, .28), inset 0 -2px 0 rgba(255, 255, 255, .15);
    transform: translateZ(0);
    transition: transform .08s ease, box-shadow .18s ease, filter .18s ease;
}

/* Parıltı şeridi */
.yorumgonder::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .0) 0%, rgba(255, 255, 255, .45) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-120%);
    transition: transform .9s cubic-bezier(.22, .61, .36, 1);
}

.yorumgonder:hover::before {
    transform: translateX(120%);
}

.yorumgonder .icon-arrow-top-right {
    transition: transform .18s ease;
}

.yorumgonder:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-2);
    filter: saturate(106%);
}

.yorumgonder:hover .icon-arrow-top-right {
    transform: translate(2px, -2px);
}

.yorumgonder:active {
    transform: translateY(0);
}

/* ***************** Hiza & Responsive ***************** */
#commentForm .d-flex.align-items-center {
    gap: 12px;
}

@media (max-width: 991.98px) {
    #commentForm {
        padding: 22px;
    }

    .rating {
        --star: 23px;
        --gap: 7px;
    }
}

@media (max-width: 575.98px) {
    #commentForm {
        padding: 18px;
    }

    .rating {
        --star: 22px;
        --gap: 6px;
    }

    #commentForm .liste {
        max-width: 50vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .yorumgonder {
        width: 100%;
        justify-content: center;
    }
}

/* ***************** Yumuşak giriş animasyonu ***************** */
#commentForm {
    opacity: 0;
    transform: translateY(8px) scale(.995);
    animation: cmtIn .28s ease-out forwards;
}

@keyframes cmtIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Accordion item wrapper */
.accordion__item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: .25rem;
    overflow: hidden;
}

/* Header button */
.accordion__button {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background-color: #f9fafb;
}

/* Icon container */
.accordion__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: transform .2s;
}

/* Hide minus by default */
.accordion__icon .icon-minus {
    display: none;
}

/* When active, rotate icon and swap plus/minus */
.accordion__item.active .accordion__icon {
    transform: rotate(180deg);
}

.accordion__item.active .icon-plus {
    display: none;
}

.accordion__item.active .icon-minus {
    display: block;
}

/* Content area */
.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background-color: #fff;
}

/* Inner padding for content */
.accordion__content .pt-20 {
    padding-top: 1.25rem;
}

.accordion__content .pl-60 {
    padding-left: 1rem;
}

.col-md-6 .liste {
    margin-right: 1.5rem;
    /* istediğin değeri ayarla: 1rem / 2rem vs. */
}

.gun-badge {
    display: inline-block;
    background-color: #22c55e;
    /* yeşil */
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.gun-badge:last-child {
    margin-right: 0;
}