:root {
  --bg: #f7f8f2;
  --surface: rgba(255, 252, 246, 0.92);
  --surface-strong: #fffdf8;
  --surface-soft: rgba(243, 249, 241, 0.88);
  --text: #14383b;
  --muted: #5b7373;
  --primary: #167f7d;
  --primary-dark: #0e5e5f;
  --primary-deep: #0a3e41;
  --accent: #d8b24c;
  --accent-dark: #9c6e15;
  --line: #d7e5d4;
  --shadow: 0 18px 50px rgba(15, 61, 65, 0.09);
  --shadow-soft: 0 10px 28px rgba(15, 61, 65, 0.08);
  --sold: #7b7f78;
  --in-stock: #166b68;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(216, 178, 76, 0.22), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(22, 127, 125, 0.14), transparent 30%),
    linear-gradient(180deg, #fdfcf8 0%, #f4f8f1 52%, #eef6ee 100%);
}

body {
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-area {
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.content-main {
  flex: 1;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(218, 185, 93, 0.18);
  background:
    linear-gradient(120deg, rgba(4, 28, 33, 0.98) 0%, rgba(8, 67, 74, 0.98) 46%, rgba(7, 43, 48, 0.98) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(7, 31, 33, 0.2);
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 108px;
  padding: 0.25rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-emblem-shell {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(231, 201, 118, 0.28);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.brand-emblem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.02rem;
  line-height: 1;
  min-width: 0;
}

.brand-wordmark-main {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.12rem;
  white-space: nowrap;
  font-family: "Great Vibes", "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 2.55vw, 3.05rem);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(8, 18, 11, 0.34);
}

.brand-wordmark-name {
  color: #2fc7c3;
}

.brand-wordmark-accent {
  color: #2fc7c3;
}

.brand-wordmark-subline {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.brand-wordmark-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e6c26d;
}

.brand-wordmark-line {
  flex: 1 1 auto;
  width: 2.35rem;
  max-width: 3rem;
  min-width: 1.7rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 178, 76, 0.25), rgba(216, 178, 76, 0.92), rgba(216, 178, 76, 0.25));
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(216, 178, 76, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #f7f8f2;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(2) {
  top: 23px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(3) {
  top: 30px;
  transform: translateX(-50%);
}

.menu-toggle.is-open span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav-panel {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-start;
  align-items: center;
  gap: 0.12rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
  margin-left: 0.2rem;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.64rem 0.78rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  color: rgba(245, 251, 246, 0.92);
  border: 1px solid transparent;
  transition: 180ms ease;
}

.menu-link:hover,
.nav-group:hover > .menu-link,
.nav-group:focus-within > .menu-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 178, 76, 0.22);
}

.menu-link.active,
.nav-group.is-active > .menu-link {
  background: rgba(216, 178, 76, 0.16);
  color: #fff8e4;
  border-color: rgba(232, 201, 120, 0.42);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.9rem;
}

.nav-group > .menu-link {
  cursor: pointer;
}

.menu-link.has-dropdown::after {
  content: "▾";
  margin-left: 0.45rem;
  font-size: 0.76rem;
  transition: transform 180ms ease;
}

.nav-group:hover > .menu-link.has-dropdown::after,
.nav-group:focus-within > .menu-link.has-dropdown::after {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.16rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.35rem);
  min-width: 220px;
  display: grid;
  gap: 0.3rem;
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid rgba(221, 195, 126, 0.28);
  background: rgba(6, 37, 41, 0.98);
  box-shadow: 0 22px 46px rgba(6, 17, 11, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 180ms ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(245, 251, 246, 0.9);
  font-weight: 600;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff6da;
}

.header-order-link {
  flex: 0 0 auto;
  text-align: center;
  white-space: nowrap;
}

.header-order-link.active {
  color: var(--primary-deep);
  border-color: rgba(216, 178, 76, 0.3);
  box-shadow: 0 12px 24px rgba(216, 178, 76, 0.18);
}

.section-shell,
.page-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  padding: 3.6rem 0 1.8rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.hero::before {
  width: 18rem;
  height: 18rem;
  right: -7rem;
  top: -6rem;
  background: radial-gradient(circle, rgba(216, 178, 76, 0.24) 0%, transparent 68%);
}

.hero::after {
  width: 20rem;
  height: 20rem;
  left: -9rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(22, 127, 125, 0.16) 0%, transparent 66%);
}

.hero-grid,
.page-hero-grid,
.feature-grid,
.detail-grid,
.policy-grid,
.contact-layout,
.qr-grid,
.placeholder-grid,
.collection-grid,
.step-grid,
.value-grid,
.faq-layout {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
}

.hero-copy-block {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-title,
.page-hero h1,
.status-box h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.8rem, 5.3vw, 5rem);
  max-width: none;
}

.hero-copy,
.page-intro,
.info-copy,
.page-panel p,
.page-panel li,
.section-shell p,
.section-shell li,
.faq-answer,
.policy-article p,
.policy-article li,
.contact-copy {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 62ch;
  margin-top: 1rem;
}

.hero-actions,
.contact-links,
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.18rem;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: 180ms ease;
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.button.primary {
  color: #fffef8;
  background: linear-gradient(135deg, var(--primary) 0%, #22a7a3 100%);
  box-shadow: 0 10px 26px rgba(22, 127, 125, 0.24);
}

.button.primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0f6867 0%, var(--primary) 100%);
}

