:root {
  --pink: #eb4f86;
  --pink-dark: #cc336b;
  --pink-soft: #ffe7ef;
  --pink-pale: #fff5f8;
  --green: #31c46b;
  --ink: #172033;
  --muted: #667085;
  --line: #f4bfd0;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(235, 79, 134, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

body.is-construction-mode {
  overflow: hidden;
}

body.is-construction-mode > :not(.construction-notice) {
  pointer-events: none;
  user-select: none;
}

.construction-notice {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(255, 245, 248, 0.96), rgba(255, 234, 242, 0.96)),
    repeating-linear-gradient(45deg, rgba(235, 79, 134, 0.08) 0 14px, transparent 14px 28px);
}

.construction-notice__card {
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(235, 79, 134, 0.22);
  text-align: center;
}

.construction-notice__logo {
  width: min(240px, 78%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  object-fit: contain;
}

.construction-notice__eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.construction-notice h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
}

.construction-notice p {
  margin: 0 auto 10px;
  max-width: 430px;
  color: #394150;
  font-size: 16px;
  line-height: 1.45;
}

.construction-notice__link-text a {
  color: var(--pink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.construction-notice__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 24px;
  border-radius: var(--radius);
  background: var(--pink);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.construction-notice__button:hover {
  transform: translateY(-2px);
  background: var(--pink-dark);
  box-shadow: 0 20px 60px rgba(235, 79, 134, 0.28);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(90deg, #ffe5ee, #fff7fa);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
}

.top-strip__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.top-strip span::before {
  content: "●";
  color: var(--pink);
  font-size: 10px;
  margin-right: 8px;
}

.top-strip__social {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.top-strip__track {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip__group {
  display: contents;
}

.top-strip__group[aria-hidden="true"] {
  display: none;
}

.top-strip span::before {
  content: none;
}

.top-strip__inner::-webkit-scrollbar {
  display: none;
}

.top-strip__item,
.top-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

@keyframes topStripTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.top-strip__item svg,
.top-strip__link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--pink);
  stroke-width: 2.25;
}

.top-strip__link {
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.top-strip__link:hover {
  color: var(--pink);
  opacity: 0.88;
  transform: translateY(-1px);
}

.top-strip__social {
  align-items: center;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #f7d5df;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
}

.logo-img {
  display: block;
  width: auto;
  max-width: 230px;
  max-height: 65px;
  object-fit: contain;
}

.logo-img--footer {
  max-height: 55px;
  max-width: 200px;
}

.logo-icon {
  display: block;
  width: auto;
  height: 55px;
  max-height: 55px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-icon--footer {
  height: 48px;
  max-height: 50px;
}

.logo-letters {
  display: block;
  width: auto;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
}

.logo-letters--footer {
  height: 40px;
  max-width: 190px;
}

.brand > .logo-letters {
  display: block;
  width: auto;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
  flex: 0 1 auto;
}

.footer__brand > .logo-letters {
  height: 40px;
  max-width: 190px;
}

.brand__gift {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--pink-pale);
  border: 1px solid #ffd3e0;
  border-radius: 50%;
  font-size: 22px;
}

.brand__gift svg {
  width: 22px;
  height: 22px;
  color: var(--pink);
}

.brand strong {
  display: block;
  font-size: 28px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  font-size: 14px;
  font-weight: 800;
}

.nav__links a {
  position: relative;
  padding: 8px 0;
}

.nav__links a.is-active,
.nav__links a:hover {
  color: var(--pink);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: -24px;
  bottom: 2px;
  height: 2px;
  background: var(--pink);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(235, 79, 134, 0.24);
}

.btn--primary:hover {
  background: var(--pink-dark);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(49, 196, 107, 0.2);
}

.btn--outline {
  background: var(--white);
  color: var(--pink);
  border-color: var(--pink);
}

.btn-ver-todas-ocasiones {
  cursor: pointer;
}

.btn--small {
  min-height: 38px;
  padding: 0 20px;
  font-size: 13px;
}

.btn--light {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 12px 26px rgba(117, 39, 75, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff6f9 44%, #f8d5df 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 34px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 34px 0;
}

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

.eyebrow::before {
  content: "♥";
  margin-right: 9px;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--pink);
}

.hero__text {
  max-width: 530px;
  color: #394150;
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px dashed #f19ab7;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 231, 239, 0.62)),
    repeating-linear-gradient(45deg, #ffe5ee 0 10px, #fff9fb 10px 20px);
  color: var(--pink-dark);
  text-align: center;
  font-weight: 800;
}

.placeholder span {
  padding: 10px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.placeholder.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 28%, rgba(255, 255, 255, 0.72) 48%, transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 231, 239, 0.62)),
    repeating-linear-gradient(45deg, #ffe5ee 0 10px, #fff9fb 10px 20px);
  background-size: 220% 100%, auto, auto;
  animation: placeholderShimmer 1.8s linear infinite;
}

@keyframes placeholderShimmer {
  from {
    background-position: 120% 0, 0 0, 0 0;
  }

  to {
    background-position: -120% 0, 0 0, 0 0;
  }
}

.placeholder--hero {
  height: auto;
  min-height: 0;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  font-size: 22px;
}

.hero__photo {
  align-self: stretch;
  height: auto;
  min-height: 0;
  max-height: none;
}

.placeholder--hero:not(.has-image):not(.is-loading)::after {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(235, 79, 134, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.34);
}

.hero__photo img,
.site-image-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero__photo img {
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.45s ease;
}

.hero__photo.has-image img {
  opacity: 1;
}

.hero__photo.has-image,
.site-image-preview.has-image {
  padding: 0;
  overflow: hidden;
}

.section {
  padding: 34px 0 42px;
}

.section--steps {
  padding-top: 32px;
}

#pedido {
  scroll-margin-top: 120px;
}

#que-quieres-celebrar {
  scroll-margin-top: 120px;
}

#galeria {
  scroll-margin-top: 120px;
}

.section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.14;
  font-weight: 800;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 22%;
  right: 22%;
  border-top: 2px dashed #ff9fbd;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 168px;
  padding: 22px 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(235, 79, 134, 0.08);
}

.step-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-card__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
  background: var(--white);
}

.step-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  font-size: 24px;
}

.step-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
}

.step-card h3,
.product-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.3;
}

.step-card h3 {
  font-size: 17px;
}

.step-card p,
.product-card p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.step-card p {
  max-width: 240px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.occasion-card {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.occasion-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 24px rgba(233, 74, 133, 0.16));
}

.occasion-card__photo {
  aspect-ratio: 1.15 / 1;
  min-height: 0;
  margin-bottom: 14px;
}

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

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section--products {
  padding-top: 10px;
}

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

.product-grid__status {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--muted);
}

