.product-image-placeholder{display:flex;width:100%;height:100%;align-items:center;justify-content:center;background:linear-gradient(135deg,#f8ebdd,#f3dfce);color:var(--pink);font-size:2rem}.product-category{display:block;margin:0 5px 4px;color:var(--pink);font-size:.66rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase}.original-price{color:#8a7468;text-decoration:line-through;font-size:.78rem;font-weight:500}.product-serving,.product-option-label{display:block;margin:0 5px 10px;color:#674f44;font-size:.74rem}.product-option-label select{display:block;width:100%;margin-top:4px;padding:7px;border:1px solid #e7d2c2;border-radius:7px;background:#fff;color:var(--text-dark);font:inherit}.cart-item-image{display:flex;width:72px;height:72px;align-items:center;justify-content:center;border-radius:9px;background:var(--cream);color:var(--pink)}.cart-item-image img{width:72px;height:72px;border-radius:9px;object-fit:cover}.cart-item-variation,.cart-item-subtotal{color:#71594d;font-size:.72rem}.cart-item-subtotal{margin-top:5px;font-weight:700}.gift-wrap-option{display:flex;gap:8px;align-items:center;padding:12px;border:1px solid #ead8ca;border-radius:10px;background:#fff;color:#5d4336;font-size:.82rem}.gift-wrap-option strong{margin-left:auto;color:var(--pink)}.cookie-price{display:flex;align-items:baseline;gap:8px;margin:0 5px 14px;color:var(--pink);font-weight:700}.cookie-price-old{font-size:.88rem;font-weight:500;color:#999;text-decoration:line-through}.cookie-price-current{font-size:1.15rem;font-weight:800;color:var(--pink)}

/* ==========================================================================
   PRODUCT DETAIL MODAL (DESKTOP & BASE LIGHTBOX)
   ========================================================================== */
.cookie-card .cookie-img-wrapper,
.cookie-card .cookie-name {
  cursor: pointer;
}
.cookie-card .cookie-name {
  transition: color 0.2s ease;
}
.cookie-card .cookie-name:hover {
  color: var(--pink, #d96878);
}

.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(20, 9, 5, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal-sheet {
  background: var(--bg-cream, #fdf8f4);
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: 0 25px 60px rgba(20, 9, 5, 0.4);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal-sheet::-webkit-scrollbar {
  width: 6px;
}
.product-modal-sheet::-webkit-scrollbar-thumb {
  background: rgba(217, 104, 120, 0.3);
  border-radius: 10px;
}

.product-modal-overlay.active .product-modal-sheet {
  transform: scale(1);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eee;
  border: 0;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--dark-brown, #1b0d07);
  transition: background 0.2s, transform 0.2s;
}

.product-modal-close:hover {
  background: #e0d0c5;
  transform: scale(1.06);
}

.product-modal-img-wrap {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background: #f0e2d5;
}

.product-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-modal-img-wrap:hover img {
  transform: scale(1.03);
}

.product-modal-info h3 {
  font-size: 22px;
  font-family: var(--font-heading, 'Playfair Display', serif);
  color: var(--dark-brown, #1b0d07);
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.25;
}

.product-modal-price-wrap {
  font-size: 19px;
  font-weight: 800;
  color: var(--pink, #d96878);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.modal-prod-short-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-brown, #311b13);
  line-height: 1.45;
  margin-bottom: 10px;
  background: rgba(217, 104, 120, 0.08);
  padding: 10px 14px;
  border-left: 3px solid var(--pink, #d96878);
  border-radius: 4px 8px 8px 4px;
}

.product-modal-info p#modal-prod-desc {
  font-size: 14px;
  color: #6c5448;
  line-height: 1.55;
  margin-bottom: 14px;
}

.product-modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.product-modal-actions .btn {
  flex: 1;
  min-height: 46px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 99px;
}