.button.secondary {
  color: var(--primary-deep);
  background: linear-gradient(135deg, #f6e4ad 0%, #ecc46b 100%);
  box-shadow: 0 10px 24px rgba(216, 178, 76, 0.2);
}

.button.secondary:hover {
  transform: translateY(-1px);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(30, 107, 60, 0.14);
  color: var(--text);
}

.button.ghost:hover {
  background: #fffef9;
  border-color: rgba(216, 178, 76, 0.28);
}

.hero-panel,
.detail-card,
.policy-card,
.collection-card,
.step-card,
.placeholder-card,
.contact-channel,
.qr-card,
.hours-card,
.faq-support,
.faq-item,
.status-box {
  background: var(--surface-strong);
  border: 1px solid rgba(214, 228, 210, 0.95);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  border-radius: 30px;
  padding: 1rem;
  background:
    radial-gradient(circle at 16% 12%, rgba(216, 178, 76, 0.2), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(22, 127, 125, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 244, 0.98) 100%);
}

.brand-storyboard {
  display: grid;
  gap: 0.85rem;
}

.storyboard-primary,
.storyboard-note {
  border-radius: 24px;
  border: 1px solid rgba(214, 228, 210, 0.95);
  background: rgba(255, 255, 255, 0.9);
}

.storyboard-primary {
  display: grid;
  grid-template-columns: minmax(136px, 160px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.storyboard-logo-frame {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0.8rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(216, 178, 76, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(248, 251, 244, 0.98), rgba(255, 255, 255, 0.96));
}

.storyboard-logo {
  width: min(190px, 100%);
  height: auto;
}

.storyboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.storyboard-note {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.showcase-title {
  font-size: 1.5rem;
  margin-bottom: 0.15rem;
}

.showcase-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.showcase-tag,
.placeholder-tag,
.discount-pill,
.contact-tag,
.policy-tag,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.showcase-tag,
.placeholder-tag,
.policy-tag {
  padding: 0.32rem 0.62rem;
  text-transform: uppercase;
}

.showcase-tag,
.placeholder-tag {
  margin-bottom: 0.55rem;
  background: rgba(216, 178, 76, 0.16);
  color: var(--accent-dark);
}

.collection-card-text {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-height: 220px;
  background:
    radial-gradient(circle at top right, rgba(216, 178, 76, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 247, 0.96));
}

.collection-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 127, 125, 0.14), rgba(216, 178, 76, 0.24));
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-bands,
.page-stack {
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(216, 178, 76, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 252, 0.96), rgba(251, 253, 247, 0.94));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2,
.page-panel h2,
.detail-card h3,
.collection-card h3,
.step-card h3,
.contact-channel h3,
.qr-card h3,
.policy-card h3,
.faq-support h3,
.placeholder-card h3,
.modal-details h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
}

.section-lead,
.card-copy,
.collection-card p,
.step-card p,
.placeholder-card p,
.contact-channel p,
.qr-card p,
.policy-card p,
.policy-card li,
.faq-support p,
.detail-card p,
.detail-card li {
  color: var(--muted);
  line-height: 1.7;
}

.collection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card,
.step-card,
.placeholder-card,
.policy-card,
.contact-channel,
.qr-card,
.hours-card,
.detail-card,
.faq-support {
  border-radius: 24px;
  padding: 1rem;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 0.85rem;
}

.collection-card h3,
.step-card h3,
.placeholder-card h3,
.contact-channel h3,
.qr-card h3,
.policy-card h3 {
  margin-bottom: 0.35rem;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(216, 178, 76, 0.22), rgba(22, 127, 125, 0.2));
  color: var(--primary-dark);
  font-weight: 800;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1rem;
  align-items: center;
}

