:root {
      --cream:    #FFF8EE;
      --caramel:  #C8893A;
      --dark:     #1C1C1C;
      --mid:      #5A4032;
      --light-bg: #FFF3E0;
      --accent:   #E84393;
      --whatsapp: #25D366;
    }

    * { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--dark);
    }

    /* ── NAV ── */
    .navbar {
      background: #fff;
      border-bottom: 2px solid var(--caramel);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--caramel) !important;
      letter-spacing: 0.5px;
    }
    .navbar-brand span { color: var(--mid); }
    .nav-link {
      color: var(--mid) !important;
      font-weight: 500;
      transition: color .2s;
    }
    .nav-link:hover, .nav-link.active { color: var(--caramel) !important; }

    /* ── HERO ── */
    #anasayfa {
      background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 60%, #FFCC80 100%);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }
    #anasayfa::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(200,137,58,.15) 0%, transparent 70%);
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: var(--mid);
      line-height: 1.2;
    }
    .hero-title em { color: var(--caramel); font-style: italic; }
    .hero-sub {
      font-size: 1.1rem;
      color: #7B5B3A;
      max-width: 520px;
    }
    .btn-primary-custom {
      background: var(--caramel);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 12px 32px;
      font-weight: 500;
      transition: background .2s, transform .15s;
    }
    .btn-primary-custom:hover { background: var(--mid); transform: translateY(-2px); color: #fff; }

    .btn-outline-custom {
      background: transparent;
      color: var(--caramel);
      border: 2px solid var(--caramel);
      border-radius: 50px;
      padding: 11px 30px;
      font-weight: 500;
      transition: all .2s;
    }
    .btn-outline-custom:hover { background: var(--caramel); color: #fff; }

    .hero-img-wrap {
      position: relative;
      text-align: center;
    }
    .hero-img-wrap img {
      max-width: 380px;
      width: 100%;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      box-shadow: 0 20px 60px rgba(200,137,58,.3);
      object-fit: cover;
    }
    .badge-float {
      position: absolute;
      background: var(--caramel);
      color: #fff;
      border-radius: 50px;
      padding: 8px 20px;
      font-size: .85rem;
      font-weight: 500;
      box-shadow: 0 4px 15px rgba(0,0,0,.15);
    }
    .badge-float.b1 { top: 10%; right: 5%; }
    .badge-float.b2 { bottom: 12%; left: 5%; background: var(--mid); }

    /* ── SECTION TITLES ── */
    .section-label {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--caramel);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--mid);
    }
    .divider {
      width: 60px; height: 3px;
      background: var(--caramel);
      border-radius: 2px;
      margin: 12px 0 24px;
    }

    /* ── HAKKIMIZDA ── */
    #hakkimizda { padding: 90px 0; background: #fff; }
    .stat-card {
      text-align: center;
      padding: 24px 16px;
      border-radius: 16px;
      background: var(--light-bg);
      border-bottom: 3px solid var(--caramel);
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--caramel);
    }
    .stat-label { color: var(--mid); font-size: .9rem; }

    .feature-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
    .feature-icon {
      width: 42px; height: 42px; min-width: 42px;
      background: var(--light-bg);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--caramel); font-size: 1.2rem;
    }
    .about-img {
      border-radius: 20px;
      box-shadow: 0 16px 50px rgba(200,137,58,.2);
      width: 100%;
      object-fit: cover;
      max-height: 420px;
    }

    /* ── ÜRÜNLER ── */
    #urunler { padding: 90px 0; background: var(--cream); }
    .product-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform .25s, box-shadow .25s;
      height: 100%;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(200,137,58,.2); }
    .product-card img {
      width: 100%; height: 220px;
      object-fit: cover;
    }
    .product-body { padding: 20px; }
    .product-body h5 {
      font-family: 'Playfair Display', serif;
      color: var(--mid);
    }
    .product-body p { font-size: .9rem; color: #7B5B3A; }
    .product-tag {
      display: inline-block;
      background: var(--light-bg);
      color: var(--caramel);
      border-radius: 50px;
      font-size: .75rem;
      font-weight: 600;
      padding: 3px 12px;
      margin-bottom: 8px;
    }

    /* ── İLETİŞİM & SİPARİŞ ── */
    #iletisim { padding: 90px 0; background: #fff; }
    .form-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 36px;
      border-top: 4px solid var(--caramel);
    }
    .form-card h4 {
      font-family: 'Playfair Display', serif;
      color: var(--mid);
    }
    .form-control, .form-select {
      border-radius: 10px;
      border: 1.5px solid #e0c9a6;
      background: #fff;
      color: var(--dark);
      padding: 10px 14px;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--caramel);
      box-shadow: 0 0 0 3px rgba(200,137,58,.15);
    }
    .form-label { font-weight: 500; color: var(--mid); font-size: .9rem; }

    .contact-info-card {
      background: var(--mid);
      color: #fff;
      border-radius: 20px;
      padding: 36px;
      height: 100%;
    }
    .contact-info-card h4 { font-family: 'Playfair Display', serif; }
    .contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
    .contact-icon {
      width: 38px; height: 38px; min-width: 38px;
      background: rgba(255,255,255,.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .contact-row small { opacity: .7; font-size: .8rem; }
    .contact-row p { margin: 0; font-size: .95rem; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,.7);
      padding: 32px 0;
      text-align: center;
      font-size: .88rem;
    }
    footer a { color: var(--caramel); text-decoration: none; }

    /* ── WHATSAPP BUTTON ── */
    .wa-btn {
      position: fixed;
      bottom: 28px; right: 28px;
      background: var(--whatsapp);
      color: #fff;
      width: 58px; height: 58px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem;
      box-shadow: 0 6px 24px rgba(37,211,102,.45);
      z-index: 9999;
      text-decoration: none;
      transition: transform .2s;
    }
    .wa-btn:hover { transform: scale(1.1); color: #fff; }
    .wa-tooltip {
      position: fixed;
      bottom: 36px; right: 96px;
      background: #fff;
      color: var(--dark);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 500;
      box-shadow: 0 4px 16px rgba(0,0,0,.15);
      z-index: 9998;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }
    .wa-btn:hover ~ .wa-tooltip,
    .wa-tooltip:hover { opacity: 1; }

    /* ── UTILS ── */
    .bg-caramel { background: var(--caramel); }
    .text-caramel { color: var(--caramel); }
    .text-mid { color: var(--mid); }