/* ── HERO BANNER (products, full-bleed + dalga) ── */
.ph {
  position: relative;
  background: var(--primary-soft);
  min-height: 360px;
  overflow: hidden;
  padding-bottom: 80px; /* dalga için yer */
}

/* Fotoğraf full-bleed, sağa yaslı */
.ph-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ph-photo img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Soldan sağa yumuşak fade — metin tarafı temiz */
.ph-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--primary-soft) 0%,
    rgba(234,244,251,0.95) 25%,
    rgba(234,244,251,0.45) 45%,
    rgba(234,244,251,0) 65%
  );
  z-index: 1;
}

/* Sol metin bloğu */
.ph-body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-3);
}

.ph-title {
  font-family: var(--font-display);
  font-size: var(--fs-44);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 580px;
}

.ph-desc {
  color: var(--text-muted);
  font-size: var(--fs-16);
  line-height: 1.6;
  max-width: 480px;
}

/* Alt dalga */
.ph-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  display: block;
  z-index: 3;
}

/* ── HEADER ── */
.pl-header {
  background:
    linear-gradient(to right,
      rgba(248,251,254,0.85) 0%,
      rgba(248,251,254,0.35) 35%,
      rgba(248,251,254,0) 70%),
    url('redheader.png') center / cover no-repeat;
  min-height: 340px;
  padding: 50px 0;
  display: flex;
  align-items: center;
}

.pl-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.pl-header h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}

.pl-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ── MAIN ── */
.pl-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 48px 56px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
}

/* SIDEBAR */
.pl-sidebar {
  display: flex;
  flex-direction: column;
}

.pl-filter-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.pl-fgroup {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.pl-fgroup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
  margin-bottom: 12px;
}

.pl-slider {
  width: 100%;
  accent-color: var(--primary);
}

.pl-price-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.pl-price-inputs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pl-price-input {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  background: #fff;
}

.pl-price-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.85rem;
  color: var(--text);
  background: transparent;
}

.pl-price-input span {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.pl-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}

.pl-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--primary);
}

.pl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.pl-clear {
  margin-top: 16px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: var(--r-sm);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
}

.pl-clear:hover {
  background: var(--primary-soft);
}

/* RIGHT */
.pl-right {
  display: flex;
  flex-direction: column;
}

.pl-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pl-results {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pl-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--r-sm);
  padding: 0;
  font-size: 0.88rem;
  color: var(--text);
}

.pl-sort select {
  border: none;
  outline: none;
  background: transparent;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
}

.pl-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pl-card:hover {
  box-shadow: 0 8px 30px rgba(20,60,120,0.10);
  transform: translateY(-2px);
}

.pl-card-img {
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
}

.pl-card-img img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.pl-card-brand {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pl-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}

.pl-card-name span {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pl-card-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.pl-card-price span {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.pl-card-btn {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.pl-card-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* PAGINATION */
.pl-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pl-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.pl-page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pl-page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* FEATURES */
.pl-features {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 24px 36px;
  background: var(--surface-soft);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pl-feature {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pl-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pl-feat-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.pl-feat-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FOOTER */
.pl-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 48px 48px 24px;
  position: relative;
}

.pl-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pl-foot-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pl-foot-logo {
  height: 32px;
  width: auto;
  align-self: flex-start;
}

.pl-foot-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pl-socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  color: var(--text);
}

.pl-socials a {
  color: inherit;
}

.pl-foot-col h4 {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.pl-foot-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.pl-foot-col a:hover {
  color: var(--primary);
}

.pl-foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pl-payments {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pl-payments span {
  padding: 4px 10px;
  background: var(--surface-soft);
  border-radius: 6px;
  font-size: 0.78rem;
}

.pl-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 50;
}
