:root {
  --paper: #fffdfb;
  --soft: #f8f1ee;
  --veil: #efe2dc;
  --rose: #d8aaa3;
  --rose-deep: #a76562;
  --ink: #2a2422;
  --muted: #756965;
  --line: #eaded9;
  --white: #ffffff;
  --sage: #9aa394;
  --shadow: 0 24px 60px rgba(63, 47, 42, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

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

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

[hidden] {
  display: none !important;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 251, 0.92);
  border-bottom: 1px solid rgba(234, 222, 217, 0.78);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 154px;
}

.brand-mark img {
  width: 154px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose-deep);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-toggle,
.cart-button,
.ghost-button,
.primary-button,
.secondary-button,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-height: 42px;
  padding: 0 15px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.price-toggle,
.cart-button {
  background: var(--white);
}

.cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--rose-deep);
  font-size: 0.78rem;
}

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

.secondary-button {
  background: rgba(255, 255, 255, 0.72);
}

.text-button {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--rose-deep);
}

.price-toggle:hover,
.cart-button:hover,
.ghost-button:hover,
.secondary-button:hover,
.filter-chip:hover {
  border-color: var(--rose);
  background: var(--soft);
}

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

.full {
  width: 100%;
}

.page-shell {
  min-height: calc(100vh - 76px);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 210px));
  display: grid;
  align-items: end;
  padding: clamp(70px, 8vw, 104px) clamp(20px, 6vw, 86px) clamp(42px, 5vw, 62px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 251, 0.95) 0%, rgba(255, 253, 251, 0.78) 34%, rgba(255, 253, 251, 0.38) 62%, rgba(255, 253, 251, 0.14) 100%),
    url("assets/gallery/hero-lia-smile.jpeg") center center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-title,
.section-heading h2,
.story-block h2,
.product-detail h1,
.cart-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.4rem);
}

.tagline {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.58rem, 3.55vw, 2.85rem);
  color: var(--rose-deep);
}

.intro-copy {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions,
.section-actions,
.product-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 86px);
}

.hero + .section {
  padding-top: clamp(38px, 5vw, 68px);
}

.section.alt {
  background: var(--soft);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.page-title {
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
}

.page-title {
  max-width: 1100px;
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
}

.section-heading p,
.page-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-panel {
  min-height: 240px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper);
}

.value-panel span {
  display: block;
  margin-bottom: 46px;
  color: var(--sage);
  font-size: 0.82rem;
}

.value-panel h3,
.product-card h3,
.detail-card h3,
.contact-panel h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.value-panel p,
.story-block p,
.product-card p,
.detail-card p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  padding: 18px;
}

.product-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 500ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-info {
  padding: 18px 18px 8px;
}

.product-info h3 {
  font-size: 1.18rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.74rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 18px;
}

.price {
  font-weight: 600;
  color: var(--ink);
}

.story-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.story-image {
  min-height: 520px;
  background: url("assets/gallery/atelier-02.jpeg") center 38% / cover no-repeat;
}

.story-block {
  max-width: 620px;
}

.story-block h2 {
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.story-block p + p {
  margin-top: 18px;
}

.story-video-section {
  padding-top: 0;
}

.story-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--soft);
}

.story-video-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.story-video-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
}

.story-video-copy p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
}

