body.akk-products-page {
  --akk-list-red: #c7282f;
  --akk-list-red-dark: #a31f25;
  --akk-list-ink: #111;
  --akk-list-muted: #6f7478;
  --akk-list-soft: #f4f6f8;
  --akk-list-line: rgba(0, 0, 0, 0.08);
  --akk-list-radius: 28px;
  --akk-list-ease: cubic-bezier(0.33, 0.1, 0.2, 1);
  --akk-list-duration: 0.4s;
}

.akk-product-list-section {
  background: #fff;
  padding: clamp(42px, 6vw, 86px) 0;
}

.akk-product-list-shell {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.4vw, 30px);
}

.akk-product-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.akk-product-filter {
  position: sticky;
  top: 36px;
}

.akk-filter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.akk-filter-group+.akk-filter-group {
  margin-top: clamp(28px, 3vw, 48px);
  padding-top: clamp(28px, 3vw, 48px);
  border-top: 1px solid var(--akk-list-line);
}

.akk-filter-heading {
  margin: 0 0 clamp(16px, 1.6vw, 24px);
  color: var(--akk-list-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Hiyerarşik kategori ağacı */
.akk-filter-tree {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.akk-filter-tree > * + * {
  border-top: 1px solid var(--akk-list-line);
}

.akk-filter-node {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--akk-list-muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color var(--akk-list-duration) var(--akk-list-ease);
}

.akk-filter-node:hover,
.akk-filter-node[aria-current="true"] {
  color: #000;
}

.akk-filter-node[aria-current="true"] {
  font-weight: 700;
}

/* 1. seviye: "Tüm ürünler" ve üst kategoriler */
.akk-filter-root,
.akk-filter-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: clamp(11px, 1.1vw, 16px) 0;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.18;
}

.akk-filter-caret {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--akk-list-muted);
  transition: transform var(--akk-list-duration) var(--akk-list-ease);
}

.akk-filter-branch.is-open .akk-filter-caret {
  transform: rotate(180deg);
}

/* 2. seviye: açılır alt başlıklar */
.akk-filter-children {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--akk-list-duration) var(--akk-list-ease);
}

.akk-filter-branch.is-open .akk-filter-children {
  grid-template-rows: 1fr;
}

.akk-filter-children-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.akk-filter-child {
  width: 100%;
  padding: 8px 0 8px 18px;
  border-left: 2px solid var(--akk-list-line);
  font-size: clamp(14px, 1.02vw, 16px);
  font-weight: 500;
  line-height: 1.35;
  transition: color var(--akk-list-duration) var(--akk-list-ease),
    border-color var(--akk-list-duration) var(--akk-list-ease);
}

.akk-filter-child:first-child {
  padding-top: 2px;
}

.akk-filter-child:last-child {
  padding-bottom: clamp(12px, 1.2vw, 18px);
}

.akk-filter-child[aria-current="true"] {
  border-left-color: var(--akk-list-red);
}

.akk-product-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(28px, 3vw, 48px);
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--akk-list-red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--akk-list-duration) var(--akk-list-ease), transform var(--akk-list-duration) var(--akk-list-ease);
}

.akk-product-offer:hover {
  background: var(--akk-list-red-dark);
  color: #fff;
  transform: translateY(-2px);
}

.akk-product-list-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: clamp(16px, 1.6vw, 24px);
}

.akk-product-result {
  margin: 0;
  color: var(--akk-list-muted);
  font-size: clamp(14px, 1vw, 16px);
}

.akk-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  align-items: start;
}

.akk-products-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 60px 0;
  color: var(--akk-list-muted);
  font-size: 17px;
  text-align: center;
}

.akk-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(16px, 1.4vw, 22px);
  overflow: hidden;
  border: 1px solid var(--akk-list-line);
  border-radius: var(--akk-list-radius);
  background: #fff;
  transition: background var(--akk-list-duration) var(--akk-list-ease),
    border-color var(--akk-list-duration) var(--akk-list-ease),
    box-shadow var(--akk-list-duration) var(--akk-list-ease);
}

.akk-product-card:hover {
  border-color: transparent;
  background: radial-gradient(120% 100% at 50% 35%, #c0362d 0%, #a62620 100%);
  box-shadow: 0 22px 44px -26px rgba(166, 38, 32, 0.55);
}

.akk-product-new {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 1.4vw, 22px);
  left: clamp(16px, 1.4vw, 22px);
  padding: 7px 16px;
  border-radius: 999px;
  background: #dff2dd;
  color: #2aa81a;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1;
}

.akk-product-arrow {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 1.4vw, 22px);
  right: clamp(16px, 1.4vw, 22px);
  display: grid;
  place-items: center;
  width: clamp(40px, 3.8vw, 54px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  color: var(--akk-list-red);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--akk-list-duration) var(--akk-list-ease),
    transform var(--akk-list-duration) var(--akk-list-ease);
}

.akk-product-card:hover .akk-product-arrow {
  opacity: 1;
  transform: scale(1);
}

.akk-product-arrow svg {
  width: 52%;
  height: 52%;
}

.akk-product-image {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: clamp(8px, 1vw, 16px);
  overflow: hidden;
}

.akk-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.akk-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: clamp(13px, 1.4vw, 18px);
  padding-bottom: clamp(10px, 1.2vw, 18px);
  text-align: center;
}

.akk-product-category {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ededed;
  color: #4a4a4a;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  line-height: 1;
  transition: background var(--akk-list-duration) var(--akk-list-ease),
    color var(--akk-list-duration) var(--akk-list-ease);
}

.akk-product-card:hover .akk-product-category {
  background: #fff;
  color: var(--akk-list-ink);
}

.akk-product-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--akk-list-ink);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color var(--akk-list-duration) var(--akk-list-ease);
}

.akk-product-card:hover .akk-product-title {
  color: #fff;
}

.akk-product-desc {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--akk-list-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color var(--akk-list-duration) var(--akk-list-ease);
}

.akk-product-card:hover .akk-product-desc {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1280px) {
  .akk-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .akk-product-list-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .akk-product-filter {
    position: static;
  }

  .akk-filter-group {
    align-items: stretch;
  }

  .akk-filter-group+.akk-filter-group {
    margin-top: 18px;
    padding-top: 18px;
  }

  /* Ağaç mobilde de dikey kalır; yatay kaydırma iç içe yapıyı okunmaz kılardı. */
  .akk-filter-root,
  .akk-filter-parent {
    padding: 13px 0;
    font-size: 18px;
  }

  .akk-filter-child {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .akk-product-offer {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
}

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

  .akk-product-title {
    -webkit-line-clamp: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .akk-products-page *,
  .akk-products-page *::before,
  .akk-products-page *::after {
    transition-duration: 0.01ms !important;
  }
}
