:root {
  --bg: #f7f4fb;
  --surface: rgba(255, 253, 250, 0.93);
  --surface-alt: #eaf6fb;
  --text: #26314a;
  --muted: #6c7288;
  --accent: #7fc4df;
  --accent-strong: #355f86;
  --blush: #f2b8c9;
  --blush-soft: #fdeaf1;
  --gold: #d8b66d;
  --border: rgba(99, 117, 151, 0.18);
  --success: #26694e;
  --teal: #4f8f9d;
  --whatsapp: #208d59;
  --shadow-soft: 0 18px 45px rgba(82, 91, 132, 0.1);
  --shadow-lg: 0 28px 60px rgba(82, 91, 132, 0.16);
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-heading: "Georgia", "Palatino Linotype", serif;
  --font-body: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(252, 212, 226, 0.78), transparent 34%),
    radial-gradient(circle at bottom right, rgba(199, 232, 247, 0.76), transparent 30%),
    linear-gradient(180deg, #fffafd 0%, var(--bg) 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 110px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(127, 196, 223, 0.16);
  filter: blur(16px);
}

body::after {
  bottom: 60px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(242, 184, 201, 0.18);
  filter: blur(18px);
}

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

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

button,
input,
textarea {
  font: inherit;
}

noscript {
  display: block;
  padding: 1rem;
  text-align: center;
}

.site-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-main {
  padding-bottom: 5rem;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--blush) 72%, #f8de9b 100%);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(118, 177, 210, 0.32);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__link {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.site-header__cta {
  display: flex;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button--whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(32, 141, 89, 0.22);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--border);
}

.button--list {
  background: linear-gradient(135deg, rgba(234, 246, 251, 0.96), rgba(253, 234, 241, 0.92));
  border-color: rgba(79, 143, 157, 0.24);
  color: var(--accent-strong);
}

.button--small {
  padding: 0.82rem 1rem;
  font-size: 0.95rem;
}

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

.button__count {
  display: inline-grid;
  min-width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(79, 143, 157, 0.14);
  color: var(--accent-strong);
  font-size: 0.8rem;
}

.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  padding: clamp(2rem, 4vw, 4rem) 0 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
}

.hero__content,
.hero__card,
.page-hero__panel,
.section-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero h1,
.page-hero h1,
.section__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.6rem);
}

.hero__subtitle {
  margin: 0.85rem 0 0;
  color: var(--accent-strong);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
}

.hero__lead,
.page-hero p,
.section__header p,
.category-card p,
.metric-card span,
.info-card p,
.contact-card p,
.site-footer__brand p {
  color: var(--muted);
}

.hero__badges,
.hero__actions,
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__badges {
  margin: 1.4rem 0 0;
}

.hero__actions {
  margin: 1.5rem 0 0;
}

.metric-grid,
.product-grid,
.category-grid,
.steps,
.info-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card,
.category-card,
.step-card,
.info-card,
.contact-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  background: linear-gradient(145deg, rgba(234, 246, 251, 0.9), rgba(253, 234, 241, 0.72));
}

.metric-card strong,
.highlight-box strong,
.cta-strip strong,
.info-card h3,
.contact-card h3,
.step-card h3 {
  display: block;
}

.metric-card strong,
.step-card h3,
.info-card h3,
.contact-card h3 {
  margin-bottom: 0.4rem;
}

.hero__card-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.65rem;
}

.hero__checklist,
.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__checklist li,
.info-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.hero__checklist li + li,
.info-list li + li {
  margin-top: 0.75rem;
}

.hero__checklist li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--blush));
}

.highlight-box {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(234, 246, 251, 0.9), rgba(253, 234, 241, 0.82));
}

.small-text {
  font-size: 0.96rem;
  color: var(--muted);
}

.section {
  padding-top: 2.5rem;
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section__header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.section__header p {
  max-width: 38rem;
  margin: 0;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrapper {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(234, 246, 251, 0.86), rgba(253, 234, 241, 0.78));
}

.product-card__image-button {
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  font: inherit;
  cursor: zoom-in;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-card__subcategory {
  margin: -0.2rem 0 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-card__description {
  font-size: 0.96rem;
  line-height: 1.5;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}

.product-card__price-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card__price-row strong {
  font-size: 1.35rem;
}

.product-card__price--quote {
  color: var(--accent-strong);
  font-size: 1.12rem;
}

.product-card__cta-note {
  font-size: 0.9rem;
}

.modal-open {
  overflow: hidden;
}

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

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(47, 40, 31, 0.56);
  cursor: pointer;
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 30px 80px rgba(47, 40, 31, 0.28);
}

.product-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
}

.product-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.product-modal__gallery {
  display: grid;
  gap: 0.8rem;
}

.product-modal__main-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234, 246, 251, 0.9), rgba(253, 234, 241, 0.8));
}