.product-card {
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.product-card__photo {
  aspect-ratio: 1.15 / 1;
  min-height: 0;
  margin-bottom: 14px;
  overflow: hidden;
}

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

.product-card__body {
  padding: 0;
}

.product-card p {
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-grid__item {
  aspect-ratio: 1.25 / 1;
  min-height: 0;
}

.gallery-grid__link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-grid__link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-grid__link:hover img {
  transform: scale(1.04);
}

.section--message {
  padding-top: 16px;
}

.message-panel {
  min-height: 190px;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 28px;
  padding: 26px 42px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #ffe5ee, #fff2f6);
  box-shadow: var(--shadow);
}

.message-panel__gift {
  min-height: 140px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 209, 225, 0.76)),
    repeating-linear-gradient(45deg, #ffd3e0 0 10px, #fff8fb 10px 20px);
}

.message-panel__copy {
  text-align: center;
}

.message-panel__copy p,
.message-panel__copy strong {
  display: block;
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 800;
}

.message-panel__copy strong {
  color: var(--pink);
}

.message-panel__copy .btn {
  margin-top: 24px;
}

.footer {
  padding-top: 34px;
  background: #fff;
  border-top: 1px solid #fde0e9;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.25fr;
  gap: 56px;
  padding-bottom: 24px;
}

.footer__brand {
  margin-bottom: 10px;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 15px;
}

.footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-link-list {
  display: grid;
  gap: 7px;
}

.footer-link-list a {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: var(--muted);
  font-size: 13px !important;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--pink);
  transform: translateX(2px);
}

.footer-link-list svg {
  width: 16px;
  height: 16px;
  color: var(--pink);
}

.footer-contact p,
.footer-contact a {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: var(--muted);
  font-size: 13px !important;
  line-height: 1.35;
}

.footer-contact a {
  word-break: break-word;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--pink);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--pink);
}

.footer__social {
  display: flex;
  gap: 18px;
  margin-top: 0;
}

.footer__social a {
  color: var(--ink) !important;
  font-weight: 800;
}

.footer__social svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.footer__bottom {
  padding: 18px 20px;
  background: #ffeaf1;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: 44px auto;
  column-gap: 10px;
  align-items: center;
  min-width: 255px;
  padding: 12px 16px;
  border: 1px solid #c6f1d7;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(21, 93, 50, 0.18);
}

.whatsapp-float i,
.whatsapp-float svg {
  grid-row: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  padding: 10px;
}

.whatsapp-float strong {
  color: #1d7f44;
  font-size: 13px;
}

.whatsapp-float small {
  color: #1d7f44;
  font-size: 12px;
  font-weight: 700;
}

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

#como-comprar,
#formas-pago,
#politicas-entrega,
#preguntas-frecuentes {
  scroll-margin-top: 120px;
}

.info-page {
  background: #fffafd;
}

.info-hero {
  padding: 76px 0 44px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 245, 248, 0.95) 48%, rgba(255, 231, 239, 0.9) 100%),
    repeating-linear-gradient(45deg, #ffeef4 0 10px, #fff9fb 10px 20px);
  border-bottom: 1px solid #f8d4df;
}

.info-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 42px;
}

.info-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.info-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.info-quick-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-quick-nav a {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid #f7c9d8;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-quick-nav a:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: 0 18px 42px rgba(235, 79, 134, 0.15);
}

.info-quick-nav svg {
  width: 34px;
  height: 34px;
  color: var(--pink);
  flex: 0 0 auto;
}

.info-main {
  padding: 36px 0 76px;
}

.info-section {
  padding: 34px 0;
}

.section-heading--left {
  max-width: 760px;
  margin: 0 0 24px;
  text-align: left;
}

.section-heading--left h2 {
  margin-bottom: 10px;
}

.section-heading--left p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.info-step,
.info-card,
.faq-list details {
  border: 1px solid #f7c9d8;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(235, 79, 134, 0.08);
}

.info-step {
  position: relative;
  padding: 26px 24px 24px 76px;
}

.info-step__number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
}

.info-step h3,
.info-card h3,
.info-payment-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.info-step p,
.info-card p,
.info-payment-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #ffeaf2;
  color: var(--ink);
}

.info-note svg {
  width: 28px;
  height: 28px;
  color: var(--pink);
  flex: 0 0 auto;
}

.info-note p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.info-note--compact {
  margin: 20px 0;
}

.info-card {
  padding: 24px;
}

.info-card > p + p {
  margin-top: 12px;
}

.info-payment-grid {
  margin-top: 22px;
}

.info-payment-grid article {
  padding: 20px;
  border: 1px solid #f9d6e1;
  border-radius: 10px;
  background: #fffafd;
}

.info-payment-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--pink);
}

.info-policy-grid .info-card {
  min-height: 160px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--pink);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 22px 20px;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.cart-btn b {
  margin-left: 2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  font-size: 12px;
}

.catalog-page {
  background: #fffafd;
}

.catalog-hero {
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff6f9 48%, #ffe4ed 100%);
  border-bottom: 1px solid #f8d4df;
}

.catalog-hero__inner {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: center;
  gap: 38px;
}

.catalog-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 48px);
}

.catalog-hero h1 span {
  display: inline;
}

.catalog-hero p {
  max-width: 570px;
  margin: 0;
  color: #394150;
  font-size: 17px;
  line-height: 1.7;
}

.catalog-hero__photo {
  align-self: stretch;
  min-height: 230px;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  border-radius: 0;
}

.catalog-main {
  padding: 28px 0 0;
  background: #fff;
}

.catalog-search {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
}

.catalog-search span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.catalog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
}

.catalog-search input::placeholder {
  color: #98a2b3;
}

.catalog-filters {
  display: flex;
  gap: 12px;
  margin: 28px 0 22px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.filter-pill {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #f3cfda;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(235, 79, 134, 0.08);
}

.filter-pill.is-active,
.filter-pill:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.catalog-toolbar label {
  font-weight: 800;
  font-size: 14px;
}

.catalog-toolbar select {
  min-height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.catalog-toolbar p {
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(235, 79, 134, 0.1);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card__photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  overflow: hidden;
}

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

.product-media__main img,
.product-thumb img,
.related-card__photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card__body {
  padding: 16px;
}

.catalog-card h2 {
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.25;
}

.catalog-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-card .btn {
  width: 100%;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.catalog-help {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 34px;
  margin: 34px 0 28px;
  padding: 22px 36px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #ffe8f0, #fff4f7);
}

.catalog-help__photo {
  min-height: 100px;
}

.catalog-help h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.catalog-help p {
  margin: 0;
  color: #394150;
  line-height: 1.6;
}

.mobile-tabbar {
  display: none;
}

.product-page {
  background: #fff;
}

.product-loading .product-detail,
.product-loading .product-order,
.product-loading .related-section {
  visibility: hidden;
}

.product-main {
  padding-top: 18px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--pink);
}

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

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 44px;
  align-items: start;
}

.product-media__main {
  aspect-ratio: 1 / 1;
  min-height: 0;
  font-size: 20px;
}

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

.product-thumb {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  cursor: pointer;
}

.product-thumb.is-active {
  border-style: solid;
  border-width: 2px;
}

.product-info {
  position: relative;
  padding-top: 10px;
}

.product-info__top {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.product-info__badge {
  position: static;
}

.product-info h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 44px);
}

.product-price {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 24px;
  font-weight: 800;
}

.product-lead {
  max-width: 530px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: #394150;
  line-height: 1.7;
}

.included-box {
  margin-top: 24px;
}

.included-box h2,
.customize-card h2,
.summary-card h2 {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.included-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-box li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}

.included-box li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-size: 12px;
}

.product-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 370px);
  gap: 18px;
  align-items: start;
  margin-top: 22px;
}

.customize-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
}

.customize-card {
  padding: 18px;
}

.customize-card > h2 {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: #394150;
  font-size: 13px;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  min-height: 136px;
  height: 136px;
  padding-top: 12px;
  resize: none;
}

.form-grid small {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.extra-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  min-height: 0;
  padding: 7px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: center;
  cursor: pointer;
}