.brand-mark-card {
  border-radius: 28px;
  border: 1px solid rgba(214, 228, 210, 0.95);
  background:
    radial-gradient(circle at 20% 14%, rgba(216, 178, 76, 0.16), transparent 32%),
    radial-gradient(circle at 80% 82%, rgba(22, 127, 125, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 244, 0.96) 100%);
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 1.2rem;
}

.page-mark {
  width: min(320px, 100%);
  height: auto;
}

.feature-grid,
.detail-grid,
.value-grid,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-hero {
  padding: 2.8rem 0 1.25rem;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(3rem, 4.9vw, 4.8rem);
}

.page-intro {
  max-width: 62ch;
  font-size: 1.03rem;
}

.page-stack {
  padding-bottom: 3rem;
}

.page-panel {
  position: relative;
  display: grid;
  gap: 0.85rem;
  overflow: hidden;
  padding: 1.4rem 1.45rem;
  background:
    radial-gradient(circle at top left, rgba(47, 199, 195, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 252, 0.96), rgba(250, 252, 247, 0.94));
}

.page-panel h1,
.page-panel h2 {
  margin-bottom: 0.55rem;
}

.story-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.story-ribbon a {
  text-decoration: none;
}

.story-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(22, 127, 125, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
}

.detail-card ul,
.page-panel ul,
.policy-card ul,
.policy-article ul {
  margin: 0;
  padding-left: 1.1rem;
}

.policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-tag {
  margin-bottom: 0.7rem;
  background: rgba(22, 127, 125, 0.1);
  color: var(--primary-dark);
}

.policy-article {
  display: grid;
  gap: 1rem;
}

.policy-article section {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 228, 210, 0.92);
}

.policy-article section h2 {
  margin-bottom: 0.4rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-channel,
.qr-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-channel-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fffef8;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(20, 49, 37, 0.12);
}

