:root {
  --green: #20a83a;
  --green-dark: #08762a;
  --blue: #0957b5;
  --blue-dark: #07346f;
  --ink: #102033;
  --muted: #5b6b7a;
  --soft: #eef8f2;
  --line: #dbe7ee;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 52, 111, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbff;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--blue-dark);
}

.brand-logo {
  width: auto;
  height: 132px;
  max-width: 132px;
  object-fit: contain;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: grid;
  place-items: center;
  color: white;
  font-size: 22px;
}

.brand span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover, .nav-links .active {
  color: var(--blue-dark);
  background: #edf6ff;
}

.basket {
  background: var(--blue) !important;
  color: white !important;
}

.menu-toggle { display: none; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  width: min(1240px, calc(100% - 20px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: start;
  min-height: auto;
  padding-bottom: 36px;
}

/* Modern account dashboard */
.account-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(38, 180, 84, .12), transparent 28rem),
    linear-gradient(180deg, #f4f9ff 0%, #eef7f2 100%);
}
.account-page .page-title { padding-bottom: 1.25rem; }
.account-page .page-title h1 { max-width: 760px; }
.account-panel {
  --account-art-position: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(11, 57, 111, .12);
  box-shadow: 0 18px 45px rgba(8, 49, 102, .09);
  background: rgba(255, 255, 255, .94);
}
.account-panel::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("assets/account-dashboard-art-v1.jpg");
  background-size: 940px auto;
  background-position: var(--account-art-position);
  opacity: .32;
  filter: saturate(1.05) contrast(1.04);
}
.account-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,.97) 18%, rgba(255,255,255,.82) 66%, rgba(255,255,255,.5));
}
.account-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(8, 49, 102, .14);
}
.account-panel h2,
.account-panel h3 { color: var(--blue-dark); }
.account-panel .tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(11, 57, 111, .1);
  backdrop-filter: blur(8px);
}
.account-panel .form,
.account-panel .dashboard-list {
  padding: .9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
}
.account-panel--profile { --account-art-position: left top; }
.account-panel--support { --account-art-position: 42% 90%; }
.account-panel--address { --account-art-position: right 12%; }
.account-panel--summary { --account-art-position: 58% 95%; }
.account-panel--orders { --account-art-position: right 72%; }
.account-panel--wishlist { --account-art-position: 86% 92%; }
.account-panel--subscriptions { --account-art-position: 62% 92%; }
.account-panel--professional { --account-art-position: 5% 85%; }
.account-panel--tools { --account-art-position: 43% 92%; }
.account-panel--future { --account-art-position: center 58%; margin-bottom: 3rem; }

@media (max-width: 700px) {
  .account-panel::before { background-size: 720px auto; opacity: .24; }
  .account-panel::after { background: rgba(255, 255, 255, .84); }
  .account-panel:hover { transform: none; }
}

.hero-copy {
  padding: 26px 0 36px 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #cde9d4;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
}

h1, h2, h3 { margin: 0; line-height: 1.04; }

h1 {
  font-size: clamp(42px, 7vw, 84px);
  letter-spacing: 0;
  color: var(--blue-dark);
  margin-top: 22px;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  max-width: 620px;
}

.hero-actions, .button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 28px rgba(32, 168, 58, .28);
  animation: primary-cta-float 5s ease-in-out infinite;
  will-change: translate;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  animation-play-state: paused;
}

@keyframes primary-cta-float {
  0%, 100% { translate: -5px 0; }
  50% { translate: 5px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    animation: none;
    translate: none;
    will-change: auto;
  }
}
.btn-secondary { background: var(--blue); color: white; box-shadow: 0 12px 28px rgba(9, 87, 181, .22); }
.btn-light { background: white; color: var(--blue-dark); border: 1px solid var(--line); }

.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.quick-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.quick-panel div {
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  padding: 14px;
  font-weight: 900;
  color: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(16, 32, 51, .12);
}

section {
  padding: 72px 0;
  scroll-margin-top: 96px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2, .page-title h1 {
  color: var(--blue-dark);
  font-size: clamp(32px, 4vw, 54px);
}

.section-head p, .page-title p { color: var(--muted); max-width: 680px; line-height: 1.6; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 52, 111, .08);
  padding: 22px;
  min-width: 0;
  overflow-wrap: break-word;
}

.card h3 { color: var(--blue-dark); margin-bottom: 9px; font-size: 21px; }
.card p, .card li { color: var(--muted); line-height: 1.55; }

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.step-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  width: 100%;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.step-content {
  min-width: 0;
  width: 100%;
}

.step-content h3,
.step-content p {
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.step-content p {
  margin-top: .5rem;
}

.checkout-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-top: 0;
}

.flow-card {
  display: grid;
  gap: 10px;
  text-align: center;
  align-content: start;
}

.flow-card strong {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: var(--green);
  color: white;
}

.flow-card span {
  color: var(--blue-dark);
  font-weight: 900;
}

.wash-booking-grid {
  align-items: start;
  padding-top: 18px;
}

.gift-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 24px;
  align-items: start;
}

.gift-card-options {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.gift-card-options legend {
  grid-column: 1 / -1;
  color: var(--blue-dark);
  font-weight: 900;
  margin-bottom: 2px;
}

.gift-card-options label {
  display: block;
  cursor: pointer;
}

.gift-card-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gift-card-options span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--blue-dark);
  font-weight: 900;
}

.gift-card-option-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  margin-bottom: 8px;
}

.gift-card-preview {
  width: min(100%, 520px);
  margin-inline: auto;
}

.gift-card-preview:empty {
  display: none;
}

.gift-card-preview-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gift-card-options input:checked + span {
  border-color: var(--green);
  background: var(--soft);
  color: var(--green-dark);
}

.gift-card-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(32, 168, 58, .28);
  border-radius: 8px;
  background: #f0fbf4;
  padding: 16px;
}

.gift-card-total strong {
  color: var(--blue-dark);
}

.gift-card-total span {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 950;
}

.gift-card-message {
  border-left: 5px solid var(--blue);
  background: #edf6ff;
  padding: 12px 14px;
  border-radius: 8px;
}

.gift-card-terms {
  position: sticky;
  top: 92px;
}

.gift-cards-page {
  overflow-x: clip;
  scroll-behavior: smooth;
}

.gift-cards-page section[id] {
  scroll-margin-top: 110px;
}

.gift-card-hero {
  position: relative;
  min-height: clamp(560px, 55vw, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  isolation: isolate;
}

.gift-card-hero-media,
.gift-card-hero-media img,
.gift-card-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gift-card-hero-media img {
  object-fit: cover;
  object-position: center;
  animation: gift-card-hero-drift 23s ease-in-out both;
}

.gift-card-hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 43, 79, .82) 0%, rgba(4, 43, 79, .55) 38%, rgba(4, 43, 79, .05) 70%);
  pointer-events: none;
}

.gift-card-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1180px);
  color: white;
}

.gift-card-hero-content > * {
  max-width: 620px;
}

.gift-card-hero-content .eyebrow,
.gift-card-hero-content h1,
.gift-card-hero-content p {
  color: white;
}

.gift-card-hero-content h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 12px 0 20px;
  animation: gift-card-heading-in .7s ease-out both;
}

.gift-card-hero-content p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

@keyframes gift-card-hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@keyframes gift-card-heading-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.gift-card-purchase {
  padding-bottom: 42px;
}