.extra-card.is-active {
  border-color: var(--pink);
  background: var(--pink-pale);
  box-shadow: 0 10px 24px rgba(235, 79, 134, 0.14);
}

.extra-card__photo {
  grid-row: auto;
  min-height: 88px;
  font-size: 11px;
}

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

.extra-card strong {
  align-self: start;
  min-width: 0;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.extra-card small {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.extra-card b {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-size: 16px;
}

.extra-card.is-active b {
  background: var(--pink);
  border-color: var(--pink);
  color: transparent;
}

.extra-card.is-active b::before {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.summary-card {
  position: sticky;
  top: 118px;
  padding: 20px;
}

.summary-card dl {
  margin: 0 0 18px;
}

.summary-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid #f9dce5;
  min-width: 0;
}

.summary-card dt {
  color: #394150;
  font-weight: 700;
  min-width: 0;
}

.summary-card dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 16px;
  font-size: 18px;
  font-weight: 800;
}

.summary-total strong {
  color: var(--pink);
  font-size: 24px;
}

.summary-card .btn {
  width: 100%;
  margin-top: 10px;
}

.related-section {
  padding: 24px 0 38px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.related-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
}

.related-card__photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.related-card h2 {
  margin: 8px 10px 3px;
  font-size: 12px;
}

.related-card p {
  margin: 0 10px 10px;
  color: var(--muted);
  font-size: 11px;
}

@media (min-width: 1400px) {
  .extras-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }

  .extra-card {
    padding: 6px;
    gap: 4px;
  }

  .extra-card__photo {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .extra-card strong {
    font-size: 10px;
  }

  .extra-card small {
    font-size: 9px;
  }

  .related-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }

  .related-card__photo {
    aspect-ratio: 1 / 1;
  }
}

.cart-page {
  background: #fff;
}

.cart-hero {
  overflow: hidden;
  border-bottom: 1px solid #f8d4df;
  background: linear-gradient(90deg, #fff 0%, #fff7fa 45%, #ffe2ec 100%);
}

.cart-hero__inner {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 40px;
}

.cart-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 4vw, 50px);
}

.cart-hero h1 span {
  display: inline;
}

.cart-hero p {
  max-width: 520px;
  color: #394150;
  font-size: 18px;
  line-height: 1.7;
}

.cart-hero__photo {
  align-self: stretch;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  min-height: 210px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}

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

.cart-main {
  padding: 28px 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.cart-flow {
  display: grid;
  gap: 18px;
}

.cart-panel,
.cart-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
}

.cart-panel {
  padding: 18px;
}

.cart-panel h2,
.cart-summary h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 18px;
}

.cart-panel h2 span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 13px;
}

.cart-product {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.cart-product__photo {
  width: 96px;
  aspect-ratio: 1 / 1;
  min-height: 96px;
  font-size: 12px;
  overflow: hidden;
}

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

.cart-product h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.cart-product p {
  margin-bottom: 12px;
  color: var(--muted);
}

.cart-qty {
  width: max-content;
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-qty button {
  min-height: 34px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.cart-qty output {
  text-align: center;
  font-weight: 700;
}

.cart-remove,
.cart-extra-row button {
  border: 0;
  background: transparent;
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.cart-extras {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f9dce5;
}

.cart-extras h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

.cart-empty {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 22px 0;
  color: var(--muted);
  font-weight: 700;
}

.cart-extra-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.cart-extra-row__photo {
  width: 48px;
  aspect-ratio: 1 / 1;
  min-height: 48px;
  font-size: 10px;
  overflow: hidden;
}

.cart-extra-row__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-extra-row p {
  margin: 0;
  font-weight: 700;
}

.cart-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cart-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cart-fields label,
.cart-dedication {
  display: grid;
  gap: 8px;
  color: #394150;
  font-size: 13px;
  font-weight: 800;
}

.cart-fields__wide {
  grid-column: 1 / -1;
}

.cart-panel .cart-fields:has(.cart-fields__wide) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cart-fields input,
.cart-fields select,
.cart-dedication textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.cart-dedication textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.cart-dedication small {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.cart-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--pink-pale);
  color: #394150;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.cart-summary {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.cart-summary dl {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #e9b9c8;
}

.cart-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.cart-summary dt {
  color: #394150;
}

.cart-summary dd {
  margin: 0;
  text-align: right;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 800;
}

.cart-total strong {
  color: var(--pink);
  font-size: 28px;
}

.cart-summary .btn {
  width: 100%;
  margin-bottom: 12px;
}

.trust-message {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--pink-pale);
  color: #394150;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.cart-benefits {
  background: #fff4f8;
  border-top: 1px solid #f9dce5;
}

.cart-benefits .container {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
}

.cart-benefits p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.mobile-confirm-bar {
  display: none;
}

.gallery-page {
  background: #fff;
}

.gallery-hero {
  overflow: hidden;
  border-bottom: 1px solid #f8d4df;
  background: linear-gradient(90deg, #fff 0%, #fff7fa 46%, #ffe3ec 100%);
}

.gallery-hero__inner {
  min-height: 260px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 42px;
}

.gallery-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 4vw, 52px);
}

.gallery-hero h1 span {
  display: block;
  color: var(--pink);
}

.gallery-hero p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 22px;
  color: #394150;
  font-size: 17px;
  line-height: 1.7;
}

.gallery-hero__photo {
  align-self: stretch;
  min-height: 260px;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  border-radius: 0;
}

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

.gallery-main {
  padding: 22px 0 34px;
}

.gallery-filter-label {
  margin: 0 0 -12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-filters {
  margin-top: 22px;
}

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

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(235, 79, 134, 0.1);
}

.gallery-tile__button {
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-tile[hidden] {
  display: none;
}

.gallery-tile__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 0;
  border-radius: var(--radius);
}

.gallery-tile__photo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-comment-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.14);
}

.gallery-comment-badge svg {
  width: 15px;
  height: 15px;
}

.gallery-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.gallery-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.gallery-photo-modal.is-open {
  display: grid;
}

.gallery-photo-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 32, 51, 0.58);
  backdrop-filter: blur(4px);
}

.gallery-photo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.28);
}

.gallery-photo-modal__dialog img {
  width: 100%;
  max-height: 68vh;
  display: block;
  object-fit: contain;
  background: #fff5f8;
}

.gallery-photo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-photo-modal__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.gallery-photo-modal__body p,
.gallery-photo-modal__body h2 {
  margin: 0;
}

.gallery-photo-modal__body p {
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.gallery-photo-modal__body label {
  display: grid;
  gap: 8px;
  color: #394150;
  font-size: 13px;
  font-weight: 800;
}

.gallery-photo-modal__body input,
.gallery-photo-modal__body textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
}

.gallery-photo-modal__body textarea {
  resize: vertical;
}

.gallery-photo-modal__submit {
  justify-self: start;
}

.gallery-photo-modal__status {
  min-height: 18px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.gallery-photo-comments {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #f7dce5;
}

.gallery-photo-comments h3 {
  margin: 0;
  font-size: 15px;
}

.gallery-photo-comments article {
  padding: 10px 12px;
  border: 1px solid #f8d4df;
  border-radius: var(--radius);
  background: #fffafd;
}

.gallery-photo-comments strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pink);
  font-size: 13px;
}

