.catalog-section {
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding: 20px 22px;
    border: 1px solid #e1e8e3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 46, 31, .06);
  }

  .catalog-toolbar h2 {
    margin: 0 0 6px;
    color: #153a27;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
  }

  .catalog-toolbar p {
    margin: 0;
    color: #718078;
    font-size: 12px;
  }

  .catalog-columns {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid #dde6e0;
    border-radius: 10px;
    background: #f7faf8;
  }

  .catalog-columns a {
    width: 34px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: #617168;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
  }

  .catalog-columns a:hover,
  .catalog-columns a.active {
    background: #173f2b;
    color: #fff;
  }

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(var(--catalog-columns), minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .catalog-product {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe7e2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 46, 31, .055);
    transition:
      transform .2s ease,
      box-shadow .2s ease,
      border-color .2s ease;
  }

  .catalog-product:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 63, 43, .28);
    box-shadow: 0 18px 42px rgba(15, 46, 31, .12);
  }

  .catalog-product__media {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 20% 10%, rgba(231,137,34,.10), transparent 31%),
      linear-gradient(180deg, #fbfcfb, #f4f8f5);
    border-bottom: 1px solid #edf1ee;
  }

  .catalog-product__image {
    width: 100%;
    height: 100%;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .catalog-product__image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    transition: transform .25s ease;
  }

  .catalog-product:hover .catalog-product__image img {
    transform: scale(1.045);
  }

  .product-list-tools {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .product-list-tools form {
    margin: 0;
  }

  .product-list-tools button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23,63,43,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.94);
    color: #526158;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(15,46,31,.08);
    backdrop-filter: blur(8px);
    transition: background .18s ease, color .18s ease, transform .18s ease;
  }

  .product-list-tools button:hover,
  .product-list-tools button.active {
    background: #173f2b;
    color: #fff;
    transform: translateY(-1px);
  }

  .catalog-discount {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 6;
    min-width: 54px;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #ef8f25, #d76e0a);
    color: #fff;
    box-shadow: 0 8px 22px rgba(201,105,13,.25);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
  }

  .catalog-discount small {
    margin-top: 4px;
    font-size: 7px;
    letter-spacing: .55px;
  }

.catalog-badge-row {
  width: 100%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 12px;
  border-top: 1px solid #24553b;
  border-bottom: 1px solid #24553b;
  background: #173f2b;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-align: center;
}

.catalog-badge-row i {
  font-size: 13px;
}

.catalog-badge-row--dark {
  border-color: #46524b;
  background: #36423b;
  color: #fff;
}

