:root {
  --product-ink: #151515;
  --product-muted: #6f6b64;
  --product-line: #ded9cf;
  --product-cream: #f5f1e8;
  --product-paper: #fbfaf7;
  --product-orange: #ef6b2e;
  --product-coal: #11100f;
  --product-radius: 22px;
}

.product-page {
  background: var(--product-paper);
  color: var(--product-ink);
}

.product-page .eyebrow {
  color: var(--product-orange);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-hero {
  padding: 72px 0 62px;
  background: linear-gradient(180deg, #f0eadf 0%, var(--product-cream) 100%);
  border-bottom: 1px solid var(--product-line);
}

.product-hero__inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--product-muted);
  font-size: .78rem;
  margin-bottom: 46px;
}

.product-breadcrumb a:hover {
  color: var(--product-orange);
}

.product-hero h1 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(4.4rem, 9vw, 8rem);
  line-height: .86;
  margin: 9px 0 0;
}

.product-hero h1 span {
  color: var(--product-orange);
}

.product-hero__copy {
  font-size: 1.04rem;
  color: #5d5850;
  max-width: 520px;
  margin: 0 0 7px;
}

.product-section {
  padding: 88px 0 96px;
}

.product-filter-shell,
.product-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 42px;
}

.product-filter-copy h2,
.product-section-head h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: .96;
  margin: 8px 0;
}

.product-filter-copy p,
.product-section-head p {
  margin: 0;
  color: var(--product-muted);
}

.product-filters {
  display: flex;
  background: #ebe6dc;
  padding: 5px;
  border-radius: 999px;
  flex: none;
}

.product-filter-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 11px 12px 11px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b665e;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
}

.product-filter-btn b {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  font-size: .72rem;
}

.product-filter-btn.is-active {
  background: var(--product-coal);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.product-filter-btn.is-active b {
  background: var(--product-orange);
  color: #fff;
}

.product-mapping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mapping-card {
  background: #fff;
  border: 1px solid var(--product-line);
  border-radius: var(--product-radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}

.mapping-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(30,22,14,.08);
  border-color: #cbc4b8;
}

.mapping-card__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #050505;
  overflow: hidden;
}

.mapping-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.mapping-card:hover .mapping-card__visual img {
  transform: scale(1.035);
}

