/*
 * BYKakao - Özel CSS
 * Kababi template üzerine BYKakao renk/içerik uyarlaması
 */

/* ── Renk Değişkenleri ──────────────────────────────────── */
:root {
    --bk-gold:    #C8A96A;   /* Kababi'nin primary rengi ile uyumlu */
    --bk-dark:    #090C0F;   /* Kababi bg-style2 */
    --bk-cocoa:   #3D2410;   /* Kahverengi kakao tonu */
    --bk-mid:     #1D1D1D;   /* Kababi secondary bg */
    --bk-cream:   #F9F6F0;   /* Kababi bg-style1 */
    --bk-text:    #666666;
}

/* ── Slider Özel ────────────────────────────────────────── */
.bk-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bk-gold);
    margin-bottom: 12px;
    display: block;
}

.bk-slider-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.bk-cert-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.bk-cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.bk-cert-item i {
    color: var(--bk-gold);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* ── Ürün Fiyat Etiketi ─────────────────────────────────── */
.bk-quote-label {
    font-size: 11px !important;
    color: var(--bk-gold) !important;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.pricing-menu-item span {
    font-size: 18px;
    font-family: 'Forum', cursive;
    color: var(--bk-gold);
    font-weight: 700;
}

/* ── Hakkımızda İstatistikler ───────────────────────────── */
.bk-about-stats {
    display: flex;
    gap: 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.bk-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.bk-stat-num {
    font-family: 'Forum', cursive;
    font-size: 32px;
    color: var(--bk-gold);
    line-height: 1;
    font-weight: 700;
}

.bk-stat-label {
    font-size: 11px;
    color: var(--bk-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: 'Open Sans', sans-serif;
}

/* ── Sertifika Kartları ─────────────────────────────────── */
.bk-cert-card {
    padding: 40px 24px;
    text-align: center;
    border: 1px solid rgba(200,169,106,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(29,29,29,0.6);
}

.bk-cert-card:hover {
    border-color: var(--bk-gold);
    background: rgba(200,169,106,0.08);
    transform: translateY(-4px);
}

.bk-cert-icon {
    font-size: 40px;
    color: var(--bk-gold);
    margin-bottom: 16px;
}

/* ── WhatsApp Butonu ────────────────────────────────────── */
.bk-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bk-whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

/* ── Alert Mesajları ────────────────────────────────────── */
.bk-alert {
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.bk-alert-success {
    background: rgba(82, 192, 122, 0.15);
    border: 1px solid #52C07A;
    color: #52C07A;
}

.bk-alert-error {
    background: rgba(224, 82, 82, 0.15);
    border: 1px solid #E05252;
    color: #E05252;
}

/* ── Ürün Listesi Kartları ──────────────────────────────── */
.bk-product-card {
    background: var(--bk-dark);
    border: 1px solid rgba(200,169,106,0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 28px;
}

.bk-product-card:hover {
    border-color: var(--bk-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(200,169,106,0.15);
}

.bk-product-card .bk-product-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.bk-product-card .bk-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bk-product-card:hover .bk-product-img img {
    transform: scale(1.06);
}

.bk-product-card .bk-product-body {
    padding: 20px;
}

.bk-product-card .bk-product-cat {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bk-gold);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.bk-product-card .bk-product-name {
    font-family: 'Forum', cursive;
    font-size: 20px;
    color: #fff;
    margin: 8px 0;
}

.bk-product-card .bk-product-desc {
    font-size: 13px;
    color: var(--bk-text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bk-product-card .bk-product-price {
    font-family: 'Forum', cursive;
    font-size: 22px;
    color: var(--bk-gold);
    font-weight: 700;
}

.bk-product-card .bk-product-meta {
    font-size: 11px;
    color: #555;
    margin-top: 4px;
}

.bk-product-card .bk-cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.bk-cert-tag {
    font-size: 10px;
    padding: 3px 8px;
    background: rgba(200,169,106,0.1);
    border: 1px solid rgba(200,169,106,0.3);
    color: var(--bk-gold);
    border-radius: 2px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.5px;
}

/* ── Blog Kartları ──────────────────────────────────────── */
.bk-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

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

/* ── İletişim Sayfası ───────────────────────────────────── */
.bk-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(200,169,106,0.1);
}

.bk-contact-info-item i {
    font-size: 24px;
    color: var(--bk-gold);
    min-width: 30px;
    margin-top: 3px;
}

.bk-contact-info-item h6 {
    font-family: 'Forum', cursive;
    font-size: 16px;
    color: #fff;
    margin: 0 0 4px;
}

.bk-contact-info-item p {
    font-size: 14px;
    color: var(--bk-text);
    margin: 0;
}

/* ── Admin Bağlantısı ──────────────────────────────────── */
.header-lang a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header-lang a:hover { opacity: 0.7; }

/* ── Pagination ────────────────────────────────────────── */
.bk-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.bk-pagination a, .bk-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(200,169,106,0.3);
    color: var(--bk-text);
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s;
    text-decoration: none;
}

.bk-pagination a:hover, .bk-pagination .active {
    background: var(--bk-gold);
    border-color: var(--bk-gold);
    color: var(--bk-dark);
}

/* ── Form Ortak ────────────────────────────────────────── */
.wrap-form select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,106,0.2);
    color: #888;
    padding: 14px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    margin-bottom: 14px;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.wrap-form select:focus {
    outline: none;
    border-color: var(--bk-gold);
    color: #ccc;
}

.wrap-form select option {
    background: #1D1D1D;
    color: #ccc;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .bk-cert-badges { display: none; }
    .bk-about-stats { gap: 16px; }
    .bk-stat-num { font-size: 24px; }
    .bk-whatsapp-btn { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 22px; }
}

@media (max-width: 480px) {
    .bk-about-stats { justify-content: center; }
}

/* ── Slider gradient overlay ── */
.slider-item {
    min-height: 600px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
}
.slider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(2,6,9,0.93) 33%, rgba(2,6,9,0) 77%);
    z-index: 1;
}
.slider-item > * {
    position: relative;
    z-index: 2;
}



.page-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.slider-item {
    min-height: 800px !important;
    padding-top: 150px;
    padding-bottom: 80px;
}

.slider .img-bg2 {
    z-index: 3 !important;
    position: absolute !important;
    left: 55% !important;
}

/*Kategori ortala*/
.wrap-category .flat-tabs .menu-tab {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

/*Hakkımzda İmage*/
.wrap-about-us .tf-img-about img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

/*Kategori altı resimlerin boyutları*/
.wrap-img-food-inner .img-food-1 img {
    width: 350px !important;
    height: 350px !important;
    object-fit: cover !important;
}

.wrap-img-food-inner .img-food-2 img {
    width: 650px !important;
    height: 650px !important;
    object-fit: cover !important;
}

.wrap-img-food-inner .img-food-3 img {
    width: 420px !important;
    height: 200px !important;
    object-fit: cover !important;
}


/*galeri resimleri boyutları*/

.wrap-gallery .gallery-box .image {
    height: 300px;
}

.wrap-gallery .gallery-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap-gallery .col-box.col-50 .gallery-box .image {
    height: 300px;
}

.wrap-gallery .col-box.col-25 .gallery-box .image {
    height: 300px;
}

/*online teklif resim hizalaması*/
.image-form-booking .image {
    min-height: 400px;
    max-height: 800px;
}
.image-form-booking .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.header-contact {
    position: relative;
    /*z-index: 10;*/
    margin-right: 45px;
}

/* Giriş butonu masaüstünde görünür, mobilde gizli */
.desktop-only { display: inline-flex; }
.mobile-only  { display: none; }

@media (max-width: 991px) {
    .desktop-only { display: none !important; }
    .mobile-only  { display: block; }
    .flat-button  { margin-left: 10px; }
}

.flat-button .tf-button {
    padding: 8px 24px;
}

.flat-button {
    margin-left: auto;
    margin-right: 20px;
}

.flat-button .tf-button.color-style2 {
    background: #C8A96A;
    border: 2px solid #C8A96A;
    color: #000 !important;
    padding: 8px 18px;
}

.flat-button .tf-button.color-style2:hover {
    background: #C8A96A;
    color: #000;
}
.flat-button .tf-button.color-style2::after {
    display: none;
}
.flat-button .tf-button::after {
    display: none;
}