.story-video-frame {
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.story-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.page-hero {
  padding: clamp(86px, 12vw, 140px) clamp(20px, 6vw, 86px) 44px;
  background: linear-gradient(180deg, var(--soft), var(--paper));
}

.catalog-tools {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px clamp(20px, 6vw, 86px);
  background: rgba(255, 253, 251, 0.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.search-field {
  display: grid;
  gap: 6px;
}

.search-field label {
  color: var(--muted);
  font-size: 0.78rem;
}

.search-field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 0 14px;
  color: var(--ink);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.filter-chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-count {
  margin: 0 0 20px;
  color: var(--muted);
}

.catalog-tools + .section {
  padding-top: clamp(34px, 4vw, 56px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 86px);
}

.detail-media {
  min-height: auto;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: grid;
  place-items: center;
  background: var(--white);
  padding: clamp(24px, 5vw, 60px);
  border: 1px solid var(--line);
}

.detail-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-detail h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.detail-price {
  margin: 26px 0 0;
  font-size: 1.45rem;
  font-weight: 600;
}

.detail-copy {
  margin: 24px 0 0;
  color: var(--muted);
}

.detail-copy.subtle {
  margin-top: 14px;
  font-size: 0.95rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-card {
  min-height: 170px;
  padding: 24px;
  background: var(--paper);
}

.professional-band {
  width: 100%;
  background: var(--soft);
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.professional-strip {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  align-items: stretch;
  background: rgba(255, 253, 251, 0.76);
  border: 1px solid var(--line);
}

.professional-copy {
  display: grid;
  gap: 12px;
  max-width: none;
  padding: clamp(30px, 4.6vw, 54px);
  text-align: left;
}

.professional-strip h2,
.professional-intro h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.08;
}

.professional-strip p,
.professional-intro p,
.professional-points p {
  margin: 0;
  color: var(--muted);
}

.professional-copy p {
  max-width: 74ch;
}

.professional-access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.professional-access span {
  max-width: 230px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.professional-access .secondary-button {
  white-space: nowrap;
}

.professional-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.professional-panel {
  background: var(--paper);
  padding: clamp(34px, 6vw, 72px);
}

.professional-intro {
  display: grid;
  align-content: start;
  gap: 26px;
}

.professional-points {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.access-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
}

.access-note.muted {
  color: var(--muted);
}

.professional-points article {
  min-height: 132px;
  padding: 22px;
  background: var(--paper);
}

.professional-points span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 600;
}

.professional-points strong {
  display: block;
  margin-bottom: 7px;
}

.professional-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-panel {
  background: var(--paper);
  padding: clamp(34px, 6vw, 72px);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(38px, 6vw, 62px) clamp(20px, 6vw, 86px);
}

.footer-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.footer-intro {
  max-width: 38ch;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-item {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.footer-item span {
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-label svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  flex: 0 0 auto;
}

.footer-item p,
.footer-item a,
.footer-intro {
  margin: 0;
  color: var(--muted);
}

.footer-item a:hover {
  color: var(--ink);
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--muted);
  font-size: 0.84rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  justify-items: end;
  background: rgba(42, 36, 34, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(470px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

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

.cart-head h2 {
  margin: 0;
  font-size: 2rem;
}

.cart-items {
  overflow: auto;
  padding: 8px 28px;
}

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

.cart-line img {
  width: 72px;
  height: 86px;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
}

.cart-line h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
}

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

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.cart-empty {
  display: none;
  align-self: center;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.cart-empty.visible {
  display: block;
}

.cart-empty p {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.cart-summary {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.cart-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.shipping-field {
  margin: 0 0 16px;
}

.summary-line-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.payment-box {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.payment-box .eyebrow {
  margin-bottom: 0;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.92rem;
}

.payment-option input {
  accent-color: var(--rose-deep);
}

.payment-phone {
  margin-top: 4px;
}

.bank-transfer {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.bank-transfer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.bank-transfer strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 120;
  transform: translate(-50%, 20px);
  opacity: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

.empty-state {
  padding: 72px 20px;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .values,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail,
  .story-preview,
  .story-video-grid,
  .contact-layout,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-media {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    min-height: auto;
    padding: 8px 16px 10px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    gap: 14px;
    font-size: 0.82rem;
    overflow-x: auto;
    padding: 0 0 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .brand-mark,
  .brand-mark img {
    width: 108px;
  }

  .brand-mark img {
    height: 36px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: end;
    gap: 6px;
  }

  .price-toggle,
  .cart-button {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .price-toggle [data-price-label] {
    display: none;
  }

  .price-toggle::after {
    content: "Profissional";
  }

  .cart-button {
    font-size: 0;
  }

  .cart-button::before {
    content: "Carrinho";
    font-size: 0.9rem;
  }

  .cart-button span {
    min-width: 20px;
    height: 20px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 500px;
    align-items: center;
    padding: 42px 24px 38px;
  }

  .hero-inner {
    max-width: 340px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15.2vw, 4rem);
  }

  .tagline {
    margin-top: 14px;
    font-size: clamp(1.55rem, 7.2vw, 1.95rem);
  }

  .intro-copy {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    min-width: 160px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 253, 251, 0.94) 0%, rgba(255, 253, 251, 0.82) 52%, rgba(255, 253, 251, 0.40) 100%),
      linear-gradient(180deg, rgba(255, 253, 251, 0.40) 0%, rgba(255, 253, 251, 0.04) 100%),
      url("assets/gallery/hero-lia-smile-mobile.jpeg") 58% 22% / cover no-repeat;
  }

  .section {
    padding: clamp(48px, 12vw, 72px) 24px;
  }

  .hero + .section {
    padding-top: 40px;
  }

  .section-heading h2,
  .page-title {
    font-size: clamp(2.05rem, 10.2vw, 3.05rem);
    line-height: 1.02;
  }

  .page-hero {
    padding: 64px 24px 36px;
  }

  .catalog-tools {
    position: static;
    padding: 16px 24px;
  }

  .section-heading,
  .catalog-tools,
  .contact-layout,
  .professional-strip,
  .professional-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .professional-strip {
    background: var(--soft);
  }

  .professional-access {
    width: 100%;
    min-width: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .professional-access span {
    max-width: none;
  }

  .footer-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-item {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading {
    display: grid;
  }

  .filter-row {
    justify-content: start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

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

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

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

  .catalog-tools + .section {
    padding-top: 32px;
  }

  .story-image,
  .detail-media {
    min-height: 0;
  }

  .story-image {
    min-height: 420px;
    background-position: center 34%;
  }

  .story-video-section {
    padding-top: 0;
  }

  .story-video-grid {
    padding: 20px;
  }

  .story-video-frame video {
    object-position: center 42%;
  }

  .cart-panel {
    width: 100%;
    height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .cart-head {
    padding: calc(18px + env(safe-area-inset-top)) 20px 16px;
  }

  .cart-head .eyebrow {
    display: block;
    margin-bottom: 8px;
  }

  .cart-head h2 {
    font-size: 1.85rem;
  }

  .cart-items {
    min-height: 0;
    padding: 6px 20px;
  }

  .cart-summary {
    max-height: 56dvh;
    overflow: auto;
    padding: 18px 20px calc(20px + env(safe-area-inset-bottom));
  }

  .cart-note {
    margin-bottom: 12px;
  }

  .payment-box {
    margin: 14px 0;
  }

  .cart-summary [data-checkout] {
    position: sticky;
    bottom: 0;
    box-shadow: 0 -10px 22px rgba(248, 241, 238, 0.92);
  }
}
