/* Products page – modal styles (dark theme) */

.product-modal-inner {
  background: var(--bg2);
  border: 1px solid var(--b2);
  border-radius: var(--r-lg);
  max-width: 680px; width: 92vw;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modalIn .22s ease;
}
@keyframes modalIn {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.product-modal-inner .lightbox-close {
  top: .85rem; right: .85rem;
  position: sticky; float: right; z-index: 10;
}
.product-modal-hero {
  aspect-ratio: 16/7;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  border-bottom: 1px solid var(--b1);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.product-modal-body { padding: 1.75rem 2rem 2rem; }
.product-modal-body .product-card-cat { font-size: .72rem; }
.product-modal-body h2 { margin: .4rem 0 1rem; font-size: 1.85rem; }
.product-modal-body > p { margin-bottom: 1.25rem; }

.product-features-list { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.feature-tag {
  background: var(--bg3); border: 1px solid var(--b2);
  border-radius: var(--r); padding: .28rem .85rem;
  font-family: var(--fh); font-size: .76rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--t2);
}
.product-modal-actions { margin-top: 1.75rem; display: flex; gap: .85rem; flex-wrap: wrap; }

/* Category filter (products page) */
#cat-filter { justify-content: center; }
