/* ==========================================================================
   ZEYNEP PERDE - TAÇ BAYİİ | LÜKS KIRIK BEYAZ & ALTIN CSS
   ========================================================================== */

/* --------------------------------------------------
   1. RESET & TEMEL DEĞİŞKENLER
   -------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #FAF8F5;
    --bg-surface: #F3EFEA;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FDFBF7;

    --gold: #C5A059;
    --gold-light: #E5CB93;
    --gold-bright: #D4AF37;
    --gold-dark: #9E7C37;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #E8D3A7 50%, #B88E3F 100%);
    --gold-glow: 0 8px 20px rgba(197, 160, 89, 0.25);

    --text-white: #2C2A29;
    --text-muted: #6B6562;
    --text-sub: #4A4644;

    --border-gold: rgba(197, 160, 89, 0.35);
    --border-light: rgba(0, 0, 0, 0.08);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    color: var(--gold-dark);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(197, 160, 89, 0.15);
}

.gold-divider {
    width: 70px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* --------------------------------------------------
   2. HEADER & NAVBAR
   -------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.95), rgba(250, 248, 245, 0));
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.96);
    padding: 12px 6%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.site-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
    transition: var(--transition-fast);
}

.site-logo:hover {
    transform: scale(1.03);
}

.drawer-site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.footer-site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-phone-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.btn-phone-group .btn-phone {
    padding: 6px 14px;
    font-size: 0.8rem;
}

/* Single Box Phone Container for Banner */
.banner-phone-box {
    background: var(--gold-gradient);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--gold-glow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
}

.banner-phone-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.banner-phone-numbers {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.banner-phone-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
}

.banner-phone-link:hover {
    background: #ffffff;
    color: var(--gold-dark);
    transform: translateY(-2px);
}

/* Single Box Phone Container for Contact Section */
.contact-phone-single-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
}

.contact-phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.contact-phone-item:hover {
    background: var(--gold-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.25);
}

/* WhatsApp Canlı Destek Card - Compact Alignment */
.social-card.whatsapp {
    align-items: center;
}

.wa-numbers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.wa-number-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid #25d366;
    border-radius: 16px;
    color: #1ea34f;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.wa-number-item:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.btn-phone {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    background: #ffffff;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.btn-phone i {
    color: var(--gold-dark);
}

.btn-phone:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.btn-phone:hover i {
    color: #ffffff;
}

.btn-whatsapp-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-dark);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #FAF8F5;
    border-left: 1px solid var(--border-gold);
    z-index: 2000;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
}

.mobile-drawer.open {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-logo {
    text-align: center;
    margin-top: 20px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.drawer-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.drawer-link:hover {
    color: var(--gold-dark);
    padding-left: 8px;
}

.drawer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.drawer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
}

/* --------------------------------------------------
   3. HERO SECTION
   -------------------------------------------------- */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 6% 80px;
    background: url('../images/hero.jpg') center/cover no-repeat;
    background-color: var(--bg-surface);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250, 248, 245, 0.88) 0%, rgba(250, 248, 245, 0.4) 60%, rgba(250, 248, 245, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.about-tac-official-box {
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tac-official-logo-img {
    height: 65px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.about-card:hover .tac-official-logo-img {
    transform: scale(1.08);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 1px;
    color: #1A1918;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-content p {
    color: #383533;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 650px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gold-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-fast);
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
}

.hero-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--gold-dark);
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-item span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.feature-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold-dark);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* --------------------------------------------------
   4. SECTIONS COMMON
   -------------------------------------------------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text-white);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 14px;
    font-weight: 400;
}

/* --------------------------------------------------
   5. HAKKIMIZDA
   -------------------------------------------------- */
.about-section {
    background: var(--bg-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

.about-card {
    background: #FFFFFF;
    padding: 36px 22px 36px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 36px rgba(197, 160, 89, 0.18);
}

.about-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.09);
    border: 1px solid rgba(197, 160, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--gold-dark);
    margin: 0 auto 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: var(--gold-dark);
    color: #FFFFFF;
    border-color: var(--gold-dark);
    transform: scale(1.06);
}

.about-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #1A1918;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.about-card:hover h3 {
    color: var(--gold-dark);
}

.about-card p {
    font-family: var(--font-body);
    color: #4A4846;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.2px;
    margin: 0;
    flex-grow: 1;
}

.about-banner {
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.88) 0%, rgba(250, 248, 245, 0.95) 100%), url('../images/hero.jpg') center/cover;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 45px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.banner-text {
    max-width: 800px;
    margin: 0 auto;
}

