:root {
  --bg: #faf6f1;
  --bg-soft: #f4eee7;
  --surface: rgba(255, 251, 247, 0.84);
  --surface-strong: #fffdfa;
  --surface-dark: #2f2926;
  --terracotta: #bf6a48;
  --terracotta-deep: #a45337;
  --terracotta-soft: #ead0c3;
  --line: rgba(63, 43, 32, 0.12);
  --line-soft: rgba(63, 43, 32, 0.06);
  --ink: #231b18;
  --muted: #73655d;
  --shadow-soft: 0 16px 42px rgba(121, 88, 70, 0.08);
  --shadow-card: 0 18px 50px rgba(136, 103, 84, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1150px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(238, 221, 208, 0.55), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(248, 241, 235, 0.92), transparent 25%),
    linear-gradient(180deg, #fdfaf7 0%, var(--bg) 38%, #f8f2ec 100%);
}

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

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

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

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

.container--narrower {
  width: min(calc(100% - 44px), 1280px);
}

.container--products {
  width: min(calc(100% - 44px), 1320px);
}

.narrow {
  max-width: 720px;
}

.site-main {
  min-height: 100vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.eyebrow::before {
  content: "✧";
  font-size: 0.75rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.45rem, 6vw, 5.55rem);
}

h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.9rem);
}

h3 {
  font-size: 1.95rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 30px;
  border-radius: 12px;
  border: 1px solid #cf8c6f;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
}

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

.button--primary {
  background: #b85e39;
  border-color: #a85131;
  color: #fff;
  box-shadow: none;
}

.button--primary:hover {
  background: #aa532f;
  border-color: #9f4d2b;
  box-shadow: none;
}

.button--secondary,
.button--ghost {
  background: #fffdfa;
  border-color: #e1b8a4;
  color: var(--ink);
}

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

.button--header {
  min-height: 34px;
  padding: 0 16px;
  font-size: 0.82rem;
  white-space: nowrap;
  color: #fff !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta-deep);
  font-size: 0.92rem;
}

.text-link::after {
  content: "→";
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 246, 241, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63, 43, 32, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: 110px 1fr 64px;
  align-items: center;
  min-height: 50px;
}

.brand img {
  width: 42px;
  object-fit: contain;
}

.footer-logo {
  width: 100px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 0.8rem;
}

.main-nav > a,
.nav-dropdown__button {
  color: rgba(35, 27, 24, 0.9);
}

.main-nav > a:hover,
.nav-dropdown__button:hover {
  color: var(--terracotta);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-dropdown__button::after {
  content: "⌄";
  margin-left: 7px;
  font-size: 0.8rem;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 224px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 252, 249, 0.96);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown__menu a:hover {
  background: rgba(191, 106, 72, 0.07);
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero-section,
.section,
.page-hero,
.theme-hero {
  padding: 78px 0;
}

.hero-section {
  padding-top: 48px;
  padding-bottom: 126px;
}

.hero-grid,
.theme-hero__grid,
.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 66px;
  align-items: start;
}

.hero-grid--reference {
  max-width: 875px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 410px;
}

.hero-copy h1 {
  max-width: 400px;
  font-size: clamp(2.7rem, 4vw, 3.7rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-copy em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}

.hero-copy p {
  margin-top: 18px;
  max-width: 350px;
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 30px;
}

.hero-stats div {
  min-width: 94px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--terracotta);
  font-variant-numeric: lining-nums tabular-nums;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  display: flex;
}

.hero-image-shell,
.theme-hero__banner,
.product-viewer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-image-shell {
  width: 100%;
  min-height: 520px;
  background: transparent;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(143, 109, 89, 0.1);
}

.hero-image-shell img,
.theme-hero__banner img,
.product-viewer img,
.product-viewer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  display: none;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(244, 238, 231, 0.58));
}

.section-heading {
  margin-bottom: 34px;
}

.section--occasion .section-heading {
  text-align: center;
}

.section--occasion .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.section--occasion .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.section--products .section-heading h2 {
  font-size: 3.05rem;
}

.section-heading__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

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

.section-heading p {
  max-width: 460px;
  font-size: 0.9rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: var(--terracotta);
}

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

.slider-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
}

.occasion-grid,
.product-grid,
.theme-grid,
.process-grid,
.admin-overview,
.admin-layout {
  display: grid;
  gap: 20px;
}

.occasion-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

.occasion-card,
.theme-card__banner,
.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.occasion-card {
  display: block;
  min-height: 274px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
}