.gallery-photo-comments p {
  margin: 0;
  color: #394150;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.gallery-story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.happy-story,
.gallery-cta {
  border-radius: var(--radius);
  background: linear-gradient(90deg, #ffe8f0, #fff6f9);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
}

.happy-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 26px;
  padding: 0;
  overflow: hidden;
}

.happy-story__photo {
  min-height: 230px;
  height: 100%;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
}

.happy-story > div:not(.placeholder) {
  padding: 26px 26px 26px 0;
}

.happy-story h2 {
  max-width: 420px;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.happy-story p:last-child,
.gallery-cta p {
  margin-bottom: 0;
  color: #394150;
  line-height: 1.65;
}

.gallery-cta {
  display: grid;
  align-content: center;
  padding: 34px;
  text-align: center;
}

.gallery-cta h2 {
  max-width: 420px;
  margin: 0 auto 14px;
  font-size: 28px;
  line-height: 1.25;
}

.gallery-cta div {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.about-page {
  background: #fff;
}

.about-hero {
  overflow: hidden;
  border-bottom: 1px solid #f8d4df;
  background: linear-gradient(90deg, #fff 0%, #fff7fa 46%, #ffe3ec 100%);
}

.about-hero__inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 44px;
}

.about-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 54px);
}

.about-hero h1 span {
  color: var(--pink);
}

.about-hero p {
  max-width: 540px;
  color: #394150;
  font-size: 17px;
  line-height: 1.75;
}

.about-hero__photo {
  align-self: stretch;
  min-height: 330px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.about-content {
  padding: 34px 0 38px;
}

.story-values {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 28px;
}

.about-story h2,
.contact-card h2,
.social-card h2,
.faq-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.about-story p {
  color: #394150;
  line-height: 1.75;
}

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

.value-card,
.contact-card,
.social-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
}

.value-card {
  min-height: 190px;
  padding: 30px 24px;
  text-align: center;
}

.value-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--pink);
  font-size: 46px;
  font-weight: 800;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.value-card p,
.contact-card p,
.faq-card p {
  color: #394150;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.9fr;
  gap: 20px;
}

.contact-card,
.social-card,
.faq-card {
  padding: 24px;
}

.contact-card {
  background: linear-gradient(135deg, #fff, #fff3f7);
}

.contact-card .btn {
  width: 100%;
  margin-top: 12px;
}

.social-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.social-list a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #f8d4df;
  border-radius: var(--radius);
  background: #fff;
}

.social-list strong {
  color: var(--ink);
}

.social-list span {
  color: var(--muted);
  font-size: 12px;
}

.mini-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-posts .placeholder {
  aspect-ratio: 1 / 1;
  min-height: 0;
  font-size: 12px;
}

.faq-card details {
  border: 1px solid #f8d4df;
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 10px;
}

.faq-card summary {
  padding: 14px;
  cursor: pointer;
  font-weight: 800;
}

.faq-card details p {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 14px;
}

.faq-note {
  margin: 16px 0 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--pink-pale);
  font-weight: 700;
  text-align: center;
}

.dashboard-page {
  min-height: 100vh;
  background: #fff9fc;
  color: var(--ink);
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: 280px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 26px;
  padding: 34px 24px;
  border-right: 1px solid #f8cddd;
  background: linear-gradient(180deg, #fff5f8 0%, #ffeaf2 100%);
  color: #1a2340;
  box-shadow: 18px 0 40px rgba(233, 75, 138, 0.12);
}

.admin-brand {
  display: grid;
  gap: 3px;
}

.sidebar-logo {
  width: 100%;
}

.sidebar-logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.admin-brand span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--pink);
  font-weight: 800;
}

.admin-brand strong {
  font-size: 30px;
  line-height: 1;
}

.admin-brand small {
  color: #ff9fbd;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-menu {
  display: grid;
  align-content: start;
  gap: 10px;
  margin-top: 34px;
}

.admin-menu a,
.admin-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #1a2340;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-menu a:hover,
.admin-logout:hover {
  background: #ffe4ef;
  color: #e94b8a;
  transform: translateX(2px);
}

.admin-menu a.is-active {
  background: #e94b8a;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.32);
}

.admin-menu a.is-active:hover {
  color: var(--white);
  background: #e94b8a;
}

.admin-logout {
  margin-bottom: 20px;
}

.admin-sidebar__art {
  min-height: 190px;
  border-color: #f8cddd;
  background: rgba(255, 255, 255, 0.55);
}

.admin-main {
  margin-left: 280px;
  padding: 34px 34px 46px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin-bottom: 18px;
}

.admin-menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}

.admin-mobile-brand {
  display: none;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.notification-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.notification-btn::before {
  content: "!";
  color: var(--ink);
  font-weight: 800;
}

.notification-btn span {
  position: absolute;
  right: -3px;
  top: -6px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.admin-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd5e2, #eb4f86);
  color: var(--white);
  font-weight: 800;
}

.admin-user p,
.admin-welcome p {
  margin: 0;
  color: #394150;
}

.admin-welcome {
  margin-bottom: 26px;
}

.admin-welcome h1 {
  margin-bottom: 8px;
  font-size: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 26px;
}

.stat-card,
.admin-panel {
  border: 1px solid #f4d3dd;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
}

.stat-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.stat-icon {
  color: var(--pink);
  font-size: 34px;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: #394150;
  font-weight: 700;
}

.stat-card strong {
  font-size: 30px;
}

.stat-card small {
  color: var(--pink);
  font-weight: 800;
}

.stat-card small.is-up {
  color: #12a85a;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 26px;
}

.admin-primary,
.admin-secondary {
  display: grid;
  gap: 26px;
}

.admin-panel {
  padding: 24px;
}

.admin-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-panel__head h2 {
  margin: 0;
  font-size: 22px;
}

.admin-panel__head a {
  color: var(--pink);
  font-weight: 800;
}

.admin-panel__head select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--white);
  font: inherit;
}

.sales-chart {
  height: 320px;
}

.sales-chart svg {
  width: 100%;
  height: 100%;
}

.chart-grid line {
  stroke: #ead5dd;
  stroke-width: 1;
}

.chart-area {
  fill: url(#salesFill);
}

.chart-line {
  fill: none;
  stroke: var(--pink);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orders-table {
  overflow-x: auto;
}

.orders-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.orders-table th,
.orders-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #f7dce5;
  text-align: left;
  white-space: nowrap;
}

.orders-table th {
  color: var(--ink);
  font-size: 13px;
}

.orders-table td:first-child {
  color: var(--pink);
  font-weight: 800;
}

.orders-table button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status--pending {
  background: #fff4db;
  color: #b36b00;
}

.status--done {
  background: #e4f8ed;
  color: #16814a;
}

.status--prep {
  background: #e8f1ff;
  color: #2d6edb;
}

.delivery-list,
.best-products {
  display: grid;
  gap: 14px;
}

.delivery-list article,
.best-products li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f7dce5;
}

.delivery-list .placeholder,
.best-products .placeholder {
  min-height: 58px;
  font-size: 10px;
}

.delivery-list p,
.best-products p {
  margin: 0;
  color: #394150;
  line-height: 1.55;
}

.best-products {
  margin: 0;
  padding: 0;
  list-style: none;
}

.best-products li {
  grid-template-columns: 24px 58px 1fr;
}

.best-products li > span {
  font-size: 20px;
  font-weight: 800;
}

.best-products small {
  color: var(--muted);
}

.gallery-comments-panel {
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}

.admin-comment-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #f8d4df;
  border-radius: var(--radius);
  background: #fff;
}

.admin-comment-summary span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--pink);
  background: #ffeaf2;
}

