/* =============================
   Products / Signature Boxes
   ============================= */

.products{
  margin-bottom: 48px;
}

.products .product{
  border: 1px solid rgba(200,162,77,.4);
  padding: 16px;
  border-radius: 6px;
  background: transparent;
}

/* Product card (grid only) */
.product{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  transition: box-shadow .35s ease;
  box-shadow: none;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.product a.btn{
  margin-top: auto;
  margin-bottom: 4px;
  align-self: flex-start; /* or center, depending on your design */
}

.product:hover{
  box-shadow: 0 4px 6px rgba(200,162,77,.18);
}

.product h3{
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--gold-soft);
  letter-spacing: .04em;
}

.product img{
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 24px 0;
  border-radius: 12px;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.product-guidance{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .55;
  margin: 6px 0 8px;
}

/* =============================
   SHOP-SPECIFIC EXTENSIONS
   ============================= */

/* Section spacing */
section.products {
  padding-top: clamp(16px, 3vw, 28px);
}

/* Product description */
.product p {
  font-size: 14px;
  line-height: 1.65;
  opacity: .75;
  margin-bottom: 10px;
}

/* Price */
.shop-price {
  font-size: 18px;
  letter-spacing: .06em;
  color: var(--gold-soft);
  margin: 8px 0 14px;
}

.shop-guidance,
.product-guidance {
  margin: 10px 0 14px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(201, 178, 124, .45);
  transition:
    color .25s ease,
    letter-spacing .25s ease,
    opacity .25s ease;
}

.shop-guidance::after,
.product-guidance::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 8px;
  background: rgba(201, 178, 124, .25);
}

/* Guidance hover */
.product:hover .shop-guidance,
.product:hover .product-guidance {
  color: rgba(201, 178, 124, .65);
  opacity: 1;
  letter-spacing: .06em;
}

/* Optional: image lift (remove if undesired) */
.product:hover img {
  transform: translateY(-3px);
}

.product-footer {
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
