.alphauzi-products-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.alphauzi-products-sort-form select {
  min-width: 220px;
  height: 44px;
  border: 1px solid #e8d7d2;
  background: #fff;
  padding: 0 14px;
  font-size: 15px;
  color: #333;
}

.alphauzi-products-view-switch {
  display: inline-flex;
  gap: 8px;
}

.alphauzi-products-view-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #e8d7d2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c99f90;
  background: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.alphauzi-products-view-btn.is-active {
  border-color: #c99f90;
}

.alphauzi-products-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alphauzi-product-card {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: visible;
}

.alphauzi-product-card a {
  color: inherit;
  text-decoration: none;
}

.alphauzi-product-media {
  display: block;
  min-width: 0;
}

.alphauzi-product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0;
  background: #f9f9f9;
  position: relative;
}

.alphauzi-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alphauzi-product-sale-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #dcc8c2;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 10px;
  line-height: 1;
  z-index: 3;
}

.alphauzi-product-meta {
  background: transparent;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 0;
  position: relative;
  z-index: 2;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    padding 0.35s ease,
    width 0.35s ease;
}

.alphauzi-product-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 10px;
}

.alphauzi-product-price {
  margin: 0 0 14px;
  font-weight: 700;
}

.alphauzi-product-excerpt {
  display: none;
}

.alphauzi-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 430px;
  padding: 12px 20px;
  background: #dcc8c2;
  color: #222;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.alphauzi-product-button.is-loading {
  pointer-events: none;
}

.alphauzi-product-button.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: alphauzi-cart-spin 0.7s linear infinite;
}

@keyframes alphauzi-cart-spin {
  to {
    transform: rotate(360deg);
  }
}

.alphauzi-product-card:hover .alphauzi-product-button {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.alphauzi-product-card:hover .alphauzi-product-meta {
  transform: translateY(-72px);
  background: #f3e7e3;
  width: 92%;
  padding: 18px 16px 16px;
}

/* Grid: button shares row 1 with image so position:absolute bottom aligns to image, not meta box. */
.alphauzi-products-shell--grid .alphauzi-product-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.alphauzi-products-shell--grid .alphauzi-product-media {
  grid-column: 1;
  grid-row: 1;
}

.alphauzi-products-shell--grid .alphauzi-product-meta {
  grid-column: 1;
  grid-row: 2;
  overflow: hidden;
}

.alphauzi-products-shell--grid .alphauzi-product-button {
  grid-column: 1;
  grid-row: 2;
  position: static;
  margin-top: 14px;
  width: calc(100% - 32px);
  max-width: none;
  z-index: 5;
}

.alphauzi-products-shell--list .alphauzi-products-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alphauzi-products-shell--list .alphauzi-product-card {
  display: grid;
  grid-template-columns: 34% 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  gap: 36px;
  text-align: left;
}

.alphauzi-products-shell--list .alphauzi-product-media {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: auto;
}

.alphauzi-products-shell--list .alphauzi-product-meta {
  grid-column: 2;
  grid-row: 1;
  background: transparent;
  width: 100%;
  padding: 8px 0 0;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: var(--alphauzi-list-v-align, flex-start);
  min-height: 100%;
}

.alphauzi-products-shell--list .alphauzi-product-button {
  transform: none;
  opacity: 1;
  visibility: visible;
  max-width: none;
  width: 100%;
}

.alphauzi-products-shell--list
  .alphauzi-product-card:hover
  .alphauzi-product-meta {
  transform: none !important;
  background: transparent !important;
  width: 100% !important;
  padding: 8px 0 0 !important;
}

.alphauzi-products-shell--list .alphauzi-product-title,
.alphauzi-products-shell--list .alphauzi-product-price {
  text-align: center;
}

.alphauzi-products-shell--list .alphauzi-product-excerpt {
  display: block;
  margin: 16px 0 20px;
  color: #2f2f2f;
  font-size: 18px;
  line-height: 1.9;
}

.alphauzi-products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.alphauzi-products-pagination ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.alphauzi-products-pagination li {
  margin: 0;
}

.alphauzi-products-pagination a,
.alphauzi-products-pagination span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.alphauzi-products-pagination .current {
  background: #efe2de;
  border-color: #efe2de;
}

@media (max-width: 960px) {
  .alphauzi-products-toolbar {
    justify-content: space-between;
  }

  .alphauzi-products-sort-form select {
    min-width: 180px;
  }

  .alphauzi-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alphauzi-product-title {
    font-size: 26px;
  }

  .alphauzi-products-shell--list .alphauzi-product-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
  }

  .alphauzi-products-shell--list .alphauzi-product-media {
    grid-column: 1;
    grid-row: 1;
  }

  .alphauzi-products-shell--list .alphauzi-product-meta {
    grid-column: 1;
    grid-row: 2;
  }

  .alphauzi-products-shell--list .alphauzi-product-button {
    grid-column: 1;
    grid-row: 3;
  }

  .alphauzi-products-shell--list .alphauzi-product-title,
  .alphauzi-products-shell--list .alphauzi-product-price {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .alphauzi-products-toolbar {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .alphauzi-products-sort-form {
    width: 100%;
  }

  .alphauzi-products-sort-form select {
    width: 100%;
  }

  .alphauzi-products-grid {
    grid-template-columns: 1fr;
  }

  .alphauzi-product-title {
    font-size: 24px;
  }

  .alphauzi-product-meta {
    padding-top: 16px;
  }

  .alphauzi-product-card:hover .alphauzi-product-meta {
    transform: translateY(-58px);
    width: 94%;
    padding: 16px 12px 14px;
  }

  .alphauzi-products-shell--list
    .alphauzi-product-card:hover
    .alphauzi-product-meta {
    transform: none !important;
    width: 100% !important;
    padding: 8px 0 0 !important;
  }
}