.admin-comment-summary strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.admin-comment-summary p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-recent-comments {
  display: grid;
  gap: 10px;
}

.admin-recent-comments > p {
  margin: 0;
  padding: 12px;
  color: var(--muted);
  border: 1px dashed #f6c7d7;
  border-radius: var(--radius);
  background: #fff;
}

.admin-recent-comment {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px;
  border: 1px solid #f7dce5;
  border-radius: var(--radius);
  background: #fff;
}

.admin-recent-comment__thumb {
  overflow: hidden;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #fff0f6;
}

.admin-recent-comment__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-recent-comment__thumb span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--pink);
}

.admin-recent-comment__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
}

.admin-recent-comment strong {
  color: var(--ink);
  font-size: 13px;
}

.admin-recent-comment p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 4px;
  color: #394150;
  font-size: 13px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.admin-recent-comment small {
  color: var(--muted);
  font-size: 11px;
}

.admin-recent-comment__delete {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #f8c7d7;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  transition: var(--transition);
}

.admin-recent-comment__delete:hover {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 8px 18px rgba(233, 75, 138, 0.22);
}

.admin-recent-comment__delete:disabled {
  cursor: progress;
  opacity: 0.6;
}

.admin-mobile-nav {
  display: none;
}

.admin-page-title {
  margin-bottom: 26px;
}

.admin-page-title h1 {
  margin-bottom: 10px;
  font-size: 34px;
}

.admin-page-title p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-page-title a {
  color: var(--pink);
}

.product-admin-toolbar {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.admin-search,
.admin-filter select {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
}

.admin-search {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
}

.admin-search span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.admin-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
}

.admin-filter select {
  width: 100%;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
}

.admin-filter-button {
  display: none;
}

.admin-products-table {
  overflow-x: auto;
}

.admin-products-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-products-table th,
.admin-products-table td {
  padding: 18px;
  border-bottom: 1px solid #f7dce5;
  text-align: left;
  vertical-align: middle;
}

.admin-products-table th {
  color: var(--ink);
  font-size: 14px;
}

.admin-product-photo {
  width: 70px;
  height: 70px;
  min-height: 70px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  font-size: 11px;
}

.status--inactive {
  background: #ffe6ef;
  color: var(--pink);
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.admin-actions button,
.admin-actions a,
.admin-pagination button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.admin-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
}

.admin-pagination p {
  margin: 0;
  color: var(--muted);
}

.admin-pagination div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-pagination button.is-active {
  background: var(--pink);
  color: var(--white);
}

.admin-product-cards {
  display: none;
}

.admin-product-cards .admin-product-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1.35 / 1;
  border-radius: 0;
}

.admin-floating-add {
  display: none;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
}

.admin-modal.is-open {
  display: grid;
}

.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.32);
  backdrop-filter: blur(4px);
}

.admin-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.22);
}

.admin-modal__dialog h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.admin-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}

.product-modal-form {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 18px;
}

.product-modal-form label {
  display: grid;
  gap: 8px;
  color: #394150;
  font-size: 13px;
  font-weight: 800;
}

.product-modal-form input,
.product-modal-form select,
.product-modal-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.product-modal-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.upload-box {
  grid-row: span 3;
}

.upload-box .placeholder {
  min-height: 230px;
}

.upload-box .placeholder img {
  display: block;
  width: 100%;
  height: 230px;
  border-radius: var(--radius);
  object-fit: cover;
}

.product-upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.product-upload-preview-grid img {
  width: 100%;
  height: 108px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
}

.product-include-list {
  display: grid;
  gap: 8px;
}

.product-include-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.product-include-row button {
  min-width: 46px;
  padding-inline: 12px;
}

.upload-box input {
  display: none;
}

.product-modal-form__wide {
  grid-column: 2;
}

.product-modal-form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.order-filter-tabs {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.order-filter-tabs button {
  flex: 0 0 auto;
  min-width: 135px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
}

.order-filter-tabs button.is-active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.order-filter-tabs span {
  margin-left: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 12px;
}

.order-filter-tabs button.is-active span {
  background: var(--white);
}

.orders-admin-toolbar {
  display: grid;
  grid-template-columns: 1fr 0.8fr 130px;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.order-date-range {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
}

.order-date-range input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
}

.admin-filter-button--desktop {
  display: block;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
}

.admin-orders-table {
  overflow-x: auto;
}

.admin-orders-table table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.admin-orders-table th,
.admin-orders-table td {
  padding: 18px;
  border-bottom: 1px solid #f7dce5;
  text-align: left;
}

.admin-orders-table th {
  color: var(--ink);
  font-size: 14px;
}

.admin-orders-table td:first-child {
  color: var(--pink);
  font-weight: 800;
}

.order-product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-product-cell .placeholder {
  width: 46px;
  min-height: 46px;
  font-size: 9px;
}

.admin-orders-table button,
.admin-order-cards button {
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.admin-orders-table button {
  min-width: 42px;
  min-height: 36px;
}

.status--delivered {
  background: #e4f8ed;
  color: #16814a;
}

.status--cancelled {
  background: #ffe6ef;
  color: var(--pink);
}

.admin-order-cards {
  display: none;
}

.order-modal__dialog {
  width: min(980px, 100%);
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 18px;
}

.order-detail-grid section,
.order-modal-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.order-detail-grid section {
  padding: 18px;
}

.order-detail-grid h3 {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 14px;
}

.order-detail-grid p {
  color: #394150;
  line-height: 1.65;
}

.order-dedication {
  text-align: center;
}

.order-products-detail {
  grid-column: 3;
}

.order-products-detail div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.order-products-detail .placeholder {
  min-height: 42px;
  font-size: 9px;
}

.order-products-detail p {
  margin: 0;
}

.order-modal-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
}

.order-modal-footer p {
  margin-bottom: 4px;
  font-weight: 800;
}

.order-modal-footer strong {
  color: var(--pink);
  font-size: 24px;
}

.order-modal-footer label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.order-modal-footer select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  font: inherit;
}

.clients-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.clients-toolbar .admin-search {
  max-width: 620px;
}

.client-filter-mobile {
  display: none;
}

.admin-clients-table {
  overflow-x: auto;
}

.admin-clients-table table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.admin-clients-table th,
.admin-clients-table td {
  padding: 18px;
  border-bottom: 1px solid #f7dce5;
  text-align: left;
}

.admin-clients-table th {
  color: var(--ink);
  font-size: 14px;
}

.admin-clients-table td:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.client-avatar {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd5e2, #eb4f86);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.client-avatar--alt {
  background: linear-gradient(135deg, #d9ecff, #3b82f6);
}

.client-avatar--large {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  font-size: 26px;
}

.client-chat-list {
  display: none;
}

.client-profile {
  margin-top: 34px;
}

.client-profile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.client-profile__head h2 {
  margin: 0;
  font-size: 22px;
}

.client-profile__head button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}

.client-profile__grid {
  display: grid;
  grid-template-columns: 220px 1fr 1.35fr;
  gap: 24px;
}

.client-profile__summary,
.client-info-card,
.client-history {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.client-profile__summary {
  padding: 24px;
  text-align: center;
}

.client-profile__summary h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.client-profile__summary small {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffe6ef;
  color: var(--pink);
  font-weight: 800;
}

.client-profile__summary div {
  padding: 18px 0;
  border-top: 1px solid #f7dce5;
}

.client-profile__summary p {
  margin-bottom: 6px;
  color: #394150;
  font-weight: 700;
}

.client-profile__summary strong {
  font-size: 22px;
}

.client-info-card,
.client-history {
  padding: 22px;
}

.client-info-card h3,
.client-history h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.client-info-card p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #f7dce5;
  color: #394150;
  line-height: 1.6;
}