.product-modal__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.product-modal__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.product-modal__thumb.is-active {
  border-color: var(--accent);
}

.product-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.35rem 0.2rem;
}

.product-modal__info h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.product-modal__subcategory {
  margin: 0.35rem 0 0;
  color: var(--accent-strong);
  font-weight: 800;
}

.product-modal__description {
  margin: 0;
  color: var(--muted);
}

.product-modal__section h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.product-modal__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-modal__price span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-modal__price strong {
  font-size: 1.45rem;
}

.interest-list-open {
  overflow: hidden;
}

.interest-list-launcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(79, 143, 157, 0.2);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--accent-strong);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  font-weight: 900;
}

.interest-list-launcher span {
  display: grid;
  min-width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #ffffff;
  font-size: 0.82rem;
}

.interest-list-panel[hidden] {
  display: none;
}

.interest-list-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.interest-list-panel__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(47, 40, 31, 0.52);
  cursor: pointer;
}

.interest-list-panel__drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(430px, 100%);
  height: 100%;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  overflow: auto;
  border-left: 1px solid var(--border);
  background: #fffdf9;
  box-shadow: -24px 0 55px rgba(47, 40, 31, 0.18);
}

.interest-list-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.interest-list-panel__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.interest-list-panel__close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.interest-list-panel__items {
  display: grid;
  gap: 0.8rem;
}

.interest-list__item,
.interest-list__empty {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(247, 244, 251, 0.48);
}

.interest-list__item strong,
.interest-list__empty strong {
  display: block;
  margin-bottom: 0.25rem;
}

.interest-list__item span,
.interest-list__empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.interest-list__quantity {
  display: inline-grid;
  width: max-content;
  grid-template-columns: 38px 42px 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
}

.interest-list__quantity button {
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  cursor: pointer;
  font-weight: 900;
}

.interest-list__quantity span {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: var(--text);
  font-weight: 900;
}

.interest-list__remove,
.interest-list-panel__clear {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.interest-list-panel__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.interest-list-toast {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 80;
  max-width: min(360px, calc(100% - 2rem));
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(38, 105, 78, 0.22);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--success);
  box-shadow: var(--shadow-lg);
  font-weight: 800;
}

.entry-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 1.15rem;
  align-items: start;
}

.entry-form,
.entry-output {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.entry-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.entry-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
  margin: 0;
  padding: 1.05rem;
  border: 1px solid rgba(99, 117, 151, 0.14);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.72);
}

.entry-section legend {
  padding: 0 0.45rem;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 900;
}

.entry-field {
  display: grid;
  gap: 0.45rem;
}

.entry-field--wide,
.entry-help,
.entry-gallery,
.entry-options,
.entry-actions,
.entry-status {
  grid-column: 1 / -1;
}

.entry-field span,
.entry-check span,
.entry-gallery__header strong,
.entry-copy-target strong,
.entry-validation strong {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.entry-field input,
.entry-field select,
.entry-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fffdf9;
  color: var(--text);
  padding: 0.85rem 0.95rem;
}

.entry-field input:focus,
.entry-field select:focus,
.entry-field textarea:focus {
  border-color: rgba(79, 143, 157, 0.58);
  box-shadow: 0 0 0 4px rgba(127, 196, 223, 0.18);
  outline: none;
}

.entry-field textarea {
  resize: vertical;
}

.entry-field small,
.entry-gallery__header span,
.entry-help p,
.entry-copy-target p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.entry-help,
.entry-copy-target {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem;
  border: 1px dashed rgba(99, 117, 151, 0.24);
  border-radius: 16px;
  background: rgba(234, 246, 251, 0.48);
}

.entry-help code,
.entry-copy-target code {
  color: var(--accent-strong);
  font-weight: 800;
}

.entry-gallery {
  display: grid;
  gap: 0.8rem;
}

.entry-gallery__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.entry-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.entry-options,
.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.entry-actions {
  padding: 0 0.15rem;
}

.entry-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fffdf9;
}

.entry-check input {
  width: 1rem;
  height: 1rem;
}

.entry-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent-strong);
  font-weight: 800;
}

.entry-status[data-state="error"] {
  color: #9a342f;
}

.entry-status[data-state="warning"] {
  color: #7a5a15;
}

.entry-output {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  position: sticky;
  top: 98px;
}

.entry-output__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.entry-output__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.entry-validation {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 249, 0.84);
}

.entry-validation--success {
  border-color: rgba(38, 105, 78, 0.28);
  background: rgba(38, 105, 78, 0.08);
}

.entry-validation--warning {
  border-color: rgba(216, 182, 109, 0.46);
  background: rgba(216, 182, 109, 0.12);
}

