/* ============================================================
   DuyguFlowers - Fildişi & Şampanya Teması (Light Luxe)
   Fildişi/krem zemin · espresso metin · şampanya altını vurgular
   ============================================================ */
:root {
    --bg:        #f7f2ea;   /* sayfa zemini (sıcak fildişi) */
    --bg-card:   #fffdf8;   /* kartlar / açık yüzeyler */
    --cream:     #faf6ee;   /* paneller / bantlar */
    --ink:       #221d17;   /* ana metin & başlık (espresso) */
    --ink-soft:  #5b5349;   /* yumuşak gövde metni */
    --muted:     #8a8175;   /* ikincil / ipucu */
    --line:      #e7ded0;   /* ince sınırlar */
    --gold:      #b0884a;   /* şampanya altını */
    --gold-d:    #8f6a2e;   /* koyu altın (metin/hover) */
    --gold-soft: #d8bd86;
    --espresso:  #201b15;   /* footer & koyu vurgular */
    --espresso-2:#2c2419;
    --white:     #ffffff;
    --shadow:    0 18px 50px rgba(60,45,20,.10);
    --serif:     'Cormorant Garamond', Georgia, serif;
    --sans:      'Jost', 'Segoe UI', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); }
.brand-accent { color: var(--gold-d); }

/* Bölüm başlık bloğu */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-d);
    margin-bottom: 12px;
    display: inline-block;
}
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 17px; }
.divider {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 18px auto 0;
    position: relative;
}
.divider::before, .divider::after {
    content: ''; position: absolute; top: 50%; width: 5px; height: 5px;
    background: var(--gold); border-radius: 50%; transform: translateY(-50%);
}
.divider::before { left: -12px; }
.divider::after  { right: -12px; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--sans); font-weight: 500; font-size: 15px;
    letter-spacing: .4px;
    padding: 14px 30px;
    border-radius: 2px;
    cursor: pointer; border: 1px solid transparent;
    transition: .25s ease;
}
.btn-gold { background: var(--gold); color: #241a0e; }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-2px); }
.btn-outline { border-color: var(--gold); color: var(--gold-d); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #241a0e; }
.btn-dark { background: var(--espresso); color: #f3ece0; }
.btn-dark:hover { background: var(--espresso-2); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #073220; }
.btn-wa:hover { background: #1fb557; transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 16px; }

/* ============================================================
   Header / Navigasyon  (açık zemin · koyu metin)
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    transition: .3s ease;
}
.site-header.scrolled {
    background: rgba(255,253,248,.98);
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(60,45,20,.10);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { color: var(--gold); display: inline-flex; align-items: center; }
.brand-text { font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .5px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a {
    color: var(--ink); font-size: 15px; font-weight: 400;
    letter-spacing: .5px; position: relative; padding: 4px 0;
    transition: color .2s;
}
.main-nav > a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 1.5px; background: var(--gold); transition: width .25s;
}
.main-nav > a:not(.nav-cta):hover { color: var(--gold-d); }
.main-nav > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: var(--gold); color: #241a0e !important;
    padding: 9px 18px; border-radius: 2px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--gold-d); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }

/* ============================================================
   Hero  (fildişi gradyan · espresso metin)
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    background:
        radial-gradient(circle at 78% 26%, rgba(216,189,134,.30), transparent 55%),
        linear-gradient(158deg, #fcf8f0 0%, #f5ecdd 58%, #efe3cd 100%);
    color: var(--ink);
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute; right: -70px; bottom: -80px;
    width: 440px; height: 440px;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2032%2032'%20fill='%23b0884a'%3E%3Cellipse%20cx='16'%20cy='7.5'%20rx='3'%20ry='5.3'/%3E%3Cellipse%20cx='16'%20cy='7.5'%20rx='3'%20ry='5.3'%20transform='rotate(60%2016%2016)'/%3E%3Cellipse%20cx='16'%20cy='7.5'%20rx='3'%20ry='5.3'%20transform='rotate(120%2016%2016)'/%3E%3Cellipse%20cx='16'%20cy='7.5'%20rx='3'%20ry='5.3'%20transform='rotate(180%2016%2016)'/%3E%3Cellipse%20cx='16'%20cy='7.5'%20rx='3'%20ry='5.3'%20transform='rotate(240%2016%2016)'/%3E%3Cellipse%20cx='16'%20cy='7.5'%20rx='3'%20ry='5.3'%20transform='rotate(300%2016%2016)'/%3E%3Ccircle%20cx='16'%20cy='16'%20r='3.3'/%3E%3C/svg%3E") no-repeat center / contain;
    opacity: .10;
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 680px; padding: 120px 0; }
.hero .eyebrow { color: var(--gold-d); }
.hero h1 {
    color: var(--ink);
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 600; line-height: 1.05;
    margin: 10px 0 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-d); }
.hero p { font-size: 19px; color: var(--ink-soft); max-width: 520px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: var(--muted); font-size: 13px; letter-spacing: 2px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after { content: ''; width: 1px; height: 40px; background: rgba(176,136,74,.55); animation: cue 1.8s infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Güven şeridi */
.trust-bar { background: var(--cream); color: var(--ink); padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 18px; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.trust-item .ti-ico { color: var(--gold); font-size: 26px; }
.trust-item strong { font-family: var(--serif); font-size: 19px; display: block; color: var(--ink); }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ============================================================
   Ürün kartları
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: .3s ease;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.product-media {
    position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #efe7d8;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media .ph {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: rgba(176,136,74,.42); font-size: 64px;
}
.badge-featured {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold); color: #241a0e;
    font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 11px; border-radius: 2px; font-weight: 600;
}
.product-cat {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(32,27,21,.78));
    color: #f5efe2; padding: 26px 14px 12px; font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase;
}
.product-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 23px; margin-bottom: 6px; }
.product-desc { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--ink); }
.product-price small { font-size: 14px; color: var(--gold-d); }
.product-link { color: var(--gold-d); font-size: 14px; font-weight: 500; letter-spacing: .5px; }
.product-link:hover { color: var(--ink); }

/* ============================================================
   Hakkımızda
   ============================================================ */
.about { background: var(--bg-card); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .eyebrow { color: var(--gold-d); }
.about-text h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); font-size: 17px; margin-bottom: 16px; }
.about-figure {
    position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
    background: linear-gradient(160deg, #f0e4ce 0%, #e3d2ac 100%);
    display: flex; align-items: center; justify-content: center;
}
.about-figure .deco { font-size: 200px; color: rgba(176,136,74,.26); }
.about-figure::after {
    content: ''; position: absolute; inset: 14px; border: 1px solid rgba(176,136,74,.5); border-radius: 2px;
}
.about-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Galeri
   ============================================================ */
.gallery { background: var(--cream); color: var(--ink); }
.gallery .section-head h2 { color: var(--ink); }
.gallery .eyebrow { color: var(--gold-d); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px; gap: 14px;
}
.gallery-item {
    overflow: hidden; border-radius: 3px; position: relative; cursor: pointer;
    background: #e7ddcc;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .cap {
    position: absolute; inset: 0; display: flex; align-items: flex-end;
    padding: 14px; background: linear-gradient(transparent 55%, rgba(32,27,21,.72));
    color: #f5efe2; font-size: 13px; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .cap { opacity: 1; }
.gallery-empty { text-align: center; color: var(--muted); padding: 30px; }

/* ============================================================
   İletişim
   ============================================================ */
.contact { background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.contact-info h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 24px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-list .ci-ico {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--espresso); color: var(--gold-soft);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-list .ci-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-d); }
.contact-list .ci-val { font-size: 17px; color: var(--ink); }
.contact-cta { margin-top: 28px; }
.contact-map {
    border-radius: 4px; overflow: hidden; min-height: 360px;
    background: #f1e8d8; border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.contact-map .map-ph {
    height: 100%; min-height: 360px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--muted); gap: 10px;
}
.contact-map .map-ph span { font-size: 50px; color: rgba(176,136,74,.55); }

/* ============================================================
   Ürünler sayfası
   ============================================================ */
.page-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(216,189,134,.28), transparent 55%),
        linear-gradient(158deg, #fcf8f0, #f1e6d2);
    color: var(--ink); padding: 170px 0 70px; text-align: center; position: relative;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--ink); font-size: clamp(38px, 6vw, 64px); }