.gift-card-purchase .section-head {
  max-width: 720px;
}

.gift-card-purchase > .card {
  padding: clamp(20px, 3vw, 36px);
}

.gift-card-purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.gift-card-design-panel,
.gift-card-details-panel {
  min-width: 0;
}

.gift-card-details-panel {
  display: grid;
  gap: 18px;
}

.gift-card-details-panel h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(24px, 3vw, 32px);
}

.gift-card-preview {
  width: min(100%, 600px);
  min-height: 250px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 16px;
}

.gift-card-preview-image {
  max-height: 440px;
  border-radius: 16px;
  filter: drop-shadow(0 16px 24px rgba(10, 52, 84, .16));
  animation: gift-card-preview-in .25s ease-out both;
}

@keyframes gift-card-preview-in {
  from { opacity: .35; }
  to { opacity: 1; }
}

.gift-cards-page .gift-card-options {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.gift-cards-page .gift-card-options span {
  position: relative;
  min-height: 128px;
  align-content: start;
  padding: 8px;
  border: 2px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gift-cards-page .gift-card-option-image {
  aspect-ratio: 1.3 / 1;
  margin: 0 0 6px;
}

.gift-cards-page .gift-card-options input:checked + span {
  border-color: var(--blue);
  background: white;
  color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(19, 117, 188, .14);
}

.gift-cards-page .gift-card-options input:checked + span::after {
  content: "✓ Selected";
  position: absolute;
  top: 7px;
  right: 7px;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 10px;
  line-height: 1.2;
}

.gift-cards-page .gift-card-options input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.gift-cards-page .gift-card-options label:hover span {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.gift-card-details-panel input,
.gift-card-details-panel textarea {
  min-height: 48px;
}

.gift-card-details-panel input:focus,
.gift-card-details-panel textarea:focus {
  outline: 3px solid rgba(19, 117, 188, .2);
  border-color: var(--blue);
}

.gift-card-details-panel .notice {
  padding: 13px 15px;
  border-left-color: var(--green);
  background: #effaf3;
}

.gift-card-story,
.gift-card-trust,
.gift-card-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  margin: 38px 0;
  padding: clamp(28px, 5vw, 60px);
  border-radius: 22px;
}

.gift-card-story-blue,
.gift-card-trust {
  background: #f1f7fb;
}

.gift-card-story-reverse .gift-card-story-media {
  order: 2;
}

.gift-card-story h2,
.gift-card-trust h2,
.gift-card-final-cta h2,
.gift-card-lifestyle h2 {
  color: var(--blue-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.gift-card-story-media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(10, 52, 84, .14);
}

.gift-card-story-media img,
.gift-card-trust img,
.gift-card-final-cta img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gift-card-lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  overflow: hidden;
  margin: 38px 0;
  border-radius: 22px;
  background: var(--blue-dark);
}

.gift-card-lifestyle > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e8f7fa;
}

.gift-card-lifestyle-copy {
  max-width: 570px;
  padding: clamp(28px, 6vw, 76px);
}

.gift-card-lifestyle-copy h2,
.gift-card-lifestyle-copy p {
  color: white;
}

.gift-card-checks {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.gift-card-checks li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.gift-card-trust {
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
}

.gift-card-trust img {
  max-height: 520px;
}

.gift-card-accent {
  display: block;
  width: 64px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--blue);
}

.gift-card-terms-section {
  padding: 40px 0;
}

.gift-cards-page .gift-card-terms {
  position: static;
  padding: clamp(24px, 4vw, 46px);
}

.gift-cards-page .gift-card-terms .feature-list {
  line-height: 1.7;
}

.gift-card-final-cta {
  background: linear-gradient(135deg, #eef7fc, #effaf3);
}

.gift-card-final-cta img {
  max-height: 520px;
  border-radius: 18px;
}

.gift-cards-page a:focus-visible,
.gift-cards-page button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .gift-card-purchase-grid,
  .gift-card-story,
  .gift-card-trust,
  .gift-card-final-cta,
  .gift-card-lifestyle {
    grid-template-columns: 1fr;
  }

  .gift-card-story-reverse .gift-card-story-media {
    order: 0;
  }

  .gift-cards-page .gift-card-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gift-card-hero {
    min-height: 680px;
    align-items: end;
  }

  .gift-card-hero-media img {
    object-position: center top;
  }

  .gift-card-hero-shade {
    background: linear-gradient(0deg, rgba(4, 43, 79, .94) 0%, rgba(4, 43, 79, .7) 42%, rgba(4, 43, 79, 0) 70%);
  }

  .gift-card-hero-content {
    padding-bottom: 38px;
  }

  .gift-card-hero-content h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .gift-card-hero-content .button-row,
  .gift-card-hero-content .btn,
  .gift-card-details-panel > .btn,
  .gift-card-final-cta .btn {
    width: 100%;
  }

  .gift-cards-page .gift-card-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-card-preview {
    min-height: 190px;
  }

  .gift-card-story,
  .gift-card-trust,
  .gift-card-final-cta {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .gift-card-lifestyle {
    width: calc(100% + 22px);
    margin-left: -11px;
    border-radius: 0;
  }

  .gift-card-lifestyle-copy {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gift-card-hero-media img,
  .gift-card-hero-content h1,
  .gift-card-preview-image {
    animation: none;
  }

  .gift-cards-page * {
    scroll-behavior: auto;
  }
}

.wash-plan-card h2 {
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 12px;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.small-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.admin-booking-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcff;
}

.admin-booking-row div {
  display: grid;
  gap: 6px;
}

.admin-booking-row span {
  color: var(--muted);
  font-size: 14px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e9f8ed;
  color: var(--green-dark);
  margin-bottom: 0;
  font-size: 22px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-copy {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.feature-copy h3,
.feature-copy p {
  overflow-wrap: break-word;
  word-break: normal;
}

.page-title {
  padding: 42px 0 22px;
}

.page-title + section {
  padding-top: 28px;
}

.shop-shell {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  align-items: start;
}

.retail-feature {
  align-items: stretch;
  margin-bottom: 28px;
}

.retail-feature .hero-media img {
  height: 100%;
  min-height: 340px;
}

.shop-promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .8fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 92% 8%, rgba(89, 227, 105, .42), transparent 28%),
    linear-gradient(135deg, #07346f 0%, #0957b5 58%, #08762a 120%);
  box-shadow: 0 24px 58px rgba(7, 52, 111, .24);
}

.shop-promo::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 290px;
  height: 290px;
  right: -90px;
  bottom: -170px;
  border: 48px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.shop-promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.shop-promo-pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #63ed77;
  box-shadow: 0 0 0 0 rgba(99, 237, 119, .7);
  animation: shop-promo-pulse 2s infinite;
}

.shop-promo h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: white;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.02;
}

.shop-promo-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.shop-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.shop-promo-actions .btn-primary {
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.shop-promo-actions .btn-light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
  color: white;
}

.shop-promo-actions .btn:hover { transform: translateY(-2px); }

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

.shop-promo-stats div {
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(10px);
}

.shop-promo-stats strong,
.shop-promo-stats span { display: block; }

.shop-promo-stats strong {
  color: white;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.shop-promo-stats span {
  margin-top: 9px;
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
}

@keyframes shop-promo-pulse {
  70% { box-shadow: 0 0 0 12px rgba(99, 237, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(99, 237, 119, 0); }
}

@media (max-width: 850px) {
  .shop-promo { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .shop-promo { padding: 26px 20px; border-radius: 22px; }
  .shop-promo-stats { grid-template-columns: 1fr 1fr; }
  .shop-promo-stats div { min-height: 106px; padding: 16px; }
  .shop-promo-actions .btn { width: 100%; text-align: center; }
}

.shop-hero-media img {
  transform: scale(1.035);
  animation: shop-hero-drift 12s ease-in-out infinite alternate;
  will-change: transform;
}

.shop-hero-greeting {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 30px rgba(0, 38, 84, .2);
  color: var(--blue-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  backdrop-filter: blur(8px);
  animation: shop-greeting-arrive .55s ease-out both;
}

@keyframes shop-hero-drift {
  from { transform: scale(1.035) translate3d(-.6%, 0, 0); }
  to { transform: scale(1.075) translate3d(.6%, -.5%, 0); }
}

@keyframes shop-greeting-arrive {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .shop-hero-media img,
  .shop-hero-greeting {
    animation: none;
    transform: none;
  }
}

.universal-search-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  padding-top: 54px;
  border-color: rgba(9, 87, 181, .16);
  overflow: hidden;
}

.search-dog-runners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.search-dog-runner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 68px;
  height: 42px;
  filter: drop-shadow(0 4px 5px rgba(0, 38, 84, .2));
  offset-path: inset(7px round 20px);
  offset-rotate: 0deg;
  animation: search-dog-lap 15s linear infinite;
}

.search-dog-runner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-dog-runner-two {
  animation-delay: -5s;
  animation-duration: 17s;
}

.search-dog-runner-three {
  animation-delay: -10s;
  animation-duration: 19s;
}

@keyframes search-dog-lap {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .search-dog-runner {
    display: none;
    animation: none;
  }
}

.section-head-compact {
  padding: 0 0 14px;
}

.filters {
  position: sticky;
  top: 96px;
}

.filter-list {
  display: grid;
  gap: 8px;
  max-height: 520px;
  overflow: auto;
}

.chip {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 750;
}

.chip.is-active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card .tag {
  align-self: flex-start;
  max-width: 100%;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tag-muted {
  background: #f3f6f8;
  color: var(--muted);
}

.product-card h3 {
  display: -webkit-box;
  min-height: 3.15em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 20px;
  line-height: 1.18;
}

.product-card > p:not(.tag):not(.price) {
  display: -webkit-box;
  min-height: 3.1em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card .price {
  margin-top: 10px;
}

.product-card .btn {
  width: 100%;
}

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

.founding-card {
  border-color: rgba(32, 166, 69, .35);
  background: linear-gradient(135deg, #f7fff9, #eef7ff);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.check-row input {
  width: auto;
  margin-top: 4px;
}

.checkbox-dropdown {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.checkbox-dropdown legend {
  color: var(--blue-dark);
  font-weight: 850;
}

.checkbox-dropdown details {
  position: relative;
}

.checkbox-dropdown summary {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

.checkbox-dropdown summary::-webkit-details-marker {
  display: none;
}

.checkbox-dropdown summary::after {
  content: "";
  float: right;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: rotate(45deg);
  margin-top: 4px;
}

.checkbox-dropdown details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 9px;
}

.checkbox-dropdown-options {
  position: absolute;
  z-index: 20;
  width: 100%;
  max-height: 280px;
  overflow: auto;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(11, 45, 74, .14);
  padding: 10px;
}

.checkbox-dropdown-options .check-row {
  padding: 8px 6px;
  color: var(--blue-dark);
}

.checkbox-dropdown-options input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.directory-results {
  align-items: stretch;
}

.directory-card .chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 36px;
  margin: 12px 0;
}

.professional-profile-card .product-tags {
  margin: 16px 0;
}

.admin-professional-row {
  align-items: flex-start;
}

.combined-shop-section {
  padding-top: 18px;
}

.shop-product-groups {
  display: grid;
  gap: 28px;
}

.shop-product-section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.shop-product-section h3 {
  margin: 0;
  color: var(--blue-dark);
}

.supplier-product-group {
  margin-top: 28px;
}

.supplier-product-group h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.shop-product-section-direct {
  border-top-color: rgba(25, 135, 84, .34);
}

.shop-product-section-external {
  border-top-color: rgba(9, 87, 181, .22);
}

.product-card-direct {
  border-color: rgba(25, 135, 84, .26);
}

.product-card-external {
  border-color: rgba(9, 87, 181, .18);
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.supplier-status {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.supplier-status[hidden] {
  display: none;
}

.supplier-status span {
  border: 1px solid rgba(9, 87, 181, .16);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--muted);
  font-weight: 750;
  padding: 12px 14px;
}

.avasam-section {
  padding-top: 52px;
}

.avasam-card {
  border-color: rgba(9, 87, 181, .22);
}

.supplier-message {
  grid-column: 1 / -1;
  min-height: auto;
}

.avasam-filters {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 14px;
  border-color: rgba(9, 87, 181, .16);
}

.avasam-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.universal-no-results[hidden] {
  display: none;
}

.product-image {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #edf8f1, #eaf3ff);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 44px;
  font-weight: 950;
  letter-spacing: .08em;
  margin-bottom: 16px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: white;
}

.product-image img.product-photo-tall {
  padding: 4px;
}

.product-image-large {
  aspect-ratio: auto;
  height: min(520px, 118vw);
}

.price { color: var(--green-dark); font-weight: 950; font-size: 22px; }
.meta { color: var(--muted); font-size: 14px; }
.supplier { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 14px; display: grid; gap: 6px; }
.supplier span { overflow-wrap: anywhere; }

.supplier-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.supplier-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.supplier-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.supplier-score {
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 950;
}

.supplier-metrics {
  display: grid;
  gap: 10px;
}

.supplier-metrics div,
.mini-row {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.supplier-metrics strong,
.mini-row strong {
  color: var(--blue-dark);
}

.supplier-metrics span,
.mini-row span {
  color: var(--muted);
}

.account-list {
  margin: 14px 0 18px;
}

.account-product-row {
  grid-template-columns: 1fr;
}

.account-notice[hidden] {
  display: none;
}

.supplier-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.checklist input {
  width: 20px;
  min-height: 20px;
}

.commerce-bar {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.plans .card { display: flex; flex-direction: column; }
.plan-price { font-size: 38px; color: var(--blue-dark); font-weight: 950; }

.form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  background: white;
}

textarea { min-height: 140px; resize: vertical; }
label { font-weight: 850; color: var(--blue-dark); display: grid; gap: 7px; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.slot {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 48px;
  display: grid;
  place-items: center;
  font-weight: 850;
  background: white;
}

.notice {
  border-left: 5px solid var(--green);
  background: #f0fbf4;
  padding: 18px;
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 750;
}

.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(8, 52, 111, .06);
}

.faq summary {
  font-weight: 900;
  color: var(--blue-dark);
  cursor: pointer;
}

.dashboard-list {
  display: grid;
  gap: 12px;
}

.admin-source-card strong {
  display: block;
  color: var(--green);
  font-size: 26px;
  margin: 8px 0;
}

.admin-source-direct {
  border-color: rgba(25, 135, 84, .28);
}

.admin-source-external {
  border-color: rgba(9, 87, 181, .2);
}

.admin-product-group {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(25, 135, 84, .28);
  padding-top: 18px;
}

.admin-product-group + .admin-product-group {
  margin-top: 22px;
}

.admin-product-group h3 {
  margin: 0;
  color: var(--blue-dark);
}

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

.admin-product-group-external {
  border-top-color: rgba(9, 87, 181, .2);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 22px;
  background: white;
  box-shadow: 0 12px 32px rgba(8, 52, 111, .08);
}

.admin-toolbar h2 {
  color: var(--blue-dark);
  font-size: clamp(24px, 3vw, 36px);
  margin-top: 10px;
}

.admin-public-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, #f1fbf5, #edf6ff);
  box-shadow: 0 12px 32px rgba(8, 52, 111, .08);
}

.admin-public-panel h2 {
  color: var(--blue-dark);
  margin-top: 10px;
}

.admin-public-links,
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-row-actions .btn {
  min-height: 40px;
  padding: 0 14px;
}

[data-edit],
.admin-save,
.admin-edit-panel {
  display: none;
}

.admin-editing [data-view] {
  display: none;
}

.admin-editing [data-edit],
.admin-editing .admin-save {
  display: block;
}

.admin-editing .admin-edit-panel {
  display: grid;
}

.row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.cart-row {
  grid-template-columns: minmax(0, 1.5fr) .45fr .55fr .75fr auto;
}

.cart-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.cart-product strong {
  display: block;
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

.cart-product span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.cart-product-image {
  width: 82px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .8fr);
  gap: 24px;
  align-items: start;
  padding: 0 0 56px;
}

.checkout-section h2,
.checkout-summary h2 {
  color: var(--blue-dark);
  margin-top: 10px;
}

.checkout-summary {
  position: sticky;
  top: 92px;
}

.checkout-form {
  margin-top: 18px;
}

.order-summary-copy {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.order-summary-copy summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

.order-summary-copy pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--muted);
  font: inherit;
  margin-bottom: 0;
}

.qr-sign-page {
  background: white;
}

.qr-sign {
  width: min(920px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  align-content: center;
  gap: 24px;
}

.qr-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 3px solid var(--green);
  padding-bottom: 22px;
}

.qr-brand img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.qr-brand h1 {
  margin-top: 10px;
  font-size: clamp(42px, 7vw, 76px);
}

.qr-payment-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 28px;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.qr-code {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border: 10px solid white;
  box-shadow: 0 10px 32px rgba(8, 52, 111, .12);
}

.qr-copy h2 {
  color: var(--blue-dark);
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
}

.qr-copy p {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--muted);
  line-height: 1.3;
}

.qr-url {
  font-size: 18px !important;
  color: var(--blue-dark) !important;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f7fbff;
}

.qr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.qr-steps div {
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
  display: grid;
  gap: 8px;
}

.qr-steps strong {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  font-size: 24px;
}

.qr-steps span {
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 20px;
}

.qr-note {
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.admin-product-row {
  grid-template-columns: 1.4fr .7fr .5fr .7fr auto auto auto;
}

.admin-page-row {
  grid-template-columns: 1fr .7fr auto auto .9fr .9fr .9fr minmax(220px, auto);
}

.admin-token-form {
  min-width: min(360px, 100%);
}

.admin-filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.admin-gift-card-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcff;
  padding: 16px;
}

.admin-gift-card-row h3 {
  margin: 0 0 8px;
}

.admin-gift-card-row .mini-row {
  grid-template-columns: .7fr 1fr;
}

.admin-gift-card-actions {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.admin-gift-card-designs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.admin-gift-card-design {
  display: grid;
  gap: 10px;
  align-content: start;
}

.admin-gift-card-design-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.admin-row input,
.admin-row select {
  min-height: 42px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: #eaf3ff;
  color: var(--blue-dark);
  font-weight: 850;
  font-size: 13px;
}

.map-placeholder, .checkout-placeholder {
  min-height: 320px;
  border: 1px dashed #9eb6c8;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3faf5, #edf5ff);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 24px;
}

.site-footer {
  margin-top: 60px;
  padding: 38px 0;
  background: var(--blue-dark);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.site-footer a, .site-footer p { color: rgba(255, 255, 255, .78); }

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (min-width: 900px) {
  .steps-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1200px) {
  .steps-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .step-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: white;
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 900;
  }

  .nav { flex-wrap: wrap; padding: 12px 0; }

  .nav-links {
    display: none;
    width: 100%;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .nav-links.open { display: flex; }

  .hero, .shop-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding: 28px 4px 8px; }
  .filters { position: static; }
  .gift-card-layout { grid-template-columns: 1fr; }
  .gift-card-terms { position: static; }
  .supplier-board { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-flow { grid-template-columns: repeat(3, 1fr); }
  .checkout-summary { position: static; }
  .qr-payment-panel { grid-template-columns: 1fr; }
  .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .admin-public-panel { grid-template-columns: 1fr; }
  .admin-filter-bar, .admin-gift-card-row { grid-template-columns: 1fr; }
  .admin-gift-card-designs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-public-links, .admin-row-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container, .nav { width: min(100% - 22px, 1180px); }
  .brand-logo { width: auto; height: 104px; max-width: 104px; object-fit: contain; }
  section { padding: 46px 0; }
  .grid-5, .grid-4, .grid-3, .grid-2, .slot-grid { grid-template-columns: 1fr; }
  .gift-card-options { grid-template-columns: repeat(2, 1fr); }
  .admin-gift-card-designs { grid-template-columns: 1fr; }
  .checkout-flow { grid-template-columns: 1fr; }
  .admin-booking-row { grid-template-columns: 1fr; }
  .hero { width: min(100% - 12px, 1240px); }
  .quick-panel { position: static; grid-template-columns: 1fr; padding: 10px; }
  .section-head { display: block; }
  .admin-toolbar { display: block; }
  .universal-search-card, .avasam-filters { grid-template-columns: 1fr; }
  .qr-brand, .qr-steps { grid-template-columns: 1fr; }
  .qr-brand { display: grid; text-align: center; }
  .qr-brand img { margin: 0 auto; }
  .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}

/* Giveaway feature */
.giveaway-page { padding-bottom: 3rem; }
.giveaway-heading { text-align: center; }
.giveaway-heading > p { max-width: 720px; margin-left: auto; margin-right: auto; }
.giveaway-price { display: inline-flex; align-items: center; gap: .75rem; margin-top: 1rem; padding: .75rem 1.25rem; border-radius: 999px; background: var(--blue-dark); color: #fff; }
.giveaway-price strong { font-size: 1.75rem; }
.giveaway-grid { align-items: start; margin-bottom: 2rem; }
.giveaway-steps { display: grid; gap: 1rem; padding-left: 1.4rem; }
.giveaway-terms { margin: .5rem 0 1rem; }
.giveaway-terms summary { cursor: pointer; font-weight: 700; }
.admin-giveaway-table-wrap { overflow-x: auto; margin-top: 1rem; }
.admin-giveaway-table { width: 100%; border-collapse: collapse; min-width: 860px; }
.admin-giveaway-table th, .admin-giveaway-table td { padding: .8rem; border-bottom: 1px solid rgba(20, 43, 53, .14); text-align: left; vertical-align: top; }
.admin-giveaway-table th { color: var(--blue-dark); font-size: .88rem; }
.admin-giveaway-pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.25rem; flex-wrap: wrap; }

@media (max-width: 760px) {
  .giveaway-grid { grid-template-columns: 1fr; }
  .giveaway-heading h1 { font-size: clamp(2rem, 10vw, 3rem); }
}

/* Homepage revamp */
.skip-link{position:fixed;z-index:100;top:10px;left:10px;padding:10px 16px;background:var(--blue-dark);color:#fff;border-radius:8px;transform:translateY(-150%)}.skip-link:focus{transform:translateY(0)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.home-page{background:#fff}.home-page .site-header{border-bottom-color:rgba(7,52,111,.08)}.home-page .brand-logo{height:88px;max-width:110px}.home-page .nav{min-height:84px;width:min(1320px,calc(100% - 40px))}.home-page .nav-links a{font-size:13px}.home-page section{padding:96px 0}
.home-hero{position:relative;overflow:hidden;padding:74px 0 62px!important;background:radial-gradient(circle at 75% 0%,rgba(32,168,58,.14),transparent 30rem),linear-gradient(120deg,#f5fbff 0%,#fff 46%,#f3fbf5 100%)}.home-hero-inner{position:relative;width:min(1320px,calc(100% - 40px));margin:0 auto;display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(38px,6vw,90px);align-items:center}
.home-hero-copy h1{max-width:720px;margin:24px 0;font-size:clamp(48px,5.5vw,82px);line-height:.98;letter-spacing:-.045em}.home-hero-copy h1 em{color:var(--green);font-style:normal}.home-hero-copy>p{max-width:640px;margin:0;color:#4a6073;font-size:clamp(17px,1.5vw,21px);line-height:1.65}.home-kicker{display:inline-flex;align-items:center;gap:10px;color:var(--blue);font-size:12px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}.home-kicker span{width:32px;height:2px;background:var(--green)}
.home-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}.home-page .btn{min-height:54px;padding:0 25px}.btn-outline{color:var(--blue-dark);border:2px solid var(--blue-dark);background:transparent}.home-page .btn-primary{animation:none}.hero-proof{display:flex;flex-wrap:wrap;gap:18px;margin-top:30px;color:#41576a;font-size:13px;font-weight:700}.hero-proof b{color:var(--green);margin-right:5px}
.home-hero-visual{position:relative;overflow:hidden;aspect-ratio:3/2;border-radius:28px;box-shadow:0 30px 70px rgba(7,52,111,.18)}.home-hero-visual img{width:100%;height:100%;object-fit:cover}.launch-badge{position:absolute;z-index:2;top:22px;right:22px;display:flex;flex-direction:column;padding:14px 18px;border-radius:14px;color:#fff;background:rgba(7,52,111,.9);backdrop-filter:blur(10px);box-shadow:0 10px 30px rgba(0,0,0,.16)}.launch-badge strong{font-size:13px;text-transform:uppercase;letter-spacing:.06em}.launch-badge span{margin-top:3px;color:#bfe9c8;font-size:12px}
.home-trust{padding:0!important;background:var(--blue-dark);color:#fff}.trust-grid{display:grid;grid-template-columns:repeat(3,1fr)}.trust-grid>div{display:flex;align-items:center;gap:16px;padding:30px clamp(10px,3vw,40px);border-right:1px solid rgba(255,255,255,.14)}.trust-grid>div:last-child{border-right:0}.trust-icon{display:grid;place-items:center;flex:0 0 42px;height:42px;border-radius:50%;color:#fff;background:var(--green);font-size:12px;font-weight:900}.trust-grid p{margin:0;color:#c9d8e9;font-size:13px;line-height:1.4}.trust-grid strong{display:block;margin-bottom:3px;color:#fff;font-size:15px}
.journey-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(50px,8vw,120px);align-items:center}.journey-marker{position:relative;min-height:510px;padding:56px;border-radius:28px;color:#fff;background:radial-gradient(circle at 80% 85%,rgba(255,255,255,.13),transparent 15rem),linear-gradient(145deg,var(--blue),var(--blue-dark));overflow:hidden}.journey-marker>span{font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase;color:#b9e9c4}.journey-marker>strong{display:block;max-width:340px;margin-top:25px;font-size:clamp(36px,4vw,58px);line-height:1;letter-spacing:-.035em}.paw-mark{position:absolute;left:56px;bottom:46px;color:#6dc77e;font-size:54px;line-height:.45;transform:rotate(-12deg)}.paw-mark i{font-style:normal;font-size:25px;letter-spacing:5px}
.journey-copy h2,.home-section-head h2,.community-copy h2{margin:18px 0;color:var(--blue-dark);font-size:clamp(36px,4.5vw,60px);letter-spacing:-.035em;line-height:1.02}.journey-copy>p{color:#516577;line-height:1.7}.journey-copy .journey-lead{color:var(--ink);font-size:20px;font-weight:700;line-height:1.5}.journey-status{display:flex;gap:14px;align-items:center;margin:28px 0;padding:17px 19px;border-left:3px solid var(--green);background:var(--soft)}.status-dot{flex:0 0 12px;height:12px;border-radius:50%;background:var(--green);box-shadow:0 0 0 5px rgba(32,168,58,.15)}.journey-status strong,.journey-status small{display:block}.journey-status strong{color:var(--blue-dark)}.journey-status small{margin-top:3px;color:var(--muted)}.text-link,.product-link{display:inline-flex;gap:8px;color:var(--blue);font-weight:900}
.featured-section{background:#f3f7fb}.home-section-head{display:flex;align-items:end;justify-content:space-between;gap:28px;margin-bottom:42px}.home-section-head h2{margin-bottom:10px}.home-section-head p{margin:0;color:var(--muted)}.featured-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.home-product-card{overflow:hidden;border:1px solid #e1eaf1;border-radius:20px;background:#fff;transition:transform .2s ease,box-shadow .2s ease}.home-product-card:hover{transform:translateY(-5px);box-shadow:0 18px 45px rgba(7,52,111,.1)}.home-product-image{display:block;aspect-ratio:4/3;padding:26px;background:#fff;overflow:hidden}.home-product-image img{width:100%;height:100%;object-fit:contain}.home-product-card>div{padding:25px;border-top:1px solid #edf1f5}.home-product-card>div>span{color:var(--green-dark);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.home-product-card h3{margin:10px 0;color:var(--blue-dark);font-size:22px}.home-product-card p{min-height:48px;color:var(--muted);font-size:14px;line-height:1.55}.product-link{margin-top:8px;font-size:14px}
.videos-section{color:#fff;background:#09294e}.videos-section .home-section-head h2{color:#fff}.videos-section .home-section-head p{color:#b7c8d8}.eyebrow-light{border-color:rgba(255,255,255,.2);color:#bcebc6;background:rgba(255,255,255,.08)}.social-mini{display:flex;gap:10px}.social-mini a{padding:10px 16px;border:1px solid rgba(255,255,255,.2);border-radius:999px;font-size:13px;font-weight:800}.video-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}.video-card{position:relative;display:grid;place-items:center;min-height:370px;overflow:hidden;padding:30px;border-radius:22px;background:linear-gradient(145deg,#124b89,#0a3060);box-shadow:inset 0 0 0 1px rgba(255,255,255,.1)}.video-instagram{background:linear-gradient(145deg,#7645a7,#cf347b 55%,#f39a3e)}.video-format{position:absolute;z-index:2;top:22px;left:22px;padding:7px 11px;border-radius:999px;background:rgba(0,0,0,.28);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}.play-button{display:grid;place-items:center;width:78px;height:78px;padding-left:5px;border-radius:50%;color:var(--blue-dark);background:#fff;font-size:24px;box-shadow:0 15px 30px rgba(0,0,0,.2)}.reel-phone{display:grid;place-items:center;width:138px;height:230px;border:7px solid #fff;border-radius:25px;text-align:center;font-weight:900;box-shadow:0 16px 35px rgba(0,0,0,.2)}.reel-phone small{font-size:10px}.video-card>div:last-child{position:absolute;left:28px;right:28px;bottom:24px;display:flex;justify-content:space-between;gap:20px}.video-card>div:last-child span{color:rgba(255,255,255,.8);font-size:13px}
.community-section{padding:0 0 96px!important}.community-panel{display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:center;padding:clamp(42px,6vw,78px);border-radius:28px;color:#fff;background:linear-gradient(120deg,var(--green-dark),#16953a);box-shadow:0 24px 60px rgba(8,118,42,.2)}.community-copy h2{max-width:720px;color:#fff;font-size:clamp(32px,3.7vw,50px)}.community-copy p{margin-bottom:0;color:#d8f4df}.newsletter-form{display:grid;grid-template-columns:1fr auto;gap:10px}.newsletter-form input{min-width:0;height:56px;padding:0 18px;border:0;border-radius:999px;font:inherit;outline:none}.newsletter-form input:focus{box-shadow:0 0 0 4px rgba(255,255,255,.28)}.newsletter-form .btn{color:#fff;background:var(--blue-dark);white-space:nowrap}.newsletter-note{grid-column:1/-1;margin:5px 10px 0;color:#d8f4df;font-size:12px}.newsletter-note span{display:block;margin-top:6px;color:#fff;font-weight:800}
.home-footer{padding-top:66px;background:#061d39}.home-footer .footer-grid{grid-template-columns:1.5fr repeat(3,1fr);align-items:start}.footer-logo{width:90px;height:auto;margin-bottom:12px}.footer-links{display:grid;gap:11px}.footer-links strong{margin-bottom:5px;color:#fff}.footer-links a{color:#aebfd0;font-size:14px}.footer-bottom{display:flex;justify-content:space-between;gap:20px;margin-top:48px;padding:22px 0;border-top:1px solid rgba(255,255,255,.1);color:#7f96ad;font-size:12px}
@media(max-width:1050px){.home-page .nav{width:min(100% - 28px,1320px)}.home-hero-inner{grid-template-columns:1fr}.journey-grid{gap:45px}.community-panel{grid-template-columns:1fr;gap:32px}.home-footer .footer-grid{grid-template-columns:1.4fr repeat(2,1fr)}}
@media(max-width:760px){.home-page section{padding:70px 0}.home-hero{padding:50px 0 38px!important}.home-hero-inner{width:min(100% - 28px,1320px);gap:38px}.home-hero-copy h1{font-size:clamp(43px,13vw,64px)}.home-hero-visual{border-radius:20px;aspect-ratio:4/3}.launch-badge{top:12px;right:12px}.trust-grid{grid-template-columns:1fr;padding:12px 0}.trust-grid>div{padding:17px 8px;border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}.journey-grid{grid-template-columns:1fr}.journey-marker{min-height:380px;padding:38px}.paw-mark{left:38px;bottom:35px}.home-section-head{align-items:start;flex-direction:column;margin-bottom:30px}.featured-grid,.video-grid{grid-template-columns:1fr}.home-product-card p{min-height:auto}.community-section{padding-bottom:70px!important}.community-panel{width:calc(100% - 28px);padding:40px 24px;border-radius:22px}.newsletter-form{grid-template-columns:1fr}.newsletter-note{grid-column:auto}.home-footer .footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.home-page .nav{min-height:74px}.home-page .brand-logo{height:70px}.home-actions{display:grid}.hero-proof{display:grid;gap:10px}.home-hero-visual{aspect-ratio:1}.home-hero-visual img{object-position:56% center}.journey-marker{min-height:330px}.journey-marker>strong{font-size:38px}.video-card>div:last-child{align-items:start;flex-direction:column;gap:6px}.social-mini{flex-wrap:wrap}.home-footer .footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column}}

.admin-homepage-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 32px;
  padding: 30px;
  border: 1px solid rgba(9, 87, 181, .14);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f1f8ff);
  box-shadow: 0 16px 42px rgba(7, 52, 111, .09);
}
.admin-homepage-copy h2 {
  margin: 14px 0 10px;
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 48px);
}
.admin-homepage-copy > p { color: var(--muted); line-height: 1.6; }
.admin-homepage-status {
  display: flex;
  gap: 13px;
  align-items: center;
  margin: 22px 0;
  padding: 16px;
  border-radius: 12px;
  background: var(--soft);
}
.admin-homepage-status > span {
  flex: 0 0 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 168, 58, .14);
}
.admin-homepage-status strong,
.admin-homepage-status small { display: block; }
.admin-homepage-status strong { color: var(--green-dark); }
.admin-homepage-status small { margin-top: 3px; color: var(--muted); line-height: 1.4; }
.admin-homepage-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}
.admin-homepage-preview {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--blue-dark);
  box-shadow: 0 18px 38px rgba(7, 52, 111, .16);
}
.admin-homepage-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-homepage-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 58%, rgba(4, 25, 51, .9));
}
.admin-homepage-preview > span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-weight: 900;
}
.admin-homepage-preview b { font-size: 20px; }
.video-card {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  padding: 20px;
}
.video-card::after { z-index: 0; pointer-events: none; }
.social-embed-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(4, 25, 51, .48);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}
.youtube-embed-frame { aspect-ratio: 16 / 9; margin-top: 42px; }
.instagram-embed-frame {
  width: min(100%, 470px);
  height: clamp(500px, 62vw, 640px);
  margin: 42px auto 0;
  background: #fff;
}
.social-embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}
.embed-loading {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 30px;
  color: #fff;
  text-align: center;
}
.embed-loading span { font-size: 36px; }
.embed-loading strong { font-size: 14px; }
.youtube-controls {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin: 12px 0 0;
}
.youtube-controls button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 25, 51, .72);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.youtube-controls button:hover,
.youtube-controls button:focus-visible { background: #fff; color: var(--blue-dark); }
.video-card .video-card-footer {
  position: relative;
  z-index: 2;
  inset: auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding: 22px 8px 4px;
}
.video-card-footer a { color: rgba(255, 255, 255, .85); font-size: 13px; font-weight: 800; }
.video-card-footer a:hover,
.video-card-footer a:focus-visible { color: #fff; text-decoration: underline; }
@media (max-width: 760px) {
  .instagram-embed-frame { height: min(640px, 130vw); }
}
@media (max-width: 480px) {
  .video-card { padding: 14px; }
  .youtube-embed-frame,
  .instagram-embed-frame { margin-top: 45px; }
  .video-card .video-card-footer { flex-direction: column; gap: 7px; }
}
@media (max-width: 760px) {
  .admin-homepage-panel { grid-template-columns: 1fr; padding: 22px; }
  .admin-homepage-preview { min-height: 280px; }
}
@media (max-width: 480px) {
  .admin-homepage-checklist { grid-template-columns: 1fr; }
}

@media print {
  .qr-sign {
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  .qr-payment-panel,
  .qr-steps div {
    box-shadow: none;
  }
}

/* Top Dog Competition */
.competition-hero{overflow:hidden;background:linear-gradient(125deg,#052e52 0 56%,#087c67 56%);color:#fff;padding:clamp(64px,9vw,118px) 0;position:relative}.competition-hero:after{content:"★";position:absolute;right:7%;top:-80px;font-size:380px;color:rgba(255,255,255,.045)}.competition-hero-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:50px;align-items:center;position:relative;z-index:1}.competition-kicker{display:inline-block;text-transform:uppercase;letter-spacing:.16em;font-weight:900;color:#76e2c0;margin-bottom:14px}.competition-hero h1{color:#fff;font-size:clamp(48px,7vw,88px);line-height:.94;margin:0 0 22px}.competition-hero h1 em{color:#76e2c0;font-style:normal}.competition-hero p{font-size:clamp(18px,2vw,23px);max-width:680px;color:rgba(255,255,255,.85)}.competition-prize{aspect-ratio:1;display:flex;flex-direction:column;align-items:center;justify-content:center;border-radius:50%;background:#fff;color:#052e52;box-shadow:0 25px 80px rgba(0,0,0,.3);transform:rotate(4deg);text-align:center}.competition-prize span{text-transform:uppercase;letter-spacing:.12em;font-weight:900}.competition-prize strong{font-size:clamp(65px,9vw,110px);line-height:1;color:#087c67}.competition-prize small{font-weight:800}.competition-live{display:grid;grid-template-columns:repeat(5,1fr);margin-top:-36px;position:relative;z-index:2;background:#fff;border-radius:22px;box-shadow:0 18px 50px rgba(5,46,82,.14);overflow:hidden}.competition-live article{padding:24px;border-right:1px solid #dbe9e7}.competition-live article:last-child{border:0}.competition-live span{display:block;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;color:#577}.competition-live strong{display:block;font-size:clamp(20px,2.5vw,32px);color:#052e52;margin-top:6px}.competition-status.is-open{color:#087c67}.competition-entry-section{display:grid;grid-template-columns:.75fr 1.25fr;gap:55px;align-items:start;padding-top:90px;padding-bottom:80px}.competition-section-copy{position:sticky;top:30px}.competition-section-copy h2{font-size:clamp(34px,4vw,56px)}.competition-checks{padding:0;list-style:none}.competition-checks li{padding:11px 0;font-weight:800}.competition-checks li:before{content:"✓";display:inline-grid;place-items:center;width:25px;height:25px;background:#dff8ef;color:#087c67;border-radius:50%;margin-right:10px}.competition-form{padding:clamp(22px,4vw,42px)}.competition-upload{border:2px dashed #a7cbc4;border-radius:16px;padding:20px;margin:12px 0}.competition-upload legend{font-weight:900}.competition-upload small{font-weight:500}.competition-photo-preview{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}.competition-photo-preview img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:12px}.competition-honeypot{position:absolute!important;left:-10000px!important}.competition-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:80px}.competition-dog-card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 8px 28px rgba(5,46,82,.1);transition:.2s}.competition-dog-card:hover{transform:translateY(-5px)}.competition-dog-card a{color:inherit;text-decoration:none}.competition-dog-photo{aspect-ratio:1;background:#dff8ef;display:grid;place-items:center;font-size:60px}.competition-dog-photo img{width:100%;height:100%;object-fit:cover}.competition-dog-card a>div:last-child{padding:18px}.competition-dog-card span{font-size:11px;text-transform:uppercase;letter-spacing:.08em;font-weight:900;color:#087c67}.competition-dog-card h3{font-size:25px;margin:4px 0}.competition-dog-card p{margin:0}.competition-empty{grid-column:1/-1;text-align:center;padding:55px;background:#edf8f5;border-radius:18px}.competition-empty>span{font-size:52px}.competition-leaderboard{padding:12px;margin-bottom:80px}.competition-leaderboard>a{display:grid;grid-template-columns:42px 56px 1fr 1fr auto;align-items:center;gap:15px;padding:11px 15px;border-bottom:1px solid #dbe9e7;color:#052e52;text-decoration:none}.competition-leaderboard>a:last-child{border:0}.competition-leaderboard b{font-size:25px;color:#087c67}.competition-leaderboard img,.competition-leaderboard>a>span{width:52px;height:52px;border-radius:50%;object-fit:cover;display:grid;place-items:center;background:#dff8ef}.competition-leaderboard em{font-style:normal;font-weight:900;color:#087c67}.competition-information{padding-bottom:80px}.competition-information details{border-top:1px solid #dbe9e7;padding:14px 0}.competition-information summary{font-weight:900;cursor:pointer}.competition-back{display:inline-block;margin:35px 0;color:#087c67;font-weight:900}.dog-profile{display:grid;grid-template-columns:1.2fr .8fr;gap:50px;padding-bottom:80px}.dog-profile-gallery{display:grid;grid-template-columns:1fr 1fr;gap:12px}.dog-profile-gallery img{width:100%;height:100%;min-height:220px;object-fit:cover;border-radius:20px}.dog-profile-gallery img:first-child{grid-column:1/-1;aspect-ratio:16/10}.dog-profile-copy{padding:30px 0}.dog-profile-copy h1{font-size:clamp(50px,7vw,85px);margin:4px 0}.dog-profile-breed{font-size:24px;color:#087c67;font-weight:900}.dog-profile dl div{display:flex;justify-content:space-between;border-bottom:1px solid #dbe9e7;padding:13px 0}.dog-profile dt{font-weight:800}.dog-profile dd{margin:0}.competition-share{display:flex;flex-wrap:wrap;gap:8px}.competition-share a{padding:10px 15px;border-radius:99px;background:#052e52;color:#fff;font-weight:800;text-decoration:none}.competition-thanks{max-width:760px;margin:90px auto;padding:70px;text-align:center}.competition-thanks>span{font-size:80px}.competition-admin-tabs{display:flex;gap:5px;overflow:auto;margin:30px 0}.competition-admin-tabs button{border:0;border-radius:99px;padding:12px 18px;background:#e6f1ef;font:inherit;font-weight:900;white-space:nowrap;cursor:pointer}.competition-admin-tabs button.active{background:#087c67;color:#fff}.competition-admin-stats{display:grid;grid-template-columns:repeat(5,1fr);gap:15px}.competition-admin-stats article span{font-weight:800;color:#577}.competition-admin-stats article strong{display:block;font-size:32px;color:#052e52;margin-top:8px}
@media(max-width:900px){.competition-live{grid-template-columns:repeat(3,1fr)}.competition-live article{border-bottom:1px solid #dbe9e7}.competition-entry-section{grid-template-columns:1fr}.competition-section-copy{position:static}.competition-gallery{grid-template-columns:repeat(2,1fr)}.competition-admin-stats{grid-template-columns:repeat(2,1fr)}}@media(max-width:700px){.competition-hero{background:linear-gradient(160deg,#052e52 0 67%,#087c67 67%)}.competition-hero-grid{grid-template-columns:1fr}.competition-prize{width:230px;justify-self:center}.competition-live{grid-template-columns:1fr 1fr;margin:0;border-radius:0}.competition-live article:last-child{grid-column:1/-1}.competition-entry-section{padding-top:55px}.competition-gallery{grid-template-columns:1fr 1fr;gap:12px}.competition-leaderboard>a{grid-template-columns:35px 46px 1fr auto}.competition-leaderboard small{display:none}.dog-profile{grid-template-columns:1fr}.competition-thanks{margin:35px auto;padding:35px 22px}}@media(max-width:430px){.competition-gallery{grid-template-columns:1fr}.competition-live article{padding:16px}.competition-photo-preview{grid-template-columns:1fr 1fr}}
.competition-turnstile{display:grid;gap:7px;justify-items:start;margin:18px 0}.competition-turnstile small{color:#577;font-weight:700}
.competition-sharing{margin-top:28px}.competition-sharing>p{max-width:620px}.competition-share-button{min-height:46px;padding:10px 17px;border:0;border-radius:99px;background:#052e52;color:#fff;font:inherit;font-weight:800;cursor:pointer}.competition-share-button:hover,.competition-share-button:focus-visible{background:#087c67;outline:3px solid rgba(8,124,103,.25);outline-offset:2px}.competition-instagram-tools{margin-top:14px;padding:18px;border-radius:16px;background:#edf8f5}.competition-instagram-tools .competition-share-button{margin:4px;background:#087c67}.competition-share-status{min-height:1.5em;font-weight:800;color:#087c67}.competition-thanks .competition-share{justify-content:center}.competition-thanks .competition-sharing>p{margin-left:auto;margin-right:auto}
.admin-entry-photos{display:flex;flex-wrap:wrap;gap:8px;min-width:130px}.admin-photo-thumb{width:62px;height:62px;padding:0;border:2px solid transparent;border-radius:10px;overflow:hidden;background:#e6f1ef;cursor:pointer}.admin-photo-thumb:hover,.admin-photo-thumb:focus-visible{border-color:#087c67}.admin-photo-thumb img{width:100%;height:100%;object-fit:cover}.admin-photo-missing{display:inline-flex;align-items:center;max-width:145px;min-height:48px;padding:8px;border-radius:9px;background:#fff0ed;color:#8b3427;font-size:12px;font-weight:800}.admin-photo-dialog{width:min(900px,calc(100% - 30px));padding:20px;border:0;border-radius:20px;background:#fff;box-shadow:0 25px 90px rgba(5,46,82,.35)}.admin-photo-dialog::backdrop{background:rgba(5,25,45,.78)}.admin-photo-dialog-head{display:flex;align-items:start;justify-content:space-between;gap:20px}.admin-photo-dialog-head h2{margin:3px 0 12px}.admin-photo-dialog-head>button{width:42px;height:42px;border:0;border-radius:50%;background:#e6f1ef;color:#052e52;font-size:28px;cursor:pointer}.admin-photo-stage{display:grid;grid-template-columns:48px minmax(0,1fr) 48px;gap:12px;align-items:center;min-height:420px;background:#071d32;border-radius:16px;padding:14px}.admin-photo-stage img{display:block;max-width:100%;max-height:70vh;margin:auto;object-fit:contain}.admin-photo-stage button{width:44px;height:56px;border:0;border-radius:12px;background:rgba(255,255,255,.9);color:#052e52;font-size:36px;cursor:pointer}.admin-photo-dialog>[data-admin-photo-position]{text-align:center;margin-bottom:0}@media(max-width:600px){.admin-photo-stage{grid-template-columns:36px minmax(0,1fr) 36px;min-height:280px;padding:8px}.admin-photo-stage button{width:34px;height:48px}.admin-photo-dialog{padding:12px}}

/* Shared resilience, accessibility and narrow-screen safeguards */
html { overflow-x: clip; scroll-behavior: smooth; }
body, main, section, article, .container, .grid, .card { min-width: 0; }
img, svg, video, canvas, iframe { max-width: 100%; }
img { height: auto; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}
button, input, select, textarea { max-width: 100%; }
.btn, .menu-toggle, .nav-links a, button, summary { touch-action: manipulation; }
.admin-giveaway-table-wrap,
[data-admin-professional-applications],
[data-admin-professional-members],
[data-admin-professional-enquiries],
[data-admin-gift-card-results] {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-gutter: stable;
}
.admin-giveaway-table th,
.admin-giveaway-table td { overflow-wrap: anywhere; }
main > section:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}
@media (max-width: 980px) {
  .menu-toggle,
  .nav-links a,
  .competition-admin-tabs button,
  .admin-row-actions button,
  .admin-row-actions .btn {
    min-height: 44px;
  }
  .nav-links {
    max-height: min(72vh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (max-width: 620px) {
  .container, .nav { width: min(100% - 24px, 1180px); }
  section { padding-block: 44px; }
  .page-title { padding-block: 46px 30px; }
  .card, .competition-form, .admin-homepage-panel { padding: 20px; }
  .button-row,
  .section-head,
  .admin-row-actions,
  .gift-card-admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .button-row > *,
  .admin-row-actions > *,
  .gift-card-admin-toolbar > * { width: 100%; }
  .competition-admin-tabs {
    margin-inline: -12px;
    padding: 4px 12px 10px;
    scroll-snap-type: x proximity;
  }
  .competition-admin-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .competition-admin-stats { grid-template-columns: 1fr; }
  .admin-photo-dialog { width: calc(100% - 16px); }
  .admin-giveaway-table { min-width: 720px; }
  input, select, textarea { font-size: 16px; }
}
@media (max-width: 360px) {
  .container, .nav { width: min(100% - 18px, 1180px); }
  h1 { overflow-wrap: anywhere; }
  .competition-prize { width: min(210px, 76vw); }
  .gift-card-hero-content,
  .gift-card-details-panel,
  .competition-form { padding-inline: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.gift-card-options input {
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
}

/* Legal pages */
.legal-page { padding-bottom: clamp(56px, 8vw, 96px); }
.legal-updated { font-size: .92rem; font-weight: 700; }
.legal-layout { display: grid; grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr); gap: clamp(22px, 4vw, 48px); align-items: start; }
.legal-contents { position: sticky; top: 24px; padding: 24px; }
.legal-contents h2 { margin-top: 0; font-size: 1.25rem; }
.legal-contents ol { margin: 0; padding-left: 1.35rem; }
.legal-contents li { margin: .42rem 0; color: var(--muted); }
.legal-contents a { overflow-wrap: anywhere; }
.legal-copy { padding: clamp(24px, 5vw, 52px); }
.legal-copy section { padding: 0 0 1.7rem; scroll-margin-top: 24px; }
.legal-copy section + section { padding-top: 1.7rem; border-top: 1px solid #dfe8ee; }
.legal-copy section:last-child { padding-bottom: 0; }
.legal-copy h2 { margin-top: 0; font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.legal-copy p { max-width: 72ch; line-height: 1.75; }
.legal-copy-single { max-width: 920px; margin-inline: auto; }
.legal-copy li { margin-block: .55rem; line-height: 1.65; }
@media (max-width: 800px) { .legal-layout { grid-template-columns: 1fr; } .legal-contents { position: static; } }
@media (max-width: 520px) { .legal-copy, .legal-contents { padding: 20px; } }