.mapping-card__number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.mapping-card__body {
  padding: 22px 22px 24px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 13px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-badge:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.product-badge--shisha { background: #fff0e2; color: #985024; }
.product-badge--shisha:before { background: #db7435; }
.product-badge--bbq { background: #e7f0eb; color: #315b49; }
.product-badge--bbq:before { background: #4f806a; }

.mapping-card h3 {
  font-size: 1.28rem;
  line-height: 1.15;
  margin: 0;
}

.mapping-card__local {
  min-height: 20px;
  margin: 5px 0 16px;
  color: var(--product-muted);
  font-size: .8rem;
}

.mapping-card__facts {
  border-top: 1px solid #eee9df;
  padding-top: 15px;
  display: grid;
  gap: 10px;
}

.mapping-card__fact {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: .76rem;
}

.mapping-card__fact span {
  color: var(--product-muted);
}

.mapping-card__fact strong {
  text-align: right;
  font-weight: 600;
  max-width: 65%;
}

.mapping-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.mapping-card__link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--product-ink);
  font-weight: 800;
  font-size: .78rem;
  cursor: pointer;
}

.mapping-card__link:hover {
  color: var(--product-orange);
}

.mapping-card__use {
  color: #918a80;
  font-size: .7rem;
}

.collection-note {
  margin-top: 34px;
  padding: 34px;
  background: var(--product-cream);
  border-radius: var(--product-radius);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  align-items: center;
}

.collection-note h3 {
  font-size: 1.6rem;
  margin: 7px 0 0;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.standard-grid div {
  background: #fff;
  border: 1px solid var(--product-line);
  border-radius: 15px;
  padding: 16px;
}

.standard-grid strong {
  display: block;
  font-size: 1.05rem;
}

.standard-grid span {
  color: var(--product-muted);
  font-size: .72rem;
}

.fineprint {
  grid-column: 2;
  margin: 0;
  color: #8a8379;
  font-size: .69rem;
}

.mapping-section {
  padding: 90px 0;
  background: #fff;
  border-top: 1px solid var(--product-line);
  border-bottom: 1px solid var(--product-line);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--product-line);
  border-radius: 20px;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.table-wrap th,
.table-wrap td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid #e8e3d9;
}

.table-wrap th {
  background: var(--product-cream);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6f695f;
}

.table-wrap td {
  font-size: .84rem;
}

.table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.table-name strong,
.table-name span {
  display: block;
}

.table-name span {
  color: var(--product-muted);
  font-size: .72rem;
  margin-top: 2px;
}

.app-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.app-tags span {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: .66rem;
  font-weight: 800;
}

.app-tags .shisha { background: #fff0e2; color: #985024; }
.app-tags .bbq { background: #e7f0eb; color: #315b49; }

.product-packaging {
  padding: 90px 0;
}

.product-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-package-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--product-line);
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.product-package-grid article > span {
  color: var(--product-orange);
  font-weight: 800;
  font-size: .72rem;
}

.product-package-grid h3 {
  font-size: 1.25rem;
  margin: auto 0 8px;
}

.product-package-grid p {
  margin: 0;
  color: var(--product-muted);
  font-size: .83rem;
}

.product-box-detail {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--product-line);
}

.product-box-detail__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.product-box-detail__head h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.product-box-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product-box-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 18px;
  background: #fff;
}

.product-box-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.product-box-gallery figcaption {
  padding: 12px 13px;
  color: var(--product-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-cta {
  padding: 24px 0 90px;
}

.product-cta__inner {
  background: var(--product-coal);
  color: #fff;
  border-radius: 30px;
  padding: 58px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.product-cta__inner:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  right: -70px;
  top: -130px;
}

.product-cta h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: .96;
  max-width: 760px;
  margin: 8px 0 14px;
}

.product-cta p {
  max-width: 720px;
  color: #bcb8b1;
  margin: 0;
}

.product-cta .btn {
  position: relative;
  z-index: 2;
  flex: none;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.product-modal.is-open {
  display: grid;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7,7,7,.82);
  backdrop-filter: blur(8px);
}

.product-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
}

.product-modal__dialog > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  background: #000;
}

.product-modal__content {
  padding: 38px;
  align-self: center;
}

.product-modal__content h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 8px 0 4px;
}

.product-modal__local {
  color: var(--product-muted);
  margin: 0 0 26px;
}

.product-modal__facts {
  display: grid;
  border-top: 1px solid var(--product-line);
  border-bottom: 1px solid var(--product-line);
  margin-bottom: 22px;
}

.product-modal__facts div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #eee9df;
  font-size: .78rem;
}

.product-modal__facts div:last-child {
  border-bottom: 0;
}

.product-modal__facts span {
  color: var(--product-muted);
}

.product-modal__facts strong {
  text-align: right;
}

.product-modal__content > p:last-child {
  color: #5d5850;
  font-size: .9rem;
}

.product-modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .product-mapping-grid { grid-template-columns: repeat(2, 1fr); }
  .product-package-grid { grid-template-columns: repeat(2, 1fr); }
  .product-box-gallery { grid-template-columns: repeat(3, 1fr); }
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .product-hero { padding: 44px 0 48px; }
  .product-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .product-breadcrumb { margin-bottom: 28px; }
  .product-hero h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .product-filter-shell,
  .product-section-head { display: grid; grid-template-columns: 1fr; gap: 24px; }
  .product-filters { width: 100%; }
  .product-filter-btn { flex: 1; justify-content: center; }
  .collection-note { grid-template-columns: 1fr; }
  .fineprint { grid-column: 1; }
  .product-box-detail__head { display: block; }
  .product-box-detail__head h3 { margin-top: 8px; }
  .product-cta__inner { padding: 38px; display: block; }
  .product-cta .btn { margin-top: 26px; }
  .product-modal__dialog { grid-template-columns: 1fr; }
  .product-modal__dialog > img { min-height: 0; aspect-ratio: 1 / 1; }
  .product-modal__content { padding: 28px; }
}

@media (max-width: 580px) {
  .product-mapping-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-package-grid,
  .product-box-gallery,
  .standard-grid { grid-template-columns: 1fr; }
  .collection-note { padding: 24px; }
  .product-section-head { margin-bottom: 26px; }
  .mapping-section,
  .product-packaging,
  .product-section { padding: 64px 0; }
  .product-cta { padding-bottom: 64px; }
  .product-cta__inner { padding: 30px 24px; border-radius: 22px; }
}
