/**
 * Fastcom — Ürünlerimiz sayfası
 */
body.page-urunlerimiz .page_title,
body.page-urunlerimiz .entry-header {
  display: none !important;
}

/* HFE başlık bandı — breadcrumb altı açıklama */
body.page-urunlerimiz .fc-page-header-lead {
  margin: 0.85rem 0 0;
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.fc-products {
  --fc-prod-radius: 16px;
  margin: 0 0 3rem;
}

.fc-products-hero {
  background: linear-gradient(135deg, var(--fc-navy) 0%, #243b52 55%, #1a3041 100%);
  color: #fff;
  border-radius: var(--fc-prod-radius);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fc-products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(25, 189, 120, 0.18), transparent 45%);
  pointer-events: none;
}

.fc-products-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.fc-products-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fc-products-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.fc-products-section {
  margin-bottom: 3.5rem;
}

.fc-products-section__head {
  margin-bottom: 1.75rem;
  max-width: 720px;
}

.fc-products-section__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--fc-navy);
  margin: 0 0 0.5rem;
}

.fc-products-section__subtitle {
  margin: 0;
  color: #5a6578;
  font-size: 1rem;
  line-height: 1.6;
}

.fc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fc-product-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.fc-product-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: var(--fc-prod-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fc-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 189, 120, 0.45);
  box-shadow: 0 16px 40px rgba(27, 48, 65, 0.12);
}

.fc-product-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f7;
}

.fc-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fc-product-card:hover .fc-product-card__media img {
  transform: scale(1.04);
}

.fc-product-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(27, 48, 65, 0.88);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.fc-product-grid--featured .fc-product-card__badge {
  background: var(--fc-accent);
  color: #fff;
}

.fc-product-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.fc-product-card__title {
  margin: 0;
  font-size: 1.25rem;
  color: var(--fc-navy);
  line-height: 1.25;
}

.fc-product-card__summary {
  margin: 0;
  color: #4a5568;
  font-size: 0.925rem;
  line-height: 1.55;
}

.fc-product-card__bullets {
  margin: 0.25rem 0 0;
  padding-left: 1.15rem;
  color: #5a6578;
  font-size: 0.875rem;
  line-height: 1.5;
}

.fc-product-card__bullets li {
  margin-bottom: 0.35rem;
}

.fc-product-card__bullets li:last-child {
  margin-bottom: 0;
}

.fc-product-card__link {
  margin-top: auto;
  padding-top: 0.5rem;
}

.fc-product-card__link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fc-accent);
  text-decoration: none;
}

.fc-product-card__link a:hover {
  color: var(--fc-navy);
}

.fc-products-cta {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid #e8edf4;
  border-radius: var(--fc-prod-radius);
  padding: 2.5rem 2rem;
  text-align: center;
}

.fc-products-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--fc-navy);
}

.fc-products-cta__text {
  margin: 0 auto 1.5rem;
  max-width: 560px;
  color: #5a6578;
  line-height: 1.6;
}

.fc-products-cta__btn {
  display: inline-block;
  background: var(--fc-accent);
  color: #fff !important;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fc-products-cta__btn:hover {
  background: #15a566;
  transform: translateY(-1px);
  color: #fff;
}

@media (min-width: 992px) {
  .fc-product-grid--featured {
    grid-template-columns: repeat(3, 1fr);
  }
}
