:root {
  --product-primary: #0b2c5f;
  --product-primary-dark: #1554d1;
  --product-soft: #f5f8ff;
  --product-border: #e1e8f2;
  --product-text: #0b1930;
  --product-muted: #68758a;
  --brand-gradient-dark: linear-gradient(
    135deg,
    #061936 0%,
    #0b2c5f 52%,
    #1554d1 100%
  );
}

.product-list-page {
  min-height: 100vh;
  background: #ffffff;
}

.product-heading-section {
  background: var(--product-soft);
}

/* ================================
   FILTER
================================ */

.product-filter-card {
  top: 150px;
  border-color: var(--product-border);
  border-radius: 16px;
  z-index: 0 !important;
}

.product-sort-select {
  width: 190px;
}

.zuyro-filter-btn {
  background: var(--brand-gradient-dark) !important;
}

/* ================================
   PRODUCT LIST
================================ */

.zuyro-product-list-wrap {
  width: 100%;
}

.zuyro-product-list-item {
  position: relative;

  display: grid;

  grid-template-columns:
    150px
    minmax(0, 1fr)
    135px
    145px;

  align-items: center;

  gap: 24px;

  padding: 20px 0;

  border-bottom: 1px solid var(--product-border);

  background: #ffffff;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.zuyro-product-list-item:first-child {
  border-top: 1px solid var(--product-border);
}

.zuyro-product-list-item:hover {
  background: #fbfcfc;
}

/* ================================
   IMAGE
================================ */

.zuyro-product-list-image-area {
  position: relative;

  width: 150px;
  height: 135px;

  flex-shrink: 0;

  overflow: hidden;

  border-radius: 12px;

  background: var(--product-soft);
}

.zuyro-product-list-image-link {
  display: block;

  width: 100%;
  height: 100%;
}

.zuyro-product-list-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.zuyro-product-list-item:hover .zuyro-product-list-image {
  transform: scale(1.035);
}

.zuyro-product-list-discount-badge {
  position: absolute;

  top: 8px;
  left: 8px;

  display: inline-flex;

  align-items: center;

  min-height: 23px;

  padding: 3px 8px;

  border-radius: 6px;

  background: #e84d4d;

  color: #ffffff;

  font-size: 10px;
  font-weight: 700;

  line-height: 1;
}

/* ================================
   DETAILS
================================ */

.zuyro-product-list-info {
  min-width: 0;
}

.zuyro-product-list-category {
  margin-bottom: 5px;

  color: var(--product-primary);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}

.zuyro-product-list-title {
  margin: 0 0 8px;

  color: var(--product-text);

  font-size: 16px;
  font-weight: 650;

  line-height: 1.4;
}

.zuyro-product-list-title a {
  color: inherit;

  text-decoration: none;

  transition: color 0.2s ease;
}

.zuyro-product-list-title a:hover {
  color: var(--product-primary);
}

/* ================================
   RATING
================================ */

.zuyro-product-list-rating {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 9px;
}

.zuyro-product-rating-box {
  display: inline-flex;

  align-items: center;

  gap: 4px;

  padding: 4px 7px;

  border-radius: 5px;

  background: #0f5b46;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  line-height: 1;
}

.zuyro-product-rating-box i {
  font-size: 8px;
}

.zuyro-product-review-count,
.zuyro-product-no-rating {
  color: var(--product-muted);

  font-size: 11px;
}

/* ================================
   SIZE
================================ */

.zuyro-product-list-size {
  display: inline-block;

  margin-bottom: 8px;

  color: #59635f;

  font-size: 12px;
  font-weight: 500;
}

/* ================================
   STOCK
================================ */

.zuyro-product-list-stock {
  display: flex;

  align-items: center;

  gap: 5px;

  font-size: 11px;
  font-weight: 600;
}

.zuyro-product-list-stock.is-in-stock {
  color: #168152;
}

.zuyro-product-list-stock.is-out-stock {
  color: #dc3545;
}

.zuyro-product-list-stock i {
  font-size: 10px;
}

/* ================================
   PRICE
================================ */

.zuyro-product-list-price-area {
  text-align: right;
}

.zuyro-product-list-price {
  color: var(--product-text);

  font-size: 19px;
  font-weight: 750;

  line-height: 1.2;
}

.zuyro-product-list-old-price {
  margin-top: 4px;

  color: #8c9692;

  font-size: 12px;
}

.zuyro-product-list-saving {
  margin-top: 4px;

  color: #168152;

  font-size: 11px;
  font-weight: 650;
}

/* ================================
   ACTIONS
================================ */