@media (max-width: 760px) {
  .catalog-badge-row {
    min-height: 27px;
    padding: 5px 8px;
    font-size: 9px;
  }

  .catalog-badge-row i {
    font-size: 11px;
  }
}

  .catalog-product__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 17px;
  }

  .catalog-product__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
  }

  .catalog-product__category {
    overflow: hidden;
    color: #8a5a1c;
    font-size: 8.5px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-stock-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #edf7f0;
    color: #26633d;
    font-size: 8px;
    font-weight: 800;
  }

  .catalog-stock-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2f8b52;
  }

  .catalog-stock-chip.is-low {
    background: #fff4e6;
    color: #a45b08;
  }

  .catalog-stock-chip.is-low::before {
    background: #e78922;
  }

  .catalog-stock-chip.is-out {
    background: #f3f4f3;
    color: #7b8680;
  }

  .catalog-stock-chip.is-out::before {
    background: #89928d;
  }

  .catalog-product h3 {
    min-height: 46px;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.42;
  }

  .catalog-product h3 a {
    color: #1e2b24;
    font-weight: 800;
    text-decoration: none;
  }

  .catalog-product h3 a:hover {
    color: #173f2b;
  }

  .catalog-rating {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 9px;
    padding: 4px 8px;
    border-radius: 7px;
    background: #fff8ed;
    color: #8d530d;
    text-decoration: none;
  }

  .catalog-rating > span {
    color: #e78922;
    font-size: 12px;
  }

  .catalog-rating b {
    font-size: 9.5px;
  }

  .catalog-rating small {
    color: #8e9892;
    font-size: 8px;
  }

  .catalog-product__description {
    min-height: 49px;
    margin: 0 0 13px;
    color: #77847d;
    font-size: 10.5px;
    line-height: 1.55;
  }

  .member-price-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 9px;
    padding: 5px 8px;
    border-radius: 7px;
    background: #eef3ff;
    color: #415b9b;
    font-size: 8.5px;
    font-weight: 800;
  }

  .catalog-price {
    margin-top: auto;
    padding: 13px 0;
    border-top: 1px solid #edf1ee;
    border-bottom: 1px solid #edf1ee;
  }

  .catalog-price del {
    display: block;
    margin-bottom: 3px;
    color: #9aa49e;
    font-size: 9px;
  }

  .catalog-price strong {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    color: #173f2b;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.15;
  }

  .catalog-price strong small {
    color: #7a877f;
    font-size: 9px;
    font-weight: 700;
  }

  .catalog-form {
    display: grid;
    gap: 9px;
    padding-top: 12px;
  }

  .catalog-form__buy-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    align-items: stretch;
  }

  .catalog-quantity {
    min-width: 106px;
    height: 42px;
    display: grid;
    grid-template-columns: 32px minmax(38px, 1fr) 32px;
    overflow: hidden;
    border: 1px solid #d7e0da;
    border-radius: 9px;
    background: #fff;
  }

  .catalog-quantity button {
    border: 0;
    background: #f4f7f5;
    color: #173f2b;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
  }

  .catalog-quantity button:hover {
    background: #e9f1ec;
  }

  .catalog-quantity input {
    min-width: 0;
    width: 100%;
    border: 0;
    border-right: 1px solid #e3e9e5;
    border-left: 1px solid #e3e9e5;
    background: #fff;
    color: #203029;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    outline: 0;
  }

  .catalog-note {
    width: 100%;
    min-height: 38px;
    padding: 0 11px;
    border: 1px solid #dbe3de;
    border-radius: 9px;
    background: #fbfcfb;
    color: #26342c;
    font-size: 10px;
    outline: 0;
  }

  .catalog-note:focus {
    border-color: #173f2b;
    box-shadow: 0 0 0 3px rgba(23,63,43,.08);
  }

  .catalog-add {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 9px;
    background: #173f2b;
    color: #fff;
    font-size: 10.5px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(23,63,43,.18);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  }

  .catalog-add:hover {
    background: #0f2e1f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 11px 23px rgba(23,63,43,.24);
  }

  .catalog-add[disabled] {
    background: #8a958f;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
  }

  .catalog-product--out {
    opacity: .82;
  }

  .catalog-product--out .catalog-product__image img {
    filter: grayscale(.8);
  }

  .catalog-empty {
    grid-column: 1 / -1;
    padding: 50px 24px;
    border: 1px dashed #ccd8d0;
    border-radius: 16px;
    background: #fff;
    text-align: center;
  }

  @media (max-width: 1280px) {
    .catalog-grid {
      grid-template-columns: repeat(min(var(--catalog-columns), 4), minmax(0, 1fr));
    }
  }

  @media (max-width: 980px) {
    .catalog-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-product__media,
    .catalog-product__image {
      min-height: 210px;
    }

    .catalog-product__image img {
      height: 170px;
    }
  }

  @media (max-width: 760px) {
    .catalog-toolbar {
      align-items: flex-start;
      padding: 17px;
    }

    .catalog-columns {
      display: none;
    }

    .catalog-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .catalog-product {
      border-radius: 12px;
    }

    .catalog-product__media,
    .catalog-product__image {
      min-height: 150px;
    }

    .catalog-product__image {
      padding: 14px;
    }

    .catalog-product__image img {
      height: 125px;
    }

    .catalog-product__body {
      padding: 11px;
    }

    .catalog-product h3 {
      min-height: 40px;
      font-size: 12px;
      line-height: 1.38;
    }

    .catalog-product__description {
      display: none;
    }

    .catalog-product__meta {
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
    }

    .catalog-price {
      padding: 10px 0;
    }

    .catalog-price strong {
      font-size: 15px;
    }

    .catalog-form__buy-row {
      grid-template-columns: 1fr;
    }

    .catalog-quantity {
      width: 100%;
    }

    .product-list-tools {
      top: 8px;
      right: 8px;
      gap: 5px;
    }

    .product-list-tools button {
      width: 31px;
      height: 31px;
      border-radius: 8px;
      font-size: 13px;
    }

    .catalog-discount {
      top: 8px;
      left: 8px;
      min-width: 46px;
      min-height: 46px;
      border-width: 2px;
      font-size: 13px;
    }

    .catalog-badge {
      left: 8px;
      bottom: 8px;
      min-height: 23px;
      padding: 0 8px;
      font-size: 7px;
    }

    .catalog-note {
      font-size: 16px;
    }
  }

  @media (max-width: 420px) {
    .catalog-grid {
      gap: 8px;
    }

    .catalog-product__body {
      padding: 9px;
    }

    .catalog-product__image {
      min-height: 135px;
    }

    .catalog-product__image img {
      height: 112px;
    }

    .catalog-stock-chip {
      padding: 0 6px;
      font-size: 7px;
    }

    .catalog-rating {
      margin-bottom: 7px;
    }

    .catalog-note {
      min-height: 36px;
    }

    .catalog-add {
      min-height: 39px;
      font-size: 9.5px;
    }
  }

  /* Kompakt, büyük yazılı ve belirgin bölümlü kart tasarımı */
  .catalog-grid {
    gap: 20px;
  }

  .catalog-product {
    border: 1px solid #d6e0d9;
    border-radius: 15px;
    box-shadow: 0 9px 26px rgba(15, 46, 31, .07);
  }

  .catalog-product:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 63, 43, .38);
    box-shadow: 0 17px 38px rgba(15, 46, 31, .13);
  }

  .catalog-product__media,
  .catalog-product__image {
    min-height: 190px;
  }

  .catalog-product__media {
    background:
      radial-gradient(circle at 50% 15%, rgba(231, 137, 34, .10), transparent 34%),
      #f7faf8;
  }

  .catalog-product__image {
    padding: 15px;
  }

  .catalog-product__image img {
    height: 160px;
  }

  .catalog-product__body {
    padding: 0;
    text-align: center;
  }

  .catalog-product__meta {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    padding: 8px 13px;
    border-top: 1px solid #e7ede9;
    border-bottom: 1px solid #e2e9e4;
    background: #f7faf8;
  }

  .catalog-product__category {
    flex: 1 1 auto;
    color: #8b5313;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .75px;
    text-align: left;
  }

  .catalog-stock-chip {
    min-height: 25px;
    padding: 0 9px;
    font-size: 9px;
    font-weight: 900;
  }

  .catalog-product h3 {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 13px 15px 8px;
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
  }

  .catalog-product h3 a {
    color: #17251d;
    font-weight: 900;
  }

  .catalog-rating {
    justify-content: center;
    margin: 0 auto 11px;
    padding: 5px 10px;
    background: #fff6e8;
  }

  .catalog-rating > span {
    font-size: 15px;
  }

  .catalog-rating b {
    font-size: 12px;
  }

  .catalog-rating small {
    font-size: 10px;
  }

  .member-price-label {
    justify-content: center;
    margin: 0 auto 10px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .catalog-price {
    width: 100%;
    margin: 0;
    padding: 13px 14px;
    border-top: 1px solid #dce7df;
    border-bottom: 1px solid #dce7df;
    background: #edf5f0;
    text-align: center;
  }

  .catalog-price del {
    margin-bottom: 3px;
    color: #8e9992;
    font-size: 11px;
    font-weight: 700;
  }

  .catalog-price strong {
    justify-content: center;
    color: #123820;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.15;
  }

  .catalog-price strong small {
    color: #627168;
    font-size: 11px;
    font-weight: 800;
  }

  .catalog-form {
    width: 100%;
    gap: 8px;
    padding: 11px 12px 12px;
    background: #fbfcfb;
  }

  .catalog-form__buy-row {
    width: 100%;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 8px;
  }

  .catalog-quantity {
    width: 108px;
    min-width: 108px;
    height: 42px;
    grid-template-columns: 32px 44px 32px;
    border-color: #cbd8cf;
  }

  .catalog-quantity button {
    font-size: 18px;
  }

  .catalog-quantity input {
    font-size: 13px;
    font-weight: 900;
  }

  .catalog-add {
    width: 100%;
    min-height: 42px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
  }

  .catalog-note {
    min-height: 36px;
    padding: 0 10px;
    border-color: #d4ded7;
    background: #fff;
    font-size: 11px;
    text-align: center;
  }

  .catalog-discount {
    min-width: 56px;
    min-height: 56px;
    font-size: 17px;
  }

  .catalog-badge {
    min-height: 27px;
    padding: 0 10px;
    font-size: 8.5px;
  }

  .product-list-tools button {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  @media (max-width: 980px) {
    .catalog-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .catalog-product__media,
    .catalog-product__image {
      min-height: 175px;
    }

    .catalog-product__image img {
      height: 145px;
    }

    .catalog-product h3 {
      min-height: 54px;
      font-size: 17px;
    }

    .catalog-price strong {
      font-size: 22px;
    }
  }

  @media (max-width: 760px) {
    .catalog-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
    }

    .catalog-product {
      border-radius: 11px;
    }

    .catalog-product__media,
    .catalog-product__image {
      min-height: 135px;
    }

    .catalog-product__image {
      padding: 9px;
    }

    .catalog-product__image img {
      height: 112px;
    }

    .catalog-product__meta {
      min-height: 38px;
      align-items: center;
      padding: 6px 8px;
    }

    .catalog-product__category {
      font-size: 8.5px;
      letter-spacing: .3px;
    }

    .catalog-stock-chip {
      min-height: 21px;
      padding: 0 6px;
      font-size: 7px;
    }

    .catalog-product h3 {
      min-height: 50px;
      padding: 10px 8px 6px;
      font-size: 14.5px;
      line-height: 1.35;
    }

    .catalog-rating {
      margin-bottom: 8px;
      padding: 4px 7px;
    }

    .catalog-rating > span {
      font-size: 13px;
    }

    .catalog-rating b {
      font-size: 10.5px;
    }

    .catalog-rating small {
      font-size: 8px;
    }

    .member-price-label {
      margin-bottom: 7px;
      font-size: 8px;
    }

    .catalog-price {
      padding: 10px 7px;
    }

    .catalog-price del {
      font-size: 9px;
    }

    .catalog-price strong {
      font-size: 18px;
    }

    .catalog-price strong small {
      font-size: 8.5px;
    }

    .catalog-form {
      gap: 6px;
      padding: 8px;
    }

    .catalog-form__buy-row {
      grid-template-columns: 82px minmax(0, 1fr);
      gap: 6px;
    }

    .catalog-quantity {
      width: 82px;
      min-width: 82px;
      height: 38px;
      grid-template-columns: 25px 32px 25px;
    }

    .catalog-quantity button {
      font-size: 16px;
    }

    .catalog-quantity input {
      font-size: 10px;
    }

    .catalog-add {
      min-height: 38px;
      padding: 0 5px;
      font-size: 9.5px;
    }

    .catalog-note {
      min-height: 33px;
      padding: 0 7px;
      font-size: 16px;
    }

    .catalog-discount {
      min-width: 45px;
      min-height: 45px;
      font-size: 13px;
    }

    .product-list-tools button {
      width: 30px;
      height: 30px;
      font-size: 13px;
    }
  }

  @media (max-width: 420px) {
    .catalog-product__media,
    .catalog-product__image {
      min-height: 124px;
    }

    .catalog-product__image img {
      height: 102px;
    }

    .catalog-product h3 {
      min-height: 47px;
      font-size: 13.5px;
    }

    .catalog-price strong {
      font-size: 17px;
    }

    .catalog-form__buy-row {
      grid-template-columns: 78px minmax(0, 1fr);
    }

    .catalog-quantity {
      width: 78px;
      min-width: 78px;
      grid-template-columns: 24px 30px 24px;
    }
  }
