:root {
  --ink: #003f59;
  --ink-soft: #315f70;
  --mint: #eaf6f4;
  --mint-bright: #dbfedd;
  --coral: #ff8d8d;
  --red: #e3220b;
  --red-dark: #b91e0c;
  --orange: #ff8a00;
  --paper: #ffffff;
  --cream: #fff9f0;
  --line: #d8e5e4;
  --muted: #68828c;
  --shadow: 0 22px 70px rgba(0, 63, 89, 0.11);
  --radius: 1.4rem;
  --shell: min(1220px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 0.5rem;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 30;
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 0.3rem 1rem;
  color: var(--ink);
  background: var(--mint-bright);
  font-size: 0.78rem;
  letter-spacing: 0.045em;
  text-align: center;
}

.announcement p {
  margin: 0;
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 4vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 63, 89, 0.09);
  backdrop-filter: blur(16px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(0, 63, 89, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  width: 82px;
  height: 47px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.8rem);
}

.primary-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.custom-copy h2,
.contact-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.4vw, 6.7rem);
}

.hero h1 em {
  color: var(--red);
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button > span[aria-hidden="true"] {
  transition: transform 180ms ease;
}

.button:hover > span[aria-hidden="true"] {
  transform: translateX(3px);
}

.button-primary {
  color: white;
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-quiet,
.button-outline {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button-quiet:hover,
.button-outline:hover {
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--mint-bright);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.25rem;
}

.hero-notes span {
  padding: 0.45rem 0.75rem;
  color: var(--ink-soft);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero-collage {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.hero-collage::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 4% 4% 5% 8%;
  background: var(--mint-bright);
  border-radius: 44% 56% 48% 52% / 52% 40% 60% 48%;
  transform: rotate(-3deg);
}

.hero-collage::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  right: -1rem;
  top: 1rem;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.7;
}

.hero-card {
  position: absolute;
  margin: 0;
  padding: 0.75rem;
  background: white;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
  border-radius: 0.8rem;
}

.hero-card-main {
  inset: 9% 17% 7% 12%;
  transform: rotate(-4deg);
}

.hero-card-main img {
  height: calc(100% - 38px);
}

.hero-card-main figcaption {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

.hero-card-top,
.hero-card-bottom {
  width: 155px;
  height: 190px;
  border: 6px solid white;
  padding: 0.25rem;
}

.hero-card-top {
  top: 0;
  right: 0;
  transform: rotate(7deg);
}

.hero-card-bottom {
  right: 1%;
  bottom: 2%;
  transform: rotate(5deg);
}

.collage-stamp {
  position: absolute;
  left: 1%;
  bottom: 2%;
  width: 100px;
  height: 100px;
  display: grid;
  place-content: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  text-align: center;
  transform: rotate(-10deg);
}

.collage-stamp small {
  display: block;
  margin-top: 0.25rem;
  font-family: inherit;
  font-size: 0.65rem;
}

.motion-ready .hero-card-main {
  animation: hero-card-float 7.5s ease-in-out infinite;
}

.motion-ready .hero-card-top {
  animation: hero-card-float-side 6.4s ease-in-out 0.4s infinite;
}

.motion-ready .hero-card-bottom {
  animation: hero-card-float-side 7.1s ease-in-out 1.1s infinite reverse;
}

.motion-ready .collage-stamp {
  animation: hero-stamp-float 5.8s ease-in-out 0.7s infinite;
}

.motion-ready .hero-collage::after {
  animation: hero-orb-breathe 8s ease-in-out infinite;
}

@keyframes hero-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

@keyframes hero-card-float-side {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 4px -7px;
  }
}

@keyframes hero-stamp-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@keyframes hero-orb-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.58;
  }
}

.motion-ready [data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 620ms ease, translate 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

.quick-categories {
  padding-block: 4rem;
  background: var(--mint);
}

.section-heading h2,
.custom-copy h2,
.contact-inner h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.compact-heading .eyebrow {
  margin: 0 0 0.45rem;
}

.category-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.category-shortcut {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  color: var(--ink);
  background: white;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.category-shortcut:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 63, 89, 0.11);
}

.category-shortcut img {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 56%;
  height: 76%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 250ms ease;
}

.category-shortcut:hover img {
  transform: rotate(3deg) scale(1.04);
}

.category-shortcut:nth-child(2n) {
  background: #fff2f2;
}

.category-shortcut:nth-child(3n) {
  background: var(--cream);
}

.category-shortcut span,
.category-shortcut strong {
  position: relative;
  z-index: 1;
}

.category-shortcut span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-shortcut strong {
  max-width: 65%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.12;
}