.product-card__media {
  min-height: 280px;
  background: #efe7df;
}

.theme-card__banner {
  min-height: 260px;
  background: #eee4dc;
}

.occasion-card img,
.product-card__media img,
.theme-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.occasion-card:hover,
.theme-card__banner:hover,
.product-card__media:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(59, 42, 31, 0.12);
}

.occasion-card:hover img,
.theme-card__banner:hover img,
.product-card__media:hover img {
  transform: scale(1.035);
}

.occasion-card__overlay,
.theme-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.02) 35%, rgba(20, 15, 13, 0.86) 100%);
}

.occasion-card__overlay span:first-child {
  margin-bottom: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.occasion-card__overlay h3,
.theme-card__overlay h3 {
  margin-bottom: 6px;
  font-size: 1.22rem;
  line-height: 1;
}

.occasion-card__overlay strong,
.theme-card__overlay span {
  font-size: 0.72rem;
}

.product-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 186px;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.product-slider::-webkit-scrollbar {
  height: 6px;
}

.product-slider::-webkit-scrollbar-thumb {
  background: rgba(191, 106, 72, 0.18);
  border-radius: 999px;
}

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

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

.product-card__media {
  scroll-snap-align: start;
  box-shadow: none;
}

.product-card__body {
  display: grid;
  gap: 5px;
}

.product-card__meta {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__body h3 {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.product-card__price,
.product-price {
  color: var(--terracotta);
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
}

.pill,
.video-indicator,
.badge {
  position: absolute;
  left: 12px;
  z-index: 2;
  min-width: 76px;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.pill,
.badge {
  background: linear-gradient(180deg, #c67452, var(--terracotta-deep));
}

.badge--inline {
  position: static;
  left: auto;
  display: inline-flex;
  justify-self: start;
  width: fit-content;
  margin-bottom: 2px;
}

.pill--top {
  top: 12px;
}

.pill--secondary {
  top: 34px;
  background: linear-gradient(180deg, #6b4334, #4f2f24);
}

.pill--solo {
  top: 12px;
}

.video-indicator {
  right: 12px;
  left: auto;
  top: 12px;
  background: rgba(35, 27, 24, 0.7);
}

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

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

.theme-card__monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: rgba(198, 118, 82, 0.55);
  z-index: 1;
}

.theme-card__overlay {
  padding-top: 24px;
}

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

.page-hero,
.theme-hero {
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 6vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 470px;
  margin: 14px auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(70, 51, 42, 0.88);
}

.page-hero .eyebrow {
  margin-bottom: 14px;
}

.theme-hero {
  text-align: left;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.custom-format-stack {
  display: grid;
  gap: 34px;
}

.custom-format {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 12px 0;
}

.custom-format--reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.custom-format--reverse .custom-format__copy {
  order: 2;
}

.custom-format--reverse .custom-format__media {
  order: 1;
}

.custom-format__title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 14px;
}

.custom-format__copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 0.98;
}

.custom-format__copy p {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.custom-format__description + .custom-format__description {
  margin-top: 8px;
}

.custom-format__price {
  margin-top: 0;
  color: #2f8f4e;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}

.custom-format__note {
  margin-top: 6px;
  max-width: 540px;
  color: rgba(91, 68, 57, 0.82);
  font-size: 0.95rem;
}

.custom-format__hint {
  margin-top: 12px;
  color: rgba(91, 68, 57, 0.9);
  font-size: 0.94rem;
}

.custom-format__interactive {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.interactive-chip {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(180deg, #c67452, #a95435);
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interactive-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 18px rgba(62, 35, 24, 0.26);
}

.interactive-chip__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: currentColor;
}

.interactive-chip__icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.interactive-chip__balloon {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: min(320px, 86vw);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(205, 182, 166, 0.5);
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 14px 28px rgba(61, 43, 34, 0.14);
  color: #5d4337;
  font-size: 0.84rem;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: 0.2s ease;
  z-index: 6;
}

.interactive-chip__balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(205, 182, 166, 0.5);
  border-left: 1px solid rgba(205, 182, 166, 0.5);
  background: rgba(255, 252, 248, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.interactive-chip.is-open .interactive-chip__balloon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.custom-format__gift-note {
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(191, 106, 72, 0.28);
  background: rgba(191, 106, 72, 0.08);
  color: #7c4d39;
  font-size: 0.9rem;
  line-height: 1.65;
}

.custom-format__media {
  display: flex;
  justify-content: center;
}

.custom-format__media--mobile {
  display: none;
}

.custom-format__media-card {
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(160deg, #2e221e 0%, #1f1815 36%, #0f0d0c 100%);
  transform: perspective(1200px) rotateY(-11deg) rotateX(3deg);
  transform-origin: center;
  box-shadow:
    -18px 24px 38px rgba(43, 28, 22, 0.3),
    0 16px 24px rgba(122, 84, 65, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.custom-format--reverse .custom-format__media-card {
  transform: perspective(1200px) rotateY(11deg) rotateX(3deg);
}

.custom-format__media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 248, 242, 0.2);
  pointer-events: none;
}

.custom-format__media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 42%, rgba(255, 255, 255, 0.08) 64%, transparent 84%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.custom-format:hover .custom-format__media-card {
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) translateY(-3px);
  box-shadow:
    -20px 28px 44px rgba(43, 28, 22, 0.34),
    0 18px 26px rgba(122, 84, 65, 0.22);
}

.custom-format--reverse:hover .custom-format__media-card {
  transform: perspective(1200px) rotateY(8deg) rotateX(2deg) translateY(-3px);
}

.custom-format__media-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.album-social {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.album-social__copy p {
  max-width: 620px;
  font-size: 0.9rem;
  line-height: 1.78;
}

.album-social__copy p + p {
  margin-top: 10px;
}

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

.album-plan {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(191, 106, 72, 0.24);
  background: rgba(255, 252, 248, 0.82);
}

.album-plan h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.album-plan h3 span {
  color: #2f8f4e;
  font-size: 1.3rem;
  font-weight: 700;
}

.album-plan ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0 0 0 18px;
  color: #5c4337;
  font-size: 0.88rem;
  line-height: 1.6;
}

.album-plan--pro {
  border-color: rgba(47, 143, 78, 0.35);
  background: linear-gradient(180deg, rgba(236, 255, 243, 0.7), rgba(255, 255, 255, 0.96));
}

.album-social__note {
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(191, 106, 72, 0.4);
  background: rgba(255, 249, 244, 0.92);
  color: #7d4d39;
  font-size: 0.85rem;
}

.album-social__mock-wrap {
  display: flex;
  justify-content: center;
}

.album-social__mock {
  width: min(100%, 390px);
  border-radius: 26px;
  padding: 0;
  border: 1px solid rgba(191, 106, 72, 0.28);
  background: linear-gradient(160deg, #fffdf9 0%, #f7eee8 100%);
  box-shadow: 0 24px 46px rgba(61, 43, 34, 0.16);
  overflow: hidden;
}

.album-app {
  padding-bottom: 12px;
}

.album-app__cover {
  height: 112px;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.35), transparent 36%),
    radial-gradient(circle at 16% 35%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(140deg, #243b7a 0%, #2f4d97 52%, #6f3f9a 100%);
  overflow: hidden;
}

.album-app__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-app__avatar {
  width: 84px;
  height: 84px;
  margin: -42px auto 0;
  border-radius: 50%;
  border: 3px solid #fff;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.32), transparent 26%),
    linear-gradient(150deg, #cf8c74 0%, #8a5b52 100%);
  box-shadow: 0 10px 20px rgba(42, 26, 21, 0.26);
  overflow: hidden;
}

.album-app__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-app__profile {
  padding: 10px 16px 0;
  text-align: center;
}

.album-app__profile h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.album-app__profile p {
  margin: 0 auto;
  max-width: 280px;
  color: #5f4a61;
  font-size: 0.78rem;
  line-height: 1.6;
}

.album-app__stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.album-app__stats div {
  display: grid;
  gap: 2px;
}

.album-app__stats strong {
  color: #2b1f2c;
  font-size: 1rem;
}

.album-app__stats span {
  color: #6e5c73;
  font-size: 0.68rem;
}

.album-app__cta {
  width: calc(100% - 32px);
  min-height: 46px;
  margin: 14px 16px 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, #f03b9f 0%, #b24be7 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
}

.album-app__tabs {
  display: flex;
  justify-content: space-around;
  margin: 14px 16px 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(170, 140, 124, 0.28);
}

.album-app__tabs span {
  color: #6e5c73;
  font-size: 0.82rem;
  font-weight: 600;
}

.album-app__tabs .is-active {
  color: #1f1820;
}

.album-app__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 10px;
}

.album-app__card {
  border: 1px solid rgba(164, 133, 118, 0.24);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.album-app__thumb {
  height: 108px;
  overflow: hidden;
}

.album-app__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-app__actions {
  padding: 6px 8px;
  font-size: 0.68rem;
  color: #6d5b72;
}

.rsvp-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.rsvp-showcase__copy p {
  max-width: 620px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.rsvp-showcase__copy p + p {
  margin-top: 10px;
}

.rsvp-showcase__list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #4f3a31;
  font-size: 0.86rem;
}

.rsvp-showcase__mock-wrap {
  display: flex;
  justify-content: center;
}

.rsvp-mock {
  position: relative;
  width: min(100%, 390px);
  padding: 0 18px 22px;
  min-height: 0;
  border-radius: 26px;
  border: 1px solid rgba(191, 106, 72, 0.28);
  background: linear-gradient(160deg, #fffdf9 0%, #f7eee8 100%);
  box-shadow: 0 24px 46px rgba(61, 43, 34, 0.16);
  overflow: visible;
}

.rsvp-mock__toast {
  position: absolute;
  top: -16px;
  right: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(188, 169, 155, 0.55);
  background: #fff;
  font-size: 0.73rem;
  color: #58463d;
  box-shadow: 0 10px 18px rgba(61, 43, 34, 0.16);
  animation: rsvpFloatToast 3.6s ease-in-out infinite;
  z-index: 3;
}

.rsvp-mock__header {
  margin: 0 -18px 12px;
  padding: 18px 20px;
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.3), transparent 36%),
    linear-gradient(120deg, #179d6b 0%, #43cfa0 100%);
  color: #fff;
}

.rsvp-mock__header h3 {
  font-size: 2.02rem;
  line-height: 0.9;
}

.rsvp-mock__header p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

.rsvp-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.rsvp-mock__stats div {
  padding: 13px 10px;
  border-radius: 12px;
  border: 1px solid rgba(140, 197, 169, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
  text-align: center;
}

.rsvp-mock__stats strong {
  display: block;
  color: #138c5e;
  font-size: 1.2rem;
}

.rsvp-mock__stats span {
  color: #5b7768;
  font-size: 0.75rem;
}

.rsvp-mock__toolbar {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.rsvp-mock__toolbar button {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(145, 199, 172, 0.5);
  background: #fff;
  color: #35604d;
  font-size: 0.8rem;
}

.rsvp-mock__toolbar .is-primary {
  background: linear-gradient(120deg, #cb5f35 0%, #bf6a48 100%);
  border-color: #b85f3f;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 14px rgba(181, 88, 52, 0.28);
}

.rsvp-mock__guest-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.rsvp-mock__extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.rsvp-extra {
  padding: 10px 11px;
  border-radius: 11px;
  border: 1px solid rgba(145, 199, 172, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #f4fff9 100%);
}

.rsvp-extra strong {
  display: block;
  color: #255845;
  font-size: 0.8rem;
}

.rsvp-extra span {
  display: block;
  margin-top: 4px;
  color: #557769;
  font-size: 0.74rem;
}

.rsvp-mock__guest {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 203, 176, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
}

.rsvp-mock__guest-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(27, 154, 108, 0.14);
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  overflow: hidden;
}

.rsvp-mock__guest-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsvp-mock__guest strong {
  display: block;
  color: #2b4f3e;
  font-size: 0.95rem;
}

.rsvp-mock__guest span {
  color: #5a7b6b;
  font-size: 0.8rem;
}

.rsvp-mock__guest i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(32, 161, 114, 0.65);
  color: #21a374;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.82rem;
}

.rsvp-mock__footer-chip {
  width: fit-content;
  position: absolute;
  left: 20px;
  bottom: -20px;
  padding: 7px 12px;
  border-radius: 9px;
  border: 1px solid rgba(188, 169, 155, 0.45);
  background: #fff;
  color: #5a463d;
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 12px 18px rgba(61, 43, 34, 0.16);
  animation: rsvpFloatChip 3.9s ease-in-out infinite;
  z-index: 3;
}

.rsvp-mock__timeline {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.rsvp-mock__timeline div {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(191, 106, 72, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.rsvp-mock__timeline span {
  color: #8a6a5c;
  font-size: 0.68rem;
}

.rsvp-mock__timeline strong {
  color: #5a463d;
  font-size: 0.76rem;
  font-weight: 600;
}

@keyframes rsvpFloatToast {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes rsvpFloatChip {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr auto;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.92), rgba(252, 246, 240, 0.86));
  border: 1px solid rgba(201, 152, 126, 0.32);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(188, 108, 82, 0.06);
  margin-bottom: 24px;
}

.filter-bar input,
.filter-dropdown__toggle,
.admin-form input,
.admin-form textarea,
.admin-form select {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(201, 152, 126, 0.48);
  background: rgba(255, 253, 250, 0.96);
  color: #5d4337;
}

.filter-bar input::placeholder {
  color: rgba(137, 95, 74, 0.82);
}

.filter-bar input:focus,
.filter-dropdown__toggle:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: rgba(184, 94, 57, 0.72);
  box-shadow: 0 0 0 3px rgba(184, 94, 57, 0.12);
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.filter-dropdown__toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #7a5647;
  border-bottom: 2px solid #7a5647;
  transform: rotate(45deg) translateY(-2px);
  flex: 0 0 auto;
  margin-left: 12px;
}

.filter-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(201, 152, 126, 0.36);
  background: rgba(255, 251, 247, 0.98);
  box-shadow: 0 18px 36px rgba(109, 73, 57, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.18s ease;
  z-index: 15;
}

.filter-dropdown.is-open .filter-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-dropdown__menu button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #5d4337;
  text-align: left;
  padding: 11px 12px;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
}

.filter-dropdown__menu button:hover,
.filter-dropdown__menu button.is-active {
  background: rgba(184, 94, 57, 0.1);
  color: #8d4e34;
}

.admin-form textarea {
  min-height: 110px;
  resize: vertical;
}

.empty-state {
  padding: 28px;
  border-radius: 22px;
  border: 1px dashed rgba(191, 106, 72, 0.28);
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-card {
  padding: 24px 24px;
  border-radius: 22px;
  border: 1px solid rgba(191, 106, 72, 0.24);
  background: rgba(255, 255, 255, 0.74);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  color: #b85e39;
}

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

.info-updated {
  margin-top: 12px !important;
  font-size: 0.86rem !important;
  color: rgba(80, 60, 50, 0.82) !important;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(191, 106, 72, 0.24);
  background: rgba(255, 255, 255, 0.74);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #6b402f;
  list-style: none;
}

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

.faq-item p {
  margin-top: 10px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-detail {
  align-items: start;
}

.product-detail__media {
  display: grid;
  gap: 16px;
}

.product-viewer {
  min-height: 606px;
  background: #f1e9e2;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 14, 12, 0) 42%, rgba(18, 14, 12, 0.32) 100%);
  pointer-events: none;
}

.video-poster__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--terracotta-deep);
  font-size: 2rem;
  box-shadow: 0 18px 40px rgba(63, 43, 32, 0.18);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 10px;
}

.thumb {
  padding: 5px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.thumb.is-active {
  border-color: rgba(191, 106, 72, 0.4);
  background: rgba(255, 255, 255, 0.94);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
}

.product-detail__info {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.product-detail__info h1 {
  max-width: 100%;
  font-size: clamp(1.45rem, 1.8vw, 2.05rem);
  line-height: 0.94;
  white-space: normal;
  text-wrap: balance;
}

.product-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: #17110f;
}

.product-detail__info .product-price {
  color: #149447;
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  font-weight: 700;
}

.product-detail__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

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

.product-detail__actions .button {
  width: 100%;
  padding: 0 12px;
}

.product-detail__actions .button:only-child {
  grid-column: 1 / -1;
}

.product-detail__info .custom-format__hint {
  margin-top: 2px;
}

.product-detail__info .custom-format__interactive {
  justify-content: flex-start;
}

.product-detail__info .custom-format__gift-note {
  margin-top: 0;
}

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

.product-info-list div {
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.product-info-list strong {
  font-size: 0.88rem;
  font-weight: 700;
}

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

.process-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(191, 106, 72, 0.08);
  color: var(--terracotta);
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

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

.instagram-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(191, 106, 72, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.instagram-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.instagram-card:hover img {
  transform: scale(1.03);
}

.site-footer {
  margin-top: 36px;
  padding: 30px 0 14px;
  background: var(--surface-dark);
  color: #ece3dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 1fr;
  gap: 20px;
}

.site-footer p,
.site-footer a {
  color: rgba(236, 227, 220, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

.site-footer h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.footer-contact-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-cnpj {
  margin-top: 10px;
  font-size: 0.82rem !important;
  color: rgba(236, 227, 220, 0.72) !important;
}

.footer-company {
  margin-top: 2px;
  font-size: 0.8rem !important;
  color: rgba(236, 227, 220, 0.64) !important;
}

.footer-icon-link {
  width: 34px;
  height: 34px;
  margin-top: 0 !important;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 227, 220, 0.9) !important;
}

.footer-icon-link--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
  border-color: transparent;
  color: #fff !important;
}

.footer-icon-link--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff !important;
}

.footer-icon-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-icon-link--whatsapp svg {
  stroke: none;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(236, 227, 220, 0.6);
  font-size: 0.8rem;
}

.admin-body {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(249, 243, 237, 0.82), rgba(250, 246, 241, 1));
}

.admin-shell {
  width: min(calc(100% - 32px), 1480px);
  margin: 24px auto;
}

.admin-login {
  min-height: calc(100vh - 40px);
  display: grid;
  place-items: center;
}

.admin-login__card,
.admin-panel,
.admin-stat,
.admin-sidebar {
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(205, 182, 166, 0.26);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(122, 84, 65, 0.08);
}

.admin-login__card {
  width: min(100%, 500px);
  padding: 42px;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form label,
.admin-form fieldset {
  display: grid;
  gap: 8px;
}

.admin-form span,
.admin-form legend {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.admin-sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
  padding: 28px;
  display: grid;
  gap: 20px;
}

.admin-sidebar img {
  width: 168px;
  max-width: 100%;
}

.admin-sidebar p {
  margin: 0;
  color: rgba(82, 61, 51, 0.86);
  line-height: 1.8;
}

.admin-sidebar__actions,
.table-actions,
.toggle-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-sidebar__actions button,
.table-actions button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(197, 163, 144, 0.65);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.admin-content {
  display: grid;
  gap: 22px;
}

.admin-topbar {
  padding: 8px 4px 2px;
}

.admin-topbar__text {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(82, 61, 51, 0.88);
  line-height: 1.75;
}

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

.admin-stat {
  padding: 24px;
}

.admin-stat strong {
  display: block;
  margin-top: 12px;
  color: var(--terracotta);
  font-family: "Manrope", sans-serif;
  font-size: 2.2rem;
  font-variant-numeric: lining-nums tabular-nums;
}

.admin-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 20px;
}

.admin-stack {
  display: grid;
  gap: 20px;
}

.admin-panel {
  padding: 24px;
}

.admin-panel--compact {
  padding: 20px 24px;
}

.admin-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-panel__header h2 {
  font-size: clamp(2.05rem, 4vw, 3rem);
  line-height: 0.95;
}

.admin-panel__sub {
  margin-top: 8px;
  max-width: 580px;
  color: rgba(94, 71, 60, 0.82);
  line-height: 1.65;
}

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

.admin-form__full,
.checkbox-group,
.toggle-row {
  grid-column: 1 / -1;
}

.checkbox-group {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(205, 182, 166, 0.44);
  background: rgba(255, 255, 255, 0.72);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox-group label {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(205, 182, 166, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(205, 182, 166, 0.22);
  vertical-align: top;
}

.admin-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(110, 84, 70, 0.88);
}

.admin-table td small {
  display: block;
  margin-top: 6px;
  color: rgba(110, 84, 70, 0.78);
}

.theme-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
}

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

.price-chip {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(205, 182, 166, 0.34);
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.95), rgba(250, 242, 236, 0.88));
}

.price-chip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.price-chip span {
  color: var(--terracotta);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
}

.admin-shell {
  width: min(calc(100% - 32px), 1360px);
  margin: 22px auto 42px;
}

.admin-app {
  display: grid;
  gap: 18px;
}

.admin-header,
.admin-nav,
.admin-stat-card,
.admin-quick-card,
.admin-note {
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(205, 182, 166, 0.28);
  box-shadow: 0 22px 44px rgba(122, 84, 65, 0.08);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 26px;
}

.admin-header__brand h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.9;
}

.admin-header__brand p {
  max-width: 620px;
  margin-top: 12px;
}

.admin-header__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
}

.admin-nav__link {
  padding: 12px 16px;
  border-radius: 14px;
  color: rgba(72, 51, 42, 0.88);
  font-weight: 600;
  transition: 0.2s ease;
}

.admin-nav__link:hover,
.admin-nav__link.is-active {
  background: rgba(191, 106, 72, 0.12);
  color: var(--terracotta-deep);
}

.admin-view {
  display: grid;
  gap: 20px;
}

.admin-grid {
  display: grid;
  gap: 20px;
}

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

.admin-grid--two {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
}

.admin-stat-card {
  padding: 24px;
  border-radius: 24px;
}

.admin-stat-card span {
  display: block;
  color: rgba(91, 68, 57, 0.8);
}

.admin-stat-card strong {
  display: block;
  margin-top: 12px;
  color: var(--terracotta);
  font-family: "Manrope", sans-serif;
  font-size: 2.3rem;
  font-variant-numeric: lining-nums tabular-nums;
}

.admin-quick-actions,
.admin-note-list {
  display: grid;
  gap: 12px;
}

.admin-quick-card,
.admin-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
}

.admin-quick-card strong,
.admin-note strong {
  font-size: 1rem;
}

.admin-quick-card span,
.admin-note span {
  color: rgba(91, 68, 57, 0.8);
  line-height: 1.7;
}

.admin-panel--narrow {
  max-width: 920px;
}

.admin-inline-check {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.admin-inline-check input {
  min-height: auto;
  padding: 0;
}

.admin-import-tip {
  margin-top: 14px;
  color: rgba(91, 68, 57, 0.78);
  line-height: 1.7;
}

.admin-field-hint {
  display: block;
  margin-top: 6px;
  color: rgba(91, 68, 57, 0.72);
  line-height: 1.5;
}

.admin-media-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(205, 182, 166, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-media-summary strong {
  margin-right: 8px;
}

.admin-tag-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-mini-toggle {
  min-height: 32px;
  min-width: 94px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(197, 163, 144, 0.65);
  background: rgba(255, 255, 255, 0.95);
  color: #9b5a3d;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.admin-mini-toggle.is-active {
  background: #bf6a48;
  border-color: #bf6a48;
  color: #fff;
}

.admin-mini-toggle--dark {
  color: #5a372b;
}

.admin-mini-toggle--dark.is-active {
  background: #5a372b;
  border-color: #5a372b;
  color: #fff;
}

.admin-thumb-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(191, 106, 72, 0.12);
  color: var(--terracotta-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-thumb-pill--muted {
  background: rgba(122, 105, 95, 0.1);
  color: rgba(91, 68, 57, 0.78);
}

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

.price-chip--editor input {
  min-height: 46px;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .theme-hero__grid,
  .product-detail,
  .admin-dashboard,
  .admin-layout,
  .custom-format,
  .custom-format--reverse {
    grid-template-columns: 1fr;
  }

  .occasion-grid,
  .product-grid,
  .theme-grid--full,
  .process-grid,
  .admin-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .rsvp-showcase {
    grid-template-columns: 1fr;
  }

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

  .product-viewer {
    min-height: 500px;
  }

  .product-detail__info h1 {
    white-space: normal;
  }

  .custom-format--reverse .custom-format__copy,
  .custom-format--reverse .custom-format__media {
    order: initial;
  }

  .admin-grid--stats,
  .admin-grid--two,
  .price-table--editor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .page-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.6rem);
    line-height: 0.98;
  }

  .page-hero p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: rgba(255, 252, 249, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 10px;
  }

  .hero-section,
  .section,
  .page-hero,
  .theme-hero {
    padding: 58px 0;
  }

  .hero-image-shell {
    min-height: 430px;
  }

  .floating-card {
    min-width: 150px;
    padding: 14px 16px;
  }

  .floating-card strong {
    font-size: 1.3rem;
  }

  .section-heading__row,
  .footer-grid,
  .filter-bar,
  .admin-form__grid,
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .admin-overview,
  .price-table {
    grid-template-columns: 1fr 1fr;
  }

  .occasion-grid,
  .theme-grid,
  .theme-grid--full,
  .process-grid,
  .admin-overview {
    grid-template-columns: 1fr;
  }

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

  .price-table {
    grid-template-columns: 1fr;
  }

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

  .product-card__body h3 {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .product-card__meta {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .product-card__price {
    font-size: 1.16rem;
  }

  .product-slider {
    grid-auto-columns: minmax(186px, 72vw);
  }

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

  .hero-stats div {
    border-right: 0;
    padding-right: 0;
  }

  .product-viewer {
    min-height: 360px;
  }

  .custom-format {
    padding: 8px 0;
    gap: 22px;
  }

  .custom-format__title-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .custom-format__copy h2 {
    font-size: clamp(1.2rem, 5.8vw, 1.55rem);
  }

  .custom-format__copy p {
    font-size: 0.8rem;
    line-height: 1.64;
  }

  .album-social__copy p {
    font-size: 0.82rem;
    line-height: 1.62;
  }

  .album-social__mock-wrap,
  .rsvp-showcase__mock-wrap {
    order: 1;
  }

  .album-social__copy,
  .rsvp-showcase__copy {
    order: 2;
  }

  .rsvp-showcase__copy p {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .rsvp-showcase__list {
    font-size: 0.84rem;
  }

  .rsvp-showcase .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .rsvp-showcase .hero-actions .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .album-plan h3 {
    font-size: 1.34rem;
  }

  .album-plan h3 span {
    font-size: 1.08rem;
  }

  .album-plan ul {
    font-size: 0.8rem;
  }

  .album-social__mock {
    width: min(100%, 340px);
    border-radius: 20px;
  }

  .album-app__cover {
    height: 98px;
  }

  .album-app__avatar {
    width: 74px;
    height: 74px;
    margin-top: -37px;
  }

  .album-app__profile h4 {
    font-size: 1.08rem;
  }

  .album-app__profile p {
    font-size: 0.72rem;
  }

  .album-app__cta {
    min-height: 40px;
    font-size: 0.86rem;
  }

  .album-app__grid {
    gap: 6px;
    padding: 0 8px;
  }

  .album-app__thumb {
    height: 88px;
  }

  .rsvp-mock {
    width: min(100%, 340px);
    min-height: 0;
    border-radius: 20px;
    padding-bottom: 20px;
  }

  .rsvp-mock__header h3 {
    font-size: 1.5rem;
  }

  .rsvp-mock__stats strong {
    font-size: 0.96rem;
  }

  .rsvp-mock__toolbar button {
    font-size: 0.72rem;
  }

  .rsvp-mock__extras {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .rsvp-mock__timeline strong {
    font-size: 0.72rem;
  }

  .rsvp-mock__toast {
    right: 10px;
    top: -14px;
    font-size: 0.68rem;
  }

  .rsvp-mock__footer-chip {
    left: 10px;
    bottom: -16px;
    font-size: 0.7rem;
  }

  .custom-format__media-card {
    width: min(100%, 280px);
    transform: none;
    box-shadow: 0 16px 30px rgba(63, 43, 32, 0.18);
  }

  .custom-format__media--desktop {
    display: none;
  }

  .custom-format__media--mobile {
    display: flex;
    margin-top: 6px;
    margin-bottom: 26px;
  }

  .custom-format--reverse .custom-format__media-card,
  .custom-format:hover .custom-format__media-card,
  .custom-format--reverse:hover .custom-format__media-card {
    transform: none;
  }

  .custom-format__interactive {
    gap: 8px;
    justify-content: center;
  }

  .product-detail__info .custom-format__interactive {
    justify-content: center;
  }

  .interactive-chip {
    width: 54px;
    height: 54px;
  }

  .interactive-chip__balloon {
    left: 50%;
    width: min(260px, calc(100vw - 32px));
    transform: translate(-50%, -8px);
  }

  .interactive-chip__balloon::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .interactive-chip.is-open .interactive-chip__balloon {
    transform: translate(-50%, 0);
  }

  .custom-format__interactive .interactive-chip:nth-child(1) .interactive-chip__balloon,
  .custom-format__interactive .interactive-chip:nth-child(2) .interactive-chip__balloon {
    left: 0;
    transform: translateY(-8px);
  }

  .custom-format__interactive .interactive-chip:nth-child(1).is-open .interactive-chip__balloon,
  .custom-format__interactive .interactive-chip:nth-child(2).is-open .interactive-chip__balloon {
    transform: translateY(0);
  }

  .custom-format__interactive .interactive-chip:nth-child(1) .interactive-chip__balloon::before,
  .custom-format__interactive .interactive-chip:nth-child(2) .interactive-chip__balloon::before {
    left: 26px;
    transform: rotate(45deg);
  }

  .custom-format__interactive .interactive-chip:nth-child(4) .interactive-chip__balloon,
  .custom-format__interactive .interactive-chip:nth-child(5) .interactive-chip__balloon {
    left: auto;
    right: 0;
    transform: translateY(-8px);
  }

  .custom-format__interactive .interactive-chip:nth-child(4).is-open .interactive-chip__balloon,
  .custom-format__interactive .interactive-chip:nth-child(5).is-open .interactive-chip__balloon {
    transform: translateY(0);
  }

  .custom-format__interactive .interactive-chip:nth-child(4) .interactive-chip__balloon::before,
  .custom-format__interactive .interactive-chip:nth-child(5) .interactive-chip__balloon::before {
    left: auto;
    right: 26px;
    transform: rotate(45deg);
  }

  .custom-format .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .custom-format .hero-actions .button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

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

  .admin-header__actions {
    justify-content: flex-start;
  }

  .admin-grid--stats,
  .admin-grid--two,
  .price-table--editor {
    grid-template-columns: 1fr;
  }

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