/* --- PRODUCTS SECTION --- */
.products-section {
  padding: 6rem 2rem;
}

/* İki kolonlu ürün grid'i */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.product-grid+.divider+.product-grid {
  margin-bottom: 0;
  margin-top: 4rem;
}

/* Tekstil: masaüstünde video solda, metin sağda */
.tekstil-video {
  order: 1;
}

.tekstil-text {
  order: 2;
}

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

  /* Mobilde metin önce, video sonra */
  .tekstil-text {
    order: 1 !important;
  }

  .tekstil-video {
    order: 2 !important;
  }
}

/* Ürün label (Araç Servisi) */
.product-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(99, 179, 237, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Ürün label (Tekstil) */
.product-label-badge-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 184, 169, 0.08);
  border: 1px solid rgba(0, 184, 169, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Ürün başlığı h3 */
.product-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

/* Ürün açıklama paragrafı */
.product-desc {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* CTA butonları satırı */
.product-cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Tekstil CTA satırı */
.product-cta-row-single {
  margin-top: 1.5rem;
}

/* Servisium video wrapper (sağ kolon) */
.product-video-col {
  position: relative;
}

/* Video iframe kutusu */
.product-video-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Video kutusu dekoratif orb */
.product-video-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
  top: -50px;
  right: -50px;
  filter: blur(40px);
  pointer-events: none;
}

/* iframe display:block */
.iframe-block {
  display: block;
}

/* WHY US section */
.why-us-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}

/* Why us başlık wrapper */
.why-us-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Why us section-label hizalama */
.section-label-center {
  justify-content: center;
  margin-bottom: 1rem;
}

/* CTA section */
.cta-section-padded {
  padding: 6rem 2rem;
}

/* CTA section-label */
.cta-label {
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* CTA başlık */
.cta-title {
  margin-bottom: 1rem;
}

/* CTA açıklama paragrafı */
.cta-desc {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}

/* CTA buton satırı */
.cta-btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}