    html,body{margin:0;padding:0;height:100%}
    :root{color-scheme:light}
    body{font-family:'Montserrat',sans-serif;background:var(--page-bg,#f8f5ef);color:#000;overflow-x:hidden}
    .page-wrapper{display:flex;flex-direction:column;min-height:100vh}

    /* ================= HEADER ================= */
    .header{
      position:fixed;top:0;left:0;right:0;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 12px;
      min-height:108px;
      background:#0f172a;
      background-size:cover;
      background-repeat:no-repeat;
      background-position:center 40%;
      box-shadow:0 8px 24px rgba(2,6,23,.14);
      z-index:1000;
      transition:padding .24s cubic-bezier(.2,.7,.2,1), min-height .24s cubic-bezier(.2,.7,.2,1), box-shadow .24s ease, background-position .25s ease;
      will-change:padding,min-height;
      color:#fff;
      animation:headerIntro .4s cubic-bezier(.2,.8,.2,1);
    }
    .header::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.36),rgba(0,0,0,.24));
      z-index:-1;
    }

    .header.brand-loading{
      background:linear-gradient(135deg,#0f172a 0%, #1e293b 100%);
    }

    .header.brand-loading .logo{
      border-color:rgba(255,255,255,.22);
      background:
        linear-gradient(110deg, rgba(255,255,255,.10) 8%, rgba(255,255,255,.2) 18%, rgba(255,255,255,.10) 33%);
      background-size:200% 100%;
      animation:brandShimmer 1.4s linear infinite;
    }

    .header.brand-loading .header-text h1,
    .header.brand-loading .header-text p{
      color:transparent;
      text-shadow:none;
      border-radius:7px;
      background:
        linear-gradient(110deg, rgba(255,255,255,.12) 8%, rgba(255,255,255,.22) 18%, rgba(255,255,255,.12) 33%);
      background-size:200% 100%;
      animation:brandShimmer 1.4s linear infinite;
    }
    .header.brand-loading .header-text h1{max-width:min(54vw,340px)}
    .header.brand-loading .header-text p{max-width:min(42vw,240px)}

    .header.brand-error{
      background:linear-gradient(135deg,#1f2937 0%, #374151 100%);
    }

    .logo-section{
      display:flex;
      align-items:center;
      gap:10px;
      flex:1 1 auto;
      min-width:0;
    }
    .logo{
      width:84px;height:84px;object-fit:cover;
      border-radius:10px;
      padding:2px;
      background:rgba(0,0,0,.08);
      border:1px solid rgba(255,255,255,.24);
      box-sizing:border-box;
      flex:0 0 auto;
      transition:width .24s ease,height .24s ease,padding .24s ease,border .24s ease,box-shadow .24s ease;
    }
    .header-text{
      display:flex;
      flex-direction:column;
      flex:1 1 auto;
      min-width:0;
      color:#fff;
      text-shadow:0 1px 8px rgba(0,0,0,.55);
      transition:opacity .2s ease;
    }
    .header-text h1{
      margin:0;
      font-size:clamp(20px, 3.2vw, 34px);
      line-height:1.12;
      font-weight:700;
      color:#fff;
      min-height:1.12em;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .header-text p{
      margin:2px 0 0;
      font-size:clamp(12px, 1.7vw, 16px);
      line-height:1.15;
      font-weight:500;
      color:#fff;
      opacity:.96;
      min-height:1.15em;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    /* Sağ aksiyonlar */
    .header-actions{
      display:flex;
      flex-direction:column;
      gap:8px;
      align-items:flex-end;
      flex:0 0 auto;
      margin-left:6px;
    }

    .company-btn, .lang-btn{
      display:inline-flex;align-items:center;justify-content:center;
      width:40px;height:40px;border-radius:11px;
      border:1px solid rgba(255,255,255,.45);
      background:rgba(255,255,255,.15);
      backdrop-filter: blur(5px);
      cursor:pointer;
      transition:transform .16s ease, background .18s ease, width .24s ease, height .24s ease, border-radius .24s ease, box-shadow .2s ease;
      overflow:hidden;
      padding:0;
    }
    .company-btn:hover, .lang-btn:hover{
      transform:translateY(-1px);
      background:rgba(255,255,255,.27);
      box-shadow:0 6px 12px rgba(0,0,0,.2);
    }
    .company-btn i{font-size:19px; color:#fff}
    .lang-flag{ font-size:17px; line-height:1; }

    /* ============ SCROLLED STATE (logo kaybolmadan kompakt) ============ */
    .header.scrolled{
      padding:8px 10px;
      min-height:74px;
      box-shadow:0 8px 18px rgba(2,6,23,.18);
      background-position:center 40%;
    }
    .header.scrolled .logo{
      width:64px;
      height:64px;
      padding:1px;
    }
    .header.scrolled .header-text{
      opacity:.98;
    }
    .header.scrolled .header-actions{
      flex-direction:row;
      gap:6px;
      align-items:center;
    }
    .header.scrolled .header-text h1{font-size:clamp(18px, 2.2vw, 24px)}
    .header.scrolled .header-text p{font-size:13px}
    .header.scrolled .company-btn,
    .header.scrolled .lang-btn{
      width:34px;height:34px;border-radius:10px;
    }
    .header.scrolled .lang-flag{font-size:17px}
    .header.scrolled .company-btn i{font-size:16px}

    /* Ana içerik üst boşluk */
    .main-content{flex:1;margin-top:124px}
    .header.scrolled ~ .main-content{margin-top:124px}

    @keyframes headerIntro{
      from{opacity:.2;transform:translateY(-14px)}
      to{opacity:1;transform:translateY(0)}
    }
    @keyframes brandShimmer{
      0%{background-position:200% 0}
      100%{background-position:-200% 0}
    }

    /* ============ Duyuru Barı ============ */
    .announce-bar{
      margin:10px 10px 4px;
      padding:10px 12px;
      border:1px solid #e6edf5;
      border-radius:14px;
      background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
      box-shadow:0 8px 20px rgba(15,23,42,.06);
      display:grid;
      grid-template-columns:auto 1fr;
      align-items:center;
      gap:10px;
      overflow:hidden;
    }
    .announce-icon{
      width:34px;height:34px;
      display:grid;place-items:center;
      color:var(--theme-orange-accent);font-size:16px;line-height:1;
      flex:0 0 34px;
    }
    .announce-marquee{
      position:relative;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      scroll-snap-type:x mandatory;
      scroll-behavior:smooth;
      min-width:0;
      touch-action:pan-x;
      user-select:auto;
    }
    .announce-marquee::-webkit-scrollbar{display:none}
    .announce-marquee.is-static{
      overflow:hidden;
      cursor:default;
    }
    .announce-track{
      display:flex;align-items:stretch;gap:12px;width:100%;
      padding-bottom:2px;
    }
    .announce-marquee.is-static .announce-track{
      width:100%;
    }
    .announce-marquee.is-static .announce-msg{
      min-width:0;
      max-width:100%;
      width:100%;
      padding-right:0;
    }
    .announce-msg{
      min-width:100%;
      max-width:100%;
      background:transparent;
      border:0;
      border-radius:0;
      padding:2px 10px 2px 0;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:2px;
      white-space:normal;
      position:relative;
      scroll-snap-align:start;
      scroll-snap-stop:always;
    }
    .announce-msg + .announce-msg{
      margin-left:0;
      padding-left:0;
    }
    .announce-msg + .announce-msg::before{
      display:none;
    }
    .announce-msg strong{
      color:var(--theme-orange-accent);font-size:13px;line-height:1.2;font-weight:700;
      overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
    }
    .announce-msg span{
      color:var(--theme-orange-soft-hover);font-size:12px;line-height:1.3;
      display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;
    }
    .announce-dots{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-height:8px;
      margin:1px 10px 6px;
    }
    .announce-dot{
      width:5px;
      height:5px;
      border-radius:50%;
      background:color-mix(in srgb, var(--theme-orange-accent) 24%, #cbd5e1);
      transition:transform .16s ease, background-color .18s ease, opacity .18s ease;
      opacity:.75;
    }
    .announce-dot.is-active{
      width:6px;
      height:6px;
      transform:scale(1.06);
      background:var(--theme-orange-accent);
      opacity:1;
    }

    /* ============ Arama ============ */
    #searchContainer{padding:18px 10px 10px;background:#fff}
    #searchContainer input{width:100%;padding:10px 12px;border:1px solid #ccc;border-radius:10px;font-size:18px}

    /* ============ V2 Menü Bölümleri ============ */
    .menu-section{
      padding:2px clamp(10px, 2.6vw, 24px) 14px;
    }
    .section-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin:8px 0 12px;
    }
    .section-head h2{
      margin:0;
      display:flex;
      align-items:center;
      gap:10px;
      font-family:'Sora','Montserrat',sans-serif;
      font-size:clamp(18px, 2vw, 23px);
      color:#262626;
      font-weight:600;
      letter-spacing:-.01em;
      line-height:1.1;
    }
    .section-head .head-icon{
      color:var(--theme-orange);
      font-size:22px;
      line-height:1;
    }
    /* Öne çıkanlar */
    .featured-list{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .featured-item{
      border:0;
      background:#fff;
      border-radius:16px;
      padding:10px 12px;
      display:flex;
      align-items:center;
      gap:10px;
      width:100%;
      text-align:left;
      box-shadow:0 8px 18px rgba(15, 23, 42, .08);
      cursor:pointer;
      transition:transform .18s ease, box-shadow .2s ease;
    }
    .featured-item:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 22px rgba(15, 23, 42, .12);
    }
    .featured-thumb{
      width:56px;
      height:56px;
      border-radius:50%;
      flex:0 0 auto;
      object-fit:cover;
      box-shadow:0 4px 10px rgba(0,0,0,.14);
      background:#ececec;
    }
    .featured-meta{
      min-width:0;
      flex:1 1 auto;
      display:flex;
      flex-direction:column;
      gap:3px;
    }
    .featured-name{
      margin:0;
      font-family:'Sora','Montserrat',sans-serif;
      font-size:clamp(15px, 1.7vw, 19px);
      font-weight:600;
      line-height:1.15;
      color:#202020;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .featured-sub{
      margin:0;
      font-family:'Sora','Montserrat',sans-serif;
      font-size:clamp(13px, 1.5vw, 16px);
      color:#808080;
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    /* Kategoriler */
    #categoriesList.categories-container{
      display:grid;
      grid-template-columns:repeat(var(--category-cols, 2), minmax(0, 1fr));
      gap:14px;
      align-items:stretch;
    }
    #categoriesList .category-card{
      display:flex;
      flex-direction:column;
      border-radius:16px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 20px rgba(15, 23, 42, .07);
      cursor:pointer;
      transition:transform .2s ease, box-shadow .22s ease;
      min-width:0;
      border:1px solid rgba(15, 23, 42, .04);
      appearance:none;
      -webkit-appearance:none;
      text-align:left;
      padding:0;
      width:100%;
      touch-action:manipulation;
    }
    #categoriesList .category-card:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 26px rgba(15, 23, 42, .12);
    }
    #categoriesList .cat-thumb{
      width:100%;
      aspect-ratio:16/9;
      background:#ececec center/cover no-repeat;
      position:relative;
      z-index:2;
    }
    #categoriesList .cat-thumb-img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    #categoriesList .cat-icon{
      position:absolute;
      left:10px;
      bottom:-15px;
      width:30px;
      height:30px;
      border-radius:50%;
      background:var(--theme-orange);
      color:#fff;
      display:grid;
      place-items:center;
      box-shadow:0 5px 10px rgba(0,0,0,.2);
      font-size:13px;
      z-index:4;
    }
    #categoriesList .cat-body{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:10px;
      padding:18px 12px 12px;
      position:relative;
      z-index:1;
    }
    #categoriesList .cat-main{
      min-width:0;
      flex:1 1 auto;
    }
    #categoriesList .cat-title{
      margin:0;
      font-family:'Sora','Montserrat',sans-serif;
      font-size:clamp(16px, 1.9vw, 21px);
      line-height:1.15;
      font-weight:600;
      color:#1f2937;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    #categoriesList .cat-count{
      margin:4px 0 0;
      font-family:'Sora','Montserrat',sans-serif;
      font-size:clamp(13px, 1.35vw, 16px);
      color:#727272;
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    #categoriesList .cat-go{
      width:28px;
      height:28px;
      border-radius:50%;
      background:var(--theme-orange);
      border:0;
      color:#fff;
      display:grid;
      place-items:center;
      font-size:12px;
      flex:0 0 auto;
      cursor:pointer;
      box-shadow:0 4px 8px var(--theme-orange-shadow-strong);
      pointer-events:none;
    }

    /* Footer */
    .footer{
      margin-top:auto;
      background:#f5f5f5;
      padding:10px clamp(10px, 2.6vw, 24px) 0;
      color:#222;
    }
    .footer-links{
      background:#fff;
      border-radius:22px;
      padding:10px 8px;
      box-shadow:0 8px 18px rgba(15,23,42,.08);
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      overflow:hidden;
      margin-bottom:12px;
    }
    .footer-link{
      text-decoration:none;
      color:#3b3b3b;
      min-width:0;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:8px 4px;
      position:relative;
    }
    .footer-link:not(:last-child)::after{
      content:"";
      position:absolute;
      right:0;
      top:10%;
      width:1px;
      height:80%;
      background:#ededed;
    }
    .footer-link i{
      color:var(--theme-orange);
      font-size:24px;
      line-height:1;
    }
    .footer-link span{
      font-size:clamp(13px, 1.5vw, 18px);
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:100%;
    }
    .footer-copy{
      margin:0 -24px;
      padding:12px clamp(10px, 2.6vw, 24px) 14px;
      background:#f0ece9;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:0;
      text-align:center;
      font-size:clamp(14px, 1.7vw, 20px);
      color:#3f3f3f;
    }
    .footer-copy strong{
      color:#1f2937;
      letter-spacing:.02em;
    }
    .footer-hidden{ display:none !important; }

    @media (max-width:980px){
      .featured-list{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width:640px){
      .menu-section{
        padding:2px 10px 12px;
      }
      .section-head h2{
        font-size:19px;
      }
      .featured-list{
        display:flex;
        gap:10px;
        overflow-x:auto;
        padding-bottom:4px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        -ms-overflow-style:none;
      }
      .featured-list::-webkit-scrollbar{
        display:none;
      }
      .featured-item{
        flex:0 0 auto;
        width:fit-content;
        min-width:210px;
        max-width:88vw;
        scroll-snap-align:start;
      }
      .featured-meta{
        flex:0 1 auto;
      }
      .featured-name{
        max-width:48vw;
      }
      .featured-sub{
        max-width:48vw;
      }
      .footer-copy{
        margin:0 -10px;
      }
    }
    @media (max-width:420px){
      .footer-links{
        grid-template-columns:repeat(2,minmax(0,1fr));
        row-gap:8px;
      }
      .footer-link:nth-child(2)::after{
        display:none;
      }
    }

    /* ============ WiFi Modal ============ */
    .wifi-modal{display:none;position:fixed;inset:0;z-index:3000;background:rgba(0,0,0,.5);backdrop-filter:blur(2px)}
    .wifi-modal-content{background:#fff;max-width:300px;margin:15% auto;padding:20px;border-radius:10px;position:relative;text-align:center}
    .wifi-modal-content h2{margin-bottom:10px;font-size:18px}
    .wifi-modal-content p{margin:0;font-size:16px}
    .wifi-close-btn{position:absolute;right:15px;top:15px;font-size:22px;cursor:pointer;background:none;border:0;color:#666}
    .wifi-close-btn:hover{color:#000}

    /* ============ ŞİRKET PANELİ ============ */
    .drawer-overlay{
      position:fixed; inset:0; background:rgba(0,0,0,.35);
      opacity:0; pointer-events:none; transition:opacity .25s ease; z-index:2000
    }
    .drawer-overlay.show{ opacity:1; pointer-events:auto }

    .drawer{
      position:fixed; inset:0; z-index:2001;
      background:var(--page-bg,#f8f5ef); display:flex; flex-direction:column;
      transform:translateX(100%); transition:transform .3s cubic-bezier(.2,.7,.2,1);
      overflow-y:auto;
      -webkit-overflow-scrolling:touch;
    }
    .drawer.show{ transform:translateX(0) }

    /* Fotoğraf artık scroll ile yukarı gider (sabit değil) */
    .drawer-header{
      position:relative;
      height:168px;
      background:#f3f4f6 center/cover no-repeat;
      border-bottom:1px solid #e5e7eb;
      flex:0 0 auto;
    }
    .drawer-close{
      position:absolute; top:10px; right:10px;
      background:#fff; border:1px solid #e5e7eb; border-radius:10px;
      width:36px; height:36px; display:grid; place-items:center; cursor:pointer
    }
    .status-badge{
      position:absolute; right:12px; bottom:12px;
      background:#10b981; color:#fff; font-weight:700; font-size:12px;
      padding:6px 10px; border-radius:999px; box-shadow:0 2px 6px rgba(0,0,0,.15)
    }
    .status-closed{ background:#ef4444 }

    .drawer-body{
      flex:0 0 auto;
      min-height:auto;
      overflow:visible;
      padding:12px 14px;
      background:var(--page-bg,#f8f5ef);
      -webkit-overflow-scrolling:touch;
    }
    .drawer-title{ font-weight:700; font-size:18px; margin:10px 0 6px }
    .drawer-note{ color:#6b7280; font-size:13px; margin-bottom:10px; white-space:pre-wrap }

    .section{ border:1px solid #e5e7eb; border-radius:10px; overflow:hidden; margin-top:10px; background:var(--page-bg,#f8f5ef) }
    .section h3{ margin:0; padding:10px 12px; background:#eef2ff; color:#374151; font-size:16px; border-bottom:1px solid #e5e7eb }

    .section-features{
      background:#fff;
      border:1px solid #ececec;
      border-radius:16px;
      padding:12px;
      box-shadow:0 2px 8px rgba(17,24,39,.04);
    }
    .section-features h3{
      margin:0 0 12px;
      padding:8px 14px 8px 12px;
      border:1px solid #e8e3d8;
      background:linear-gradient(180deg,#fffdfa 0%,#f8f4ec 100%);
      color:#1f2937;
      font-size:14px;
      font-weight:700;
      display:inline-flex;
      align-items:center;
      gap:9px;
      line-height:1;
      border-radius:999px;
      letter-spacing:.01em;
      box-shadow:0 3px 10px rgba(17,24,39,.05);
    }
    #lblCompanyFeatures::before{
      content:'\f005';
      font-family:'Font Awesome 6 Free';
      font-weight:900;
      width:22px;
      height:22px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:var(--theme-orange-bg-soft);
      color:var(--theme-orange-accent);
      font-size:11px;
      line-height:1;
      border:1px solid var(--theme-orange-border-soft);
      box-sizing:border-box;
    }
    .features{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:0;
      border:1px solid #eeeeee;
      border-radius:14px;
      overflow:hidden;
      background:#fff;
    }
    .feature{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:16px;
      color:#2d333a;
      padding:14px 14px;
      border-bottom:1px solid #efefef;
      min-height:70px;
    }
    .feature:nth-child(odd){ border-right:1px solid #efefef; }
    .feature:nth-last-child(-n+2){ border-bottom:0; }
    .feature .ico{
      width:34px; height:34px; display:grid; place-items:center;
      background:none; border:none; font-size:24px; line-height:1;
      flex:0 0 34px;
    }
    .feature .ico i{
      font-size:24px;
      line-height:1;
      color:var(--theme-orange-accent);
    }
    .feature .txt{
      font-weight:500;
      line-height:1.25;
      word-break:break-word;
    }
    .feature.is-empty{
      grid-column:1 / -1;
      border-right:0;
      justify-content:flex-start;
      min-height:56px;
      font-size:15px;
      color:#6b7280;
    }

    .section-hours{
      background:#fff;
      border:1px solid #ececec;
      border-radius:16px;
      padding:12px;
      box-shadow:0 2px 8px rgba(17,24,39,.04);
    }
    .section-hours h3{
      margin:0 0 12px;
      padding:8px 14px 8px 12px;
      border:1px solid #e8e3d8;
      background:linear-gradient(180deg,#fffdfa 0%,#f8f4ec 100%);
      color:#1f2937;
      font-size:14px;
      font-weight:700;
      display:inline-flex;
      align-items:center;
      gap:9px;
      line-height:1;
      border-radius:999px;
      letter-spacing:.01em;
      box-shadow:0 3px 10px rgba(17,24,39,.05);
    }
    #lblCompanyHours::before{
      content:'\f017';
      font-family:'Font Awesome 6 Free';
      font-weight:900;
      width:22px;
      height:22px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:var(--theme-orange-bg-soft);
      color:var(--theme-orange-accent);
      font-size:11px;
      line-height:1;
      border:1px solid var(--theme-orange-border-soft);
      box-sizing:border-box;
    }
    .hours{
      padding:2px 0;
      background:#fff;
      border:1px solid #eeeeee;
      border-radius:14px;
      overflow:hidden;
    }
    .hour-row{ display:flex; align-items:center; gap:10px; padding:10px 12px; border-bottom:1px dashed #ececec; font-size:14px }
    .hour-row:last-child{ border-bottom:0 }
    .hour-day{ width:42%; color:#111; font-weight:600 }
    .hour-range{ color:#111 }
    .hour-closed{ color:#9ca3af }
    .hour-row.is-today{
      margin:4px 6px;
      border:1px solid var(--theme-orange-accent);
      border-radius:10px;
      background:var(--theme-orange-bg-soft);
    }
    .hour-row.is-today .hour-day,
    .hour-row.is-today .hour-range,
    .hour-row.is-today .hour-closed{
      color:var(--theme-orange-accent);
      font-weight:700;
    }

    .drawer-bottom{
      position:sticky; bottom:0; left:0; right:0;
      background:var(--page-bg,#f8f5ef);
      border-top:1px solid #e5e7eb;
      padding:10px 12px 12px;
    }
    .drawer-footer-links{
      background:var(--page-bg,#f8f5ef);
      border-radius:22px;
      padding:8px 6px;
      box-shadow:0 8px 18px rgba(15,23,42,.08);
      display:flex;
      align-items:stretch;
      overflow-x:auto;
      overflow-y:hidden;
      scrollbar-width:none;
    }
    .drawer-footer-links::-webkit-scrollbar{ display:none; }
    .drawer-footer-link{
      text-decoration:none;
      color:#3b3b3b;
      min-width:84px;
      flex:1 0 84px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:8px 4px;
      position:relative;
      border:0;
      background:transparent;
      cursor:pointer;
      font:inherit;
    }
    .drawer-footer-link:not(:last-child)::after{
      content:"";
      position:absolute;
      right:0;
      top:12%;
      width:1px;
      height:76%;
      background:#ededed;
    }
    .drawer-footer-link i{
      color:var(--theme-orange);
      font-size:22px;
      line-height:1;
    }
    .drawer-footer-link span{
      font-size:13px;
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:100%;
    }
    .drawer-footer-hidden{ display:none !important; }

    @media (min-width:768px){
      .drawer-header{height:210px}
    }

    @media (min-width:1024px){
      .header{
        min-height:96px;
        padding:10px 22px;
      }
      .logo{
        width:72px;
        height:72px;
        border-radius:8px;
      }
      .header-text h1{
        font-size:clamp(20px,1.8vw,28px);
      }
      .header-text p{
        font-size:clamp(11px,1vw,14px);
      }
      .company-btn,.lang-btn{
        width:36px;
        height:36px;
      }
      .main-content{
        width:100%;
        max-width:1280px;
        margin:112px auto 0;
      }
      .header.scrolled ~ .main-content{
        margin-top:112px;
      }
      #searchContainer{
        padding:14px 0 10px;
      }
      #searchContainer input{
        display:block;
        width:100%;
        max-width:860px;
        margin:0 auto;
        font-size:16px;
      }
      #categoriesList.categories-container{
        gap:12px;
        padding:10px 0 14px;
      }
      #categoriesList[data-cols="3"]{
        max-width:1100px;
        margin:0 auto;
      }
      #categoriesList[data-cols="2"]{
        max-width:900px;
        margin:0 auto;
      }
      #categoriesList[data-cols="1"]{
        max-width:760px;
        margin:0 auto;
      }
      #categoriesList[data-cols="1"] .cat-title{
        font-size:17px;
      }
      #searchResults{
        max-width:1100px;
        margin:0 auto;
      }
      .product-list{
        grid-template-columns:repeat(4,minmax(0,1fr));
        padding:10px 0;
      }
    }

    @media (max-width:820px){
      .announce-bar{
        margin:8px 8px 2px;
        padding:8px 10px;
        gap:8px;
        border-radius:12px;
      }
      .announce-icon{
        width:30px;height:30px;border-radius:9px;font-size:14px;flex-basis:30px;
      }
      .announce-msg{
        min-width:min(78vw,430px);
        padding:7px 9px;
      }
      .announce-msg strong{font-size:12px}
      .announce-msg span{font-size:11px}

      .header{
        min-height:96px;
        padding:10px 10px;
        gap:8px;
        background-position:center 36%;
      }
      .logo{width:70px;height:70px;padding:2px}
      .header-text h1{font-size:24px}
      .header-text p{font-size:13px}
      .company-btn,.lang-btn{width:36px;height:36px;border-radius:10px}
      .header.scrolled{min-height:68px}
      .header.scrolled .logo{width:58px;height:58px}
      .header.scrolled .header-text h1{font-size:19px}
      .header.scrolled .header-text p{font-size:12px}
      .main-content{margin-top:110px}
      .header.scrolled ~ .main-content{margin-top:110px}
    }

    @media (max-width:540px){
      .header{
        min-height:90px;
        padding:9px 8px;
        background-position:center 34%;
      }
      .logo{width:64px;height:64px;padding:1px}
      .header-text h1{font-size:18px}
      .header-text p{font-size:12px}
      .header-actions{gap:6px}
      .company-btn,.lang-btn{width:32px;height:32px;border-radius:9px}
      .header.scrolled{min-height:62px;padding:7px 8px}
      .header.scrolled .logo{width:52px;height:52px}
      .header.scrolled .header-text h1{font-size:16px}
      .header.scrolled .header-text p{font-size:11px}
      .main-content{margin-top:102px}
      .header.scrolled ~ .main-content{margin-top:102px}
    }

    /* ============ ÜRÜN ARAMA SONUÇLARI ============ */
    .product-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      padding:8px 0 12px;
    }
    .product-card{
      background:#fff;border:1px solid #ece7df;border-radius:14px;overflow:hidden;
      box-shadow:0 5px 14px rgba(15,23,42,.06);
      cursor:pointer;transition:transform .15s ease, box-shadow .15s ease;
    }
    .product-card:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(15,23,42,.1);}
    .product-img{ width:100%; aspect-ratio:16/10; object-fit:cover; display:block; }
    .product-info{ padding:10px 10px 11px; display:flex; flex-direction:column; gap:5px; }
    .product-title{
      font-size:15px; font-weight:600; color:#1f2937; line-height:1.22;
      display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
      min-height:2.44em;
    }
    .product-desc{
      font-size:12px;
      color:#6b7280;
      line-height:1.28;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
      min-height:2.56em;
    }
    .product-price{
      font-size:16px;
      font-weight:600;
      color:var(--theme-orange);
      min-height:1.2em;
    }

    /* ============ Dil seçim modal ============ */
    .lang-modal{display:none;position:fixed;inset:0;z-index:3100;background:rgba(0,0,0,.5);backdrop-filter:blur(2px)}
    .lang-modal .box{
      background:#fff;max-width:320px;margin:18% auto;padding:16px;border-radius:10px;position:relative;
    }
    .lang-modal .box h2{margin:0 0 12px;font-size:16px}
    .lang-modal .close{
      position:absolute;right:12px;top:10px;font-size:22px;cursor:pointer;background:none;border:0;color:#666
    }
    .lang-modal .close:hover{color:#000}
    .lang-grid{
      display:flex;
      flex-direction:column;
      gap:8px;
      align-items:stretch;
    }
    .lang-item{
      border:1px solid #e5e7eb;border-radius:12px;padding:10px 12px;cursor:pointer;background:#fff;
      display:flex;align-items:center;gap:10px;transition:transform .15s ease, background .15s ease, border-color .15s ease;
      width:100%;
    }
    .lang-item:hover{transform:translateY(-1px);background:#f8fafc;border-color:#d1d5db}
    .lang-item.active{
      background:var(--theme-orange-bg-soft);
      border-color:var(--theme-orange);
      box-shadow:0 0 0 2px var(--theme-orange-bg-soft-alt);
    }
    .lang-item .flag-logo{
      width:26px;height:18px;border-radius:4px;object-fit:cover;
      border:1px solid #d1d5db;flex:0 0 26px;background:#fff;
      box-shadow:0 1px 2px rgba(15,23,42,.08);
    }
    .lang-item .lbl{font-size:14px;font-weight:700;color:#111;flex:1 1 auto}

    html[dir="rtl"] .lang-modal .box{
      direction:rtl;
      text-align:right;
    }
    html[dir="rtl"] .lang-item{
      flex-direction:row-reverse;
    }
    html[dir="rtl"] .lang-item .lbl{
      text-align:right;
    }

    /* Header redesign (referans görsele göre) */
    :root{
      --page-bg:#f8f5ef;
      --hero-header-height: 156px;
      --hero-header-height-scrolled: 110px;
    }

    .header,
    .header.scrolled{
      box-sizing:border-box !important;
      display:grid !important;
      grid-template-columns:minmax(0,1fr);
      grid-template-rows:1fr;
      align-items:center !important;
      background-position:center !important;
      z-index:1200 !important;
      backface-visibility:hidden;
      transform:translateZ(0);
      will-change:height, padding, box-shadow;
      overflow:visible !important;
    }
    .header{
      height:var(--hero-header-height) !important;
      min-height:0 !important;
      padding:8px clamp(10px, 2vw, 20px) !important;
      box-shadow:0 8px 24px rgba(2,6,23,.2);
      transition:height .34s cubic-bezier(.22,.78,.18,1), padding .34s cubic-bezier(.22,.78,.18,1), box-shadow .28s ease !important;
    }
    .header.scrolled{
      height:var(--hero-header-height-scrolled) !important;
      min-height:0 !important;
      padding:6px clamp(10px, 2vw, 20px) !important;
      box-shadow:0 6px 18px rgba(2,6,23,.2);
    }
    .header::before{
      background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.36) 58%, rgba(0,0,0,.28) 100%) !important;
      transition:opacity .34s ease;
    }
    .logo-section{
      grid-column:1;
      grid-row:1;
      width:100%;
      display:flex;
      align-items:center;
      justify-self:start;
      gap:clamp(8px, 1.2vw, 14px);
      height:100%;
      padding-top:0;
      padding-right:clamp(112px, 16vw, 176px);
      margin-top:0;
      transition:gap .34s cubic-bezier(.22,.78,.18,1), transform .34s cubic-bezier(.22,.78,.18,1);
    }
    .header.scrolled .logo-section{
      padding-top:0;
    }
    .logo{
      width:clamp(72px, 9.2vw, 104px) !important;
      height:clamp(72px, 9.2vw, 104px) !important;
      border-radius:50% !important;
      background:#fff !important;
      border:0 !important;
      box-shadow:none !important;
      padding:0 !important;
      flex-shrink:0;
      transform-origin:center;
      transition:transform .36s cubic-bezier(.22,.78,.18,1), opacity .28s ease !important;
    }
    .header.scrolled .logo{
      width:clamp(72px, 9.2vw, 104px) !important;
      height:clamp(72px, 9.2vw, 104px) !important;
      padding:0 !important;
      transform:scale(.62);
    }
    .header-text{
      min-width:0;
      overflow:visible;
      transition:transform .34s cubic-bezier(.22,.78,.18,1), opacity .28s ease;
    }
    .header-text h1{
      margin:0;
      font-size:clamp(20px, 2.9vw, 37px) !important;
      line-height:1.06;
      font-weight:700;
      letter-spacing:-.02em;
      color:#fff !important;
      display:block;
      overflow:visible;
      text-overflow:clip;
      white-space:normal;
      overflow-wrap:break-word;
      word-break:normal;
    }
    .header.scrolled .header-text h1{
      display:block;
      font-size:clamp(16px, 1.8vw, 22px) !important;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .header:not(.scrolled) .header-text h1{
      display:block;
    }
    .header-text p{
      margin:4px 0 0 !important;
      font-size:clamp(13px, 1.5vw, 22px) !important;
      line-height:1.12;
      font-weight:700;
      color:#fff !important;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      opacity:1;
    }
    .header.scrolled .header-text p{
      margin-top:2px !important;
      font-size:clamp(11px, 1vw, 14px) !important;
    }
    .header.scrolled .header-text{
      transform:none;
      overflow:hidden;
    }
    .header-actions{
      grid-column:1;
      grid-row:1;
      display:flex;
      flex-direction:row !important;
      gap:10px !important;
      align-items:center !important;
      justify-self:end;
      align-self:center;
      margin:0;
      position:absolute;
      right:clamp(10px, 2vw, 20px);
      top:50%;
      transform:translateY(-50%);
      padding-top:0;
      flex-shrink:0;
      transition:gap .28s ease;
      z-index:2;
    }
    .header.scrolled .header-actions{
      gap:6px !important;
      margin:0;
    }
    .header:not(.scrolled) .header-actions{
      top:8px;
      transform:none;
      align-self:start;
    }
    .company-btn{
      width:clamp(34px, 4.8vw, 44px) !important;
      height:clamp(34px, 4.8vw, 44px) !important;
      border-radius:12px !important;
      border:2px solid rgba(255,255,255,.65) !important;
      background:rgba(5,9,20,.58) !important;
      backdrop-filter:none;
      box-shadow:0 8px 18px rgba(0,0,0,.24);
      transition:opacity .28s ease, transform .34s cubic-bezier(.22,.78,.18,1), width .28s ease, height .28s ease, border-radius .28s ease !important;
      overflow:visible !important;
    }
    .header.scrolled .company-btn{
      width:clamp(30px, 3.8vw, 36px) !important;
      height:clamp(30px, 3.8vw, 36px) !important;
      border-radius:8px !important;
      border:1px solid rgba(255,255,255,.42) !important;
      box-shadow:0 5px 12px rgba(0,0,0,.18) !important;
      opacity:1;
      transform:none;
      padding:0 !important;
      margin:0 !important;
      pointer-events:auto;
      overflow:visible;
    }
    .lang-btn{
      min-width:clamp(108px, 12vw, 132px) !important;
      height:clamp(40px, 5.4vw, 52px) !important;
      padding:0 14px !important;
      border-radius:10px !important;
      border:2px solid rgba(255,255,255,.65) !important;
      background:rgba(5,9,20,.58) !important;
      box-shadow:0 8px 18px rgba(0,0,0,.16);
      gap:8px;
      backdrop-filter:none;
      overflow:visible !important;
    }
    .header.scrolled .lang-btn{
      min-width:clamp(94px, 10vw, 112px) !important;
      height:clamp(36px, 4.2vw, 44px) !important;
      padding:0 12px !important;
      border-radius:10px !important;
    }
    .company-btn{background:rgba(5,9,20,.58) !important;border-color:rgba(255,255,255,.65) !important;}
    .company-btn i{
      font-size:clamp(15px, 1.9vw, 19px) !important;
      color:#fff !important;
      transition:font-size .28s ease;
    }
    .header.scrolled .company-btn i{
      font-size:13px !important;
    }
    .lang-label{
      font-size:clamp(14px, 1.8vw, 18px) !important;
      color:#fff !important;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
    }
    .header.scrolled .lang-label{
      font-size:clamp(13px, 1.4vw, 15px) !important;
    }
    .lang-caret{
      font-size:11px;
      color:#fff;
      opacity:.92;
    }
    .main-content{
      margin-top:var(--hero-header-height) !important;
      background:var(--page-bg);
      min-height:calc(100vh - var(--hero-header-height));
    }
    #featuredSection,
    #featuredSection .featured-list{
      background:transparent !important;
    }
    #featuredSection .featured-item{
      background:#fff;
      box-shadow:0 2px 8px rgba(15,23,42,.04);
    }
    #searchContainer{
      padding:12px clamp(10px, 2.6vw, 24px) 10px !important;
      margin-top:0 !important;
      background:transparent !important;
      position:relative;
      z-index:1;
    }
    .search-input-wrap{
      display:flex;
      align-items:center;
      gap:10px;
      width:100%;
      max-width:860px;
      margin:0 auto;
    }
    .search-input-main{
      position:relative;
      flex:1 1 auto;
      min-width:0;
    }
    .search-clear{
      position:absolute;
      right:12px;
      top:50%;
      transform:translateY(-50%);
      width:24px;
      height:24px;
      border:0;
      border-radius:50%;
      background:#e5e7eb;
      color:#4b5563;
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      font-size:14px;
      line-height:1;
      padding:0;
    }
    .search-clear.show{display:inline-flex;}
    .search-icon{
      position:absolute;
      left:16px;
      top:50%;
      transform:translateY(-50%);
      color:var(--theme-orange-soft);
      font-size:22px;
      line-height:1;
      pointer-events:none;
    }
    #searchContainer input{
      width:100% !important;
      display:block;
      margin:0;
      max-width:none !important;
      height:clamp(48px, 6vw, 58px);
      border:none !important;
      border-radius:16px !important;
      box-shadow:0 6px 14px rgba(0,0,0,.16);
      font-size:clamp(15px, 1.4vw, 18px) !important;
      color:#4b5563;
      padding:0 42px 0 clamp(46px, 6vw, 62px) !important;
      background:#fff;
    }
    .search-company-btn{
      width:clamp(44px, 5.2vw, 52px);
      height:clamp(44px, 5.2vw, 52px);
      border-radius:14px;
      border:0;
      background:var(--theme-orange-soft);
      color:#fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 6px 14px rgba(0,0,0,.18);
      cursor:pointer;
      flex:0 0 auto;
      transition:transform .16s ease, box-shadow .2s ease, background .2s ease;
    }
    .search-company-btn:hover{
      transform:translateY(-1px);
      box-shadow:0 10px 18px rgba(0,0,0,.2);
      background:var(--theme-orange-soft-hover);
    }
    .search-company-btn i{font-size:18px}
    #searchContainer input::placeholder{ color:#9ca3af; }

    @media (max-width:1024px){
      :root{
        --hero-header-height: 148px;
        --hero-header-height-scrolled: 106px;
      }
      .header-text h1{font-size:clamp(17px, 3.8vw, 28px) !important;}
      .header-text p{font-size:clamp(12px, 2.1vw, 17px) !important;}
      .header.scrolled .header-text h1{font-size:clamp(15px, 2.7vw, 20px) !important;}
      .header.scrolled .header-text p{font-size:clamp(11px, 1.6vw, 13px) !important;}
    }
    @media (max-width:680px){
      :root{
        --hero-header-height: 142px;
        --hero-header-height-scrolled: 102px;
      }
      .header{
        padding:7px 10px !important;
      }
      .header.scrolled{
        padding:5px 10px !important;
      }
      .logo-section{
        width:100%;
        padding-top:0;
        padding-right:104px;
      }
      .header.scrolled .logo-section{padding-top:0;}
      .header-actions{top:50%;right:10px;transform:translateY(-50%);}
      .header:not(.scrolled) .header-actions{top:7px;transform:none;}
      .company-btn{width:34px !important;height:34px !important;border-radius:8px !important;}
      .header.scrolled .company-btn{width:30px !important;height:30px !important;border-radius:8px !important;}
      .lang-btn{min-width:96px !important;height:40px !important;padding:0 10px !important;}
      .header.scrolled .lang-btn{min-width:88px !important;height:34px !important;padding:0 8px !important;}
      .search-input-wrap{gap:8px;}
      .search-company-btn{width:42px;height:42px;border-radius:12px;}
      .search-company-btn i{font-size:16px;}
      #categoriesList .cat-thumb{aspect-ratio:16/10;}
      #categoriesList .cat-body{padding:17px 10px 11px;}
      #categoriesList .cat-title{
        font-size:clamp(14px, 3.8vw, 17px);
        line-height:1.12;
        white-space:normal;
        display:-webkit-box;
        -webkit-box-orient:vertical;
        -webkit-line-clamp:2;
        line-clamp:2;
      }
      #categoriesList .cat-go{
        width:24px;
        height:24px;
        font-size:10px;
        margin-right:-2px;
      }
      .lang-label{font-size:14px !important;}
      .company-btn i{font-size:15px !important;}
      .header.scrolled .lang-label{font-size:12px !important;}
      .header.scrolled .company-btn i{font-size:13px !important;}
    }
    @media (max-width:420px){
      :root{
        --hero-header-height: 136px;
        --hero-header-height-scrolled: 98px;
      }
      .header{
        padding:6px 8px !important;
      }
      .header.scrolled{
        padding:5px 8px !important;
      }
      .logo-section{
        width:100%;
        padding-top:0;
        padding-right:100px;
      }
      .header.scrolled .logo-section{padding-top:0;}
      .header-actions{gap:7px !important;top:50%;right:8px;transform:translateY(-50%);}
      .header:not(.scrolled) .header-actions{top:6px;transform:none;}
      .search-input-wrap{gap:7px;}
      .search-company-btn{width:40px;height:40px;border-radius:11px;}
      #categoriesList .cat-thumb{aspect-ratio:16/10.5;}
      #categoriesList .cat-body{padding:16px 8px 10px;}
      #categoriesList .cat-title{
        font-size:clamp(13px, 4vw, 15px);
      }
      #categoriesList .cat-go{
        width:22px;
        height:22px;
        font-size:9px;
        margin-right:-3px;
      }
      .header-text h1{font-size:clamp(15px, 7.2vw, 23px) !important;}
      .header-text p{font-size:clamp(11px, 4.6vw, 14px) !important;}
      .header.scrolled .header-text h1{font-size:clamp(13px, 5.2vw, 18px) !important;}
      .header.scrolled .header-text p{font-size:clamp(10px, 3.5vw, 12px) !important;}
      #searchContainer{
        padding:8px 8px 10px !important;
      }
      .announce-bar{
        margin:8px 8px 0;
      }
      #searchContainer input{
        height:46px;
        font-size:15px !important;
      }
    }

    html[dir="rtl"] .search-icon{
      left:auto;
      right:16px;
    }
    html[dir="rtl"] .search-clear{
      right:auto;
      left:12px;
    }
    html[dir="rtl"] #searchContainer input{
      padding-left:42px !important;
      padding-right:clamp(46px, 6vw, 62px) !important;
    }
    /* RTL küçük düzeltmeler */
    html[dir="rtl"] .header-text{ text-align:right }

    @media (prefers-reduced-motion: reduce){
      .header,
      .header::before,
      .logo-section,
      .logo,
      .header-text,
      .header-actions,
      .company-btn,
      .lang-btn{
        transition:none !important;
      }
    }