.zuyro-product-list-actions {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 8px;
}

.zuyro-product-list-wishlist {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  padding: 0;

  border: 1px solid var(--product-border);

  border-radius: 9px;

  background: #ffffff;

  color: #53605b;

  font-size: 16px;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.zuyro-product-list-wishlist:hover {
  border-color: #e55561;

  color: #dc3545;

  transform: translateY(-1px);
}

.zuyro-product-list-wishlist.is-active {
  border-color: #f6d6da;

  background: #fff4f5;

  color: #dc3545;
}

.zuyro-product-list-wishlist:disabled {
  opacity: 0.65;

  cursor: not-allowed;
}

/* Cart */

.zuyro-product-list-cart {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  min-width: 96px;
  height: 40px;

  padding: 0 14px;

  border: 1px solid var(--product-primary);

  border-radius: 9px;

  background: var(--product-primary);

  color: #ffffff;

  font-size: 12px;
  font-weight: 650;

  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.zuyro-product-list-cart:hover:not(:disabled) {
  background: var(--product-primary-dark);

  border-color: var(--product-primary-dark);

  transform: translateY(-1px);
}

.zuyro-product-list-cart:disabled {
  border-color: #dfe4e2;

  background: #eef1f0;

  color: #949d99;

  cursor: not-allowed;
}

/* ================================
   BOOTSTRAP
================================ */

.page-link {
  color: var(--product-primary);
}

.page-item.active .page-link {
  background: var(--product-primary);
  border-color: var(--product-primary);
}

.form-check-input:checked {
  background-color: var(--product-primary);
  border-color: var(--product-primary);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.form-range:focus {
  border-color: rgba(15, 91, 70, 0.45);

  box-shadow: 0 0 0 0.25rem rgba(15, 91, 70, 0.12);
}

/* ================================
   TABLET
================================ */

@media (max-width: 991.98px) {
  .zuyro-product-list-item {
    grid-template-columns:
      130px
      minmax(0, 1fr)
      120px;

    gap: 18px;

    padding: 18px 0;
  }

  .zuyro-product-list-image-area {
    width: 130px;
    height: 120px;
  }

  .zuyro-product-list-actions {
    grid-column: 2 / 4;

    justify-content: flex-end;

    margin-top: -5px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 767.98px) {
  .zuyro-product-list-item {
    grid-template-columns: 105px minmax(0, 1fr);

    align-items: start;

    gap: 13px;

    padding: 15px 0;
  }

  .zuyro-product-list-image-area {
    width: 105px;
    height: 110px;

    border-radius: 9px;
  }

  .zuyro-product-list-discount-badge {
    top: 6px;
    left: 6px;

    padding: 3px 6px;

    font-size: 8px;
  }

  .zuyro-product-list-category {
    margin-bottom: 3px;

    font-size: 9px;
  }

  .zuyro-product-list-title {
    margin-bottom: 5px;

    font-size: 13px;

    line-height: 1.35;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
  }

  .zuyro-product-list-rating {
    gap: 6px;

    margin-bottom: 5px;
  }

  .zuyro-product-rating-box {
    padding: 3px 5px;

    font-size: 9px;
  }

  .zuyro-product-review-count,
  .zuyro-product-no-rating {
    font-size: 9px;
  }

  .zuyro-product-list-size {
    margin-bottom: 5px;

    font-size: 10px;
  }

  .zuyro-product-list-stock {
    font-size: 9px;
  }

  .zuyro-product-list-price-area {
    grid-column: 2;

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: -5px;

    text-align: left;
  }

  .zuyro-product-list-price {
    font-size: 16px;
  }

  .zuyro-product-list-old-price {
    margin: 0;

    font-size: 10px;
  }

  .zuyro-product-list-saving {
    margin: 0;

    font-size: 9px;
  }

  .zuyro-product-list-actions {
    grid-column: 1 / 3;

    width: 100%;

    margin-top: 0;
  }

  .zuyro-product-list-wishlist {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 8px;
  }

  .zuyro-product-list-cart {
    flex: 1;

    height: 38px;

    border-radius: 8px;

    font-size: 11px;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 420px) {
  .zuyro-product-list-item {
    grid-template-columns: 92px minmax(0, 1fr);

    gap: 11px;

    padding: 13px 0;
  }

  .zuyro-product-list-image-area {
    width: 92px;
    height: 98px;
  }

  .zuyro-product-list-title {
    font-size: 12px;
  }

  .zuyro-product-list-price {
    font-size: 15px;
  }

  .zuyro-product-list-cart {
    font-size: 10px;
  }
}
