/* ============================================================
   HERO — 4'lü EXPANDING PANEL SLIDER
   Hepsi tek ekranda, aktif olan genişler, otomatik döner
   ============================================================ */
.hero {
  position: relative;
  padding: 34px 0 26px;
  overflow: hidden;
}

.hero-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-deep);
  margin-bottom: 12px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 0 rgba(181, 127, 66, 0.5);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(181, 127, 66, 0);
  }
}

.hero-head h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-head h1 em {
  font-style: italic;
  color: var(--wood-deep);
  font-weight: 600;
}

.hero-head .hero-sub {
  max-width: 36ch;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  padding-bottom: 6px;
}

@media (max-width: 860px) {
  .hero-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero {
    padding: 26px 0 22px;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    margin-bottom: 8px;
  }

  .hero-sub {
    max-width: 100%;
  }
}

/* ---- panel şeridi: full width + çok ufak kenar boşluğu ---- */
.panels {
  display: flex;
  gap: 6px;
  width: 100%;
  padding-inline: 10px;
  height: min(560px, calc(100vh - 260px));
  min-height: 440px;
}

.panel {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: flex 0.85s var(--ease);
  box-shadow: 0 24px 60px -30px rgba(27, 23, 18, 0.45);
  outline: none;
}

.panel.active {
  flex: 5;
  cursor: default;
}

.panel:focus-visible {
  box-shadow:
    0 0 0 3px var(--wood),
    0 24px 60px -30px rgba(27, 23, 18, 0.45);
}

/* --- panel görsel sahneleri --- */
.scene {
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--ease);
}

.panel.active .scene {
  transform: scale(1.04);
}

.scene-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c150c;
  /* görsel yüklenene dek sıcak koyu zemin */
}

/* kapalı panellerde hafif desatüre + koyu ton: aktif panel öne çıksın */
.panel:not(.active) .scene-img {
  filter: saturate(0.75) brightness(0.82);
}

.panel.active .scene-img {
  filter: none;
}

/* ses dalgası rozeti */
.wave-badge {
  position: absolute;
  left: 50%;
  top: 24%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(20, 16, 9, 0.55);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transition: opacity 0.6s 0.3s;
}

.panel.active .wave-badge {
  opacity: 1;
}

.wave-badge i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--wood-light);
  animation: eq 1.2s ease-in-out infinite;
}

.wave-badge i:nth-child(1) {
  height: 9px;
}

.wave-badge i:nth-child(2) {
  height: 19px;
  animation-delay: 0.15s;
}

.wave-badge i:nth-child(3) {
  height: 27px;
  animation-delay: 0.3s;
}

.wave-badge i:nth-child(4) {
  height: 14px;
  animation-delay: 0.45s;
}

.wave-badge i:nth-child(5) {
  height: 23px;
  animation-delay: 0.6s;
}

.wave-badge i:nth-child(6) {
  height: 11px;
  animation-delay: 0.75s;
}

.wave-badge i:nth-child(7) {
  height: 20px;
  animation-delay: 0.9s;
}

@keyframes eq {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.65;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* --- panel karartma & içerik --- */
.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 8, 0.14), rgba(20, 15, 8, 0.02) 38%, rgba(16, 12, 6, 0.82) 100%);
  transition: opacity 0.5s;
  pointer-events: none;
}

.panel-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--cream);
}

/* kapalı panelde etiket/numara dar alana sığsın */
.panel:not(.active) .panel-ui {
  padding: 14px 8px;
  align-items: center;
}

.panel:not(.active) .panel-top {
  justify-content: center;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.panel-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(246, 241, 233, 0.85);
  background: rgba(20, 15, 8, 0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

.panel-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--wood);
  color: #fff;
  padding: 6px 12px;
  border-radius: 99px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.5s 0.25s,
    transform 0.5s 0.25s var(--ease);
}

.panel.active .panel-tag {
  opacity: 1;
  transform: none;
}