.icon-whatsapp {
  background: linear-gradient(135deg, #20b15a, #188743);
}

.icon-email {
  background: linear-gradient(135deg, #d8b24c, #b07b17);
}

.icon-instagram {
  background: linear-gradient(135deg, #ff8a00, #e93c81 52%, #7d3ef4 100%);
}

.icon-facebook {
  background: linear-gradient(135deg, #1877f2, #2d4aa8);
}

.icon-location {
  background: linear-gradient(135deg, #167f7d, #0c5050);
}

.icon-review {
  background: linear-gradient(135deg, #d8b24c, #167f7d);
}

.contact-tag {
  padding: 0.25rem 0.55rem;
  background: rgba(22, 127, 125, 0.08);
  color: var(--primary-dark);
  text-transform: uppercase;
}

.contact-channel p:last-of-type,
.qr-card .contact-links {
  margin-top: auto;
}

.contact-channel a {
  color: var(--primary-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-mail-stack {
  display: grid;
  gap: 0.3rem;
}

.hours-card h3,
.qr-card h3,
.contact-channel h3 {
  font-size: 1.55rem;
}

.hours-grid {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.9rem;
  border-radius: 16px;
  background: rgba(247, 250, 245, 0.98);
  border: 1px solid rgba(214, 228, 210, 0.95);
}

.hours-row span:last-child {
  text-align: right;
  color: var(--muted);
}

.qr-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.qr-frame {
  width: min(230px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  border-radius: 22px;
  padding: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(214, 228, 210, 0.95);
  display: grid;
  place-items: center;
}

.qr-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-layout {
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 24px;
  padding: 0 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-weight: 800;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(216, 178, 76, 0.12);
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 1rem;
}

.controls {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.85rem;
}

.control {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.control label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
}

.control input,
.control select {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catalog {
  padding-top: 1.2rem;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(214, 228, 210, 0.95);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 4.75;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}

.card-head {
  margin: 0.25rem 0 0.3rem;
}

.card-meta {
  display: grid;
  gap: 0.12rem;
}

.card h3 {
  font-size: 1.92rem;
  line-height: 0.96;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.7rem;
}

.price-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.price-current-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
  padding: 0.88rem 0.92rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(216, 178, 76, 0.22), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 249, 248, 0.98) 100%);
  border: 1px solid rgba(216, 178, 76, 0.22);
}

.price-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.price-current-copy {
  display: grid;
  gap: 0.18rem;
}

.price-current,
.modal-price-main {
  color: var(--primary-deep);
  font-weight: 800;
}

.price-current {
  font-size: 1.68rem;
  line-height: 1;
}

.price-support-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-original-group,
.price-save-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.72rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 127, 125, 0.12);
}

.price-mini-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.discount-pill {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(216, 178, 76, 0.22);
  color: var(--accent-dark);
  text-transform: uppercase;
}

.price-original {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 700;
}

.price-save-pill {
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.status-badge {
  margin-top: 0.7rem;
  padding: 0.34rem 0.65rem;
}

.status-in-stock {
  background: rgba(22, 127, 125, 0.12);
  color: var(--in-stock);
}

.status-sold {
  background: #767972;
  color: #fffef8;
}

.card-copy {
  margin: 0.65rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  margin-top: auto;
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.empty-state {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
}

.hidden {
  display: none;
}

.modal {
  width: min(980px, 94vw);
  border: none;
  border-radius: 28px;
  padding: 0;
  background: transparent;
  overscroll-behavior: contain;
}

.modal::backdrop {
  background: rgba(9, 19, 12, 0.64);
}

.modal-card {
  position: relative;
  padding: 1rem;
  border-radius: 28px;
  background: #fffef9;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.05fr 0.95fr;
  box-shadow: 0 28px 60px rgba(6, 17, 11, 0.3);
}

.modal-gallery {
  min-width: 0;
}

.modal-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  touch-action: none;
}

.modal-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.18s ease;
  cursor: zoom-in;
}

.modal-image-frame.zoomed img {
  cursor: move;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 49, 37, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-size: 1.18rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.gallery-nav:disabled,
.zoom-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.gallery-nav-prev {
  left: 0.75rem;
}

.gallery-nav-next {
  right: 0.75rem;
}

.zoom-controls {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  gap: 0.35rem;
  padding: 0.24rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 49, 37, 0.12);
}

.zoom-button {
  border: none;
  border-radius: 999px;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.6rem;
  background: #f7faf6;
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 700;
}

.thumbnails {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.thumb {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
}

.thumb.active {
  border-color: rgba(216, 178, 76, 0.68);
  box-shadow: 0 0 0 2px rgba(216, 178, 76, 0.18);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-details h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.modal-price-board {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.modal-price-highlight {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 248, 0.97) 100%);
  border: 1px solid rgba(22, 127, 125, 0.12);
}

.modal-price-main {
  font-size: 2rem;
}

.modal-price-meta {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-price-meta-item {
  display: grid;
  gap: 0.18rem;
  min-width: 140px;
  padding: 0.75rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 127, 125, 0.08);
}

.modal-price-meta-item strong {
  color: var(--text);
}

.modal-description {
  color: var(--muted);
  line-height: 1.75;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.order-modal-card {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  background:
    radial-gradient(circle at top right, rgba(216, 178, 76, 0.18), transparent 26%),
    linear-gradient(180deg, #fffef9 0%, #f9fbf6 100%);
}

.order-summary-panel,
.order-channel-panel {
  display: grid;
  gap: 0.8rem;
}

.order-product-preview {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.order-product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-copy,
.order-note {
  color: var(--muted);
  line-height: 1.7;
}

.order-summary-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(216, 178, 76, 0.16);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-summary-meta {
  display: grid;
  gap: 0.5rem;
}

.order-summary-meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 127, 125, 0.12);
}

.order-summary-meta-item strong {
  color: var(--text);
}

.order-channel-grid {
  display: grid;
  gap: 0.75rem;
}

.order-channel-button {
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 20px;
  border: 1.5px solid rgba(22, 127, 125, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 248, 0.96));
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(11, 48, 44, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  overflow: hidden;
}

.order-channel-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  pointer-events: none;
}

.order-channel-button:hover,
.order-channel-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 178, 76, 0.42);
  background:
    radial-gradient(circle at top right, rgba(216, 178, 76, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(249, 250, 244, 0.96));
  box-shadow: var(--shadow-soft);
  outline: none;
}

.order-channel-button:hover::after,
.order-channel-button:focus-visible::after {
  border-color: rgba(216, 178, 76, 0.52);
}

.order-channel-button.is-active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.order-channel-button.is-active::after {
  border-color: rgba(216, 178, 76, 0.52);
}

.order-channel-button.preferred.is-active {
  border-color: rgba(32, 177, 90, 0.5);
  background:
    radial-gradient(circle at top right, rgba(32, 177, 90, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(247, 255, 250, 0.98), rgba(240, 250, 246, 0.98));
}

.order-channel-button.preferred.is-active::after {
  border-color: rgba(32, 177, 90, 0.46);
}

.order-channel-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fffef8;
  font-size: 0.88rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.order-channel-copy {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.order-channel-copy strong {
  font-size: 1.05rem;
}

.order-channel-copy span {
  color: var(--muted);
  line-height: 1.55;
}

.order-feedback {
  min-height: 1.6rem;
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.listing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(22, 127, 125, 0.08);
  border: 1px solid rgba(22, 127, 125, 0.16);
}

.listing-note strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--primary-deep);
}

.listing-note p {
  margin: 0;
  color: var(--muted);
}
.icon-button {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 999px;
  background: rgba(20, 49, 37, 0.08);
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}

.status-page {
  display: grid;
  place-items: center;
  min-height: 62vh;
  padding: 2.5rem 0;
}

.status-box {
  width: min(760px, 92vw);
  text-align: center;
  border-radius: 30px;
  padding: 2.6rem 1.8rem;
}

.status-code {
  margin: 0;
  font-size: clamp(4rem, 11vw, 6.5rem);
  color: var(--primary-dark);
  line-height: 1;
}

.status-box p {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
  padding: 1.25rem 0 0;
}

.footer-shell {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  border-radius: 0;
  border-top: 1px solid rgba(216, 178, 76, 0.16);
  background:
    linear-gradient(135deg, rgba(5, 36, 40, 0.98) 0%, rgba(10, 79, 85, 0.98) 52%, rgba(13, 57, 52, 0.98) 100%);
  padding: 1.05rem clamp(1rem, 4vw, 2.5rem) 0.85rem;
  box-shadow: 0 -12px 30px rgba(7, 31, 33, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.45fr) repeat(3, minmax(120px, 0.68fr)) minmax(250px, 0.98fr);
  gap: 0.85rem 1.4rem;
  align-items: start;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.2rem 0.95rem;
  align-items: start;
}

.footer-logo {
  width: min(110px, 100%);
  height: auto;
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.footer-copy {
  max-width: none;
  margin: 0;
  color: rgba(245, 251, 246, 0.8);
  line-height: 1.55;
}

.footer-socials,
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.8rem;
}

.footer-socials a,
.footer-column a,
.footer-bottom-links a {
  text-decoration: none;
  color: rgba(245, 251, 246, 0.86);
  overflow-wrap: anywhere;
}

.footer-socials a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 178, 76, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.footer-socials {
  grid-column: 2;
  margin-top: 0.15rem;
}

.footer-heading {
  margin: 0 0 0.7rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f0cf80;
}

.footer-column {
  display: grid;
  gap: 0.42rem;
}

.footer-column a {
  color: rgba(245, 251, 246, 0.82);
}

.footer-grid > .footer-column:last-child a {
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: 0.98rem;
}

.footer-bottom {
  margin-top: 0.85rem;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(216, 178, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 251, 246, 0.72);
}

#catalog {
  scroll-margin-top: 7.5rem;
}

@media (max-width: 1180px) {
  .collection-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(300px, 1.3fr) repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split-panel,
  .contact-layout,
  .faq-layout,
  .detail-grid,
  .feature-grid,
  .policy-grid,
  .value-grid,
  .collection-grid,
  .step-grid,
  .placeholder-grid,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-card {
    grid-template-columns: 1fr;
  }

  .order-modal-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-shell {
    min-height: 84px;
    padding: 0.45rem 0;
  }

  .brand-emblem-shell {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .brand-wordmark-main {
    font-size: clamp(1.8rem, 6vw, 2.25rem);
  }

  .brand-wordmark-sub {
    font-size: 0.88rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.25rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 0.9rem;
    border-radius: 0 0 22px 22px;
    border: 1px solid rgba(216, 178, 76, 0.18);
    background:
      linear-gradient(180deg, #083e43 0%, #0a5258 100%);
    box-shadow: 0 20px 40px rgba(7, 31, 33, 0.24);
  }

  .site-header.menu-open .site-nav-panel {
    display: flex;
  }

  .site-nav {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .menu-link,
  .header-order-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
    padding: 0.82rem 0.95rem;
  }

  .nav-group {
    width: 100%;
  }

  .nav-group::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    min-width: 0;
    margin-top: 0.25rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 178, 76, 0.18);
    box-shadow: none;
    display: grid;
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    transform: none;
  }

  .controls {
    grid-template-columns: 1fr;
  }

  .contact-channel-grid,
  .storyboard-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > .footer-column:last-child a {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(94vw, 94vw);
  }

  .hero,
  .page-hero {
    padding-top: 2rem;
  }

  .hero-title,
  .page-hero h1,
  .status-box h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .section-shell,
  .page-panel,
  .hero-panel,
  .status-box {
    border-radius: 24px;
  }

  .brand-lockup {
    gap: 0.8rem;
  }

  .brand-emblem-shell {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .brand-wordmark-main {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .brand-wordmark-sub {
    font-size: 0.78rem;
  }

  .page-panel,
  .section-shell {
    padding: 1.2rem 1.1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .price-support-row,
  .modal-price-meta,
  .modal-actions,
  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .storyboard-primary {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .card h3 {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .footer-brand,
  .footer-grid > .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-brand {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.3rem 0.85rem;
  }

  .footer-logo {
    width: 82px;
  }

  .footer-socials {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
