:root {
  --ivory: #f8f4ec;
  --warm: #e7d7c2;
  --taupe: #9d8b7b;
  --stone: #d8d4cc;
  --ink: #1d1a17;
  --soft-ink: #5f5850;
  --gold: #b99a5b;
  --white: #fffdf8;
  --border: rgba(29, 26, 23, 0.16);
  --shadow: 0 20px 60px rgba(29, 26, 23, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(248, 244, 236, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--soft-ink);
  font-size: 0.94rem;
}

.cart-button,
.button,
.nav-button {
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 12px 18px;
  background: transparent;
  color: var(--ink);
  min-width: fit-content;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--light {
  background: rgba(255, 253, 248, 0.72);
  border-color: var(--border);
}

.button--full {
  width: 100%;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: clamp(24px, 6vw, 72px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(29, 26, 23, 0.18), rgba(29, 26, 23, 0.42)),
    repeating-linear-gradient(115deg, #f3eadc 0 18px, #e3d5c6 18px 20px, #d5c3ae 20px 38px);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 253, 248, 0.36);
}

.asset-note {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.45);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.hero__content {
  position: relative;
  width: min(760px, 100%);
  color: var(--white);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 16px;
}

h1 {
  font-size: 4.8rem;
  max-width: 11ch;
}

h2 {
  font-size: 3.15rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--soft-ink);
  line-height: 1.7;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px);
}

.section--tinted {
  background: #eee4d7;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 32px;
}

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

.category-card,
.product-card,
.reason-grid article,
.admin-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  padding: 18px;
}

.category-card__image,
.product-image,
.visual-panel {
  display: grid;
  min-height: 260px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(29, 26, 23, 0.12);
  background: linear-gradient(135deg, #d7c6b2, #f5efe5 45%, #b8ad9f);
  color: var(--soft-ink);
}

.product-image--jewellery {
  background: linear-gradient(135deg, #f2e9db, #c2ab7a 52%, #fbf6ec);
}

.product-image--stationery {
  background: linear-gradient(135deg, #f5f1e8, #cfc8bc 52%, #eee2d3);
}

.product-image--home {
  background: linear-gradient(135deg, #e6d8c8, #c9b8a8 52%, #f7f1e8);
}

.shop-tools {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

.product-card__meta,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
}

.category-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--border);
}

.text-link {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  width: fit-content;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--soft-ink);
}

.faq details {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #ded1c0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--border);
}

.drawer,
.chat-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(520px, 100%);
  height: 100vh;
  overflow: auto;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 180ms ease;
}

.drawer[aria-hidden="false"],
.chat-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.drawer__close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--soft-ink);
}

.lead,
.price {
  display: block;
  font-size: 1.15rem;
}

.detail-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

dt {
  color: var(--gold);
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.6;
}

.related-list {
  display: grid;
  gap: 8px;
}

.related-list button,
.cart-line button {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
  text-align: left;
}

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

.cart-line span,
.muted {
  display: block;
  color: var(--soft-ink);
  font-size: 0.92rem;
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.checkout-status,
.checkout-notice {
  padding: 12px 14px;
  border: 1px solid rgba(185, 154, 91, 0.34);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--soft-ink);
}

.checkout-status:empty {
  display: none;
}

.checkout-notice {
  position: sticky;
  top: 0;
  z-index: 80;
  margin: 0;
  text-align: center;
  box-shadow: 0 14px 34px rgba(29, 26, 23, 0.11);
}

.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.chat-log {
  display: grid;
  gap: 12px;
  max-height: 55vh;
  overflow: auto;
}

.chat-line {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
}

.chat-line--assistant {
  background: var(--ivory);
}

.chat-line--user {
  background: var(--ink);
  color: var(--white);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.admin-shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 64px) 0;
  overflow: hidden;
}

.admin-auth {
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(29, 26, 23, 0.24), rgba(29, 26, 23, 0.02)),
    url("images/contact-texture.png") center / cover no-repeat;
}

