:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-warm: #fbefe5;
  --ink: #251823;
  --muted: #745f67;
  --line: #eadbd3;
  --pink: #ef4f8d;
  --pink-dark: #cf2f70;
  --mint: #59c6bd;
  --mint-dark: #278f89;
  --cream: #fff3d7;
  --chocolate: #3a2026;
  --shadow: 0 18px 50px rgba(82, 48, 34, 0.14);
  --radius: 8px;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(89, 198, 189, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(239, 79, 141, 0.14), transparent 40%),
    var(--bg);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 30;
  translate: 0 -150%;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px 18px;
  background: rgba(255, 250, 246, 0.88);
  border-bottom: 1px solid rgba(234, 219, 211, 0.7);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.brand-mini,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mini > span:last-child {
  min-width: 0;
}

.brand-mini strong,
.brand-mini small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(89, 198, 189, 0.35);
  border-radius: 50%;
  background: #fff;
  color: var(--mint-dark);
  font-family: var(--display);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(39, 143, 137, 0.14);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.brand-mini strong,
.footer-brand strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand-mini small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-button {
  display: grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(82, 48, 34, 0.1);
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.header-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 14px;
  display: none;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.header-nav.open,
.header-nav.visible {
  display: grid;
}

.site-header > .header-nav.visible {
  position: static;
  display: flex;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-header > .header-nav.visible a {
  padding: 8px 6px;
  font-size: 0.78rem;
}

.site-header > .header-nav.visible a:nth-child(n + 2) {
  display: none;
}

.header-nav a {
  padding: 12px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
}

.header-nav a:hover,
.header-nav a:focus {
  background: var(--surface-warm);
  color: var(--ink);
}

.product-page .header-nav.visible {
  position: static;
  display: flex;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-page .header-nav.visible a {
  padding: 8px 6px;
  font-size: 0.78rem;
}

.product-page .header-nav.visible a + a {
  display: none;
}

.hero {
  display: grid;
  gap: 24px;
  min-height: calc(100svh - 64px);
  padding: 34px 18px 28px;
  align-content: center;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: min(560px, calc(100vw - 36px));
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(89, 198, 189, 0.16);
  color: var(--mint-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.order-band h2,
.product-detail h1,
.empty-state h1,
.empty-state h2,
.dialog-copy h2 {
  margin: 10px 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
}

.hero h1 {
  width: min-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-size: 3.05rem;
}

.hero p,
.section-heading p,
.order-band p,
.product-detail-copy p,
.dialog-copy p,
.empty-state p {
  max-width: 100%;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hero p {
  width: min(26ch, 100%);
  margin-right: auto;
  margin-left: auto;
}

.hero-actions,
.dialog-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(239, 79, 141, 0.26);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--pink-dark);
}

.button-secondary {
  background: #fff;
  color: var(--mint-dark);
  border-color: rgba(89, 198, 189, 0.34);
}

.hero-media {
  position: relative;
  width: min(100%, 430px, calc(100vw - 52px));
  margin: 0 auto;
}

.hero-media img {
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: var(--surface-warm);
}

.hero-note {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: auto;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(82, 48, 34, 0.12);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.82rem;
}

.toolbar-section,
.catalog,
.order-band,
.related-section,
.product-detail,
.empty-state {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.toolbar-section {
  padding: 34px 0 12px;
}

.section-heading.compact h2 {
  font-size: clamp(2rem, 10vw, 3.2rem);
}

.toolbar {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: none;
  box-shadow: 0 10px 24px rgba(82, 48, 34, 0.07);
}

.search-box input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(89, 198, 189, 0.18);
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.chip.active {
  border-color: transparent;
  background: var(--chocolate);
  color: #fff;
}

.catalog {
  display: grid;
  gap: 34px;
  padding: 18px 0 34px;
}

.category-section {
  display: grid;
  gap: 16px;
}

.category-head {
  display: grid;
  gap: 6px;
}

.category-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  line-height: 1;
}

.category-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 219, 211, 0.8);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(82, 48, 34, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, var(--cream), rgba(89, 198, 189, 0.2));
  padding: 0;
  text-align: inherit;
  cursor: pointer;
}

.product-card-image img {
  height: 100%;
  object-fit: cover;
  transition: scale 220ms ease;
}

.product-card:hover img {
  scale: 1.035;
}

.placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 18px;
  color: var(--chocolate);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
}

.product-card-body {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.product-card h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.22;
}

.product-card p {
  display: -webkit-box;
  min-height: 2.8em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price {
  color: var(--pink-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
}

.card-actions .button {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 0.72rem;
}

.icon-button {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(89, 198, 189, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--mint-dark);
  font-weight: 900;
  cursor: pointer;
}

.order-band {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 219, 211, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 95% 0%, rgba(89, 198, 189, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 229, 0.9));
  box-shadow: var(--shadow);
  color: var(--ink);
  text-align: left;
}

.order-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--mint), var(--pink));
}