.page-hero p { color: var(--ink-soft); margin-top: 10px; }
.page-hero .breadcrumb { font-size: 13px; letter-spacing: 1px; color: var(--gold-d); margin-bottom: 12px; text-transform: uppercase; }

.filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    margin-bottom: 46px;
}
.filter-chip {
    padding: 10px 22px; border: 1px solid var(--line); border-radius: 40px;
    font-size: 14px; color: var(--muted); background: var(--bg-card); transition: .2s; cursor: pointer;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-d); }
.filter-chip.active { background: var(--espresso); color: #f3ece0; border-color: var(--espresso); }

/* ============================================================
   Ürün detay
   ============================================================ */
.detail { padding: 150px 0 90px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.detail-gallery .main-img {
    aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: #efe7d8;
    border: 1px solid var(--line);
}
.detail-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery .main-img .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(176,136,74,.42); font-size: 90px; }
.detail-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.detail-thumbs img {
    width: 78px; height: 78px; object-fit: cover; border-radius: 3px;
    border: 2px solid transparent; cursor: pointer; opacity: .7; transition: .2s;
}
.detail-thumbs img:hover, .detail-thumbs img.active { border-color: var(--gold); opacity: 1; }
.detail-info .cat-tag { color: var(--gold-d); letter-spacing: 2px; text-transform: uppercase; font-size: 12px; font-weight: 600; }
.detail-info h1 { font-size: clamp(34px, 4.5vw, 52px); margin: 8px 0 16px; }
.detail-price { font-family: var(--serif); font-size: 40px; color: var(--ink); font-weight: 600; margin-bottom: 22px; }
.detail-desc { color: var(--ink-soft); font-size: 17px; line-height: 1.8; margin-bottom: 28px; white-space: pre-line; }
.detail-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.detail-note { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 14px; background: var(--bg-card); border: 1px solid var(--line); padding: 16px; border-radius: 4px; }
.detail-note .di { color: var(--gold-d); font-size: 18px; }
.back-link { display: inline-block; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.back-link:hover { color: var(--gold-d); }

/* boş durum */
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state .es-ico { font-size: 60px; color: rgba(176,136,74,.45); }
.empty-state h3 { font-size: 26px; margin: 14px 0 8px; color: var(--ink); }

/* ============================================================
   Footer  (derin espresso · krem metin · altın vurgu)
   ============================================================ */
.site-footer { background: var(--espresso); color: rgba(245,238,225,.76); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { font-family: var(--serif); font-size: 28px; color: #f5efe2; margin-bottom: 10px; }
.footer-brand .brand-accent { color: var(--gold-soft); }
.footer-tag { font-size: 15px; max-width: 280px; }
.footer-social { margin-top: 18px; display: flex; gap: 16px; }
.footer-social a { color: var(--gold-soft); font-size: 14px; letter-spacing: .5px; border-bottom: 1px solid transparent; }
.footer-social a:hover { border-color: var(--gold); }
.footer-col h4 { color: #f5efe2; font-size: 20px; margin-bottom: 16px; }
.footer-list { list-style: none; }
.footer-list li { padding: 6px 0; font-size: 15px; }
.footer-list a:hover { color: var(--gold-soft); }
.footer-hours { font-size: 15px; margin-bottom: 16px; }
.footer-menu { display: flex; flex-direction: column; gap: 7px; }
.footer-menu a { font-size: 15px; }
.footer-menu a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0; font-size: 13.5px; color: rgba(245,238,225,.55); text-align: center; }

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 10px 30px rgba(37,211,102,.4);
    transition: .25s; animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0; z-index: 200; background: rgba(28,22,16,.94);
    display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 88vh; border-radius: 4px; }
.lightbox .lb-close { position: absolute; top: 22px; right: 30px; color: #f5efe2; font-size: 38px; cursor: pointer; line-height: 1; }

/* ---------- Reveal animasyonu kaldırıldı ----------
   İçerik her zaman görünür; ekran altındaki ürünlerin gizli kalması sorununu önler. */
.reveal, .reveal.in { opacity: 1 !important; transform: none !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
    .about-inner, .contact-inner, .detail-grid { grid-template-columns: 1fr; gap: 38px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
    .main-nav {
        position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 320px;
        background: #fbf7ef; flex-direction: column; align-items: flex-start;
        padding: 100px 32px 32px; gap: 22px;
        transform: translateX(100%); transition: transform .3s ease; box-shadow: -20px 0 60px rgba(60,45,20,.18);
        border-left: 1px solid var(--line);
    }
    .main-nav.open { transform: translateX(0); }
    .nav-toggle { display: flex; z-index: 110; }
    .site-header { background: rgba(252,248,240,.94); border-bottom: 1px solid var(--line); }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .section { padding: 70px 0; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-inner { padding: 104px 0 84px; }
    .detail { padding: 116px 0 64px; }

    /* Güven şeridi: 2x2 düzen */
    .trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 10px; }
    .trust-item { justify-content: center; }

    /* Hero butonları: eşit, tam genişlik */
    .hero-actions { width: 100%; gap: 12px; }
    .hero-actions .btn { flex: 1 1 100%; justify-content: center; }

    /* Ürün detay aksiyonları tam genişlik */
    .detail-actions { width: 100%; gap: 12px; }
    .detail-actions .btn,
    .detail-actions form,
    .detail-actions form .btn { flex: 1 1 100%; width: 100%; justify-content: center; }

    /* Sayfa başlığı (ürünler/detay) üst boşluğu */
    .page-hero { padding: 128px 0 54px; }
    .section { padding: 60px 0; }
    .section-head { margin-bottom: 38px; }

    /* Galeri: tek sütun daha ferah */
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }

    /* İletişim kartı boşlukları */
    .contact-inner { gap: 30px; }
}
