:root {
  --ink: #1c2326;
  --muted: #5e676b;
  --line: #d9dfdf;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --teal: #0e7c7b;
  --teal-dark: #075f61;
  --coral: #b84f3b;
  --clay: #a45f43;
  --bone: #f1e8d8;
  --sage: #dfe9e5;
  --shadow: 0 18px 48px rgba(28, 35, 38, 0.14);
  --soft-shadow: 0 10px 28px rgba(28, 35, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.cart-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 223, 223, 0.8);
  display: flex;
  gap: 24px;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 174px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, #fff, var(--bone));
  border-radius: 8px;
  border: 1px solid rgba(14, 124, 123, 0.18);
  box-shadow: 0 8px 22px rgba(14, 124, 123, 0.12);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  position: relative;
}

.desktop-nav a::after {
  background: var(--coral);
  bottom: 4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--teal-dark);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.cart-button,
.header-cta,
.icon-button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.header-cta {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  padding: 0 16px;
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.cart-button {
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(28, 35, 38, 0.08);
  gap: 8px;
  min-height: 44px;
  min-width: 74px;
  padding: 0 12px;
}

.cart-count {
  background: var(--coral);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  min-width: 24px;
  padding: 4px 7px;
}

.hero {
  min-height: min(720px, 92vh);
  overflow: hidden;
  position: relative;
}

.hero > picture,
.hero > picture > img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero > picture > img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 24, 25, 0.8), rgba(18, 24, 25, 0.34) 48%, rgba(18, 24, 25, 0.08)),
    linear-gradient(0deg, rgba(18, 24, 25, 0.3), transparent 42%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  max-width: 690px;
  padding: 180px clamp(20px, 6vw, 76px) 130px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd1be;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
  margin-bottom: 22px;
}

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

.hero-brand {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 28px);
  margin: 4px 0 28px;
}

.hero-logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  max-width: min(210px, 42vw);
  position: relative;
  width: 210px;
}

.hero-brand h1 {
  margin-bottom: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 14px;
}

h3 {
  font-size: 19px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.45;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-helper {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
  margin: 14px 0 0;
  max-width: 520px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 620px;
}

.hero-proof span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 11px;
}

.primary-link,
.secondary-link,
.primary-button,
.add-button,
.quote-product-button,
.quote-checkout-button {
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
}