.order-band-copy,
.order-band-panel {
  position: relative;
  z-index: 1;
}

.order-band .eyebrow {
  width: fit-content;
  background: rgba(89, 198, 189, 0.18);
  color: var(--mint-dark);
}

.order-band h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 9vw, 3.15rem);
}

.order-band p {
  margin: 0;
  color: var(--muted);
}

.order-band-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(89, 198, 189, 0.24);
  border-left: 4px solid var(--mint);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.order-mini-label {
  color: var(--pink-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.order-band-panel strong {
  color: var(--ink);
  line-height: 1.35;
}

.order-band .button-primary {
  justify-self: start;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 34px 18px 92px;
  background: var(--chocolate);
  color: #fff;
  text-align: center;
}

.site-footer .brand-mark {
  margin: 0 auto;
}

.footer-brand {
  justify-content: center;
  flex-direction: column;
}

.footer-content {
  display: grid;
  gap: 18px;
}

.footer-links,
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-links a,
.footer-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-pill:hover {
  border-color: rgba(89, 198, 189, 0.45);
  color: #fff;
}

.footer-info {
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-info a,
.footer-links a {
  color: #fff;
}

.footer-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-icon-location::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 18;
}

.mobile-cta .button {
  width: 100%;
}

.product-dialog {
  width: min(940px, calc(100% - 26px));
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(37, 24, 35, 0.48);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.dialog-grid {
  display: grid;
}

.dialog-grid img {
  max-height: 60svh;
  object-fit: cover;
  background: var(--surface-warm);
}

.dialog-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.dialog-copy h2 {
  font-size: clamp(2rem, 10vw, 3rem);
}

.dialog-copy strong {
  color: var(--pink-dark);
  font-size: 1.15rem;
}

.product-detail {
  display: grid;
  gap: 24px;
  padding: 34px 0;
}

.product-detail-media img {
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 18px;
  background: var(--surface-warm);
  box-shadow: var(--shadow);
}

.product-detail-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.product-detail h1 {
  font-size: clamp(2.6rem, 14vw, 5rem);
}

.product-detail-price {
  color: var(--pink-dark);
  font-size: 1.35rem;
}

.back-link {
  color: var(--mint-dark);
  font-weight: 900;
}

.related-section {
  padding-bottom: 40px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 44vh;
  padding: 40px 0;
  text-align: center;
}

.illustrated-empty {
  gap: 12px;
  min-height: calc(100svh - 220px);
  overflow: hidden;
}

.illustrated-empty p {
  width: min(42ch, 100%);
  margin: 0 auto 10px;
}

.illustrated-empty h1 {
  max-width: min(12ch, 100%);
  font-size: clamp(2.2rem, 10vw, 4rem);
  overflow-wrap: break-word;
}

.empty-illustration {
  position: relative;
  width: 168px;
  height: 142px;
  margin-bottom: 6px;
}

.empty-plate {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #f7e6df);
  border: 1px solid rgba(234, 219, 211, 0.95);
  box-shadow: 0 18px 38px rgba(82, 48, 34, 0.12);
}

.empty-cake {
  position: absolute;
  left: 42px;
  bottom: 28px;
  width: 86px;
  height: 78px;
  border-radius: 14px 14px 20px 20px;
  background:
    radial-gradient(circle at 26px 24px, #fff 0 5px, transparent 6px),
    radial-gradient(circle at 56px 24px, #fff 0 5px, transparent 6px),
    linear-gradient(180deg, #f6cdd8 0 18px, #7a4438 18px 44px, #f4e1c8 44px 100%);
  border: 2px solid rgba(58, 32, 38, 0.1);
  box-shadow: 0 14px 30px rgba(82, 48, 34, 0.14);
}

.empty-cake::before,
.empty-cake::after {
  content: "";
  position: absolute;
  top: 46px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f1d24;
}

.empty-cake::before {
  left: 27px;
}

.empty-cake::after {
  right: 27px;
}

.empty-tear {
  position: absolute;
  right: 39px;
  bottom: 48px;
  width: 10px;
  height: 15px;
  border-radius: 9px 9px 9px 2px;
  background: var(--mint);
  transform: rotate(18deg);
  opacity: 0.9;
}

.empty-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--pink-dark);
  font-weight: 900;
}

.catalogs-hero {
  width: calc(100vw - 32px);
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 0 26px;
  text-align: center;
}

.catalogs-hero h1 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(2.65rem, 12vw, 5.8rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.catalogs-hero p {
  width: min(31ch, 100%);
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.catalogs-grid {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 0 46px;
  gap: 18px;
}

.catalog-card {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 219, 211, 0.78);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.catalog-card-image {
  display: block;
  max-width: 100%;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: var(--surface-warm);
}

.catalog-card-image img {
  height: 100%;
  object-fit: cover;
}

.catalog-card-copy {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 20px;
}

.catalog-card-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 7vw, 2.25rem);
  line-height: 1;
  overflow-wrap: break-word;
}

.catalog-card-copy p {
  width: min(28ch, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.seasonal-page {
  background: var(--bg);
}

.seasonal-page::before {
  background:
    radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--mint) 20%, transparent), transparent 30%),
    radial-gradient(circle at 88% 16%, color-mix(in srgb, var(--pink) 20%, transparent), transparent 30%),
    linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--surface-warm) 58%, var(--bg)));
}

