@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --cream: #fbf7f0;
  --ivory: #fffdf9;
  --linen: #efe3d6;
  --blush: #ead1d0;
  --rose: #b77d7b;
  --sage: #7a8b7a;
  --gold: #b8955b;
  --gold-soft: #d9c193;
  --cocoa: #6f5a4d;
  --ink: #332820;
  --muted: #7c7067;
  --line: rgba(111, 90, 77, 0.18);
  --shadow: 0 18px 45px rgba(82, 63, 49, 0.12);
  --radius: 8px;
  --section: min(1180px, calc(100% - 40px));
  --display-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-family: "Segoe UI", Arial, sans-serif;
}

@font-face {
  font-family: "Concettina Logo";
  src: url("assets/concettina/amatic-sc-bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Concettina Tagline";
  src: url("assets/concettina/belleza-regular.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#inicio {
  scroll-margin-top: 140px;
}

#producto {
  scroll-margin-top: 140px;
}

#catalogo-completo {
  scroll-margin-top: 140px;
}

#carrito {
  scroll-margin-top: 140px;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(16px);
}

.preview-bar {
  padding: 9px 16px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: center;
  overflow-wrap: anywhere;
}

.navbar {
  width: var(--section);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: #876d6b;
}

.logo-lockup {
  display: grid;
  gap: 2px;
  width: max-content;
  line-height: 1;
}

.logo-name {
  font-family: "Concettina Logo", Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.3vw, 3.35rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0.01em;
}

.logo-tagline {
  margin-left: 2px;
  font-family: "Concettina Tagline", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.46rem, 0.72vw, 0.58rem);
  line-height: 1.1;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--cocoa);
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(217, 193, 147, 0.2);
  color: var(--ink);
  outline: none;
}

.cart-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(184, 149, 91, 0.38);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(82, 63, 49, 0.08);
}

.cart-button span {
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.78rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.section-shell,
.section-band {
  width: var(--section);
  margin: 0 auto;
}

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

.section-band {
  margin-top: 48px;
  padding: 64px clamp(20px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffdf9 0%, #f8efe8 52%, #fff9f7 100%);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-content,
.section-heading > *,
.intro > *,
.contact-inner > *,
.detail-copy,
.product-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(3.6rem, 6.5vw, 6.5rem);
  font-family: var(--display-serif);
  font-weight: 600;
  line-height: 0.95;
}

#hero-title {
  font-family: "Concettina Logo", Georgia, "Times New Roman", serif;
  color: #876d6b;
  line-height: 0.82;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-family: var(--display-serif);
  font-weight: 600;
  line-height: 0.98;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 620px;
  margin-top: 18px;
  color: var(--cocoa);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.hero-actions,
.contact-actions,
.card-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 12px 24px rgba(51, 40, 32, 0.16);
}

.button-secondary {
  border-color: rgba(184, 149, 91, 0.42);
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
}

.button-light {
  border-color: rgba(184, 149, 91, 0.32);
  background: var(--ivory);
  color: var(--cocoa);
}

.preview-note {
  max-width: 560px;
  margin-top: 24px;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 14px;
  color: var(--cocoa);
  font-size: 0.92rem;
}

.preview-note.wide {
  max-width: 100%;
}

.hero-media {
  min-width: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 149, 91, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.8), rgba(234, 209, 208, 0.55)),
    repeating-linear-gradient(
      45deg,
      rgba(184, 149, 91, 0.1) 0 1px,
      transparent 1px 14px
    );
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.placeholder-copy {
  max-width: 70%;
  position: relative;
  z-index: 1;
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  text-align: center;
}

.placeholder-copy small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image {
  min-height: 500px;
}

.intro {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: start;
}

.intro p {
  grid-column: 2;
  max-width: 720px;
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
}

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

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

