:root {
  --ivory: #f4f4f1;
  --ivory-soft: #fafafa;
  --paper: #ffffff;
  --ink: #0b0b0b;
  --ink-soft: #333333;
  --muted: #696969;
  --gold: #111111;
  --gold-light: #dededb;
  --line: rgba(11, 11, 11, 0.14);
  --line-light: rgba(255, 255, 255, 0.25);
  --white: #ffffff;
  --success: #325e44;
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.13);
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 0, 0, 0.055), transparent 32rem),
    var(--ivory-soft);
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  right: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.deema-topbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 18px;
  color: var(--white);
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.deema-topbar img {
  width: 102px;
  height: auto;
  object-fit: contain;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 6px max(24px, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand-logo-frame {
  width: 124px;
  height: 92px;
  display: grid;
  place-items: center;
  overflow: visible;
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover .brand-logo-frame,
.brand:focus-visible .brand-logo-frame {
  transform: translateY(-2px);
  opacity: 0.72;
}

.brand-logo {
  width: 112px;
  height: 112px;
  display: block;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.88rem;
}

.desktop-nav a,
.footer-links a,
.footer-links button {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after,
.footer-links button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-links button:hover::after,
.footer-links button:focus-visible::after {
  transform: scaleX(1);
}

.cart-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 15px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
}

.cart-count {
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  color: var(--ivory);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.72rem;
}

.hero {
  width: var(--shell);
  min-height: calc(100vh - 148px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: stretch;
  gap: clamp(32px, 6vw, 90px);
  margin: 0 auto;
  padding: 42px 0 72px;
}

.hero-copy {
  align-self: center;
  padding: 30px 0 20px;
}

.hero-brandmark {
  width: clamp(220px, 20vw, 286px);
  height: clamp(180px, 17vw, 240px);
  display: grid;
  place-items: center;
  margin: 0 0 10px;
  overflow: visible;
}

.hero-brandmark img {
  width: clamp(230px, 22vw, 310px);
  height: clamp(230px, 22vw, 310px);
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.1rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--gold);
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-description {
  max-width: 510px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.primary-button,
.secondary-button,
.text-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.primary-button {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
  border-radius: 999px;
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--white);
  background: #343434;
  border-color: #343434;
  transform: translateY(-2px);
}

.secondary-button {
  background: transparent;
  border-color: var(--line);
  border-radius: 999px;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--ink);
}

.text-button,
.footer-links button {
  min-height: auto;
  padding: 5px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gold);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 62px;
  color: var(--muted);
  font-size: 0.78rem;
}

.gold-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d7d7d4;
  border: 1px solid rgba(11, 11, 11, 0.24);
  border-radius: 4px 4px 86px 4px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.14);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.36)),
    url("./assets/diva-hero-v2.webp");
  background-position: center;
  background-size: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-image {
  transform: scale(1.018);
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.hero-stamp span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-stamp small {
  margin-top: 4px;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.hero-monogram {
  position: absolute;
  right: -20px;
  bottom: -104px;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24rem;
  line-height: 1;
  pointer-events: none;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.5fr);
  align-items: end;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.experience h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.6rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-heading > p,
.experience-intro > p:last-child {
  margin: 0;
  color: var(--muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 34px;
}

.filter-chip {
  min-height: 42px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.active {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.product-media {
  background: #e5e5e2;
}

.product-video-stage {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #ddddda;
}

.product-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #ddddda;
}

.product-video[hidden] {
  display: none;
}

.media-switcher {
  display: flex;
  gap: 9px;
  padding: 10px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: thin;
}

.media-button {
  position: relative;
  width: 58px;
  height: 74px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  background: #ddddda;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.media-button:hover,
.media-button:focus-visible,
.media-button.active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
}

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

.media-button span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  background: rgba(29, 26, 23, 0.85);
  border-radius: 50%;
  font-size: 0.62rem;
}

.product-index {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  border-radius: 50%;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--ivory);
  background: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 18px;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.product-price {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-description {
  min-height: 48px;
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.product-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.size-select {
  min-height: 42px;
  min-width: 112px;
  padding: 8px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
}

.add-button {
  min-height: 42px;
  flex: 1;
  padding: 8px 14px;
  color: var(--ivory);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
}

.add-button:hover,
.add-button:focus-visible {
  color: var(--white);
  background: #343434;
  border-color: #343434;
}

.editorial-strip {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 20px 6vw;
  color: var(--ivory);
  background: var(--ink);
  overflow: hidden;
}

.editorial-strip > span {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.08em;
  line-height: 1;
}

.editorial-strip p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.editorial-strip p:last-child {
  text-align: left;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.experience-intro {
  position: sticky;
  top: 130px;
}

.experience-intro > p:last-child {
  max-width: 460px;
  margin-top: 26px;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  border-top: 1px solid var(--line);
}

.steps-list > li > span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
}

.steps-list h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 500;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  padding-top: 60px;
}

.accordion {
  max-width: 900px;
  margin: 36px auto 0;
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
}

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

.accordion summary span {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 720px;
  margin: -5px 0 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.closing-cta {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 90px;
  padding: 65px clamp(28px, 6vw, 86px);
  color: var(--white);
  background: linear-gradient(135deg, #050505 0%, #1b1b1b 65%, #323232 100%);
  border: 1px solid #050505;
  border-radius: 4px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.closing-cta .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.closing-cta .primary-button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.closing-cta .primary-button:hover,
.closing-cta .primary-button:focus-visible {
  color: var(--white);
  background: transparent;
}

.closing-cta h2 {
  max-width: 700px;
}

.site-footer {
  color: var(--ivory);
  background: var(--ink);
}

.footer-main {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 36px;
  padding: 58px max(24px, calc((100vw - 1240px) / 2));
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo-card {
  width: 130px;
  height: 116px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.footer-logo-card img {
  width: 126px;
  height: 126px;
  display: block;
  object-fit: contain;
  filter: invert(1);
}

.footer-brand-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  direction: ltr;
}

.footer-brand-name strong {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
}

.footer-brand-name small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.footer-brand p,
.copyright {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.instagram-account {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  direction: ltr;
}

.instagram-account svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.instagram-account .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-links button {
  color: inherit;
  border-bottom: 0;
  cursor: pointer;
}

.copyright {
  justify-self: end;
  direction: ltr;
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px max(24px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-founded {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.deema-payment {
  display: flex;
  align-items: center;
  gap: 18px;
}

.deema-payment p {
  margin: 0;
  font-size: 0.82rem;
}

.deema-payment img {
  width: 136px;
  height: auto;
  object-fit: contain;
}

.floating-whatsapp {
  position: fixed;
  z-index: 44;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--success);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(28, 63, 42, 0.27);
  cursor: pointer;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp svg {
  width: 28px;
  fill: currentColor;
}

.drawer-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(20, 17, 14, 0.48);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 250ms ease;
}

.drawer-backdrop.visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: min(480px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), visibility 350ms;
  overflow-y: auto;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 5px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 300;
}

.cart-items {
  display: grid;
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-art {
  width: 72px;
  height: 88px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  background-color: #ddd1bf;
  background-position: center;
  background-size: cover;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.1rem;
}

.cart-item h3 {
  margin: 0 0 3px;
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
}

.quantity-control button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.quantity-control span {
  min-width: 17px;
  text-align: center;
  font-size: 0.78rem;
}

.remove-item {
  align-self: start;
  padding: 3px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.cart-empty {
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.cart-empty > span {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.cart-empty h3 {
  margin: 12px 0 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.cart-empty p {
  margin: 7px 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.checkout-form {
  display: grid;
  gap: 15px;
  margin-top: auto;
  padding-top: 24px;
}

.checkout-form[hidden] {
  display: none;
}

.order-summary {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
}

.checkout-form label span {
  color: var(--muted);
  font-weight: 400;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(185, 149, 85, 0.12);
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.full {
  width: 100%;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 50%;
  bottom: 28px;
  min-width: 240px;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  color: var(--ivory);
  background: var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.84rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(50%, 0);
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px;
  color: white;
  background: #7b2f2f;
  text-align: center;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 54px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-brandmark {
    width: 236px;
    height: 196px;
  }

  .hero-brandmark img {
    width: 260px;
    height: 260px;
  }

  .hero-note {
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 720px;
  }

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

  .experience {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .experience-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .deema-topbar {
    gap: 10px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .deema-topbar img {
    width: 86px;
  }

  .site-header {
    min-height: 84px;
    padding-block: 4px;
  }

  .brand-logo-frame {
    width: 88px;
    height: 74px;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .cart-trigger {
    min-height: 40px;
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .hero {
    width: 100%;
    padding: 0 0 54px;
  }

  .hero-copy {
    padding: 44px 18px 0;
  }

  .hero-brandmark {
    width: 178px;
    height: 150px;
    margin-bottom: 6px;
  }

  .hero-brandmark img {
    width: 196px;
    height: 196px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-description {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .text-button {
    align-self: center;
  }

  .hero-note {
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 3px;
    margin-inline: 14px;
    border-radius: 3px 3px 54px 3px;
  }

  .hero-monogram {
    font-size: 17rem;
  }

  .section-shell {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .experience h2,
  .closing-cta h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-inline: -14px;
    padding-inline: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

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

  .editorial-strip {
    min-height: 120px;
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .editorial-strip > span {
    grid-row: 1;
    font-size: 5rem;
  }

  .editorial-strip p {
    display: none;
  }

  .steps-list li {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .faq {
    padding-top: 24px;
  }

  .accordion summary {
    min-height: 72px;
    font-size: 0.9rem;
  }

  .closing-cta {
    min-height: 330px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    padding: 42px 24px;
    border-radius: 0;
  }

  .footer-main {
    min-height: 280px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 44px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-logo-card {
    width: 106px;
    height: 96px;
  }

  .footer-logo-card img {
    width: 104px;
    height: 104px;
  }

  .copyright {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 150px;
    align-items: center;
    flex-direction: column-reverse;
    justify-content: center;
    padding: 24px 20px 82px;
    text-align: center;
  }

  .deema-payment {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .deema-payment img {
    width: 122px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .cart-drawer {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