.primary-link,
.primary-button,
.add-button {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: white;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.primary-link:hover,
.primary-button:hover,
.add-button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.secondary-link {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: white;
}

.quick-strip {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-strip div {
  background: rgba(255, 255, 255, 0.05);
  border-top: 3px solid rgba(217, 107, 83, 0.72);
  padding: 24px clamp(20px, 5vw, 60px);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 6px;
}

.catalog-section,
.shop-guide,
.favorites-section,
.custom-order,
.checkout-info,
.order-info,
.trust-section,
.faq-section,
.process-section,
.contact-band {
  padding: 86px clamp(18px, 5vw, 70px);
}

.shop-guide {
  background:
    linear-gradient(135deg, rgba(14, 124, 123, 0.1), transparent 36%),
    linear-gradient(180deg, #fffdf8, var(--paper));
}

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

.guide-card {
  background: var(--surface);
  border: 1px solid rgba(14, 124, 123, 0.16);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-card:hover {
  border-color: rgba(14, 124, 123, 0.42);
  box-shadow: 0 18px 42px rgba(28, 35, 38, 0.12);
  transform: translateY(-3px);
}

.guide-card span {
  align-self: start;
  background: #fff4e9;
  border: 1px solid rgba(217, 107, 83, 0.22);
  border-radius: 999px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  justify-self: start;
  padding: 6px 10px;
}

.guide-card strong {
  font-size: 23px;
  line-height: 1.05;
}

.guide-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.catalog-section {
  background: linear-gradient(180deg, var(--paper), #f4f1e9);
}

.section-heading {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.custom-copy p,
.checkout-info p,
.order-info p,
.trust-section p,
.faq-section p,
.process-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.favorites-section {
  background: #f8f3ea;
}

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

.favorite-card {
  background: var(--surface);
  border: 1px solid rgba(164, 95, 67, 0.16);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.favorite-card:hover {
  border-color: rgba(164, 95, 67, 0.38);
  box-shadow: 0 18px 42px rgba(28, 35, 38, 0.12);
  transform: translateY(-3px);
}

.favorite-card img {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.88), rgba(241, 232, 216, 0.76) 44%, rgba(223, 233, 229, 0.92));
  display: block;
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.favorite-card img.favorite-image-carnotauro,
.product-card img.product-image-fit-wide {
  background: #f1f3ed;
}

.favorite-card div {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.favorite-card span {
  background: #fff4e9;
  border: 1px solid rgba(217, 107, 83, 0.22);
  border-radius: 999px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  justify-self: start;
  padding: 6px 10px;
}

.favorite-card strong {
  font-size: 19px;
  line-height: 1.15;
}

.favorite-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.filter-scroll-hint {
  color: var(--muted);
  display: none;
  font-size: 13px;
  font-weight: 700;
  margin-top: -18px;
}

.catalog-helper {
  align-items: center;
  background: #fffaf3;
  border: 1px solid rgba(217, 107, 83, 0.2);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 22px;
  padding: 14px 16px;
}

.catalog-helper strong {
  color: var(--ink);
}

.catalog-helper span {
  font-size: 14px;
  line-height: 1.4;
}

.filter-button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 16px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-button.active,
.filter-button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  transform: translateY(-1px);
}

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

.pagination {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.pagination[hidden] {
  display: none;
}

.pagination button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  min-width: 42px;
  padding: 10px 14px;
}

.pagination button:hover:not(:disabled),
.pagination button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.pagination button:disabled {
  color: #a4abad;
  cursor: not-allowed;
  opacity: 0.62;
}

.pagination-pages {
  display: flex;
  gap: 6px;
}

.empty-category {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: rgba(14, 124, 123, 0.34);
  box-shadow: 0 18px 42px rgba(28, 35, 38, 0.13);
  transform: translateY(-3px);
}

.product-card img {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.88), rgba(241, 232, 216, 0.76) 44%, rgba(223, 233, 229, 0.92));
  display: block;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}

.product-card:focus-within {
  border-color: rgba(14, 124, 123, 0.5);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.1), var(--soft-shadow);
}

.product-card img.transparent-product {
  padding: 18px;
}

.product-card img.product-image-fit-wide {
  padding: 28px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-topline,
.cart-line,
.cart-total,
.contact-band,
.checkout-info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.product-topline {
  align-items: flex-start;
}

.tag {
  background: var(--sage);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  padding: 6px 9px;
}

.price {
  color: var(--clay);
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-body p {
  color: var(--muted);
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
}

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

.product-meta span {
  background: #fff4e9;
  border: 1px solid rgba(217, 107, 83, 0.2);
  border-radius: 999px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 16px;
}

.product-options span {
  background: #fbfaf7;
  border: 1px solid rgba(217, 223, 223, 0.9);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  padding: 6px 8px;
}

.size-chooser {
  background: #f6f8f6;
  border: 1px solid rgba(14, 124, 123, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 4px 0 14px;
  padding: 12px;
}

.size-chooser[hidden] {
  display: none;
}

.size-chooser strong {
  font-size: 13px;
}

.size-chooser div {
  display: grid;
  gap: 8px;
}

.size-chooser button {
  align-items: center;
  background: #eef5f3;
  border: 1px solid rgba(14, 124, 123, 0.24);
  border-radius: 8px;
  color: var(--teal-dark);
  cursor: pointer;
  display: flex;
  gap: 10px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  text-align: left;
}

.size-chooser button em {
  background: var(--coral);
  border-radius: 999px;
  color: white;
  flex: 0 0 auto;
  font-size: 11px;
  font-style: normal;
  padding: 5px 8px;
}

.size-chooser button.recommended-size {
  background: #fff7ef;
  border-color: rgba(217, 107, 83, 0.56);
  color: var(--ink);
}

.size-chooser button:hover {
  background: var(--teal);
  color: white;
}

.add-button {
  width: 100%;
}

.quote-product-button {
  background: white;
  border: 1px solid rgba(14, 124, 123, 0.34);
  color: var(--teal-dark);
  margin-top: 8px;
  width: 100%;
}

.quote-product-button:hover {
  background: #eef5f3;
  border-color: var(--teal);
}

.primary-button:disabled {
  background: #9eb6b4;
  border-color: #9eb6b4;
  cursor: not-allowed;
  transform: none;
}

.floating-whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 12px 30px rgba(28, 35, 38, 0.22);
  color: white;
  display: none;
  font-weight: 900;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

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

.floating-whatsapp:hover {
  transform: translateY(-1px);
}

.custom-order {
  align-items: start;
  background:
    linear-gradient(120deg, rgba(14, 124, 123, 0.1), transparent 38%),
    #eef3f0;
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.6fr);
}

.custom-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.custom-highlights span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 124, 123, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 11px;
}

.quote-form,
.checkout-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 16px;
  padding: 22px;
}

label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 12px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.12);
  outline: none;
}

textarea {
  resize: vertical;
}

.checkout-info {
  background:
    linear-gradient(135deg, rgba(217, 107, 83, 0.14), transparent 40%),
    var(--bone);
}

.checkout-info > div:first-child {
  max-width: 720px;
}

.steps {
  display: grid;
  gap: 10px;
  min-width: min(100%, 320px);
}

.steps span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(164, 95, 67, 0.2);
  border-radius: 8px;
  font-weight: 800;
  padding: 14px 16px;
}

