/* ── Product Circle Component ── */

.product-section {
  padding: 48px 0;
}

/* Section Header */
.product-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  background: var(--accent, #f85d00);
  color: white;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Grid Layout */
.products-grid {
  display: flex;
  justify-content: center;
  gap: 0;
}

.products-grid .product-card {
  flex: 0 0 220px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Dotted vertical divider via CSS gradient */
  background-image: linear-gradient(to top, #000 0, #000 25%, transparent 25%);
  background-position: right 0;
  background-repeat: repeat-y;
  background-size: 1px 4px;
}

.products-grid .product-card:last-child {
  background-image: none;
}

/* Circle Image Container */
.product-circle {
  display: block;
  width: 180px;
  height: 180px;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  padding: 13px;
  margin-bottom: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.product-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #f0f0f0;
}

/* Product Name */
.products-grid .product-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
  max-width: 180px;
}

.products-grid .product-name a {
  color: inherit;
  text-decoration: none;
}

.products-grid .product-name a:hover {
  text-decoration: underline;
}

/* Price Box */
.price-box {
  background: #fff;
  border: 1px solid #000;
  border-radius: 2px;
  box-shadow: 3px 4px 0 0 #000;
  padding: 10px 16px;
  text-align: center;
  font-family: 'Space Mono', 'Courier New', monospace;
  min-width: 140px;
}

.price-original {
  font-size: 12px;
  color: #666;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-now {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent, #f85d00);
  letter-spacing: 0.05em;
}

.price-sale {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Dupe Reference */
.dupe-ref {
  margin-top: 10px;
  font-size: 10px;
  color: #888;
  letter-spacing: 0.05em;
  text-align: center;
}

.dupe-ref span {
  color: var(--accent, #f85d00);
  font-weight: 600;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .products-grid {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .products-grid .product-card {
    background-image: none;
    padding: 0;
    flex: 0 0 160px;
  }

  .product-circle {
    width: 160px;
    height: 160px;
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    gap: 24px;
  }

  .products-grid .product-card {
    flex: 0 0 140px;
  }

  .product-circle {
    width: 140px;
    height: 140px;
    padding: 10px;
  }

  .section-title {
    font-size: 24px;
  }

  .price-box {
    min-width: 120px;
    padding: 8px 12px;
  }

  .price-sale {
    font-size: 14px;
  }
}
