:root {
  --storefront-card-radius: 12px;
  --storefront-card-border: rgba(18, 33, 39, 0.08);
  --storefront-card-shadow: 0 2px 10px rgba(9, 35, 31, 0.05);
  --storefront-card-shadow-hover: 0 8px 22px rgba(0, 87, 69, 0.1);
  --storefront-card-surface: #ffffff;
  --storefront-image-surface: #f4f7f6;
  --storefront-title: #16322d;
  --storefront-price: #111827;
  --storefront-old-price: #9ca3af;
  --storefront-grid-gap: 10px;
  --storefront-discount-red: #e01933;
  --storefront-discount-red-light: #ff314a;
}

.products-section,
.shop-products-section {
  padding-top: 8px;
  padding-bottom: 16px;
}

.products-section .section-heading,
.shop-results-head {
  margin-bottom: 14px;
}

/* Unified responsive grid: 2 | 3 | 4 | 5 | 6 */
.product-grid.byose-product-grid,
.shop-product-grid.byose-product-grid,
.spotlight-grid.byose-product-grid,
.search-results-grid.byose-product-grid,
.related-grid.byose-product-grid,
.byose-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--storefront-grid-gap);
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.byose-product-grid > * {
  min-width: 0;
}

/* Card shell */
.byose-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 0;
  gap: 0;
  border-radius: var(--storefront-card-radius);
  overflow: hidden;
  background: var(--storefront-card-surface);
  border: 1px solid var(--storefront-card-border);
  box-shadow: var(--storefront-card-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.byose-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 184, 148, 0.18);
  box-shadow: var(--storefront-card-shadow-hover);
}

.byose-product-card:focus-within {
  outline: 2px solid rgba(0, 184, 148, 0.28);
  outline-offset: 2px;
}

.byose-product-image-link,
.byose-product-content-link {
  color: inherit;
  text-decoration: none;
}

.byose-product-content-link {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}

/* Image area */
.byose-product-image-wrapper {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--storefront-image-surface);
}

.byose-product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.byose-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 200ms ease;
}

.byose-product-card:hover .byose-product-image {
  transform: scale(1.02);
}

.byose-product-badge--discount {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--storefront-discount-red-light) 0%, var(--storefront-discount-red) 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 15, 40, 0.28);
  pointer-events: none;
}

.byose-product-badge--featured,
.byose-product-badge--new,
.byose-product-badge--trending {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
}

.byose-product-badge--featured {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.byose-product-badge--new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.byose-product-badge--trending {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Wishlist — top right */
.byose-product-wishlist {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #16322d;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(9, 35, 31, 0.12);
  transition: transform 140ms ease, color 140ms ease, background-color 140ms ease;
}

.byose-product-wishlist:hover {
  transform: scale(1.05);
}

.byose-product-wishlist-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.byose-product-wishlist.is-active,
.byose-product-wishlist.is-active .byose-product-wishlist-icon {
  color: #e01933;
}

/* Content */
.byose-product-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 4px;
  padding: 8px 8px 10px;
  min-width: 0;
}

.byose-product-title {
  margin: 0;
  color: var(--storefront-title);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
  word-break: break-word;
}

.byose-product-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-top: auto;
}

.byose-product-price {
  color: var(--storefront-price);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.byose-product-old-price {
  color: var(--storefront-old-price);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* Empty state */
.byose-product-grid-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 180px;
  padding: 24px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(18, 33, 39, 0.12);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  color: #374151;
}

.byose-product-grid-empty-icon {
  font-size: 1.75rem;
  opacity: 0.45;
}

.byose-product-grid-empty-text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Tablet: 3 columns */
@media (min-width: 768px) {
  :root {
    --storefront-grid-gap: 14px;
    --storefront-card-radius: 14px;
  }

  .product-grid.byose-product-grid,
  .shop-product-grid.byose-product-grid,
  .spotlight-grid.byose-product-grid,
  .search-results-grid.byose-product-grid,
  .related-grid.byose-product-grid,
  .byose-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .byose-product-content {
    padding: 10px 10px 12px;
    gap: 5px;
  }

  .byose-product-title {
    font-size: 0.84rem;
  }

  .byose-product-price {
    font-size: 1rem;
  }

  .byose-product-old-price {
    font-size: 0.72rem;
  }

  .byose-product-badge--discount {
    min-width: 42px;
    min-height: 22px;
    font-size: 0.68rem;
  }

  .byose-product-wishlist {
    width: 30px;
    height: 30px;
  }
}

/* Laptop: 4 columns */
@media (min-width: 1024px) {
  :root {
    --storefront-grid-gap: 16px;
  }

  .product-grid.byose-product-grid,
  .shop-product-grid.byose-product-grid,
  .spotlight-grid.byose-product-grid,
  .search-results-grid.byose-product-grid,
  .related-grid.byose-product-grid,
  .byose-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .byose-product-grid.byose-product-grid--5col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Desktop: 5 columns */
@media (min-width: 1280px) {
  .product-grid.byose-product-grid,
  .shop-product-grid.byose-product-grid,
  .spotlight-grid.byose-product-grid,
  .search-results-grid.byose-product-grid,
  .related-grid.byose-product-grid,
  .byose-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .byose-product-grid.byose-product-grid--5col {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Large desktop: 6 columns */
@media (min-width: 1440px) {
  .product-grid.byose-product-grid,
  .shop-product-grid.byose-product-grid,
  .spotlight-grid.byose-product-grid,
  .search-results-grid.byose-product-grid,
  .related-grid.byose-product-grid,
  .byose-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .products-section .section-heading,
  .shop-results-head {
    margin-bottom: 10px;
  }

  .byose-product-card {
    border-radius: 10px;
  }

  .byose-product-badge--discount {
    top: 6px;
    left: 6px;
    min-width: 38px;
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.66rem;
    border-radius: 7px;
  }

  .byose-product-wishlist {
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
  }

  .byose-product-title {
    font-size: 0.74rem;
    min-height: 2.4em;
  }

  .byose-product-price {
    font-size: 0.86rem;
  }

  .byose-product-old-price {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .byose-product-card,
  .byose-product-image,
  .byose-product-wishlist {
    transition: none !important;
  }
}