.catalogue {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.catalogue-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.catalogue-count {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.catalogue-count strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.catalogue-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 1rem;
  margin-top: 2.6rem;
}

.search-field,
.sort-field {
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.search-field {
  max-width: 620px;
  padding-inline: 1rem;
}

.search-field svg {
  width: 20px;
  height: 20px;
  margin-right: 0.7rem;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 1.6;
}

.search-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-field input::placeholder {
  color: #82979f;
}

.sort-field {
  padding: 0 0.9rem 0 1.1rem;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.sort-field select {
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.category-filters {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding: 0.2rem 0 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  color: var(--ink-soft);
  background: var(--mint);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
}

.filter-chip[aria-pressed="true"] {
  color: white;
  background: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1rem;
  margin-top: 2rem;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-image-button {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #f7fbfa;
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}

.product-image-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 260ms ease;
}

.product-image-button:hover img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.35rem 0.6rem;
  color: var(--ink);
  background: var(--mint-bright);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.product-info {
  padding: 1rem 0.2rem 0;
}

.product-category {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-title-button {
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
}

.product-title-button:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.product-price-row {
  min-height: 30px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 800;
}

.product-mrp {
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: line-through;
}

.product-discount {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.product-actions .button {
  min-height: 42px;
  padding: 0.62rem 0.85rem;
  font-size: 0.77rem;
}

.details-button {
  width: 42px;
  padding-inline: 0;
}

.empty-state {
  margin-top: 2rem;
  padding: 4rem 1rem;
  background: var(--mint);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.empty-state p {
  margin: 0.5rem 0 1.2rem;
  color: var(--ink-soft);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.price-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.custom-gifts {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8rem);
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.custom-gifts::before,
.custom-gifts::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.custom-gifts::before {
  width: 360px;
  height: 360px;
  top: -200px;
  left: -80px;
  background: var(--coral);
  opacity: 0.16;
}

.custom-gifts::after {
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  background: var(--orange);
  opacity: 0.18;
}

.custom-gifts-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(240px, 0.78fr) minmax(240px, 0.78fr);
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
}

.custom-gifts .eyebrow {
  color: var(--coral);
}

.custom-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: #d9e9ec;
  font-size: 1.05rem;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.8rem 0 2rem;
}

.occasion-list span {
  padding: 0.45rem 0.75rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
}

.gift-showcase {
  position: relative;
  color: var(--ink);
  background: white;
  border-radius: 2rem 2rem 2rem 0.45rem;
  box-shadow: 20px 20px 0 rgba(255, 141, 141, 0.75);
  overflow: hidden;
  transform: rotate(1.5deg);
}

.gift-showcase-birthday {
  box-shadow: 20px 20px 0 rgba(255, 138, 0, 0.42);
  transform: rotate(-1.2deg);
}

.gift-showcase-birthday .gift-showcase-visual img {
  object-position: center top;
}

.gift-showcase-visual {
  position: relative;
  display: block;
  color: white;
  background: #3c1909;
  overflow: hidden;
  text-decoration: none;
}

.gift-showcase-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gift-showcase-visual:hover img {
  transform: scale(1.025);
}

.gift-showcase-visual span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.42rem 0.72rem;
  color: var(--ink);
  background: var(--mint-bright);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(24, 8, 0, 0.2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-showcase-copy {
  padding: 1.5rem 1.6rem 1.7rem;
}

.gift-kicker {
  margin: 0 0 0.45rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-showcase-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 400;
  line-height: 1.08;
}

.gift-showcase-copy > p:not(.gift-kicker) {
  margin: 0.85rem 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.gift-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.gift-pdf-link:hover {
  color: var(--red-dark);
}

.how-it-works {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

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

.steps-grid article {
  min-height: 235px;
  padding: 1.6rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.steps-grid article:nth-child(2) {
  background: var(--mint);
}

.steps-grid article:nth-child(3) {
  background: #fff1f1;
}

.steps-grid span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.steps-grid h3 {
  margin: 2.6rem 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.steps-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.coupon-panel {
  max-width: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin: 1.25rem auto 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: linear-gradient(135deg, var(--mint) 0%, #f4fbfa 54%, #fff1f1 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 63, 89, 0.08);
}

.coupon-panel-copy .eyebrow {
  margin-bottom: 0.35rem;
}

.coupon-panel-copy h3 {
  margin: 0 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.coupon-panel-copy > p:last-child {
  max-width: 510px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.coupon-panel-action {
  min-width: min(100%, 295px);
  text-align: center;
}

.coupon-copy-button {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  color: white;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(227, 34, 11, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.coupon-copy-button:hover {
  background: var(--red-dark);
  box-shadow: 0 13px 28px rgba(185, 30, 12, 0.24);
  transform: translateY(-2px);
}

.coupon-copy-button.is-copied {
  background: var(--ink);
}

.coupon-copy-button svg {
  flex: 0 0 18px;
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.coupon-status {
  min-height: 1.35em;
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-band {
  padding-block: 3.3rem;
  background: var(--mint-bright);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-inner h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-inner .eyebrow {
  margin-bottom: 0.6rem;
}

.contact-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.site-footer {
  padding-block: 4.5rem 1.5rem;
  color: #dce9ec;
  background: #002f43;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  width: min(420px, 100%);
  height: 118px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: #a8c0c8;
}

.footer-grid h2 {
  margin: 0 0 1rem;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.footer-grid a {
  width: fit-content;
  display: block;
  margin: 0.55rem 0;
  color: #c4d6db;
  font-size: 0.86rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  color: #90aab3;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 63, 89, 0.22);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.product-dialog {
  width: min(980px, calc(100% - 30px));
  max-height: min(820px, calc(100vh - 30px));
  padding: 0;
  color: var(--ink);
  background: white;
  border: 0;
  border-radius: 1.6rem;
  box-shadow: 0 30px 100px rgba(0, 31, 45, 0.28);
  overflow: auto;
}

.product-dialog::backdrop {
  background: rgba(0, 31, 45, 0.66);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: sticky;
  z-index: 3;
  top: 1rem;
  float: right;
  width: 42px;
  height: 42px;
  margin: 1rem 1rem -58px 0;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.dialog-gallery {
  padding: 2rem;
  background: #f5faf9;
}

.dialog-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dialog-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  margin-top: 1rem;
}

.dialog-thumb {
  aspect-ratio: 1;
  padding: 0.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  cursor: pointer;
}

.dialog-thumb[aria-pressed="true"] {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}

.dialog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-copy {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
}

.dialog-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.dialog-copy .product-price-row {
  margin-top: 1.1rem;
}

.dialog-description {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
}

.dialog-bullets {
  padding-left: 1.15rem;
  margin: 1.2rem 0 1.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dialog-bullets li {
  margin: 0.55rem 0;
}

.dialog-copy .button {
  width: 100%;
}

.dialog-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.image-unavailable img {
  display: none;
}

.image-unavailable::after {
  content: "View image on Amazon";
  max-width: 150px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7vw, 5.2rem);
  }

  .hero-collage {
    min-height: 480px;
  }

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

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

  .custom-copy {
    grid-column: 1 / -1;
    max-width: 760px;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 1rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-logo {
    width: 70px;
    height: 40px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem 1rem 1.1rem;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(0, 63, 89, 0.08);
  }

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

  .primary-nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-block: 3.8rem 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-collage {
    width: min(540px, 100%);
    min-height: 500px;
    margin-inline: auto;
  }

  .compact-heading,
  .catalogue-heading,
  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .category-shortcut {
    min-height: 190px;
  }

  .catalogue-tools {
    grid-template-columns: 1fr;
  }

  .search-field {
    max-width: none;
  }

  .sort-field {
    width: fit-content;
  }

  .custom-gifts-grid,
  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .custom-copy {
    grid-column: auto;
    margin-bottom: 0;
  }

  .gift-showcase {
    width: min(460px, calc(100% - 18px));
    margin-inline: auto;
  }

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

  .steps-grid article {
    min-height: 190px;
  }

  .steps-grid h3 {
    margin-top: 2rem;
  }

  .coupon-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coupon-panel-copy > p:last-child {
    margin-inline: auto;
  }

  .coupon-panel-action {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .contact-actions {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .dialog-gallery {
    padding-top: 3.6rem;
  }

  .dialog-main-image {
    max-height: 420px;
  }
}

@media (max-width: 520px) {
  .announcement {
    font-size: 0.68rem;
  }

  .brand-name {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-collage {
    min-height: 410px;
  }

  .hero-card-main {
    inset: 8% 13% 8% 8%;
  }

  .hero-card-top,
  .hero-card-bottom {
    width: 115px;
    height: 145px;
  }

  .collage-stamp {
    width: 82px;
    height: 82px;
    font-size: 1.05rem;
  }

  .category-shortcuts {
    display: flex;
    gap: 0.75rem;
    margin-right: -14px;
    padding: 0.2rem 14px 0.8rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .category-shortcut {
    flex: 0 0 74vw;
    scroll-snap-align: start;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .product-image-button {
    aspect-ratio: 1 / 1;
  }

  .product-title-button {
    font-size: 1.2rem;
  }

  .gift-showcase {
    box-shadow: 12px 12px 0 rgba(255, 141, 141, 0.75);
  }

  .coupon-panel {
    padding: 1.35rem 1rem;
  }

  .coupon-copy-button {
    min-height: 58px;
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