.auth-card {
  width: min(560px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 24px 70px rgba(29, 26, 23, 0.18);
  backdrop-filter: blur(10px);
}

.auth-card h1 {
  max-width: 12ch;
  font-size: clamp(2.55rem, 7vw, 4.1rem);
}

.auth-card p {
  margin: 0;
}

.auth-hint,
.auth-message {
  font-size: 0.92rem;
}

.auth-message {
  min-height: 1.4em;
  color: #8c7244;
}

.nav-button {
  padding: 8px 12px;
  border-color: var(--border);
  background: rgba(255, 253, 248, 0.56);
  color: var(--soft-ink);
}

.admin-page .admin-auth {
  justify-items: center;
  overflow: hidden;
  width: 100%;
}

.admin-page .auth-card {
  width: min(520px, calc(100vw - 40px));
  max-width: 100%;
  margin: 0 auto;
  min-width: 0;
}

.admin-page .auth-card h1 {
  max-width: 11ch;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  overflow-wrap: normal;
}

.admin-page .auth-card .button--full {
  width: 100%;
}

.admin-hero {
  max-width: 850px;
  margin-bottom: 32px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.admin-card {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-product {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 0;
}

.admin-product h3,
.admin-product p {
  margin-bottom: 6px;
}

@media (max-width: 850px) {
  .site-header,
  .category-section,
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 74vh;
  }

  .category-grid,
  .product-grid,
  .reason-grid,
  .shop-tools,
  .split-section,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    grid-template-columns: 1fr;
  }

  .admin-product {
    flex-direction: column;
  }
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 249, 239, 0.92), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(185, 154, 91, 0.12), transparent 24rem),
    linear-gradient(180deg, #f3eadf 0%, #e9ddcf 44%, #f6f0e8 100%);
}

.site-header {
  background: rgba(246, 239, 229, 0.9);
  box-shadow: 0 10px 34px rgba(29, 26, 23, 0.06);
}

.main-nav a,
.site-footer a,
.text-link,
.brand-mark,
.button,
.cart-button,
.nav-button {
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--gold);
}

.button:hover,
.cart-button:hover,
.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(29, 26, 23, 0.11);
}

h1 {
  font-size: 4.8rem;
  max-width: 12ch;
}

h2 {
  font-size: 3.15rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  font-size: 1rem;
}

.hero {
  min-height: 88vh;
  align-items: center;
  padding: clamp(80px, 10vh, 122px) clamp(24px, 6vw, 84px);
  isolation: isolate;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(29, 26, 23, 0.62), rgba(29, 26, 23, 0.28) 48%, rgba(29, 26, 23, 0.12)),
    linear-gradient(0deg, rgba(29, 26, 23, 0.2), rgba(255, 253, 248, 0.1)),
    url("images/hero-lifestyle.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__media::after {
  inset: clamp(18px, 4vw, 54px);
  border-color: rgba(255, 253, 248, 0.28);
  border-radius: 8px;
}

.hero__content {
  margin-top: 42px;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(29, 26, 23, 0.34), rgba(29, 26, 23, 0.1));
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(29, 26, 23, 0.18);
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 128px) clamp(24px, 6vw, 84px);
}

.section--curated {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 253, 248, 0.84), transparent 24rem),
    linear-gradient(135deg, #eee2d4, #f7f0e7 54%, #d9c7b4);
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.38), rgba(236, 225, 212, 0.9)),
    repeating-linear-gradient(90deg, rgba(29, 26, 23, 0.025) 0 1px, transparent 1px 18px),
    #e9ddce;
}

.reason-section {
  background:
    radial-gradient(circle at 76% 26%, rgba(185, 154, 91, 0.14), transparent 19rem),
    linear-gradient(180deg, #f3eadf, #e5d6c4);
}

.section--paper {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.72), rgba(238, 228, 215, 0.74)),
    repeating-linear-gradient(0deg, rgba(29, 26, 23, 0.022) 0 1px, transparent 1px 14px),
    #efe5d8;
}

.section-heading {
  margin-bottom: 44px;
}

.category-grid,
.product-grid,
.reason-grid {
  gap: 24px;
}

.category-card,
.product-card,
.reason-grid article,
.admin-card {
  background: rgba(255, 253, 248, 0.68);
  border-color: rgba(29, 26, 23, 0.11);
  box-shadow: 0 18px 48px rgba(29, 26, 23, 0.07);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background-color 190ms ease;
}

.category-card:hover,
.product-card:hover,
.reason-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 154, 91, 0.34);
  box-shadow: 0 24px 58px rgba(29, 26, 23, 0.12);
}

.category-card {
  padding: 14px;
}

.category-card h3 {
  padding: 0 8px 6px;
}

.category-card .eyebrow {
  padding: 0 8px;
}

.category-card__image,
.product-image,
.visual-panel {
  min-height: 330px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -80px 120px rgba(29, 26, 23, 0.14);
}

.category-card__image--jewellery {
  background-image: linear-gradient(rgba(29, 26, 23, 0.04), rgba(29, 26, 23, 0.1)), url("images/category-jewellery.png");
}

.category-card__image--stationery {
  background-image: linear-gradient(rgba(29, 26, 23, 0.02), rgba(29, 26, 23, 0.08)), url("images/category-stationery.png");
}

.category-card__image--home {
  background-image: linear-gradient(rgba(29, 26, 23, 0.02), rgba(29, 26, 23, 0.09)), url("images/category-home.png");
}

.product-image {
  min-height: 250px;
  margin-bottom: 22px;
}

