/* ===== SHOP PAGE ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.product-img.bg1 { background: linear-gradient(135deg, #d8f3dc, #74c69d); }
.product-img.bg2 { background: linear-gradient(135deg, #fef3cd, #f0c040); }
.product-img.bg3 { background: linear-gradient(135deg, #cfe2ff, #6ea8fe); }
.product-img.bg4 { background: linear-gradient(135deg, #f8d7da, #f1aeb5); }
.product-img.bg5 { background: linear-gradient(135deg, #e2d9f3, #c29ffa); }
.product-img.bg6 { background: linear-gradient(135deg, #d1ecf1, #6edff6); }
.product-img.bg7 { background: linear-gradient(135deg, #fde8d8, #fd9843); }
.product-img.bg8 { background: linear-gradient(135deg, #d4edda, #28a745); }

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.product-body p {
  color: var(--text-mid);
  font-size: 0.82rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}

.product-price .original {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: block;
}

/* Payment modal */
.payment-modal .modal-body {
  padding: 0;
}

.payment-info {
  padding: 1rem 1.5rem;
  background: var(--green-pale);
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-iframe-wrap {
  padding: 1.5rem;
}

.payment-iframe-placeholder {
  width: 100%;
  height: 380px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--off-white);
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.payment-iframe-placeholder .icon { font-size: 2.5rem; }
.payment-iframe-placeholder strong { color: var(--text-mid); font-size: 1rem; }
.payment-iframe-placeholder code {
  background: var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--green-dark);
}

@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
}