.panel-bottom {
  min-width: 0;
}

/* kapalı haldeki dikey başlık */
.panel-vlabel {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  rotate: 180deg;
  font-family: var(--ff-display);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
  transition: opacity 0.35s;
}

.panel-vlabel {
  font-size: 0.92rem;
}

.panel-vlabel b {
  font-weight: 500;
}

.panel-vlabel small {
  display: none;
}

/* alt açıklama sadece mobil kapalı kartta */
.panel.active .panel-vlabel {
  opacity: 0;
  pointer-events: none;
}

/* mobil kapalı kart aç/kapa göstergesi */
.panel-expand {
  display: none;
}

/* açık haldeki içerik */
.panel-info {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s 0.3s,
    transform 0.55s 0.3s var(--ease);
  pointer-events: none;
  max-width: 420px;
}

.panel.active .panel-info {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.panel-info h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin-bottom: 8px;
  white-space: nowrap;
}

.panel-info p {
  font-size: 0.83rem;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(246, 241, 233, 0.82);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--cream);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  transition:
    background 0.3s,
    transform 0.25s var(--ease),
    box-shadow 0.3s;
}

.panel-cta i {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.panel-cta:hover {
  background: var(--wood-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.5);
}

.panel-cta:hover i {
  transform: translateX(3px);
}

.panel-price {
  display: inline-block;
  margin-left: 12px;
  font-size: 0.74rem;
  color: rgba(246, 241, 233, 0.75);
}

.panel-price b {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--wood-light);
  font-weight: 600;
}

/* otomatik geçiş progress çubuğu */
.panel-progress {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 12px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}

.panel.active .panel-progress {
  opacity: 1;
}

.panel-progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--wood-light);
  transform: scaleX(0);
  transform-origin: left;
}

.panel.active .panel-progress i {
  animation: progress var(--slide-ms, 6000ms) linear forwards;
}

@keyframes progress {
  to {
    transform: scaleX(1);
  }
}

.panels.paused .panel-progress i {
  animation-play-state: paused;
}