.client-history article {
  display: grid;
  grid-template-columns: 54px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f7dce5;
}

.client-history .placeholder {
  min-height: 54px;
  font-size: 10px;
}

.client-history p {
  margin: 0;
  color: #394150;
  line-height: 1.5;
}

.client-history b {
  font-size: 15px;
}

.settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.settings-accordion {
  display: grid;
  gap: 14px;
  width: 100%;
}

.settings-card,
.settings-save {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
}

.settings-card summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.settings-card summary::marker {
  color: var(--pink);
}

.settings-card[open] summary {
  border-bottom: 1px solid #f7dce5;
  color: var(--pink);
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px;
}

.settings-grid--business {
  grid-template-columns: 1.2fr 0.9fr;
}

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

.settings-grid--week {
  grid-template-columns: repeat(4, 1fr);
}

.settings-grid label {
  display: grid;
  gap: 8px;
  color: #394150;
  font-size: 13px;
  font-weight: 800;
}

.settings-grid input,
.settings-grid textarea,
.settings-grid select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.settings-grid textarea {
  min-height: 94px;
  padding-top: 12px;
  resize: vertical;
}

.settings-grid__wide {
  grid-column: 1 / 2;
}

.settings-upload {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-content: start;
}

.settings-upload .placeholder {
  min-height: 150px;
}

.settings-upload input {
  display: none;
}

.settings-upload--compact {
  grid-row: auto;
  grid-column: auto;
}

.settings-upload--compact .placeholder {
  min-height: 74px;
}

.settings-help {
  margin: 18px 22px 0;
  color: #394150;
  line-height: 1.6;
}

.site-image-section {
  border-top: 1px solid #f7dce5;
  padding: 0;
}

.site-image-section summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.site-image-section summary::marker {
  color: var(--pink);
}

.site-image-section[open] summary {
  color: var(--pink);
  border-bottom: 1px solid #f7dce5;
}

.site-image-section .site-image-grid,
.site-image-section .gallery-admin-panel {
  margin: 0;
  padding: 18px 22px 20px;
}

.site-image-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 22px 20px;
  margin-top: -4px;
}

.site-image-actions .btn {
  min-width: 210px;
}

.site-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 210px));
  gap: 14px;
  justify-content: start;
}

.site-image-grid--general {
  grid-template-columns: repeat(auto-fill, minmax(150px, 190px));
}

.site-image-grid article {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
}

.site-image-grid h3 {
  margin: 0;
  font-size: 13px;
}

.site-image-grid .placeholder {
  height: 118px;
  min-height: 118px;
  aspect-ratio: auto;
}

.site-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-image-grid button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.site-image-grid .site-image-delete {
  position: absolute;
  top: 30px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  min-height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border-color: rgba(235, 79, 134, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pink);
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.14);
}

.site-image-grid .site-image-delete:hover {
  background: var(--pink);
  color: var(--white);
}

.site-image-grid small,
.settings-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.gallery-admin-panel {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #f7dce5;
}

.gallery-admin-panel h3 {
  margin: 0 0 14px;
}

.gallery-upload-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.gallery-upload-form--compact {
  grid-template-columns: minmax(260px, 1.4fr) minmax(210px, 0.8fr) auto;
  gap: 12px;
}

.gallery-upload-form label {
  display: grid;
  gap: 8px;
  color: #394150;
  font-size: 13px;
  font-weight: 800;
}

.gallery-upload-form input,
.gallery-upload-form select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.gallery-upload-form--compact input,
.gallery-upload-form--compact select {
  min-height: 40px;
}

.file-picker-control {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.file-picker-control button {
  min-height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.file-picker-control span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-upload-form--compact .btn {
  min-height: 44px;
  padding: 0 22px;
  white-space: nowrap;
}

.gallery-upload-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.gallery-admin-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.gallery-admin-item {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 8px;
  border: 1px solid #f7dce5;
  border-radius: var(--radius);
  background: #fffafd;
}

.gallery-admin-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-admin-thumb img {
  width: 100%;
  height: 74px;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-admin-item h4,
.gallery-admin-item p {
  margin: 0;
}

.gallery-admin-item h4 {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-admin-item p {
  color: var(--muted);
  overflow: hidden;
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-admin-item > button[data-delivery-delete] {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 26px;
  height: 26px;
  min-height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--pink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pink);
  font-size: 0;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.14);
}

.gallery-admin-item > button[data-delivery-delete]::before {
  content: "×";
  font-size: 19px;
  line-height: 1;
}

.gallery-admin-item > button[data-delivery-delete]:hover {
  background: var(--pink);
  color: var(--white);
}

.admin-comments-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 22px;
}

.admin-comments-modal.is-open {
  display: grid;
}

.admin-comments-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 32, 51, 0.44);
  backdrop-filter: blur(4px);
}

.admin-comments-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.22);
}

.admin-comments-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  font-size: 24px;
  cursor: pointer;
}

.admin-comments-modal__dialog h2 {
  margin: 0 42px 8px 0;
}

.admin-comments-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.admin-comment-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid #f7dce5;
  border-radius: var(--radius);
  background: #fffafd;
}

.admin-comment-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--pink);
}

.admin-comment-item p {
  margin: 0;
  color: #394150;
  line-height: 1.45;
}