.product-image--jewellery {
  background-image: linear-gradient(rgba(29, 26, 23, 0.02), rgba(29, 26, 23, 0.1)), url("images/category-jewellery.png");
}

.product-image--stationery {
  background-image: linear-gradient(rgba(29, 26, 23, 0.02), rgba(29, 26, 23, 0.08)), url("images/category-stationery.png");
}

.product-image--home {
  background-image: linear-gradient(rgba(29, 26, 23, 0.02), rgba(29, 26, 23, 0.08)), url("images/category-home.png");
}

.product-card {
  padding: 16px;
}

.product-card h3,
.product-card p,
.product-card .eyebrow,
.product-card__meta,
.product-card .button-row {
  margin-left: 6px;
  margin-right: 6px;
}

.shop-tools {
  gap: 16px;
  margin-bottom: 30px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(29, 26, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(29, 26, 23, 0.06);
}

input,
select,
textarea {
  background: rgba(255, 253, 248, 0.88);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(185, 154, 91, 0.7);
  box-shadow: 0 0 0 4px rgba(185, 154, 91, 0.16);
}

.category-section {
  min-height: 360px;
  align-items: center;
  border-top: 0;
  background:
    radial-gradient(circle at 85% 42%, rgba(255, 253, 248, 0.62), transparent 18rem),
    linear-gradient(120deg, #e8dac9, #f7f0e7);
}

.category-section:nth-of-type(4) {
  background:
    radial-gradient(circle at 84% 50%, rgba(185, 154, 91, 0.13), transparent 18rem),
    linear-gradient(120deg, #e5d6c4, #f8f2ea);
}

.category-section:nth-of-type(5) {
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 253, 248, 0.68), transparent 18rem),
    linear-gradient(120deg, #efe5d8, #d9c7b4);
}

.story-section {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.74), rgba(230, 216, 198, 0.82)),
    #e8dac9;
}

.visual-panel--story {
  min-height: 560px;
  background-image: linear-gradient(rgba(29, 26, 23, 0.02), rgba(29, 26, 23, 0.09)), url("images/story-editorial.png");
  background-position: center;
}

.trust-row span {
  background: rgba(255, 253, 248, 0.58);
}

.faq details {
  background: rgba(255, 253, 248, 0.42);
  border: 1px solid rgba(29, 26, 23, 0.1);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 18px 22px;
}

.contact-band {
  background:
    linear-gradient(90deg, rgba(29, 26, 23, 0.32), rgba(29, 26, 23, 0.04)),
    url("images/contact-texture.png") center / cover no-repeat;
  color: var(--white);
}

.contact-band p,
.contact-band h2 {
  color: var(--white);
}

.contact-band .button--dark {
  border-color: rgba(255, 253, 248, 0.72);
  background: rgba(29, 26, 23, 0.76);
}

.site-footer {
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.62), rgba(226, 211, 193, 0.94)),
    url("images/contact-texture.png") center / cover no-repeat;
}

.drawer,
.chat-drawer {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(239, 229, 216, 0.96)),
    #fffdf8;
}

@media (max-width: 850px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 78vh;
    padding-top: 72px;
  }

  .hero__content {
    padding: 22px;
  }

  .category-card__image,
  .product-image,
  .visual-panel {
    min-height: 250px;
  }

  .visual-panel--story {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    gap: 14px;
    padding: 14px 18px;
  }

  .brand-mark {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .main-nav a {
    min-height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(29, 26, 23, 0.1);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.54);
    font-size: 0.86rem;
  }

  .cart-button {
    width: 100%;
  }

  .hero {
    min-height: 86svh;
    align-items: end;
    padding: 24px 18px 42px;
  }

  .hero__media {
    background-position: 62% center;
  }

  .hero__content {
    margin-top: 120px;
    width: 100%;
    padding: 20px;
  }

  h1 {
    font-size: 2.35rem;
    max-width: 13ch;
  }

  h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 64px 18px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .category-grid,
  .product-grid,
  .reason-grid {
    gap: 18px;
  }

  .category-card,
  .product-card,
  .reason-grid article,
  .admin-card {
    padding: 14px;
  }

  .category-card__image,
  .product-image,
  .visual-panel {
    min-height: 220px;
  }

  .shop-tools {
    padding: 14px;
    gap: 12px;
  }

  .button-row,
  .product-card__meta,
  .cart-total {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .button-row a {
    width: 100%;
    text-align: center;
  }

  .category-section {
    min-height: auto;
    gap: 20px;
  }

  .split-section {
    gap: 28px;
  }

  .contact-band {
    align-items: stretch;
  }

  .drawer,
  .chat-drawer {
    width: 100%;
    padding: 22px 18px 96px;
  }

  .chat-launcher {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .checkout-form {
    padding-bottom: 20px;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px 88px;
  }
}
