 :root {
      --primary: #533c9e;
      --primary-soft: #f5f3ff;
      --text-main: #222;
      --bg: #f8f8fc;
      --radius: 14px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: var(--bg);
      color: var(--text-main);
    }

    a { text-decoration: none; }
    
    
    
    /* Ultra Küçük Ürün Kartları */
    
    
    
.product-card {
    width: 30%;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Görsel */
.product-card .product-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

/* Ürün adı */
.product-card .product-name {
    font-size: 20px;
    font-weight: 600;
    height: 28px;
    margin: 3px 0;
    overflow: hidden;
}

/* Açıklamayı tamamen kaldırdım */
.product-card .product-desc {
    display: none;
}

/* Fiyat */
.product-card .product-price {
    font-size: 18px;
    font-weight: bold;
    margin: 2px 0 4px;
}

.product-card .product-price span {
    font-size: 9px;
    color: #888;
}

/* WhatsApp Butonu */
.product-card .btn-whatsapp {
    font-size: 10px;
    padding: 4px 2px;
    border-radius: 6px;
}

    /* HEADER */
    header {
      background: #ffffff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: 0.5px;
    }

    .nav-links {
      display: flex;
      gap: 18px;
      font-size: 14px;
    }

    .nav-links a {
      color: #555;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: #666;
    }

    .header-right i {
      color: var(--primary);
      margin-right: 4px;
    }

    /* HERO */
    .hero {
      padding: 40px 16px 30px;
      background: linear-gradient(135deg, #f3ecff, #ffffff);
    }

    .hero-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }

    .hero-text {
      flex: 1 1 320px;
    }

    .hero-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .hero-sub {
      font-size: 15px;
      color: #555;
      margin-bottom: 20px;
      max-width: 440px;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 999px;
      border: none;
      font-size: 14px;
      cursor: pointer;
      transition: 0.25s;
      font-weight: 600;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 3px 10px rgba(83,60,158,0.35);
    }

    .btn-primary:hover {
      background: #442c8c;
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: #fff;
    }

    .btn i {
      margin-right: 6px;
    }

    .hero-image {
      flex: 1 1 320px;
      text-align: center;
    }

    .hero-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    /* ÜRÜNLER */
    .section {
      padding: 30px 16px;
    }

    .section-title {
      text-align: center;
      font-size: 22px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .section-sub {
      text-align: center;
      font-size: 14px;
      color: #777;
      margin-bottom: 20px;
    }

    .products {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      justify-content: center;
    }

    .product-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      padding: 16px 16px 18px;
      width: 100%;
      max-width: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 100%;
      background: radial-gradient(circle at center, rgba(83,60,158,0.12), transparent);
      top: -40px;
      right: -40px;
      z-index: 0;
    }

    .product-image {
      position: relative;
      z-index: 1;
    }

    .product-image img {
      max-width: 90%;
      border-radius: 10px;
    }

    .product-name {
      margin-top: 10px;
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
      position: relative;
      z-index: 1;
    }

    .product-desc {
      font-size: 14px;
      color: #555;
      margin: 8px 0 10px;
      position: relative;
      z-index: 1;
    }

    .product-price {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
      position: relative;
      z-index: 1;
    }

    .product-price span {
      font-size: 13px;
      color: #777;
      font-weight: 400;
      margin-left: 5px;
    }

    .product-cta {
      margin-top: 10px;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .btn-whatsapp {
      width: 100%;
      background: #25d366;
      color: #fff;
      border-radius: 999px;
      border: none;
      padding: 10px 14px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: 0.25s;
      box-shadow: 0 3px 10px rgba(0,0,0,0.16);
    }

    .btn-whatsapp:hover {
      background: #1fb25a;
      transform: translateY(-1px);
    }

    /* GÜVEN ROZETLERİ */
    .badges {
      max-width: 1140px;
      margin: 10px auto 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .badge-pill {
      background: #fff;
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 12px;
      color: #555;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    }

    .badge-pill i {
      color: var(--primary);
    }

    /* FOOTER */
    footer {
      background: #1d1f23;
      color: #bbb;
      margin-top: 30px;
      padding: 20px 10px 18px;
      text-align: center;
      font-size: 13px;
    }

    footer a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* MOBİL */
    @media(max-width: 768px) {
      .header-inner {
        flex-wrap: wrap;
        gap: 8px;
      }

      .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
      }

      .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
      }

      .hero-text,
      .hero-image {
        flex: 1 1 100%;
      }

      .hero-sub {
        margin: 0 auto 20px;
      }

      .hero-buttons {
        justify-content: center;
      }
    }
    
    .logo img {
      height: 75px;
      width: auto;
      display: block;
    }

    /* 🎞 Basit Hero Slider Stili */
    .hero-slider {
      position: relative;
      display: inline-block;
      max-width: 100%;
    }

    .hero-slider img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
      display: none;
    }

    .hero-slider img.active {
      display: block;
    }

    /* ÜRÜN ÖZELLİKLERİ – 2 SÜTUN RENKLİ ARKAPLAN */
    .feature-section {
      background: #f3ecff;
      padding: 50px 16px;
      margin-top: 40px;
    }

    .feature-title {
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .feature-sub {
      text-align: center;
      font-size: 14px;
      color: #555;
      margin-bottom: 30px;
    }

    .feature-grid {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 22px 20px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .feature-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .feature-card ul {
      margin: 0;
      padding-left: 20px;
    }

    .feature-card li {
      font-size: 14px;
      color: #333;
      margin-bottom: 7px;
      position: relative;
    }

    .feature-card li::before {
      content: "✔";
      position: absolute;
      left: -18px;
      top: 0;
      font-size: 13px;
      color: #2db673;
    }

    @media (max-width: 768px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }
    
    
     :root {
      --primary: #533c9e;
      --bg: #f8f8fc;
      --radius: 14px;
    }

    body { margin:0; font-family:Arial; background:var(--bg); }
    a { text-decoration:none; }

    /* HEADER */
    header {
      background:#fff;
      box-shadow:0 2px 8px rgba(0,0,0,0.06);
      position:sticky; top:0; z-index:1000;
    }
    .container { max-width:1140px; margin:auto; padding:0 16px; }
    .header-inner {
      display:flex; align-items:center;
      justify-content:space-between; padding:12px 0;
      position:relative;
    }

    .logo img { height:75px; }

    .nav-links {
      display:flex; gap:18px; font-size:14px;
    }
    .nav-links a { color:#555; font-weight:500; }
    .nav-links a:hover { color:var(--primary); }

    .header-right { display:flex; align-items:center; gap:8px; }

    /* 📌 Hamburger Menü */
    .hamburger {
      display:none;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
    }
    .hamburger span {
      width:28px;
      height:3px;
      background:var(--primary);
      border-radius:4px;
      transition:0.3s;
    }

    .hamburger.active span:nth-child(1) { transform:translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity:0; }
    .hamburger.active span:nth-child(3) { transform:translateY(-8px) rotate(-45deg); }

    @media(max-width: 768px) {
      .hamburger { display:flex; }

      .nav-links {
        display:none;
        flex-direction:column;
        width:100%;
        background:#fff;
        position:absolute;
        left:0;
        top:65px;
        text-align:center;
        padding:15px 0;
        box-shadow:0 10px 25px rgba(0,0,0,0.10);
      }
      .nav-links.show { display:flex; }

      .header-right {
        position:absolute;
        right:50px;
      }
    }
    
  .badge-pill img {
  height: 100px;
}

@media(max-width: 768px) {
  .badge-pill img {
    height: 45px;
  }
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.about-section {
  background: #ffffff;
  padding: 60px 16px;
  margin-top: 40px;
}

.about-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
}

.about-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 22px;
  margin-bottom: 10px;
}

.about-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}


.page-banner {
  background: #f3ecff;
  padding: 40px 0;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.contact-section {
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-form, .contact-info {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.contact-form h2,
.contact-info h2 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 8px;
  color: var(--primary);
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #442c8c;
}

.map iframe {
  width: 100%;
  height: 360px;
  border: none;
}

@media(max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.product-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.product-detail-modern {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.detail-left {
  width: 350px;
}

.detail-left h1 {
  color: #533c9e;
  font-size: 32px;
  margin-bottom: 6px;
  font-weight: 800;
}

.tagline {
  color: #444;
  margin-bottom: 20px;
  font-size: 15px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.price {
  font-size: 26px;
  font-weight: 800;
  color: #000;
}

.kdv {
  font-size: 13px;
  color: #777;
}

.btn-whatsapp-lg {
  width: 100%;
  background: #25D366;
  padding: 14px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 20px;
  transition: .2s;
}

.btn-whatsapp-lg:hover {
  background: #1eb85a;
  transform: translateY(-2px);
}

.trust-badges img {
  height: 52px;
  margin-right: 8px;
}

.tabs {
  flex: 1;
}

.tab-btn {
  background: #eee;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}

.tab-btn.active {
  background: #533c9e;
  color: #fff;
}

.tab-box {
  display: none;
  background: #fff;
  padding: 18px;
  border-radius: 0 0 14px 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
}

.tab-box.active {
  display: block;
}

@media(max-width: 768px){
  .detail-left {width: 100%; text-align:center;}
  .tabs {width: 100%;}
  .trust-badges img {height:40px;}
}


.product-detail-modern {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* YENİ ÜRÜN KART GÖRSELİ */
.detail-image-box {
  width: 380px;
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-image-box img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  transition: .25s ease;
}

.detail-image-box:hover img {
  transform: scale(1.04);
}

.detail-left,
.detail-right {
  flex: 1;
}

/* Mobil uyum */
@media(max-width:900px){
  .detail-image-box {
    width: 100%;
    max-width: 350px;
  }
  .product-detail-modern {
    text-align: center;
  }
}

.product-tabs {
  max-width: 900px;
  margin: 20px auto 60px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.tabs-header {
  display: flex;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  flex: 1;
  padding: 14px 10px;
  background: #f6f4ff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: #533c9e;
  transition: 0.3s;
}

.tab-btn:hover {
  background: #e7e2ff;
}

.tab-btn.active {
  background: #533c9e;
  color: #fff;
}

.tabs-body {
  padding: 25px 22px;
}

.tab-box {
  display: none;
  font-size: 14px;
  color: #333;
}

.tab-box.active {
  display: block;
}

.tab-box p {
  margin: 0;
  line-height: 1.55;
}

@media(max-width:768px){
  .tabs-header {
    flex-wrap: wrap;
  }
  .tab-btn {
    flex: 50%;
  }
}

/* ===============================
   ÜRÜN DETAY RESPONSIVE TASARIM
   =============================== */
.product-detail-modern {
  max-width: 1100px;
  margin: 20px auto 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 0 15px;
}

/* Sol görsel kartı */
.detail-image-box {
  flex: 1;
  text-align: center;
}
.detail-image-box img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Sağ bilgi alanı */
.detail-left {
  flex: 1;
  max-width: 460px;
}
.detail-left h1 {
  font-size: 30px;
  color: #533c9e;
  font-weight: 800;
  margin-bottom: 6px;
}
.tagline {
  color: #555;
  margin-bottom: 14px;
}
.price-box {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 18px;
}
.price {
  font-size: 26px;
  font-weight: 800;
  color: #222;
}
.kdv {
  font-size: 13px;
  color: #777;
}
.btn-whatsapp-lg {
  width: 100%;
  padding: 12px 14px;
  background: #25d366;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  color: #fff;
  margin-bottom: 18px;
}
.btn-whatsapp-lg:hover {
  background: #1cad56;
}

/* Sertifika ikonları */
.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.trust-badges img {
  height: 55px;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.08));
}

/* Tabs Responsive */
.product-tabs {
  max-width: 1100px;
  margin: 10px auto 60px;
  border-radius: 14px;
  overflow: hidden;
  padding: 0 15px;
}

@media(max-width: 992px) {
  .product-detail-modern {
    gap: 25px;
  }
  .detail-left h1 {
    font-size: 26px;
  }
}

@media(max-width: 768px) {
  .product-detail-modern {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .detail-left {
    max-width: 100%;
  }

  .price-box {
    justify-content: center;
  }

  .trust-badges {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .trust-badges img {
    height: 42px;
  }

  .tabs-header {
    flex-wrap: wrap;
  }
  .tab-btn {
    flex: 50%;
    font-size: 13px;
    padding: 12px;
  }
}

@media(max-width: 480px) {
  .detail-left h1 {
    font-size: 22px;
  }

  .trust-badges img {
    height: 38px;
  }

  .tab-btn {
    flex: 100%;
    font-size: 12px;
  }
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn .2s ease;
}

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: scaleIn .25s ease;
}

.modal-close {
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(.85); } to { transform: scale(1); }
}

/* Başlık ve içerik stilleri */
.modal-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: #533c9e;
  margin-bottom: 12px;
}

.modal-box p {
  line-height: 1.6;
  color: #444;
  font-size: 15px;
}


.contact-image-box {
  margin-top: 18px;
  width: 100%;
  text-align: center;
}

.contact-image-box img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  transition: .3s;
}

.contact-image-box img:hover {
  transform: scale(1.03);
}

.product-image {
    position: relative;
}

.badge-box {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4747;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
}


.product-image {
    position: relative;
}

.badge-flag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4747;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
}

.detail-image-box {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.detail-image {
  width: 100%;
  border-radius: 10px;
}

/* Kırmızı Bayrak */
.product-flag {
  position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4747;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
}

.product-flag-free {
    position: absolute;
    top: 8px;
    right: 8px; /* 🔹Bu sağ tarafa sabitler */
    background: #28a745; /* Yeşil */
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 11; /* Diğerinin üstünde */
}

.flag-container {
  position: absolute;
  top: 8px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 8px;
}

.flag {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.flag.qty {
  background: #ff4747; /* Kırmızı */
  position: relative;
}

.flag.free {
  background: #28a745; /* Yeşil */
}


.product-image {
  position: relative;
}

/* Temel stil */
.badge-flag {
  position: absolute;
  top: 0.6vw; /* ekrana göre ayarlanır */
  padding: 0.8vw 2vw;
  font-size: 2.7vw;
  font-weight: 700;
  color: #fff;
  border-radius: 0.9vw;
  z-index: 10;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

/* Sol taraf - kutu sayısı */
.qty-flag {
  left: 0.8vw;
  background: #e63946;
}

/* Sağ taraf - Kargo Bedava */
.free-flag {
  right: 0.8vw;
  background: #2a9d8f;
}

/* 📌 Küçük ekranlarda (telefon) */
@media (max-width: 480px) {
  .badge-flag {
    top: 2%;
    font-size: 3vw;
    padding: 1vw 2.5vw;
  }
}

/* 📌 Daha büyük ekranlarda (tablet) */
@media (min-width: 768px) {
  .badge-flag {
    font-size: 1.3vw;
    padding: 0.6vw 1.3vw;
  }
}


