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

    body {
      font-family: "Inter", sans-serif;
      background: #f7f1e8;
      color: #251b13;
    }

    a { text-decoration: none; color: inherit; }

    .icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#f4eadc;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#b87932;
}

    .topbar {
      background: #2b1c12;
      color: #f7e7ce;
      padding: 10px 7%;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    header {
      background: #fffaf3;
      padding: 22px 7%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,.06);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .logo {
      font-size: 26px;
      font-weight: 800;
      color: #2b1c12;
      letter-spacing: .5px;
      white-space: nowrap;
    }

    .logo span { color: #b87932; }

    nav {
      display: flex;
      gap: 28px;
      font-size: 15px;
      font-weight: 600;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .lang-switch {
      display: flex;
      gap: 6px;
      padding: 5px;
      border: 1px solid #ead8c2;
      border-radius: 999px;
      background: #fff;
    }

    .lang-switch button {
      border: 0;
      background: transparent;
      color: #2b1c12;
      padding: 7px 10px;
      border-radius: 999px;
      font-weight: 800;
      cursor: pointer;
      font-size: 12px;
    }

    .lang-switch button.active {
      background: #b87932;
      color: #fff;
    }

    .btn {
      background: #b87932;
      color: white;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      display: inline-block;
      transition: .2s;
      border: 0;
    }

    .btn:hover { background: #946126; }

    .hero {
      min-height: 690px;
      padding: 90px 7%;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: 60px;
      background:
        linear-gradient(90deg, rgba(43,28,18,.95), rgba(43,28,18,.72), rgba(43,28,18,.25)),
        url("https://images.unsplash.com/photo-1615485500704-8e990f9900f7?auto=format&fit=crop&w=1800&q=80");
      background-size: cover;
      background-position: center;
      color: white;
    }

    .hero-label {
      display: inline-block;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      padding: 10px 16px;
      border-radius: 999px;
      margin-bottom: 22px;
      color: #f6d6a6;
      font-weight: 700;
    }

    .hero h1 {
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.05;
      max-width: 780px;
      margin-bottom: 24px;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.8;
      max-width: 650px;
      color: #f4e7d9;
      margin-bottom: 34px;
    }

    .hero-card {
      background: rgba(255,250,243,.95);
      color: #2b1c12;
      padding: 34px;
      border-radius: 28px;
      box-shadow: 0 25px 70px rgba(0,0,0,.25);
    }

    .hero-card h3 { font-size: 26px; margin-bottom: 18px; }
    .hero-card ul { list-style: none; }

    .hero-card li {
      padding: 14px 0;
      border-bottom: 1px solid #ead8c2;
      font-weight: 600;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: -70px;
      padding: 0 7%;
      position: relative;
      z-index: 2;
    }

    .stat {
      background: white;
      padding: 34px;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

    .stat strong {
      display: block;
      font-size: 38px;
      color: #b87932;
      margin-bottom: 8px;
    }

    section { padding: 90px 7%; }

    .section-head {
      max-width: 760px;
      margin-bottom: 42px;
    }

    .eyebrow {
      color: #b87932;
      font-weight: 800;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 13px;
    }

    h2 {
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.12;
      margin-bottom: 20px;
    }

    .section-head p {
      color: #6d5d4d;
      font-size: 17px;
      line-height: 1.8;
    }

    .about { background: #fffaf3; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: center;
    }

    .about-img {
      min-height: 420px;
      border-radius: 30px;
      background:
        linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)),
        url("./1.jpg");
      background-size: cover;
      background-position: center;
    }

    .about-text p {
      color: #5e5145;
      line-height: 1.9;
      font-size: 17px;
      margin-bottom: 18px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: #fffaf3;
  border: 1px solid #ead8c2;
  border-radius: 26px;
  overflow: hidden;
  padding: 0;
  min-height: auto;
  box-shadow: 0 14px 34px rgba(43, 28, 18, .06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(43, 28, 18, .12);
}

.product-img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.product-card h3 {
  font-size: 22px;
  margin: 22px 24px 10px;
  color: #251b13;
}

.product-card p {
  color: #6d5d4d;
  line-height: 1.7;
  margin: 0 24px 26px;
}



    .export {
      background: #2b1c12;
      color: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 46px;
      align-items: center;
    }

    .export p {
      color: #ead8c2;
      line-height: 1.9;
      font-size: 17px;
    }

    .export-box {
      background: #fffaf3;
      color: #2b1c12;
      border-radius: 30px;
      padding: 36px;
    }

    .export-box h3 { font-size: 28px; margin-bottom: 20px; }

    .market-list {
      display: grid;
      gap: 14px;
    }

    .market-list div {
      background: #f4eadc;
      padding: 16px 18px;
      border-radius: 16px;
      font-weight: 700;
    }

    .contact { background: #fffaf3; }

    .contact-card {
      background: #2b1c12;
      color: white;
      padding: 46px;
      border-radius: 32px;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 32px;
      align-items: center;
    }

    .contact-card p {
      color: #ead8c2;
      line-height: 1.8;
      margin-top: 12px;
    }

    .contact-info {
      background: rgba(255,255,255,.08);
      padding: 28px;
      border-radius: 24px;
      line-height: 2;
    }

    footer {
      background: #1d130d;
      color: #cbbba8;
      padding: 26px 7%;
      text-align: center;
      font-size: 14px;
    }

    html[dir="rtl"] body { text-align: right; }
    html[dir="rtl"] .hero {
      background:
        linear-gradient(270deg, rgba(43,28,18,.95), rgba(43,28,18,.72), rgba(43,28,18,.25)),
        url("https://images.unsplash.com/photo-1615485500704-8e990f9900f7?auto=format&fit=crop&w=1800&q=80");
      background-size: cover;
      background-position: center;
    }

    html[dir="rtl"] .hero,
    html[dir="rtl"] .about-grid,
    html[dir="rtl"] .export,
    html[dir="rtl"] .contact-card {
      direction: rtl;
    }

    .logo-img{
          width: 15%;
    height: 100%;
    }

    @media(max-width: 900px) {
      nav { display: none; }

      header {
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .header-actions {
        width: 100%;
        justify-content: space-between;
      }

      .hero,
      .about-grid,
      .export,
      .contact-card {
        grid-template-columns: 1fr;
      }

      .stats,
      .products-grid {
        grid-template-columns: 1fr;
      }

      .stats {
        margin-top: 0;
        padding-top: 30px;
      }

      .hero {
        padding-top: 70px;
        min-height: auto;
      }
    }

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

  .product-img {
    height: 220px;
  }
}

/* Güncel ürün kartları: ikon yerine görsel */
.product-card {
  padding: 0;
  overflow: hidden;
  background: #fffaf3;
}

.product-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #ead8c2;
}

.product-card h3,
.product-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.product-card h3 {
  padding-top: 22px;
}

.product-card p {
  padding-bottom: 26px;
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.about-text {
  /* max-height: 640px; */
  overflow-y: auto;
  padding-right: 10px;
}

.about-text::-webkit-scrollbar {
  width: 6px;
}

.about-text::-webkit-scrollbar-thumb {
  background: #b87932;
  border-radius: 999px;
}

html[dir="rtl"] .about-text {
  padding-right: 0;
  padding-left: 10px;
}

@media(max-width: 900px) {
  .logo-img {
    width: 120px;
  }

  .product-img {
    height: 220px;
  }

  .about-text {
    max-height: none;
    overflow: visible;
  }
}


.whatsapp-float{
  position:fixed;
  right:25px;
  bottom:25px;
  width:65px;
  height:65px;
  border-radius:50%;
  background:#25D366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  z-index:9999;
  box-shadow:0 10px 30px rgba(37,211,102,.35);
  transition:.3s;
}

.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.05);
}

.whatsapp-float i{
  line-height:1;
}