.entry-validation--error {
  border-color: rgba(154, 52, 47, 0.28);
  background: rgba(154, 52, 47, 0.08);
}

.entry-validation p,
.entry-validation ul {
  margin: 0;
  color: var(--muted);
}

.entry-validation ul {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.05rem;
}

.entry-preview__card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf9;
}

.entry-preview__card img,
.entry-preview__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(234, 246, 251, 0.9), rgba(253, 234, 241, 0.8));
}

.entry-preview__placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}

.entry-preview__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.entry-preview__body h3,
.entry-preview__body p {
  margin: 0;
}

.entry-preview__body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
}

.entry-preview__body p {
  color: var(--muted);
}

.entry-preview__body strong {
  font-size: 1.25rem;
}

.entry-preview__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.entry-preview__thumbs img {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  object-fit: cover;
}

.entry-code {
  max-height: 420px;
  margin: 0;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #251f19;
  color: #fff7ed;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre;
}

.availability {
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.availability--available {
  background: rgba(38, 105, 78, 0.12);
  color: var(--success);
}

.availability--limited {
  background: rgba(216, 182, 109, 0.2);
  color: #7a5a15;
}

.availability--preorder {
  background: rgba(127, 196, 223, 0.2);
  color: var(--accent-strong);
}

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

.category-card__tag {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 196, 223, 0.18);
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.page-hero {
  padding-top: 2rem;
}

.page-hero__panel {
  background:
    radial-gradient(circle at top right, rgba(253, 234, 241, 0.86), transparent 30%),
    radial-gradient(circle at bottom left, rgba(234, 246, 251, 0.9), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(247, 244, 251, 0.92));
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  margin: 0;
  max-width: 46rem;
}

.page-hero__meta {
  margin-top: 1rem;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 1rem;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.catalog-tools__field {
  display: grid;
  gap: 0.45rem;
}

.catalog-tools__field span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-tools input,
.catalog-tools select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 0.85rem 0.95rem;
}

.chip {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.chip:hover,
.chip.is-active {
  border-color: rgba(127, 196, 223, 0.58);
  background: #fffafd;
  color: var(--text);
}

.products-summary {
  margin: 0 0 1rem;
  color: var(--muted);
}

.empty-state {
  padding: 1.25rem;
  border: 1px dashed rgba(99, 79, 58, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  color: var(--text);
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

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

.step-card__index {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--blush));
  color: var(--text);
  font-weight: 800;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

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

.info-card h3,
.contact-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.contact-card--accent {
  background: linear-gradient(145deg, rgba(234, 246, 251, 0.92), rgba(253, 234, 241, 0.84));
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(234, 246, 251, 0.92), rgba(255, 253, 250, 0.88), rgba(253, 234, 241, 0.82));
  box-shadow: var(--shadow-soft);
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 250, 253, 0.86);
  backdrop-filter: blur(12px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: 1.5rem;
  padding: 2.4rem 0;
}

.site-footer__brand h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.site-footer__grid ul {
  margin: 0;
  padding: 0;
}

.site-footer__grid h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
}

.site-footer__nav {
  display: grid;
  gap: 0.7rem;
}

.site-footer__nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-footer__nav a:hover {
  color: var(--text);
}

.site-footer__bottom {
  padding-bottom: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.fade-in {
  animation: rise-in 0.55s ease both;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 0.9rem 0;
  }

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

  .site-header__cta {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.5rem;
  }

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

  .site-nav__link {
    border-radius: 18px;
  }

  .hero__grid,
  .product-grid,
  .category-grid,
  .steps,
  .info-grid,
  .contact-grid,
  .metric-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .entry-workspace {
    grid-template-columns: 1fr;
  }

  .entry-output {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 100%);
  }

  .hero__actions,
  .page-hero__meta,
  .cta-strip,
  .cta-strip__actions,
  .catalog-tools,
  .product-card__price-row,
  .site-footer__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .product-grid,
  .category-grid,
  .steps,
  .info-grid,
  .contact-grid,
  .catalog-tools,
  .metric-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .button,
  .site-header__cta .button {
    width: 100%;
  }

  .brand__text small {
    max-width: 9rem;
  }

  .product-modal {
    align-items: end;
    padding: 0;
  }

  .product-modal__dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }

  .product-modal__content {
    gap: 1rem;
    padding: 1rem;
  }

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

  .product-modal__price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .interest-list-launcher {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .interest-list-panel__drawer {
    width: 100%;
  }

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

  .entry-section,
  .entry-gallery__grid {
    grid-template-columns: 1fr;
  }

  .entry-output__header,
  .entry-gallery__header {
    flex-direction: column;
    align-items: flex-start;
  }

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