/* Premium Corporate Design (Off-White & Gold) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Palette */
    --bg-main: #FAFAFA;
    /* Off-White */
    --text-primary: #1A1A1A;
    /* Rich Black */
    --gold-accent: #C5A059;
    /* Antique Gold */
    --gold-light: #E0C080;
    --border-thin: rgba(26, 26, 26, 0.1);

    /* Overrides */
    --main: var(--gold-accent);
    --primary: var(--gold-accent);
    --white: #ffffff;
    --text: var(--text-primary);
    --text-2: #555555;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: var(--bg-main) !important;
    color: var(--text-primary) !important;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23C5A059" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.brand-font,
.section-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em;
}

/* Header */
#header {
    background-color: #000000 !important;
    /* Siyah Arkaplan */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Hafif beyaz çizgi */
    -webkit-backdrop-filter: blur(10px);
    /* Safari Fix */
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

/* ... (Logo styles skipped for brevity, keeping existing) ... */

/* Arkaplan Resmi - Performans Fix */
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomEffect 20s infinite alternate;
    /* Safari için donanım hızlandırma ve performans */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* ... (Animation keyframes) ... */

/* Özel Buton Tasarımı */
.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    -webkit-backdrop-filter: blur(5px);
    /* Safari Fix */
    backdrop-filter: blur(5px);
}

/* SAFARI Ürün Kayma Fix */
.tf-grid-layout,
.card-product {
    /* Safari Flex/Grid Bug Fix */
    min-height: 0;
    min-width: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-product img {
    /* Resim yüklenirken alan koru */
    max-width: 100%;
    height: auto;
    -webkit-transform: translateZ(0);
    /* GPU */
    transform: translateZ(0);
}

.menu-item .item-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item .item-link:hover::after {
    width: 100%;
}

.menu-item .item-link:hover {
    color: var(--gold-accent) !important;
}

/* Buttons */
.btn-primary,
.tf-btn {
    background-color: var(--gold-accent) !important;
    color: #fff !important;
    border-radius: 0 !important;
    /* Sharp corners for corporate feel */
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 30px;
    border: 1px solid var(--gold-accent) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover,
.tf-btn:hover {
    background-color: transparent !important;
    color: var(--gold-accent) !important;
}

/* Product Cards */
.card-product,
.card-product.style-9 {
    background: #fff !important;
    border: 1px solid var(--border-thin) !important;
    transition: all 0.4s ease;
    padding: 15px;
    border-radius: 0 !important;
}

.card-product:hover,
.card-product.style-9:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-5px);
    border-color: var(--gold-accent) !important;
}

.card-product .title {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px;
    margin-top: 15px;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.card-product .price {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold-accent) !important;
    font-weight: 600;
    font-size: 15px;
    margin-top: 5px;
    display: block;
}

/* Footer */
#footer {
    background-color: #050505 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-top: 3px solid var(--gold-accent);
}

.footer-logo img {
    filter: brightness(0) invert(1);
    /* Make logo white */
    opacity: 0.9;
}

.footer-menu_item {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Heritage Section */
.heritage-process-section {
    background: #fff;
    border: 1px solid var(--border-thin);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    padding: 80px 0;
}

.center-emblem {
    filter: drop-shadow(0 10px 20px rgba(197, 160, 89, 0.2));
}

.brand-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-accent);
    letter-spacing: 1px;
    font-size: 16px;
}

/* Utility */
.separator-gold {
    background: var(--gold-accent);
    opacity: 0.3;
}

.text-gold {
    color: var(--gold-accent) !important;
}

/* Split Menu Utility */
.nav-split-left {
    justify-content: flex-end;
}

.nav-split-right {
    justify-content: flex-start;
}

/* -------------------------------------------------------------------------
   PREMIUM SLIDER REDESIGN (BAŞTAN YARATILDI)
   ------------------------------------------------------------------------- */
.hero-slider-premium {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Tam ekran deneyimi */
    overflow: hidden;
    background: #000;
    /* Yüklenirken siyah fon */
}

/* Kapsayıcı ve Slide Ayarları */
.hero-slider-premium .swiper,
.hero-slider-premium .swiper-container,
/* Yedek */
.hero-slider-premium .swiper-wrapper,
.hero-slider-premium .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slider-premium .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Arkaplan Resmi */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomEffect 20s infinite alternate;
    /* Hafif bir hareket katar */
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Karartma Overlay - Yazının okunması için kritik */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Daha koyu ve keskin bir geçiş */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

/* İçerik Kutusu */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    /* Header payı kaldırıldı, flex ile ortalanacak */
}

/* Başlıklar ve Yazılar */
/* Başlıklar ve Yazılar - KESİN BEYAZ (Sadece Slider İçin) */
.hero-slider-premium .hero-subtitle,
.hero-slider-premium .hero-title,
.hero-slider-premium .hero-content h1,
.hero-slider-premium .hero-content h2,
.hero-slider-premium .hero-content p,
.hero-slider-premium .hero-content span {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* Özel Buton Tasarımı */
.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    /* Cam efekti */
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold-accent);
    z-index: -1;
    transition: all 0.4s ease;
}

.hero-btn:hover {
    border-color: var(--gold-accent);
    color: #fff;
}

.hero-btn:hover::before {
    width: 100%;
}

/* Pagination (Noktalar) */
.hero-pagination {
    bottom: 40px !important;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 4px;
    border-radius: 50%;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    width: 30px;
    border-radius: 10px;
}

/* MOBİL UYUMLULUK (RESPONSIVE) */
@media (max-width: 768px) {
    .hero-slider-premium {
        height: 60vh;
        /* Mobilde daha kısa */
    }

    .hero-title {
        font-size: 32px !important;
        /* Mobilde daha küçük başlık */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}