.section-heading p {
  max-width: 430px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-pill {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--ivory);
  color: var(--cocoa);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 14px 34px rgba(82, 63, 49, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(82, 63, 49, 0.14);
}

.product-card .image-frame {
  min-height: 330px;
  border-width: 0 0 1px;
  border-radius: 0;
}

.product-copy {
  padding: 20px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 12px 0 16px;
}

.chip {
  display: inline-flex;
  border: 1px solid rgba(184, 149, 91, 0.34);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--cocoa);
  background: rgba(217, 193, 147, 0.12);
  font-size: 0.76rem;
  font-weight: 700;
}

.price {
  margin: 14px 0 18px;
  color: var(--ink);
  font-weight: 800;
}

.card-actions .button {
  width: 100%;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.catalog-more-button {
  min-width: 240px;
}

.full-catalog-view {
  min-height: calc(100vh - 118px);
  padding-top: 56px;
  padding-bottom: 74px;
}

.full-catalog-heading h1 {
  font-family: var(--display-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  color: var(--ink);
}

.full-product-grid {
  margin-top: 4px;
}

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

.featured-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 253, 249, 0.78);
}

.featured-card .image-frame {
  min-height: 120px;
}

.featured-card p {
  font-size: 0.92rem;
}

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

.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--ivory);
  box-shadow: 0 12px 30px rgba(82, 63, 49, 0.08);
}

.location-card .preview-note {
  margin-top: 18px;
}

.location-actions {
  margin-top: 18px;
}

.button-disabled {
  opacity: 0.62;
}