/* --- responsive: mobilde dikey akordeon --- */
/* orta ekranlar: 9 panel yatayda sıkışır, biraz nefes ver */
@media (max-width: 1420px) and (min-width: 861px) {
  .panels {
    gap: 5px;
  }

  .panel.active {
    flex: 6;
  }

  .panel-vlabel {
    font-size: 0.8rem;
  }

  .panel:not(.active) .panel-num {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .panel-info p {
    -webkit-line-clamp: 3;
  }

  .panel-tag {
    display: none;
  }

  .panel.active .panel-tag {
    display: inline-block;
  }
}

/* ============================================================
   MOBİL: animasyon YOK — 9 kategori 2'li grid halinde listelenir
   ============================================================ */
@media (max-width: 860px) {
  .panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: auto;
    min-height: 0;
    padding-inline: 8px;
  }

  .panel,
  .panel.active {
    flex: none;
    height: 150px;
    border-radius: 14px;
    cursor: pointer;
    transition: none;
  }

  /* sahne sabit — zoom animasyonu yok */
  .scene,
  .panel.active .scene {
    transform: none;
    transition: none;
  }

  /* tüm kartlarda aynı okunabilirlik katmanı (aktif/pasif farkı yok) */
  .panel::after,
  .panel.active::after {
    background: linear-gradient(
      180deg,
      rgba(16, 12, 6, 0.32) 0%,
      rgba(16, 12, 6, 0.08) 40%,
      rgba(16, 12, 6, 0.86) 100%
    );
  }

  /* slider'a özel öğeler mobilde tamamen kapalı */
  .panel-info,
  .panel.active .panel-info {
    display: none;
  }

  .panel-expand,
  .panel-progress,
  .panel-tag,
  .panel.active .panel-tag,
  .wave-badge {
    display: none !important;
  }

  .panel-ui,
  .panel:not(.active) .panel-ui {
    padding: 12px;
    align-items: stretch;
  }

  .panel-top,
  .panel:not(.active) .panel-top {
    position: static;
    justify-content: flex-start;
  }

  /* numara: küçük altın rozet, sol üst */
  .panel-num,
  .panel:not(.active) .panel-num,
  .panel.active .panel-num {
    position: static;
    transform: none;
    width: 30px;
    height: 30px;
    font-size: 0.74rem;
    background: rgba(20, 15, 8, 0.5);
    border: 1px solid rgba(217, 168, 98, 0.55);
    color: var(--wood-light);
    backdrop-filter: blur(4px);
  }

  /* başlık + alt açıklama: kartın altına sabit */
  .panel-vlabel,
  .panel.active .panel-vlabel {
    writing-mode: horizontal-tb;
    rotate: none;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 11px;
    top: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: none;
  }

  .panel-vlabel b {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .panel-vlabel small {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(246, 241, 233, 0.68);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* mobilde görseller tam parlaklıkta */
  .panel:not(.active) .scene-img {
    filter: none;
  }
}

@media (max-width: 400px) {
  .panel,
  .panel.active {
    height: 136px;
  }

  .panel-vlabel b {
    font-size: 0.82rem;
  }

  .panel-vlabel small {
    font-size: 0.58rem;
  }
}

/* ============ HERO ALTI GÜVEN BARI (8 kart, sağdan sola kayar) ============ */
.trust {
  margin-top: 26px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.trust-track {
  display: flex;
  padding: 10px 0;
  gap: 12px;
  width: max-content;
  animation: trustScroll 36s linear infinite;
}

.trust:hover .trust-track {
  animation-play-state: paused;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 15px 20px;
  flex: none;
  width: 250px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -20px rgba(27, 23, 18, 0.3);
  border-color: rgba(181, 127, 66, 0.4);
}

.trust-item i {
  font-size: 23px;
  color: var(--wood-deep);
  flex: none;
}

.trust-item b {
  font-size: 0.82rem;
  display: block;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.trust-item small {
  font-size: 0.7rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

@keyframes trustScroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .trust {
    margin-top: 18px;
  }

  .trust-track {
    gap: 9px;
    animation-duration: 28s;
  }

  .trust-item {
    padding: 12px 16px;
    border-radius: 13px;
    gap: 11px;
    width: 216px;
  }

  .trust-item i {
    font-size: 16px;
  }

  .trust-item b {
    font-size: 0.78rem;
  }

  .trust-item small {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}
/* ============================================================
     EN ÇOK SATAN ÜRÜNLER (BEST SELLERS)
     ============================================================ */
.best-sellers {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  position: relative;
}

.best-sellers .container {
  width: min(1600px, 96%);
  /* Make the best sellers section wider so cards can expand */
}

.best-sellers-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.best-sellers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood-deep);
  margin-bottom: 12px;
}

.best-sellers-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 0 rgba(181, 127, 66, 0.5);
  animation: pulse 2.2s infinite;
}

.best-sellers-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.best-sellers-header h2 em {
  font-style: italic;
  color: var(--wood-deep);
  font-weight: 600;
}

.best-sellers-header p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}
/* Kategori Filtreleri Ana Taşıyıcı */
.filter-tabs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

/* Sadece fiyat butonları alanı kaydırılabilir */
.filter-tabs {
  display: flex;
  gap: 8px;
  background: var(--cream-2);
  padding: 6px;
  border-radius: 99px;
  border: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 99px;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0; /* 🚨 Butonların ezilip daralmasını engeller */
}

.filter-tab:hover {
  color: var(--ink);
}

.filter-tab.active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 12px -4px rgba(27, 23, 18, 0.35);
}

/* Görünüm İkonları (Grid/List) */
.view-toggles {
  display: flex;
  gap: 6px;
  background: var(--cream-2);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--line);
  flex-shrink: 0; /* 🚨 Ekran daralsa da ikonların küçülmesini engeller */
}

