/* Products Section Block */
.products-section {
  padding: var(--section-py) 0;
  /* --- Product grid --- */
}
.products-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: clamp(24px, 12 * (100vw - 375px) / 905 + 24px, 36px);
  gap: 16px;
}
@media (max-width: 600px) {
  .products-section__header {
    flex-direction: column;
    align-items: center;
  }
}
.products-section__heading {
  text-align: center;
}
.products-section__title {
  font-family: var(--font-main);
  font-size: clamp(22px, 10 * (100vw - 375px) / 905 + 22px, 32px);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.products-section__subtitle {
  font-size: clamp(13px, 1 * (100vw - 375px) / 905 + 13px, 14px);
  color: var(--color-text-secondary);
  max-width: 500px;
  line-height: 1.5;
}
.products-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 12 * (100vw - 375px) / 905 + 12px, 24px);
}
@media (max-width: 1024px) {
  .products-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 6 * (100vw - 375px) / 905 + 10px, 16px);
  }
}
.products-section__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 12 * (100vw - 375px) / 905 + 28px, 40px);
}
.products-section__empty {
  grid-column: 1/-1;
  text-align: center;
  color: var(--color-text-light);
  font-size: 15px;
  padding: 40px 0;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.avantech-products_section.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  /* Image area */
  /* Badge */
  /* Wishlist heart */
  /* Info area */
  /* Placeholder state */
}
.product-card__image-wrap {
  position: relative;
  height: 412px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-bg-features);
}
.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 400ms ease;
}
.product-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-features);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__badge--sale {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background-color var(--time-function), color var(--time-function);
  cursor: pointer;
  border: none;
}
.product-card__wishlist:hover, .product-card__wishlist.is-active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.product-card__wishlist.is-active svg path {
  fill: currentColor;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2 * (100vw - 375px) / 905 + 8px, 10px);
  background: transparent;
}
.product-card__name {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: #543024;
  line-height: 1.35;
  margin-top: 12px;
}
.product-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color var(--time-function);
}
.product-card__name a:hover {
  color: var(--color-primary-hover);
}
.product-card__name--skeleton {
  height: 18px;
  background-color: var(--color-bg-features);
  border-radius: 4px;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
.product-card__price {
  font-size: clamp(14px, 1 * (100vw - 375px) / 905 + 14px, 15px);
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price .woocommerce-Price-amount {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
}
.product-card__price ins {
  text-decoration: none;
}
.product-card__price del {
  color: var(--color-text-light);
  font-weight: 400;
  font-size: 0.85em;
  margin-right: 6px;
}
.product-card__price--skeleton {
  height: 20px;
  width: 60%;
  background-color: var(--color-bg-features);
  border-radius: 4px;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
.product-card__btn {
  padding: 18px 15px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
}
.product-card--placeholder {
  pointer-events: none;
}

@keyframes skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/*# sourceMappingURL=products_section.css.map */