.admin-comment-item button {
  min-height: 34px;
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.settings-save {
  position: sticky;
  top: 116px;
  padding: 22px;
}

.settings-save p {
  color: #394150;
  line-height: 1.6;
}

.settings-save .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .top-strip__inner {
    justify-content: flex-start;
    gap: 18px;
  }

  .info-hero {
    padding: 46px 0 34px;
  }

  .info-hero__grid,
  .info-steps,
  .info-policy-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    display: none;
  }

  .admin-main {
    margin-left: 0;
    padding: 18px 16px 96px;
  }

  .admin-header {
    margin-bottom: 22px;
  }

  .admin-mobile-brand {
    display: grid;
    justify-items: center;
    color: var(--ink);
  }

  .admin-mobile-brand strong {
    font-size: 26px;
    line-height: 1;
  }

  .admin-mobile-brand small {
    color: var(--pink);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .admin-avatar,
  .admin-user p {
    display: none;
  }

  .admin-welcome h1 {
    font-size: 22px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    min-height: 132px;
    padding: 18px;
  }

  .stat-card--wide {
    grid-column: 1 / -1;
  }

  .admin-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sales-chart {
    height: 180px;
  }

  .orders-table table,
  .orders-table thead,
  .orders-table tbody,
  .orders-table tr,
  .orders-table th,
  .orders-table td {
    display: block;
    min-width: 0;
  }

  .orders-table thead {
    display: none;
  }

  .orders-table tr {
    position: relative;
    padding: 14px 0 14px 74px;
    border-bottom: 1px solid #f7dce5;
  }

  .orders-table tr::before {
    content: "Foto";
    position: absolute;
    left: 0;
    top: 18px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px dashed #f19ab7;
    border-radius: var(--radius);
    background: var(--pink-pale);
    color: var(--pink);
    font-size: 11px;
    font-weight: 800;
  }

  .orders-table td {
    padding: 2px 0;
    border: 0;
    white-space: normal;
  }

  .orders-table td:nth-child(4) {
    display: none;
  }

  .orders-table td:nth-child(7) {
    position: absolute;
    right: 0;
    top: 16px;
  }

  .admin-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 72px;
    padding: 8px 8px 10px;
    border-top: 1px solid #f8d4df;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 26px rgba(235, 79, 134, 0.1);
    backdrop-filter: blur(14px);
  }

  .admin-mobile-nav a {
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
  }

  .admin-mobile-nav a.is-active {
    color: var(--pink);
  }

  .products-admin-page .admin-main {
    padding-bottom: 104px;
  }

  .admin-page-title h1 {
    font-size: 30px;
  }

  .product-admin-toolbar {
    grid-template-columns: 1fr 58px;
    gap: 12px;
  }

  .admin-filter,
  .admin-add-product,
  .products-table-panel {
    display: none;
  }

  .admin-filter-button {
    display: block;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
  }

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

  .admin-product-cards article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
  }

  .admin-product-cards .placeholder {
    aspect-ratio: 1.35 / 1;
    min-height: 0;
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
  }

  .admin-product-cards h2,
  .admin-product-cards strong,
  .admin-product-cards .status {
    margin-left: 12px;
    margin-right: 12px;
  }

  .admin-product-cards h2 {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .admin-product-cards strong {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .admin-product-cards .status {
    margin-bottom: 14px;
  }

  .admin-product-cards button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--pink);
    font-size: 0;
    cursor: pointer;
  }

  .admin-product-cards button::before {
    content: "✎";
    font-size: 18px;
    font-weight: 800;
  }

  .admin-floating-add {
    position: fixed;
    right: 22px;
    bottom: 94px;
    z-index: 60;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-size: 44px;
    line-height: 1;
    box-shadow: 0 18px 42px rgba(235, 79, 134, 0.34);
    cursor: pointer;
  }

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

  .upload-box,
  .product-modal-form__wide,
  .product-modal-form__actions {
    grid-column: auto;
  }

  .upload-box .placeholder {
    min-height: 150px;
  }

  .product-modal-form__actions {
    display: grid;
  }

  .orders-admin-page .admin-main {
    padding-bottom: 96px;
  }

  .order-filter-tabs {
    gap: 8px;
    margin-bottom: 16px;
  }

  .order-filter-tabs button {
    min-width: 88px;
    min-height: 64px;
    padding: 0 10px;
    font-size: 12px;
  }

  .order-filter-tabs button:nth-child(n+4) {
    display: none;
  }

  .orders-admin-toolbar {
    grid-template-columns: 1fr 58px;
    gap: 12px;
    margin-bottom: 18px;
  }

  .order-date-range,
  .orders-admin-toolbar .admin-filter-button--desktop,
  .orders-admin-table-panel {
    display: none;
  }

  .admin-order-cards {
    display: grid;
    gap: 14px;
  }

  .admin-order-cards article {
    position: relative;
    display: grid;
    grid-template-columns: 86px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(235, 79, 134, 0.08);
  }

  .admin-order-cards .placeholder {
    grid-row: 1 / span 4;
    min-height: 86px;
  }

  .admin-order-cards h2 {
    margin: 0;
    font-size: 15px;
  }

  .admin-order-cards p {
    margin: 0;
    color: #394150;
    font-size: 13px;
    line-height: 1.45;
  }

  .admin-order-cards strong {
    font-size: 13px;
  }

  .admin-order-cards button {
    grid-column: 3;
    grid-row: 3 / span 2;
    min-width: 58px;
    min-height: 34px;
  }

  .order-detail-grid,
  .order-modal-footer {
    grid-template-columns: 1fr;
  }

  .order-products-detail {
    grid-column: auto;
  }

  .order-modal-footer label {
    display: grid;
  }

  .clients-admin-page .admin-main {
    padding-bottom: 96px;
  }

  .clients-toolbar {
    grid-template-columns: 1fr 58px;
    gap: 12px;
    margin-bottom: 12px;
  }

  .clients-toolbar .admin-search {
    max-width: none;
  }

  .export-btn {
    display: none;
  }

  .new-client-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .client-filter-mobile {
    display: block;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
  }

  .clients-table-panel,
  .client-profile {
    display: none;
  }

  .client-chat-list {
    display: grid;
    gap: 10px;
  }

  .client-chat-list article {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(235, 79, 134, 0.08);
  }

  .client-chat-list .client-avatar {
    width: 58px;
    height: 58px;
  }

  .client-chat-list h2 {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .client-chat-list p {
    margin-bottom: 3px;
    color: #394150;
    font-size: 13px;
  }

  .client-chat-list strong {
    font-size: 13px;
  }

  .client-chat-list b {
    color: var(--ink);
    font-size: 26px;
  }

  .settings-admin-page .admin-main {
    padding-bottom: 96px;
  }

  .settings-layout,
  .settings-grid,
  .settings-grid--business,
  .settings-grid--three,
  .settings-grid--week {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-admin-item {
    grid-template-columns: none;
  }

  .gallery-admin-thumb img {
    width: 100%;
    height: 72px;
  }

  .gallery-admin-item button {
    grid-column: auto;
  }

  .settings-upload,
  .settings-grid__wide {
    grid-column: auto;
    grid-row: auto;
  }

  .settings-card summary {
    min-height: 58px;
    padding: 0 16px;
    font-size: 15px;
  }

  .settings-grid {
    padding: 16px;
  }

  .site-image-section {
    padding: 16px;
  }

  .site-image-grid,
  .site-image-grid--general {
    grid-template-columns: 1fr;
  }

  .settings-save {
    position: static;
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
  }

  .nav.is-open .nav__links {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 10px;
    padding-bottom: 18px;
  }

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

  .hero,
  .hero__grid {
    min-height: auto;
    gap: 0;
  }

  .hero__copy {
    min-height: auto;
    padding: 24px 0 18px;
  }

  .hero__photo,
  .placeholder--hero {
    width: 100%;
    aspect-ratio: 1146 / 1080;
    height: auto;
    min-height: 0;
    max-height: none;
    border: 1px dashed #f19ab7;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .steps,
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-card {
    min-height: 142px;
    padding: 18px 18px 16px;
  }

  .step-card__top {
    gap: 10px;
    margin-bottom: 10px;
  }

  .step-card__number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .step-card__icon {
    width: 40px;
    height: 40px;
  }

  .step-card__icon svg {
    width: 21px;
    height: 21px;
  }

  .step-card h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .step-card p {
    max-width: none;
    font-size: 13px;
    line-height: 1.45;
  }

  .catalog-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 28px;
  }

  .catalog-hero__photo {
    min-height: 180px;
    margin-top: 20px;
    border: 1px dashed #f19ab7;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .catalog-help {
    grid-template-columns: 140px 1fr;
  }

  .product-detail,
  .product-order,
  .cart-hero__inner,
  .gallery-hero__inner,
  .about-hero__inner,
  .story-values,
  .gallery-story-grid,
  .happy-story,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .cart-summary {
    position: static;
  }

  .cart-hero__inner {
    gap: 0;
    padding-top: 28px;
  }

  .cart-hero__photo {
    min-height: 170px;
    margin-top: 16px;
    border: 1px dashed #f19ab7;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .gallery-hero__inner {
    gap: 0;
    padding-top: 28px;
  }

  .gallery-hero__photo {
    min-height: 190px;
    margin-top: 18px;
    border: 1px dashed #f19ab7;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .about-hero__inner {
    gap: 0;
    padding-top: 28px;
  }

  .about-hero__photo {
    min-height: 220px;
    margin-top: 18px;
    border: 1px dashed #f19ab7;
    border-radius: var(--radius) var(--radius) 0 0;
  }

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

  .social-list {
    grid-template-columns: 1fr;
  }

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

  .gallery-tile__photo {
    aspect-ratio: 1 / 1;
  }

  .happy-story {
    gap: 0;
  }

  .happy-story__photo {
    min-height: 180px;
    border: 0;
  }

  .happy-story > div:not(.placeholder),
  .gallery-cta {
    padding: 20px;
  }

  .gallery-cta div {
    display: grid;
  }

  .gallery-page .whatsapp-float {
    display: none;
  }

  .about-page .whatsapp-float {
    display: none;
  }

  .customize-card .form-grid > label:last-child {
    grid-column: 1 / -1;
  }

  .customize-card .form-grid textarea {
    min-height: 160px;
    height: 160px;
  }

  .about-content {
    padding-bottom: 92px;
  }

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

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

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

  .catalog-help .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .steps::before {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .construction-notice {
    padding: 14px;
    align-items: start;
  }

  .construction-notice__card {
    max-height: calc(100vh - 28px);
    padding: 24px 18px;
  }

  .construction-notice__logo {
    width: min(210px, 76%);
    margin-bottom: 14px;
  }

  .construction-notice__eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .construction-notice h1 {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .construction-notice p {
    font-size: 14px;
    line-height: 1.4;
  }

  .construction-notice__button {
    width: 100%;
    min-height: 46px;
  }

  .top-strip {
    overflow: hidden;
  }

  .top-strip__inner {
    width: 100%;
    max-width: none;
    min-height: 38px;
    gap: 0;
    overflow: hidden;
  }

  .top-strip__track {
    width: max-content;
    justify-content: flex-start;
    gap: 0;
    animation: topStripTicker 26s linear infinite;
    will-change: transform;
  }

  .top-strip__track:hover,
  .top-strip__track:active,
  .top-strip__track:focus-within {
    animation-play-state: paused;
  }

  .top-strip__group,
  .top-strip__group[aria-hidden="true"] {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 0 0 auto;
    padding-right: 28px;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .occasion-card {
    font-size: 13px;
  }

  .occasion-card__photo,
  .product-card__photo {
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
  }

  .occasion-card__photo img,
  .product-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-grid__item:nth-child(n + 5) {
    display: none;
  }

  .gallery-grid__item {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    left: auto;
    width: 60px;
    height: 60px;
    min-width: 60px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    border-radius: 50%;
    z-index: 40;
  }

  .whatsapp-float strong,
  .whatsapp-float small {
    display: none;
  }

  .whatsapp-float i,
  .whatsapp-float svg {
    width: 42px;
    height: 42px;
    padding: 9px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-strip {
    display: block;
  }

  .top-strip__inner {
    min-height: 38px;
    gap: 16px;
    font-size: 12px;
  }

  .top-strip__item svg,
  .top-strip__link svg {
    width: 15px;
    height: 15px;
  }

  .info-hero h1 {
    font-size: 34px;
  }

  .info-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .info-hero__actions,
  .info-hero__actions .btn {
    width: 100%;
  }

  .info-quick-nav,
  .info-payment-grid {
    grid-template-columns: 1fr;
  }

  .info-quick-nav a {
    min-height: 78px;
    padding: 16px;
  }

  .info-step {
    padding: 22px 18px 20px 66px;
  }

  .info-step__number {
    top: 20px;
    left: 18px;
  }

  .info-card {
    padding: 20px;
  }

  .nav {
    min-height: 78px;
  }

  .brand strong {
    font-size: 22px;
  }

  .logo-img {
    max-height: 50px;
    max-width: 180px;
  }

  .logo-img--footer {
    max-height: 50px;
  }

  .logo-icon {
    height: 45px;
    max-height: 45px;
  }

  .logo-icon--footer {
    height: 45px;
    max-height: 45px;
  }

  .logo-letters {
    height: 38px;
    max-width: 190px;
  }

  .logo-letters--footer {
    height: 34px;
    max-width: 170px;
  }

  h1 {
    font-size: 42px;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 30px 0;
  }

  .occasion-grid,
  .product-grid,
  .gallery-grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .message-panel {
    padding: 22px;
  }

  .message-panel__gift {
    min-height: 110px;
  }

  .whatsapp-float {
    left: auto;
    right: 20px;
    bottom: 20px;
    min-width: 60px;
  }

  .catalog-main {
    padding-top: 18px;
  }

  .catalog-search {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 14px;
  }

  .catalog-filters {
    margin: 16px -14px 18px 0;
    padding: 0 14px 8px 0;
  }

  .filter-pill {
    min-width: 92px;
    min-height: 54px;
    padding: 0 14px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .catalog-toolbar p {
    width: 100%;
    margin-left: 0;
  }

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

  .catalog-card__body {
    padding: 12px;
  }

  .catalog-card h2 {
    font-size: 14px;
  }

  .catalog-card p {
    font-size: 12px;
  }

  .catalog-card .btn {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .favorite {
    right: 8px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  .catalog-help {
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding: 18px;
    margin-bottom: 86px;
  }

  .catalog-help__photo {
    min-height: 74px;
  }

  .catalog-help h2 {
    font-size: 20px;
  }

  .catalog-help p {
    font-size: 14px;
  }

  .catalog-page .whatsapp-float {
    display: none;
  }

  .product-page .whatsapp-float {
    display: none;
  }

  .product-main {
    padding-bottom: 74px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    white-space: normal;
    font-size: 12px;
  }

  .product-detail {
    gap: 22px;
  }

  .product-detail,
  .product-order,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-media__main {
    aspect-ratio: 1 / 1;
  }

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

  .product-info h1 {
    font-size: 30px;
  }

  .included-box {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .included-box ul {
    grid-template-columns: 1fr;
  }

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

  .form-grid label,
  .summary-card dd,
  .summary-card dt,
  .product-lead,
  .breadcrumb {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

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

  .extra-card {
    grid-template-columns: 1fr;
  }

  .extra-card__photo {
    grid-row: auto;
    min-height: 72px;
  }

  .summary-card {
    padding: 16px;
  }

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

  .cart-main {
    padding: 18px 0 92px;
  }

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

  .cart-product {
    grid-template-columns: 82px 1fr auto;
    align-items: start;
  }

  .cart-product__photo {
    min-height: 82px;
  }

  .cart-product strong {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .cart-remove {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .cart-extra-row {
    grid-template-columns: 42px 1fr auto;
  }

  .cart-extra-row button {
    grid-column: 3;
  }

  .cart-benefits {
    display: none;
  }

  .cart-page .footer {
    display: none;
  }

  .mobile-confirm-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 26;
    display: block;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #f9dce5;
    backdrop-filter: blur(14px);
  }

  .mobile-confirm-bar .btn {
    width: 100%;
  }

  .related-card__photo {
    aspect-ratio: 1.35 / 1;
  }

  .mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 70px;
    padding: 8px 8px 10px;
    border-top: 1px solid #f8d4df;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 26px rgba(235, 79, 134, 0.1);
    backdrop-filter: blur(14px);
  }

  .mobile-tabbar a {
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-tabbar a.is-active {
    color: var(--pink);
  }
}

@media (max-width: 420px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

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