.products-page{
  min-height:100vh;
  padding:34px clamp(22px,5vw,78px) 70px;
  background:
    radial-gradient(circle at 74% 18%,rgba(49,111,115,.15),transparent 28rem),
    linear-gradient(180deg,#06100f,#02080d);
}
.products-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:70px;
}
.products-header a,
.product-cart-indicator{
  color:rgba(215,255,255,.78);
  font:600 10px Inter,system-ui,sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.product-cart-indicator{
  min-width:76px;
  min-height:42px;
  border:1px solid rgba(142,221,238,.22);
  background:rgba(4,21,32,.30);
  cursor:pointer;
}
.product-listing{
  width:min(1380px,100%);
  margin:auto;
}
.product-listing h1{
  margin:0 0 34px;
  color:var(--gold2);
  font:600 clamp(48px,7vw,86px)/.94 "Cormorant Garamond",serif;
}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.catalog-card{
  min-height:100%;
  display:grid;
  grid-template-rows:auto 1fr;
  border:1px solid rgba(216,202,152,.22);
  background:
    linear-gradient(180deg,rgba(9,29,42,.46),rgba(3,14,18,.76)),
    radial-gradient(circle at 50% 20%,rgba(85,225,232,.11),transparent 14rem);
  box-shadow:0 24px 80px rgba(0,0,0,.24);
}
.product-image-button{
  width:100%;
  aspect-ratio:1/1.08;
  padding:0;
  border:0;
  border-bottom:1px solid rgba(216,202,152,.18);
  background:rgba(3,14,20,.34);
  cursor:zoom-in;
  overflow:hidden;
}
.product-image-button img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  padding:clamp(22px,3vw,44px);
}
.product-image-button.book-image img{
  object-fit:cover;
  object-position:78% 50%;
  padding:0;
  filter:saturate(.96) brightness(.9);
}
.product-copy{
  display:flex;
  flex-direction:column;
  padding:24px clamp(18px,2vw,28px) 28px;
}
.product-status{
  margin:0 0 14px;
  color:rgba(168,252,255,.78);
  font-size:10px;
  letter-spacing:.22em;
}
.product-copy h2{
  margin:0;
  color:var(--gold2);
  font:600 clamp(31px,2.8vw,44px)/1 "Cormorant Garamond",serif;
}
.product-copy p{
  min-height:78px;
  color:rgba(191,211,206,.78);
  line-height:1.65;
}
.product-copy dl{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:20px 0 24px;
}
.product-copy dl div{
  border-top:1px solid rgba(157,250,255,.16);
  padding-top:12px;
}
.product-copy dt{
  color:rgba(168,252,255,.70);
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.product-copy dd{
  margin:7px 0 0;
  color:var(--cream);
  font:600 20px "Cormorant Garamond",serif;
}
.product-purchase{
  margin-top:auto;
  display:grid;
  grid-template-columns:minmax(78px,96px) 1fr;
  gap:10px;
  align-items:stretch;
}
.product-quantity{
  min-height:50px;
  display:grid;
  grid-template-columns:1fr;
  align-content:center;
  gap:4px;
  padding:8px 10px;
  border:1px solid rgba(216,202,152,.30);
  background:rgba(4,21,32,.36);
  color:rgba(168,252,255,.78);
  font:600 9px Inter,system-ui,sans-serif;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.product-quantity input{
  width:100%;
  border:0;
  background:transparent;
  color:var(--cream);
  font:600 18px "Cormorant Garamond",serif;
  outline:0;
}
.product-quantity input:disabled{
  color:rgba(239,232,190,.72);
}
.product-add{
  width:100%;
  min-height:50px;
  padding:0 24px;
  border:1px solid rgba(216,202,152,.42);
  background:rgba(7,28,44,.42);
  color:var(--gold2);
  font:600 10px Inter,system-ui,sans-serif;
  letter-spacing:.18em;
  white-space:nowrap;
  cursor:pointer;
}
.image-lightbox{
  position:fixed;
  inset:0;
  z-index:90;
  display:grid;
  place-items:center;
  padding:28px;
  background:rgba(1,7,12,.78);
  backdrop-filter:blur(12px);
  opacity:0;
  pointer-events:none;
}
.image-lightbox[aria-hidden="false"]{
  opacity:1;
  pointer-events:auto;
}
.image-lightbox button{
  position:absolute;
  right:28px;
  top:24px;
  width:40px;
  height:40px;
  border:1px solid rgba(157,250,255,.30);
  border-radius:50%;
  background:rgba(4,21,32,.34);
  color:#dff;
  cursor:pointer;
}
.image-lightbox img{
  max-width:min(620px,86vw);
  max-height:88vh;
  box-shadow:0 30px 100px rgba(0,0,0,.45);
}
@media(max-width:760px){
  .catalog-grid{grid-template-columns:1fr}
  .product-copy dl{grid-template-columns:1fr}
  .product-copy p{min-height:0}
  .product-purchase{grid-template-columns:1fr}
}
@media(min-width:761px) and (max-width:1180px){
  .catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
