:root {
  --ink: #1f2933;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f6f7f9;
  --teal: #0f766e;
  --coral: #e85d4f;
  --gold: #f5c542;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 28, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  touch-action: manipulation;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand,
.nav-links,
.hero-actions,
.header-actions,
.filters {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.header-actions {
  gap: 12px;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.language-picker select {
  height: 40px;
  min-width: 116px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.cart-button,
.filter,
.icon-button {
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 112px;
  height: 40px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.cart-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--ink);
}

.cart-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-label {
  white-space: nowrap;
}

.cart-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero p {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.primary-action {
  border: 1px solid var(--coral);
  color: var(--white);
  background: var(--coral);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  gap: 5px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.trust-strip span,
.product-card p,
.steps p,
.customization p,
.contact p,
.cart-summary p {
  color: var(--muted);
}

.section {
  padding: 70px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.filters {
  gap: 8px;
  flex-wrap: wrap;
}

.filter {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
}

.filter.active {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 502px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.product-media {
  position: relative;
  display: grid;
  gap: 8px;
  flex: 0 0 240px;
  padding: 10px;
  background: linear-gradient(135deg, #f9fafb, #eef6f5);
  overflow: hidden;
}

.main-image-slot,
.thumb-image-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  cursor: zoom-in;
}

.main-image-slot {
  height: 216px;
}

.thumb-image-slot {
  min-width: 0;
  height: 58px;
}

.main-image-slot img,
.thumb-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-callout {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(31, 41, 51, 0.82);
  box-shadow: 0 10px 24px rgba(20, 28, 40, 0.18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.product-thumbs {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.image-placeholder {
  display: grid;
  gap: 6px;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: var(--muted);
  text-align: center;
}

.image-placeholder strong {
  color: var(--ink);
}

.image-placeholder span {
  font-size: 12px;
  overflow-wrap: anywhere;
}

.product-info {
  display: grid;
  grid-template-rows: 48px 60px 48px 38px;
  gap: 10px;
  flex: 1;
  min-height: 0;
  padding: 16px;
}

.product-info h3,
.cart-header h2 {
  margin: 0;
}

.product-card p {
  display: -webkit-box;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.variant-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 28px;
  max-height: 48px;
  overflow: hidden;
}

.variant-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 9px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.price-row,
.cart-row,
.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-row {
  align-self: end;
  margin-top: 0;
}

.price {
  font-weight: 900;
}

.add-button {
  flex: 0 0 auto;
  min-width: 92px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.product-title-button {
  display: -webkit-box;
  min-height: 50px;
  border: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-title-button:hover {
  color: var(--teal);
}

.logistics {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  background: var(--soft);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  font-weight: 900;
}

.steps p {
  margin: 6px 0 0;
}

.customization {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(31, 41, 51, 0.84)),
    linear-gradient(135deg, #e8f5f3 0%, #fff3ec 100%);
}

.customization-header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.customization .eyebrow,
.customization h2,
.customization-header p:last-child {
  color: var(--white);
}

.customization-header p:last-child {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.custom-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.custom-steps div {
  display: grid;
  gap: 8px;
  min-height: 152px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(20, 28, 40, 0.18);
}

.custom-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.custom-steps strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.custom-steps small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.custom-steps div:nth-child(2n) span {
  background: var(--coral);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.contact p {
  max-width: 680px;
  line-height: 1.7;
}

.contact .primary-action {
  min-width: 280px;
  min-height: 58px;
  padding: 0 26px;
  font-size: 18px;
  white-space: nowrap;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 24px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 10px 22px;
}

.cart-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row small {
  color: var(--muted);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.full {
  width: 100%;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(20, 28, 40, 0.28);
  opacity: 0;
  pointer-events: none;
}

.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal,
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(20, 28, 40, 0.5);
}

.product-modal.open,
.media-lightbox.open {
  display: grid;
}

.product-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px;
  width: min(1080px, 100%);
  max-height: min(860px, 92vh);
  overflow: auto;
  border-radius: 10px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.detail-media,
.detail-info {
  display: grid;
  align-content: start;
  gap: 14px;
}

.detail-main {
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f9fafb, #eef6f5);
  overflow: hidden;
}

.detail-main video,
.detail-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-main video {
  background: #101828;
}

.detail-image-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.detail-image-button span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(31, 41, 51, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.detail-thumb {
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.detail-thumb.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.16);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-chip {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.detail-info h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.detail-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-price {
  font-size: 26px;
}

.detail-group {
  display: grid;
  gap: 8px;
}

.detail-group > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.option-button.active {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.detail-qty {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.detail-qty button {
  width: 42px;
  height: 38px;
  border: 0;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.detail-qty span {
  display: grid;
  min-width: 42px;
  height: 38px;
  place-items: center;
  border-inline: 1px solid var(--line);
  font-weight: 900;
}

.media-lightbox {
  z-index: 80;
  background: rgba(10, 15, 25, 0.82);
}

.media-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 82;
}

.video-fallback {
  min-height: 220px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .language-picker span {
    display: none;
  }

  .hero,
  .logistics {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .contact {
    align-items: start;
    flex-direction: column;
  }

  .product-modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 64px;
    padding: 0 14px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-picker select {
    min-width: 92px;
    height: 38px;
    padding: 0 8px;
  }

  .cart-button {
    min-width: 104px;
    height: 38px;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .trust-strip,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .custom-steps {
    grid-template-columns: 1fr;
  }

  .custom-steps div {
    min-height: 0;
  }

  .main-image-slot {
    height: 220px;
  }

  .product-modal {
    padding: 10px;
  }

  .product-modal-card {
    padding: 18px;
  }

  .detail-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


.cart-address-form {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.cart-address-form[hidden] {
  display: none;
}

.cart-address-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-address-form input,
.cart-address-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.cart-address-form small {
  color: var(--muted);
  line-height: 1.5;
}

.field-error {
  color: #c2410c;
  font-size: 13px;
  font-weight: 800;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(20, 28, 40, 0.5);
}

.checkout-modal.open {
  display: grid;
}

.checkout-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(780px, 92vh);
  overflow: auto;
  border-radius: 10px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-step {
  display: grid;
  gap: 16px;
}

.checkout-step h2 {
  margin: 0;
  font-size: 32px;
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.checkout-form .wide {
  grid-column: 1 / -1;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.payment-summary {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.payment-summary p {
  margin: 0;
}

@media (max-width: 560px) {
  .checkout-card {
    padding: 18px;
  }

  .checkout-form {
    grid-template-columns: 1fr;
  }
}


/* Pawnyra cartoon theme 20260706 */
:root {
  --ink: #102a43;
  --muted: #5f7188;
  --line: #dbeaf0;
  --soft: #f2fbfc;
  --teal: #12a8b5;
  --aqua: #62dce4;
  --sky: #bdf4f7;
  --coral: #ff7a6b;
  --gold: #ffd34d;
  --cream: #fbfff0;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(28, 118, 140, 0.14);
}

body {
  background:
    radial-gradient(circle at 9% 15%, rgba(189, 244, 247, 0.55), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6fdfe 45%, #ffffff 100%);
}

.top-notice {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 7px 16px;
  color: #14324a;
  background: #f5feff;
  border-bottom: 1px solid rgba(18, 168, 181, 0.16);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.site-header {
  height: 82px;
  border-bottom: 1px solid rgba(18, 168, 181, 0.15);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
}

.brand {
  color: #12334c;
  font-size: 23px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), #62dce4);
  box-shadow: 0 10px 24px rgba(18, 168, 181, 0.22);
}

.brand-mark::after {
  content: "🐾";
  font-size: 19px;
}

.brand-mark {
  font-size: 0;
}

.nav-links {
  gap: 30px;
  color: #14324a;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover,
.product-title-button:hover {
  color: var(--teal);
}

.language-picker select,
.cart-button,
.filter,
.secondary-action,
.option-button,
.detail-qty,
.quantity-controls button,
.checkout-form input,
.checkout-form textarea,
.cart-address-form input,
.cart-address-form textarea {
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.04);
}

.cart-button {
  color: #12334c;
  background: #ffffff;
}

.cart-count,
.primary-action,
.add-button {
  background: var(--coral);
}

.primary-action,
.secondary-action,
.add-button {
  border-radius: 999px;
}

.primary-action {
  border-color: var(--coral);
  box-shadow: 0 14px 28px rgba(255, 122, 107, 0.22);
}

.secondary-action {
  border-color: rgba(18, 168, 181, 0.22);
  color: #12334c;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 620px;
  padding: clamp(46px, 6vw, 84px) clamp(18px, 5vw, 72px) clamp(88px, 9vw, 128px);
  border-bottom: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.62) 0 13%, transparent 14%),
    linear-gradient(105deg, #efffff 0%, #c9f9fb 48%, #75e4ea 100%);
}

.hero::before {
  content: "🐾";
  position: absolute;
  top: 70px;
  right: 8%;
  color: rgba(18, 168, 181, 0.25);
  font-size: 72px;
  transform: rotate(12deg);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 116px;
  background: #ffffff;
  clip-path: ellipse(58% 58% at 50% 100%);
}

.hero-copy,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 700px;
  color: #09283f;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.02;
}

.hero p {
  max-width: 580px;
  color: #3e6174;
  font-size: 18px;
}

.eyebrow {
  color: var(--teal);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 14px;
  color: #07384b;
  background: rgba(255, 255, 255, 0.68);
}

.hero-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: normal;
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: -48px auto 0;
  overflow: hidden;
  border: 1px solid rgba(18, 168, 181, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px 28px;
  background: #ffffff;
}

.trust-strip strong {
  color: #09283f;
}

.section {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.section-heading {
  align-items: center;
}

.section h2 {
  color: #09283f;
}

.filters {
  padding: 8px;
  border: 1px solid rgba(18, 168, 181, 0.12);
  border-radius: 999px;
  background: #ffffff;
}

.filter {
  min-height: 40px;
  color: #50677b;
  background: #ffffff;
}

.filter.active,
.option-button.active {
  border-color: var(--teal);
  background: var(--teal);
}

.product-grid {
  gap: 28px;
}

.product-card {
  height: 536px;
  border-color: rgba(18, 168, 181, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(16, 42, 67, 0.12);
}

.product-media {
  flex-basis: 258px;
  padding: 12px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 211, 77, 0.16), transparent 40%),
    linear-gradient(180deg, #f8fff2 0%, #effdfd 100%);
}

.main-image-slot {
  height: 232px;
  border-color: rgba(18, 168, 181, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.product-info {
  grid-template-rows: 54px 54px 50px 44px;
  padding: 20px 18px 18px;
}

.product-title-button {
  font-size: 20px;
  color: #12334c;
}

.product-card p {
  min-height: 46px;
  max-height: 46px;
}

.variant-row span {
  color: #326074;
  background: #f2fbfc;
}

.price {
  color: #102a43;
  font-size: 18px;
}

.add-button {
  min-width: 108px;
  height: 42px;
  box-shadow: 0 12px 22px rgba(255, 122, 107, 0.2);
}

.logistics {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(239, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    #f2fbfc;
}

.logistics > * {
  width: min(1180px, 100%);
}

.steps li,
.custom-steps div,
.checkout-card,
.product-modal-card,
.cart-panel {
  border-color: rgba(18, 168, 181, 0.16);
  border-radius: 8px;
}

.steps span,
.custom-steps span {
  background: var(--gold);
}

.customization {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 211, 77, 0.22), transparent 25%),
    linear-gradient(135deg, #0c9aa8 0%, #1fcad2 100%);
}

.contact {
  width: min(1320px, 100%);
}

.detail-main,
.product-modal-card,
.checkout-card,
.payment-summary {
  background: #ffffff;
}

@media (max-width: 900px) {
  .top-notice {
    font-size: 12px;
  }

  .hero {
    padding-bottom: 88px;
  }

  .hero-image {
    order: -1;
  }

  .trust-strip {
    margin-top: -38px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .filters {
    border-radius: 8px;
  }

  .product-card {
    height: 530px;
  }
}


/* Pawnyra hero background refinement */
.hero {
  grid-template-columns: minmax(0, 760px);
  background:
    linear-gradient(90deg, rgba(239, 255, 255, 0.95) 0%, rgba(229, 253, 255, 0.78) 44%, rgba(124, 231, 237, 0.18) 100%),
    url("assets/brand/pawnyra-cartoon-hero.png") center right / cover no-repeat;
}

.hero-image {
  display: none;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.42);
}

@media (max-width: 900px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(239, 255, 255, 0.82), rgba(239, 255, 255, 0.92)),
      url("assets/brand/pawnyra-cartoon-hero.png") center top / cover no-repeat;
    padding-top: 260px;
  }
}


/* Short hero title and pet avatar logo */
.brand-mark {
  width: 48px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #dffcff;
  box-shadow: 0 10px 24px rgba(18, 168, 181, 0.18);
}

.brand-mark::after {
  content: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

@media (max-width: 560px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 44px;
  }
}


/* Cute split homepage polish 20260706 */
body {
  font-family: "Arial Rounded MT Bold", "Nunito", "Comic Sans MS", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
}

.home-page #products {
  display: none;
}

.products-page .hero {
  min-height: 270px;
  padding: 74px clamp(18px, 5vw, 72px) 96px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 211, 77, 0.25), transparent 18%),
    linear-gradient(105deg, #f1ffff 0%, #c9fbff 54%, #75e4ea 100%);
}

.products-page .hero-copy {
  display: none;
}

.products-page .trust-strip {
  margin-top: -44px;
}

.products-page #products {
  padding-top: 54px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(240, 255, 255, 0.92) 0%, rgba(240, 255, 255, 0.72) 35%, rgba(240, 255, 255, 0.18) 52%, rgba(255, 255, 255, 0) 68%),
    url("assets/brand/pawnyra-cartoon-hero.png") center right / cover no-repeat;
}

.hero h1,
.section h2,
.product-title-button,
.brand {
  font-family: "Arial Rounded MT Bold", "Nunito", "Comic Sans MS", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  color: #052f4f;
  font-weight: 900;
  text-shadow: none;
}

.hero p:not(.eyebrow) {
  color: #315a72;
  line-height: 1.85;
  font-weight: 700;
}

.hero .eyebrow {
  gap: 6px;
  color: #07384b;
  border: 1px solid rgba(18, 168, 181, 0.13);
  box-shadow: 0 12px 28px rgba(18, 168, 181, 0.08);
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  content: "🐾";
  font-size: 15px;
}

.nav-links {
  gap: 12px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  border: 1px solid rgba(18, 168, 181, 0.15);
  border-radius: 999px;
  padding: 0 18px;
  background: #f7feff;
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.05);
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.nav-links a::before {
  content: "🐾";
  font-size: 13px;
}

.nav-links a:hover {
  transform: translateY(-2px);
  background: #eafffd;
  box-shadow: 0 16px 28px rgba(18, 168, 181, 0.12);
}

.language-picker select,
.cart-button {
  border-radius: 999px;
  background: #ffffff;
}

.customization {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 211, 77, 0.35), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(135deg, #13a4b0 0%, #31d2d7 100%);
}

.customization::before,
.customization::after {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  font-size: 86px;
  pointer-events: none;
}

.customization::before {
  content: "🐾";
  left: 5%;
  top: 9%;
  transform: rotate(-16deg);
}

.customization::after {
  content: "🦴";
  right: 7%;
  bottom: 8%;
  transform: rotate(18deg);
}

.custom-steps {
  position: relative;
  z-index: 1;
}

.custom-steps div {
  min-height: 154px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 255, 253, 0.98));
  box-shadow: 0 18px 34px rgba(4, 70, 86, 0.13);
}

.custom-steps span {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: #08334b;
  background: #ffd34d;
  font-size: 0;
  box-shadow: 0 10px 18px rgba(255, 211, 77, 0.24);
}

.custom-steps span::before {
  font-size: 23px;
}

.custom-steps div:nth-child(1) span::before { content: "☎"; }
.custom-steps div:nth-child(2) span::before { content: "✓"; }
.custom-steps div:nth-child(3) span::before { content: "✂"; }
.custom-steps div:nth-child(4) span::before { content: "📦"; }
.custom-steps div:nth-child(5) span::before { content: "💳"; }
.custom-steps div:nth-child(6) span::before { content: "⚙"; }
.custom-steps div:nth-child(7) span::before { content: "🔍"; }
.custom-steps div:nth-child(8) span::before { content: "💰"; }
.custom-steps div:nth-child(9) span::before { content: "🚚"; }
.custom-steps div:nth-child(10) span::before { content: "🐾"; }

.custom-steps div:nth-child(2n) span {
  background: #ff8a7c;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(255, 122, 107, 0.24);
}

.product-card {
  height: 548px;
  border: 2px solid rgba(18, 168, 181, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(98, 220, 228, 0.35), rgba(255, 211, 77, 0.28), rgba(255, 122, 107, 0.22)) border-box;
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.1);
}

.product-media {
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 211, 77, 0.22), transparent 21%),
    radial-gradient(circle at 12% 18%, rgba(98, 220, 228, 0.24), transparent 22%),
    linear-gradient(180deg, #f9fff3 0%, #edffff 100%);
}

.main-image-slot,
.thumb-image-slot,
.detail-main,
.detail-thumb {
  border-radius: 20px;
}

.product-info {
  padding: 22px 20px 20px;
}

.variant-row span {
  min-height: 34px;
  border-color: rgba(18, 168, 181, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  background: #edffff;
  color: #1a6477;
}

.add-button {
  height: 44px;
  min-width: 118px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8173, #ff6f61);
}

.filter {
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(240, 255, 255, 0.42), rgba(240, 255, 255, 0.88)),
      url("assets/brand/pawnyra-cartoon-hero.png") center top / cover no-repeat;
  }

  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }
}


/* Product page should open directly to catalog */
.products-page .hero {
  display: none;
}

.products-page .trust-strip {
  margin: 24px auto 0;
}

.products-page #products {
  padding-top: 58px;
}


/* Mobile fixed menu 20260706 */
.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 108px;
  height: 44px;
  border: 1px solid rgba(18, 168, 181, 0.18);
  border-radius: 999px;
  color: #082f49;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.06);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.menu-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: #ffd34d;
  font-size: 17px;
  line-height: 1;
}

.mobile-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 74;
  display: none;
  pointer-events: none;
}

.mobile-menu-panel.open {
  display: block;
  pointer-events: auto;
}

.mobile-menu-card {
  width: min(390px, calc(100vw - 44px));
  min-height: 100vh;
  padding: 34px 24px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 211, 77, 0.12), transparent 20%),
    linear-gradient(180deg, #120b24 0%, #19102e 100%);
  box-shadow: 22px 0 50px rgba(10, 15, 25, 0.35);
  transform: translateX(-105%);
  transition: transform 180ms ease;
}

.mobile-menu-panel.open .mobile-menu-card {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}

.mobile-menu-brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.mobile-menu-close {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  gap: 26px;
  padding: 46px 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-links a {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.mobile-menu-links a::before {
  content: "🐾";
  margin-right: 12px;
  color: #ffd34d;
  font-size: 20px;
}

.mobile-menu-social {
  display: grid;
  gap: 18px;
  padding: 34px 0 28px;
}

.mobile-menu-social > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.mobile-menu-social div {
  display: flex;
  gap: 16px;
}

.mobile-menu-social a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
  font-weight: 900;
}

.mobile-menu-contact {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-contact span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  font-size: 24px;
}

.mobile-menu-contact strong {
  color: #ffd34d;
  font-size: 18px;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 8px;
    height: auto;
    min-height: 78px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
    font-size: 19px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .header-actions {
    display: contents;
  }

  .language-picker {
    min-width: 106px;
  }

  .language-picker span {
    display: none;
  }

  .language-picker select,
  .cart-button,
  .mobile-menu-button {
    width: auto;
    min-width: 104px;
    height: 44px;
    padding: 0 12px;
  }

  .cart-button {
    min-width: 102px;
  }

  .cart-label {
    display: inline;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand span:last-child {
    font-size: 20px;
  }

  .mobile-menu-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .language-picker select,
  .cart-button {
    min-width: 112px;
  }
}


/* Header space and full hero image 20260706 */
.site-header {
  position: sticky;
  top: 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.brand,
.nav-links a,
.language-picker select,
.cart-button,
.mobile-menu-button {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  border: 1px solid rgba(18, 168, 181, 0.12);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.06);
}

.home-page .hero {
  margin-top: 0;
  background:
    linear-gradient(90deg, rgba(240, 255, 255, 0.92) 0%, rgba(240, 255, 255, 0.72) 35%, rgba(240, 255, 255, 0.18) 52%, rgba(255, 255, 255, 0) 68%),
    url("assets/brand/pawnyra-cartoon-hero.png") right bottom / auto 100% no-repeat,
    linear-gradient(105deg, #efffff 0%, #c9f9fb 48%, #75e4ea 100%);
}

@media (max-width: 900px) {
  .home-page .hero {
    margin-top: 0;
    background:
      linear-gradient(180deg, rgba(240, 255, 255, 0.38), rgba(240, 255, 255, 0.86)),
      url("assets/brand/pawnyra-cartoon-hero.png") center top / contain no-repeat,
      linear-gradient(180deg, #efffff 0%, #d8fbff 100%);
    padding-top: 310px;
  }
}