.banner-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.banner-text p {
    color: var(--text-sub);
    font-size: 1rem;
}

/* --------------------------------------------------
   6. ÜRÜNLER
   -------------------------------------------------- */
.products-section {
    background: var(--bg-dark);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-sub);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.18);
}

.product-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #EFECE6;
}

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

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-footer {
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.btn-card-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid #25d366;
    color: #1ea34f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-card-wa:hover {
    background: #25d366;
    color: #fff;
}

/* --------------------------------------------------
   7. GALERİ & KATALOG
   -------------------------------------------------- */
.gallery-section {
    background: var(--bg-surface);
}

.tek-katalog-kutusu {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.katalog-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #EFECE6;
}

.katalog-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.katalog-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.katalog-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #EFECE6;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gold-dark);
    border: 1px solid var(--border-gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--gold-gradient);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: 14px; }
.next-btn { right: 14px; }

.zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--gold-dark);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zoom-btn:hover {
    background: var(--gold-gradient);
    color: #fff;
    transform: scale(1.1);
}

/* Lightbox Modal */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0.94);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 24px;
    user-select: none;
}

.image-modal.active {
    display: flex;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #ffffff;
    font-size: 2.6rem;
    cursor: pointer;
    z-index: 10002;
    transition: color 0.2s, transform 0.2s;
}

.close-modal:hover {
    color: var(--gold-light);
    transform: scale(1.15);
}

.zoom-controls {
    position: absolute;
    top: 20px;
    left: 28px;
    z-index: 10002;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 30px;
}

.zoom-ctrl-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-level-badge {
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 48px;
    text-align: center;
}

.modal-viewport {
    width: 92vw;
    height: 72vh;
    max-width: 1200px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(0, 0, 0, 0.4);
    cursor: grab;
    touch-action: none;
}

.modal-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.08s ease-out;
}

.modal-caption {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
}

.modal-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition-fast);
}

.modal-wa-btn:hover {
    background: #1ea34f;
    transform: scale(1.04);
}

/* --------------------------------------------------
   8. SIKÇA SORULAN SORULAR (FAQ)
   -------------------------------------------------- */
.faq-section {
    background: var(--bg-surface);
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1A1918;
    text-align: left;
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: var(--gold-dark);
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--gold-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    background: #FAF8F5;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 16px 24px 22px;
    font-size: 0.93rem;
    color: #4A4846;
    line-height: 1.7;
    margin: 0;
    border-top: 1px dashed rgba(197, 160, 89, 0.2);
}

/* --------------------------------------------------
   9. İLETİŞİM & SOSYAL MEDYA
   -------------------------------------------------- */
.contact-section {
    background: var(--bg-dark);
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.instagram .social-icon { background: rgba(225, 48, 108, 0.1); color: #e1306c; }
.facebook .social-icon { background: rgba(24, 119, 242, 0.1); color: #1877f2; }
.whatsapp .social-icon { background: rgba(37, 211, 102, 0.1); color: #25d366; }

.social-info h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
}

.social-info p {
    color: var(--text-sub);
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-sub);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
}

.hours-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-sub);
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 6px;
}

.hours-list strong {
    color: var(--gold-dark);
}

/* --------------------------------------------------
   10. FOOTER
   -------------------------------------------------- */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-gold);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --------------------------------------------------
   11. MOBİL UYUM (RESPONSIVE)
   -------------------------------------------------- */
@media (max-width: 992px) {
    .nav-menu, .btn-phone { 
        display: none !important; 
    }
    
    .mobile-toggle { 
        display: flex !important; 
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(197, 160, 89, 0.1);
        border: 1px solid var(--border-gold);
        border-radius: 8px;
        color: var(--gold-dark);
        font-size: 1.3rem;
    }

    .navbar {
        padding: 12px 4% !important;
    }

    .site-logo { 
        width: 180px !important;
        height: auto !important; 
    }

    .hero-content h1 { 
        font-size: 2.5rem !important; 
    }

    .section-title h2 { 
        font-size: 2.3rem !important; 
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 16px !important;
        background: rgba(250, 248, 245, 0.98) !important;
    }

    .site-logo { 
        width: 160px !important; 
    }

    .hero { 
        padding: 110px 20px 50px !important; 
        min-height: auto;
    }

    .hero-content h1 { 
        font-size: 1.9rem !important; 
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .products-grid, .social-cards, .contact-grid { 
        grid-template-columns: 1fr !important;
    }

    .katalog-slider {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .site-logo { 
        width: 140px !important; 
    }

    .section-title h2 {
        font-size: 1.8rem !important;
    }

    .katalog-slider {
        height: 280px;
    }
}