.seasonal-header {
  background: color-mix(in srgb, var(--bg) 88%, white);
}

.seasonal-hero {
  position: relative;
  display: grid;
  gap: 26px;
  width: 100%;
  min-height: calc(100svh - 64px);
  margin: 0;
  padding: 42px max(18px, calc((100vw - 1120px) / 2));
  align-items: center;
}

.seasonal-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 12px;
  justify-items: start;
}

.seasonal-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 15vw, 6.6rem);
  line-height: 0.94;
  overflow-wrap: break-word;
}

.seasonal-copy p {
  width: min(52ch, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.seasonal-copy strong {
  max-width: 100%;
  color: var(--pink-dark);
  overflow-wrap: anywhere;
}

.seasonal-media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.seasonal-media img {
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 22px;
  background: var(--surface-warm);
  box-shadow: var(--shadow);
}

.seasonal-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.seasonal-decor::before,
.seasonal-decor::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.58;
  filter: blur(0.2px);
}

.seasonal-decor::before {
  width: 160px;
  height: 160px;
  right: -44px;
  top: 70px;
  background: color-mix(in srgb, var(--pink) 28%, transparent);
}

.seasonal-decor::after {
  width: 96px;
  height: 96px;
  left: -24px;
  bottom: 80px;
  background: color-mix(in srgb, var(--mint) 24%, transparent);
}

.theme-natal .seasonal-decor {
  background-image:
    linear-gradient(90deg, transparent 0 10px, rgba(183, 31, 43, 0.2) 10px 12px, transparent 12px 32px),
    radial-gradient(circle, rgba(199, 164, 93, 0.34) 0 2px, transparent 3px);
  background-size: 32px 100%, 46px 46px;
}

.theme-pascoa .seasonal-decor {
  background-image:
    radial-gradient(ellipse at center, rgba(139, 74, 47, 0.18) 0 34%, transparent 36%),
    radial-gradient(circle, rgba(136, 184, 138, 0.2) 0 2px, transparent 3px);
  background-size: 72px 92px, 42px 42px;
}

.theme-maes .seasonal-decor,
.theme-namorados .seasonal-decor {
  background-image:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72) 0 14%, transparent 16%),
    radial-gradient(circle, color-mix(in srgb, var(--pink) 22%, transparent) 0 3px, transparent 4px);
  background-size: 92px 92px, 38px 38px;
}