.contact {
  margin-bottom: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.contact-inner p:not(.preview-note) {
  max-width: 640px;
  margin-top: 16px;
  font-size: 1.06rem;
}

.footer {
  width: var(--section);
  margin: 0 auto;
  padding: 46px 0 34px;
  display: grid;
  gap: 22px;
}

.footer-brand {
  width: fit-content;
}

.footer-brand .logo-name {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.footer-brand .logo-tagline {
  font-size: 0.58rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a,
.codesens-link {
  color: var(--cocoa);
  font-weight: 700;
}

.footer p {
  max-width: 760px;
  font-size: 0.92rem;
}

.codesens-link {
  width: fit-content;
  border-bottom: 1px solid rgba(184, 149, 91, 0.55);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 10px;
}

.floating-button {
  min-width: 116px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ivory);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(51, 40, 32, 0.18);
}

.floating-button.instagram {
  background: var(--rose);
}

.floating-button.whatsapp {
  background: var(--sage);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 128px;
  z-index: 60;
  max-width: min(320px, calc(100vw - 36px));
  border: 1px solid rgba(184, 149, 91, 0.35);
  border-radius: var(--radius);
  padding: 12px 16px;
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-detail-view {
  min-height: calc(100vh - 118px);
  padding-top: 56px;
  padding-bottom: 74px;
}

.detail-back {
  width: fit-content;
  margin-bottom: 22px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 34px);
  background: linear-gradient(135deg, #fffdf9 0%, #f8efe8 58%, #fff9f7 100%);
  box-shadow: var(--shadow);
}

.detail-gallery,
.detail-copy {
  min-width: 0;
}

.detail-main-wrap {
  position: relative;
}

.detail-main-image {
  min-height: 560px;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.detail-thumbs.is-single {
  grid-template-columns: minmax(96px, 140px);
}

.thumb-button {
  min-height: 84px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.thumb-button.is-active {
  border-color: var(--ink);
}

.thumb-button .image-frame {
  width: 100%;
  min-height: 84px;
  border: 0;
  border-radius: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 149, 91, 0.34);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(51, 40, 32, 0.14);
}

.gallery-arrow-prev {
  left: 14px;
}

.gallery-arrow-next {
  right: 14px;
}

.detail-copy {
  position: sticky;
  top: 140px;
  align-self: start;
  padding: clamp(6px, 2vw, 18px) 0;
}

.detail-copy h1 {
  font-family: var(--display-serif);
  font-weight: 600;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 0.98;
  color: var(--ink);
}

.detail-description {
  margin-top: 16px;
  font-size: 1.05rem;
}

.product-specs {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.product-specs dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.detail-whatsapp {
  width: 100%;
  margin-top: 22px;
}

.detail-cart-button {
  width: 100%;
  margin-top: 12px;
}

.cart-view {
  min-height: calc(100vh - 118px);
  padding-top: 56px;
  padding-bottom: 74px;
}

.cart-heading h1 {
  font-family: var(--display-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  color: var(--ink);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.cart-panel,
.cart-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 14px 34px rgba(82, 63, 49, 0.08);
}

.cart-form {
  position: sticky;
  top: 140px;
}

.cart-empty {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.cart-empty h2 {
  font-size: 1.45rem;
  color: var(--ink);
}

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

.cart-item:first-child {
  padding-top: 0;
}

.cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-item-media .image-frame {
  min-height: 112px;
}

.cart-item-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.cart-item-copy h3 {
  font-size: 1.08rem;
}

.cart-item-copy .price {
  margin: 0;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.quantity-control {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 91, 0.32);
  border-radius: 999px;
  background: var(--ivory);
}

.quantity-button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.quantity-control span {
  min-width: 32px;
  text-align: center;
  color: var(--ink);
  font-weight: 900;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--rose);
  font-weight: 800;
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-weight: 800;
}

.cart-note,
.cart-error {
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.9rem;
}

.cart-note {
  background: rgba(217, 193, 147, 0.16);
  color: var(--cocoa);
}

.cart-error {
  margin: 16px 0 0;
  background: rgba(183, 125, 123, 0.14);
  color: #8a4d4a;
  font-weight: 800;
}

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

.form-grid label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--cocoa);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(111, 90, 77, 0.22);
  border-radius: var(--radius);
  padding: 12px 12px;
  background: var(--ivory);
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  resize: vertical;
}

.cart-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  :root {
    --section: min(760px, calc(100% - 28px));
  }

  .navbar,
  .section-shell,
  .section-band,
  .footer {
    width: calc(100% - 28px);
    max-width: 760px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero,
  .intro,
  .contact-inner,
  .product-detail-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .intro p {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .detail-main-image {
    min-height: 420px;
  }

  .detail-copy {
    position: static;
  }

  .cart-form {
    position: static;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  :root {
    --section: min(520px, calc(100% - 24px));
  }

  .navbar,
  .section-shell,
  .section-band,
  .footer {
    width: calc(100% - 24px);
    max-width: 520px;
  }

  .preview-bar {
    font-size: 0.72rem;
  }

  .navbar {
    min-height: 64px;
    gap: 8px;
  }

  .logo-name {
    font-size: 2.25rem;
  }

  .logo-tagline {
    font-size: 0.42rem;
    letter-spacing: 0.18em;
  }

  .cart-button {
    min-height: 38px;
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .cart-button span {
    min-width: 22px;
    min-height: 22px;
  }

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

  .intro + .catalog {
    padding-top: 24px;
  }

  .section-band {
    margin-top: 26px;
    padding: 44px 18px;
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    line-height: 1.12;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .contact-actions,
  .location-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-image,
  .detail-main-image {
    min-height: 340px;
  }

  .product-grid,
  .featured-row,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-template-columns: 96px 1fr;
  }

  .featured-card .image-frame {
    min-height: 96px;
  }

  .product-card .image-frame {
    min-height: 300px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-button {
    min-width: 104px;
    min-height: 40px;
    font-size: 0.8rem;
  }

  .product-detail-view {
    padding-top: 32px;
    padding-bottom: 52px;
  }

  .full-catalog-view {
    padding-top: 32px;
    padding-bottom: 52px;
  }

  .cart-view {
    padding-top: 32px;
    padding-bottom: 52px;
  }

  .catalog-more-button {
    width: 100%;
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-thumbs.is-single {
    grid-template-columns: minmax(92px, 128px);
  }

  .detail-back {
    width: 100%;
  }

  .product-specs div {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .product-specs dd {
    text-align: left;
  }

  .cart-item {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .cart-item-media .image-frame {
    min-height: 88px;
  }

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

  .cart-form-actions .button {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 118px;
    max-width: calc(100vw - 24px);
  }
}