.view-toggle-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}

.view-toggle-btn i {
  font-size: 14px;
}

/* Mobil Görünüm Optimizasyonu */
@media (max-width: 768px) {
  .filter-tabs-container {
    flex-wrap: nowrap; /* 🚨 Alt satıra kaymalarını engeller, yan yana tutar */
    padding: 0 16px 12px;
    margin-bottom: 24px;
  }

  .filter-tabs {
    flex: 1; /* Sol tarafı tamamen doldurur */
    gap: 6px;
    padding: 4px;
    -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 85%, transparent 100%);
  }

  .filter-tab {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}

/* Ürün Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .best-sellers {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card-title {
    font-size: 0.78rem;
    margin-bottom: 8px;
    height: 2.8em;
  }

  .product-info {
    padding: 12px 10px 14px;
  }

  .product-card-cat {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }

  .product-current-price {
    font-size: 0.95rem;
  }

  .product-old-price {
    font-size: 0.68rem;
  }

  .product-quote-price {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .btn-addcart span {
    display: none;
    /* Hide "Sepete Ekle" text on mobile to prevent overflow */
  }

  .btn-addcart {
    padding: 0 10px;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .product-footer {
    gap: 6px;
  }

  .product-badges {
    top: 8px;
    left: 8px;
  }

  .product-badge-item {
    font-size: 0.55rem;
    padding: 2px 6px;
  }
}

/* Ürün Kartı */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(27, 23, 18, 0.18);
  border-color: rgba(181, 127, 66, 0.3);
}

.product-card.filtered-out {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
}

/* Görsel Alanı */
.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1; /* Sabit kare alan */
  overflow: hidden;
  background: #ffffff; /* Arkaplan kesinlikle bembeyaz olmalı */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; /* Ürün resminin kenarlara yapışmaması için boşluk */
  border-bottom: 1px solid var(--line); /* Resim ile yazıları hafifçe ayırmak için */
}

.product-img {
  width: 100%;
  height: 70%;
  object-fit: contain; /* Resmi KESMEDEN o karenin içine sığdırır */
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img {
  transform: scale(1.08); /* Hover olunca hafifçe yaklaşsın */
}

/* Kart Üst Rozetleri (Z-index ayarı beyaz zemin üzerinde net dursun diye) */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.product-badge-item {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.25);
}

.badge-bestseller {
  background: var(--wood-deep);
}

.badge-discount {
  background: #c2410c;
}

.badge-shipping {
  background: #065f46;
}