body[data-animation="float"] .seasonal-decor::before,
body[data-animation="float"] .seasonal-decor::after {
  animation: seasonal-float 6s ease-in-out infinite alternate;
}

body[data-animation="snow"] .seasonal-decor {
  animation: seasonal-snow 18s linear infinite;
}

@keyframes seasonal-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(16px);
  }
}

@keyframes seasonal-snow {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 0 220px;
  }
}

@media (min-width: 680px) {
  .menu-button {
    display: none;
  }

  .header-nav,
  .header-nav.visible {
    position: static;
    display: flex;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-nav a {
    padding: 10px 12px;
  }

  .site-header > .header-nav.visible a:nth-child(n + 2) {
    display: block;
  }

  .product-page .header-nav.visible a + a {
    display: block;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr);
    width: min(1120px, calc(100% - 44px));
    margin: 0 auto;
    padding-inline: 0;
  }

  .hero-copy {
    text-align: left;
    margin: 0;
  }

  .hero h1 {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    font-size: 5.7rem;
  }

  .hero p {
    width: auto;
    max-width: 58ch;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-actions,
  .dialog-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .toolbar {
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    align-items: end;
  }

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

  .order-band {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: center;
    text-align: left;
    padding: 42px;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
    align-items: start;
    padding-bottom: 34px;
    text-align: left;
  }

  .footer-content {
    justify-items: end;
  }

  .footer-links,
  .footer-info {
    justify-content: flex-end;
  }

  .footer-brand {
    flex-direction: row;
    justify-content: flex-start;
  }

  .site-footer .brand-mark {
    margin: 0;
  }

  .mobile-cta {
    display: none;
  }

  .dialog-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .dialog-grid img {
    height: 100%;
    max-height: 720px;
  }

  .product-detail {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
    min-height: calc(100svh - 64px);
    align-items: center;
  }

  .catalogs-grid {
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogs-hero p {
    width: min(56ch, 100%);
  }

  .catalog-card-copy p {
    width: auto;
  }

  .seasonal-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  }
}

@media (max-width: 679px) {
  .illustrated-empty {
    width: 328px;
    margin-left: 31px;
    margin-right: auto;
  }

  .catalogs-grid {
    width: 328px;
    max-width: none;
    margin-left: 31px;
    margin-right: auto;
    transform: none;
  }

  .catalog-card {
    width: 100%;
    overflow: hidden;
  }

  .catalog-card-copy .button {
    width: 100%;
  }

  .seasonal-hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 31px;
    padding-left: 31px;
    transform: none;
  }

  .seasonal-copy {
    width: 100%;
    max-width: 328px;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .seasonal-copy h1 {
    max-width: 8.8ch;
    font-size: clamp(2.7rem, 12vw, 3.3rem);
    overflow-wrap: break-word;
  }

  .seasonal-copy p {
    width: min(24ch, 100%);
  }

  .seasonal-copy strong {
    width: min(24ch, 100%);
  }

  .seasonal-media {
    width: 100%;
    max-width: 328px;
    justify-self: center;
  }

  .seasonal-copy .hero-actions {
    width: 100%;
    justify-items: center;
  }

  .seasonal-copy .button {
    width: max-content;
  }
}

@media (max-width: 360px) {
  .catalogs-grid {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .seasonal-hero {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (min-width: 1020px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
