/* ============ v2 additions: product gallery, hero collage, feature banner, modal, FAQ ============ */

/* ---------- hero collage ---------- */
.hero-collage {
  position: relative; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 14px;
  transform: rotate(-1.4deg);
}
.hero-collage .hc {
  background: #fff; border-radius: 10px; padding: 12px 12px 10px;
  box-shadow: 0 10px 34px rgba(26,26,26,.16); border: 1px solid #eee9e2;
  transition: transform .25s ease;
}
.hero-collage .hc:hover { transform: translateY(-6px) rotate(0deg); }
.hero-collage .hc img { width: 100%; border-radius: 6px; }
.hero-collage .hc:nth-child(1) { transform: rotate(-2deg); }
.hero-collage .hc:nth-child(2) { transform: translateY(16px) rotate(1.6deg); }
.hero-collage .hc:nth-child(3) { transform: rotate(2.2deg); }
.hero-collage .hc:nth-child(4) { transform: translateY(-8px) rotate(1.2deg); }
.hero-collage .hc:nth-child(5) { transform: translateY(14px) rotate(-1.8deg); z-index: 1; }
.hero-collage .hc:nth-child(6) { transform: rotate(-1deg) translateY(-4px); }
.hero-collage .hc .cap {
  font-size: 11.5px; font-weight: 600; color: var(--muted);
  text-align: center; margin-top: 7px; letter-spacing: .02em;
}
.hero-collage .hc .cap b { color: var(--ink); }
.glow-chip {
  position: absolute; top: -18px; right: -10px; z-index: 2;
  background: linear-gradient(135deg, #2b1a5e, #0e5a46);
  color: #b9ff6e; font-weight: 700; font-size: 12px; letter-spacing: .12em;
  padding: 9px 16px; border-radius: 30px; transform: rotate(3deg);
  box-shadow: 0 8px 26px rgba(14,90,70,.45); text-transform: uppercase;
}

/* ---------- filter chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
  border-radius: 30px; padding: 8px 18px; font-size: 13.5px; font-weight: 600;
  transition: all .15s; cursor: pointer;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip .cnt { opacity: .55; font-weight: 500; margin-left: 5px; font-size: 12px; }
.chip.new::after { content: "NEW"; background: var(--accent); color: #fff; font-size: 9px; padding: 2px 6px; border-radius: 3px; margin-left: 8px; letter-spacing: .08em; vertical-align: 1px; }

/* ---------- product grid ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1020px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 740px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; cursor: pointer; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }
.prod-card .ph {
  background: #f6f4ef; aspect-ratio: 1; display: flex; align-items: center;
  justify-content: center; padding: 14px; position: relative;
}
.prod-card .ph img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-card .col-tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(26,26,26,.85); color: #fff; backdrop-filter: blur(4px);
  font-size: 10.5px; font-weight: 600; letter-spacing: .05em;
  padding: 4px 9px; border-radius: 4px; text-transform: uppercase;
}
.prod-card .col-tag.glow { background: linear-gradient(135deg, #2b1a5e, #0e5a46); color: #b9ff6e; }
.prod-card .bd { padding: 13px 15px 15px; border-top: 1px solid var(--paper-2); }
.prod-card .bd .place { font-weight: 700; font-size: 15px; letter-spacing: .01em; }
.prod-card .bd .sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.prod-card .quick {
  position: absolute; inset: auto 0 0 0; padding: 9px;
  background: rgba(216,0,12,.95); color: #fff; text-align: center;
  font-size: 12.5px; font-weight: 600;
  transform: translateY(100%); transition: transform .2s ease;
}
.prod-card:hover .quick { transform: translateY(0); }

/* ---------- glow feature banner ---------- */
.glow-feature { position: relative; overflow: hidden; background: #0d1f2d; color: #fff; }
.glow-feature .bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .9;
}
.glow-feature .veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,18,26,.94) 0%, rgba(10,18,26,.78) 42%, rgba(10,18,26,.18) 100%);
}
.glow-feature .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: clamp(52px, 8vw, 96px) 0; }
.glow-feature h2 { color: #fff; }
.glow-feature .eyebrow { color: #b9ff6e; }
.glow-feature .lead { color: rgba(255,255,255,.75); }
.glow-feature .btn-primary { background: #b9ff6e; color: #0d1f2d; }
.glow-feature .btn-primary:hover { background: #d4ff9e; }
.glow-daynight { display: flex; gap: 12px; margin-top: 24px; }
.glow-daynight .dn {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px; padding: 12px 16px; font-size: 13px;
}
.glow-daynight .dn b { display: block; font-size: 14px; margin-bottom: 2px; }
.glow-daynight .dn span { color: rgba(255,255,255,.6); }
@media (max-width: 920px) {
  .glow-feature .inner { grid-template-columns: 1fr; }
  .glow-feature .bg { opacity: .35; }
  .glow-feature .veil { background: rgba(10,18,26,.82); }
}

/* ---------- craft cards ---------- */
.craft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 920px) { .craft-grid { grid-template-columns: 1fr; } }
.craft-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.craft-card .ph { background: #f6f4ef; height: 240px; display: flex; align-items: center; justify-content: center; padding: 22px; }
.craft-card .ph img { max-height: 100%; max-width: 100%; object-fit: contain; }
.craft-card .bd { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.craft-card .bd h3 { font-size: 21px; margin-bottom: 8px; }
.craft-card .bd > p { color: var(--muted); font-size: 14px; }
.craft-card .specs { margin-top: 18px; border-top: 1px dashed var(--line); padding-top: 16px; display: grid; gap: 9px; }
.craft-card .specs .row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.craft-card .specs .row span { color: var(--muted); }
.craft-card .specs .row b { text-align: right; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item .q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 19px 22px; font-size: 15.5px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit;
}
.faq-item .q .pm { color: var(--accent); font-size: 22px; font-weight: 400; transition: transform .2s; flex: none; }
.faq-item.open .q .pm { transform: rotate(45deg); }
.faq-item .a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item .a .inner-a { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* ---------- product modal ---------- */
.modal-veil {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(20,18,15,.72); backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-veil.open { display: flex; }
.modal {
  background: var(--paper); border-radius: 12px; max-width: 860px; width: 100%;
  max-height: calc(100vh - 40px); overflow: auto; position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
}
.modal .close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(26,26,26,.75); color: #fff; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.modal .close:hover { background: var(--accent); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .modal-grid { grid-template-columns: 1fr; } }
.modal .ph { background: #f6f4ef; padding: 28px; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.modal .ph img { max-width: 100%; max-height: 420px; object-fit: contain; }
.modal .bd { padding: 30px 30px 28px; }
.modal .bd .col-tag { display: inline-block; background: var(--ink); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; padding: 5px 10px; border-radius: 4px; text-transform: uppercase; margin-bottom: 12px; }
.modal .bd h3 { font-size: 28px; margin-bottom: 4px; }
.modal .bd .sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.modal .specs { display: grid; gap: 10px; border-top: 1px dashed var(--line); padding-top: 18px; margin-bottom: 22px; }
.modal .specs .row { display: flex; justify-content: space-between; font-size: 13.5px; gap: 14px; }
.modal .specs .row span { color: var(--muted); }
.modal .btn { width: 100%; }
.modal .sec-link { text-align: center; margin-top: 12px; font-size: 13px; color: var(--muted); }
.modal .sec-link a { color: var(--accent); font-weight: 600; }

/* ---------- section header with side link ---------- */
.section-head .more { margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--accent); }