.steps span::before {
  color: var(--coral);
  content: "• ";
}

.order-info {
  background: var(--paper);
}

.info-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.info-grid article,
.trust-grid article,
.faq-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  padding: 20px;
}

.info-grid strong,
.trust-grid strong,
.faq-grid strong {
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
}

.info-grid p,
.trust-grid p,
.faq-grid p {
  font-size: 14px;
  margin-bottom: 0;
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(14, 124, 123, 0.12), transparent 42%),
    #f7fbf8;
}

.faq-section {
  background: var(--paper);
}

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

.process-section {
  background: linear-gradient(180deg, #f4f1e9, var(--paper));
}

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

.process-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.process-placeholder,
.process-media {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  display: block;
  height: auto;
  width: 100%;
}

.process-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(14, 124, 123, 0.14), rgba(217, 107, 83, 0.12)),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.84), rgba(241, 232, 216, 0.68));
  color: var(--teal-dark);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  text-transform: uppercase;
}

.process-media {
  background: var(--ink);
  object-fit: cover;
  object-position: center;
}

.process-grid picture {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  display: block;
  overflow: hidden;
  width: 100%;
}

.process-grid picture .process-media {
  border-bottom: 0;
  height: 100%;
}

.process-grid strong,
.process-grid p {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.process-grid strong {
  font-size: 17px;
  margin-top: 18px;
}

.process-grid p {
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 8px;
}

.contact-band {
  background: linear-gradient(135deg, var(--ink), #243235);
  color: white;
}

.contact-band h2 {
  margin-bottom: 14px;
}

.contact-detail {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
}

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

.social-links a {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  display: inline-flex;
  gap: 9px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 12px 15px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links svg {
  display: block;
  fill: currentColor;
  height: 19px;
  width: 19px;
}

.social-links a:hover {
  background: white;
  color: var(--ink);
  transform: translateY(-1px);
}

.cart-drawer {
  background: rgba(20, 24, 25, 0.45);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 40;
}

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

.cart-panel {
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  margin-left: auto;
  max-width: 460px;
  overflow: auto;
  padding: 24px;
  transform: translateX(18px);
  transition: transform 180ms ease;
  width: min(100%, 460px);
}

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

.cart-header {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.cart-header h2 {
  font-size: 34px;
  margin-bottom: 0;
}

.icon-button {
  background: white;
  color: var(--ink);
  font-size: 28px;
  height: 42px;
  line-height: 1;
  width: 42px;
}

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

.empty-cart {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 18px;
  text-align: center;
}

.cart-line {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(28, 35, 38, 0.06);
  padding: 14px;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

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

.quantity button {
  background: #eef5f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  height: 34px;
  width: 34px;
}

.cart-summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

.cart-summary div,
.cart-total {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cart-summary span {
  color: var(--muted);
  font-size: 14px;
}

.cart-summary strong {
  color: var(--ink);
}

.cart-total {
  border-top: 1px solid var(--line);
  font-size: 18px;
  padding-top: 16px;
}

.payment-note {
  background: #eef5f3;
  border: 1px solid rgba(14, 124, 123, 0.14);
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin: 2px 0 0;
  padding: 10px;
}

.payment-note.warning {
  background: #fff7ef;
  border-color: rgba(217, 107, 83, 0.24);
  color: var(--clay);
}

.payment-note.success {
  background: #eef7f0;
  border-color: rgba(14, 124, 123, 0.18);
}

.quote-checkout-button {
  background: white;
  border: 1px solid rgba(14, 124, 123, 0.34);
  color: var(--teal-dark);
}

.quote-checkout-button:hover {
  background: #eef5f3;
}

.payment-test-page {
  background:
    linear-gradient(135deg, rgba(14, 124, 123, 0.1), transparent 36%),
    var(--paper);
  min-height: 100vh;
}

.payment-result {
  display: grid;
  gap: 42px;
  margin: 0 auto;
  max-width: 860px;
  padding: clamp(24px, 6vw, 72px);
}

.payment-result .brand {
  min-width: 0;
}

.payment-result-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  padding: clamp(24px, 5vw, 48px);
}

.payment-result-panel h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.98;
  margin-bottom: 18px;
}

.payment-result-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 620px;
}

.payment-test-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
}

.payment-test-summary div {
  align-items: center;
  background: #fbfaf7;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px;
}

.payment-test-summary span {
  color: var(--muted);
  font-weight: 800;
}

.secondary-payment-link {
  align-items: center;
  background: white;
  border: 1px solid rgba(14, 124, 123, 0.34);
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
}

.full {
  width: 100%;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

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

  .process-grid,
  .info-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .custom-order,
  .checkout-info,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .checkout-info,
  .contact-band {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    height: 74px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    height: 52px;
    width: 52px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    padding: 118px 20px 64px;
  }

  .hero-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-logo {
    max-width: min(142px, 48vw);
    width: 142px;
  }

  .hero-brand h1 {
    font-size: clamp(44px, 16vw, 68px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-helper {
    font-size: 14px;
  }

  .quick-strip,
  .guide-grid,
  .favorites-grid,
  .product-grid,
  .process-grid,
  .info-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .catalog-helper {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-left: -18px;
    margin-right: -18px;
    mask-image: linear-gradient(90deg, #000 calc(100% - 42px), transparent);
    overflow-x: auto;
    padding: 0 52px 8px 18px;
    scrollbar-width: thin;
  }

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

  .filter-scroll-hint {
    display: block;
  }

  .process-media {
    background:
      radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.88), rgba(241, 232, 216, 0.76) 44%, rgba(223, 233, 229, 0.92));
    object-fit: contain;
  }

  .pagination {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .pagination-pages {
    justify-content: center;
  }

  .pagination > button {
    width: 100%;
  }

  .catalog-section,
  .shop-guide,
  .favorites-section,
  .custom-order,
  .checkout-info,
  .order-info,
  .trust-section,
  .faq-section,
  .process-section,
  .contact-band {
    padding: 64px 18px;
  }

  .hero-actions,
  .social-links {
    flex-direction: column;
  }

  .primary-link,
  .secondary-link,
  .social-links a {
    width: 100%;
  }

  .floating-whatsapp {
    bottom: 12px;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0;
    height: 56px;
    justify-content: center;
    min-height: 0;
    padding: 0;
    right: 16px;
    width: 56px;
  }

  .floating-whatsapp svg {
    height: 26px;
    width: 26px;
  }
}
