  
      @import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");

      * { font-family: "Merriweather", serif; }

      :root {
        --bg-dark: #2b0f0f;
        --bg-darker: #1a0505;
        --accent: #f3c98b;

        --text-light: #f7f3ee;
        --text-muted: #d0c3b8;
        --card-bg: #ffffff;
        --body-bg: #f8efe1;
      }

      * { box-sizing: border-box; margin: 0; padding: 0; }

      body {
        font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background: var(--body-bg);
        color: #222;
        line-height: 1.5;
      }

      img { max-width: 100%; display: block; }
      a { text-decoration: none; color: inherit; }

      .page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

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

      /* ÜST BANNER */
      .top-banner {
        background: linear-gradient(to bottom, #fdf3e2 0%, #f7e5c3 100%);
        padding: 18px 0;
      }
      .template-brand {
        display: flex; justify-content: space-between; align-items: center;
        font-size: 14px; color: #5a4632;
      }
      .template-brand strong { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

      /* NAVBAR */
      .navbar-wrapper { background: var(--bg-dark); color: var(--text-light); }

      /* HERO */
      .hero-section {
        background: radial-gradient(circle at top left, #3a1717 0, #140404 50%, #100203 100%);
        color: var(--text-light);
        padding: 50px 0 70px;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 56px;
        align-items: center;
      }
      .hero-kicker {
        font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
        color: #c59c7b; margin-bottom: 16px;
      }
      .hero-title { font-family: "Playfair Display", serif; font-size: 40px; line-height: 1.1; margin-bottom: 16px; }
      .hero-description { font-size: 14px; color: var(--text-muted); max-width: 420px; margin-bottom: 28px; }
      .hero-metrics { display: flex; gap: 30px; font-size: 12px; color: var(--text-muted); }
      .metric-label { text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
      .metric-value { color: #fff; font-size: 18px; font-weight: 500; }

      .hero-media { display: grid; grid-template-rows: auto auto; gap: 16px; }
      .hero-main-image { border-radius: 18px; overflow: hidden; background: #000; min-height: 260px; }
      .hero-main-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }

      .hero-bottle-card {
        background: var(--bg-darker);
        border-radius: 16px;
        padding: 18px 18px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border: 1px solid rgba(255,255,255,0.1);
        cursor: pointer;
      }
      .hero-bottle-info p {
        font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
        color: var(--text-muted); margin-bottom: 4px;
      }
      .hero-bottle-info h4 { font-size: 15px; font-weight: 500; }
      .hero-bottle-thumb { width: 60px; height: 140px; display: flex; align-items: center; justify-content: center; }
      .hero-bottle-thumb img { height: 100%; width: auto; object-fit: contain; border-radius: 8px; }

      /* PRODUCTS */
      .products-section { background: #fff; padding: 60px 0 80px; }
      .products-header {
        display: flex; align-items: center; justify-content: space-between;
        margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
      }
      .products-kicker {
        font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
        color: #9c7a4d; margin-bottom: 6px;
      }
      .products-title { font-family: "Playfair Display", serif; font-size: 26px; }

      .rg { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

      /* Input */
      .input-container { position: relative; margin: 0; width: 260px; max-width: 100%; }
      .input-container input[type="text"] {
        font-size: 18px; width: 100%; border: none; border-bottom: 2px solid #ccc;
        padding: 5px 0; background: transparent; outline: none;
      }
      .input-container .label { position: absolute; top: 0; left: 0; color: #ccc; transition: all .3s ease; pointer-events: none; }
      .input-container input[type="text"]:focus ~ .label,
      .input-container input[type="text"]:valid ~ .label { top: -20px; font-size: 14px; color: #333; }
      .input-container .underline {
        position: absolute; bottom: 0; left: 0; height: 2px; width: 100%;
        background: #333; transform: scaleX(0); transition: all .3s ease;
      }
      .input-container input[type="text"]:focus ~ .underline,
      .input-container input[type="text"]:valid ~ .underline { transform: scaleX(1); }

      /* ✅ KATEGORİ CHIP (AÇ/KAPA YOK) */
      .kategori-filter { display: flex; align-items: center; }

      #kategoriMenu {
        display: flex !important;
        position: static !important;
        flex-wrap: wrap;
        gap: 10px;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
      }

      #kategoriMenu li {
        padding: 10px 14px;
        border-radius: 999px;
        cursor: pointer;
        border: 1px solid #e1cdb8;
        background: #fff;
        color: #3b2a1a;
        font-size: 13px;
        transition: .2s ease;
        white-space: nowrap;
        user-select: none;
      }
      #kategoriMenu li:hover { background: #f3c98b; color: #3b180c; }
      #kategoriMenu li.aktif { background: #2b0f0f; color: #fff; border-color: #2b0f0f; }

      /* Grid */
      .products-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }

      .product-card {
        background: var(--card-bg);
        border-radius: 14px;
        padding: 18px 16px 18px;
        border: 1px solid #eee2d8;
        height: 24rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        cursor: pointer;
        transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      }
      .product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); border-color: #e1cdb8; }
      .product-card img { width: 90px; height: 190px; object-fit: contain; }

      /* Daha fazla */
      #dahaFazlaBtn {
        --color: var(--bg-dark);
        font-family: inherit;
        display: inline-block;
        width: 8em;
        height: 2.6em;
        line-height: 2.5em;
        margin: 20px 0 0;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        border: 2px solid var(--bg-dark);
        transition: color .5s;
        z-index: 1;
        font-size: 17px;
        border-radius: 6px;
        font-weight: 500;
        color: var(--color);
        background: transparent;
      }
      #dahaFazlaBtn:before {
        content: "";
        position: absolute;
        z-index: -1;
        background: var(--color);
        height: 150px;
        width: 200px;
        border-radius: 50%;
        top: 100%;
        left: 100%;
        transition: all .7s;
      }
      #dahaFazlaBtn:hover { color: #fff; }
      #dahaFazlaBtn:hover:before { top: -30px; left: -30px; }
      #dahaFazlaBtn:active:before { background: var(--bg-dark); transition: background 0s; }

      /* Responsive */
      @media (max-width: 1024px) {
        .hero-grid { grid-template-columns: 1fr; gap: 36px; }
        .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
      }
      @media (max-width: 768px) {
        .hero-title { font-size: 32px; }
        .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
      }
      @media (max-width: 576px) {
        .products-grid { grid-template-columns: 1fr; }
        .rg { flex-direction: column; align-items: stretch; }
        .input-container { width: 100%; }
      }
    