/* Kart Bilgileri */
.product-info {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-cat {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--wood);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.product-card-title {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

/* Fiyat ve Butonlar */
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price-box {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.product-old-price {
  font-size: 0.75rem;
  text-decoration: line-through;
  color: var(--ink-soft);
  opacity: 0.6;
  margin-bottom: 1px;
}

.product-current-price {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wood-deep);
}

.product-quote-price {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wood-deep);
  background: var(--cream-2);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Kart Aksiyon Butonları */
.product-card-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.product-action-btn {
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}

.btn-quickview {
  width: 38px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink-soft);
}

.btn-quickview:hover {
  background: var(--cream-2);
  color: var(--ink);
  border-color: var(--ink-soft);
}

.btn-quickview i {
  font-size: 14px;
}

.btn-addcart {
  padding: 0 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-addcart:hover {
  background: var(--wood-deep);
  box-shadow: 0 4px 12px -4px rgba(143, 95, 44, 0.5);
}

.btn-addcart i {
  width: 14px;
  height: 14px;
}

/* Alt Buton */
.best-sellers-footer {
  text-align: center;
  margin-top: 20px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    background 0.3s,
    gap 0.25s var(--ease),
    transform 0.2s;
  box-shadow: 0 10px 24px -10px rgba(27, 23, 18, 0.4);
}

.btn-view-all:hover {
  background: var(--wood-deep);
  gap: 14px;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(143, 95, 44, 0.6);
}

.btn-view-all i {
  width: 15px;
  height: 15px;
}

/* Grid / List View Toggles */
.view-toggle-btn.active {
  background: var(--white);
  color: var(--wood-deep) !important;
  box-shadow: 0 4px 10px -4px rgba(27, 23, 18, 0.2);
}

.view-toggle-btn:hover:not(.active) {
  color: var(--ink) !important;
}

/* List View Layout */
.products-grid.list-view {
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

.products-grid.list-view .product-card {
  flex-direction: row !important;
  align-items: center;
  height: auto !important;
}

.products-grid.list-view .product-img-wrap {
  width: 240px !important;
  height: 240px !important;
  aspect-ratio: 1 / 1 !important;
  flex-shrink: 0;
  border-right: 1px solid var(--line);
}

.products-grid.list-view .product-info {
  padding: 24px !important;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-grid.list-view .product-card-title {
  font-size: 1.1rem !important;
  height: auto !important;
  -webkit-line-clamp: unset !important;
  margin-bottom: 12px !important;
}

.products-grid.list-view .product-footer {
  margin-top: 16px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-grid.list-view .product-price-box {
  flex-direction: row !important;
  align-items: baseline;
  gap: 10px;
}

@media (max-width: 640px) {
  .products-grid.list-view .product-card {
    flex-direction: column !important;
  }

  .products-grid.list-view .product-img-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .products-grid.list-view .product-info {
    padding: 16px !important;
    width: 100%;
  }

  .products-grid.list-view .product-card-title {
    font-size: 0.88rem !important;
    height: 2.8em !important;
    -webkit-line-clamp: 2 !important;
  }

  .products-grid.list-view .product-footer {
    margin-top: auto !important;
  }
}

/* ============================================================
   DEKORCUM HAKKINDA (ABOUT DEKORCUM)
   ============================================================ */
.about-dekorcum {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-content-col {
  display: flex;
  flex-direction: column;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood-deep);
  margin-bottom: 12px;
}

.about-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 0 rgba(181, 127, 66, 0.5);
  animation: pulse 2.2s infinite;
}

.about-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}

.about-title em {
  font-style: italic;
  color: var(--wood-deep);
  font-weight: 600;
}

.about-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 24px;
}

.about-desc p {
  margin-bottom: 12px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--wood-deep);
}

.about-feature-icon i {
  width: 18px;
  height: 18px;
}

.about-feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.about-feature-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.about-visual-col {
  position: relative;
}

.about-card-stack {
  position: relative;
  padding-left: 20px;
}

.about-main-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px -15px rgba(27, 23, 18, 0.12);
  position: relative;
  z-index: 2;
}

.about-badge-large {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--wood-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.about-badge-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.about-quote {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  border-left: 3px solid var(--wood);
  padding-left: 12px;
  margin-bottom: 18px;
}

.about-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.about-author span {
  font-weight: 400;
  color: var(--ink-soft);
}

.about-decor-bg {
  position: absolute;
  inset: -15px -15px auto auto;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--wood) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.25;
  z-index: 1;
}
.image-inner {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-dekorcum {
    padding: 50px 0;
  }
}
@media (max-width: 520px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-feature-item {
    display: flex;
    flex-direction: row; /* İkon ve metin yan yana */
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
  }

  .about-feature-icon {
    width: 40px; /* İkon sabit boyut */
    height: 40px;
    flex-shrink: 0; /* Küçülmesini engelle */
    margin-bottom: 0;
  }

  .about-feature-body {
    flex: 1; /* Metin kutusu kalan boşluğu doldurur */
  }

  .about-feature-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--ink);
  }

  .about-feature-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--ink-soft);
  }
  .product-action-btn {
    height: 30px;
  }

  .btn-quickview {
    width: 30px;
  }
  .product-action-btn {
    width: 30px;
  }
}
