/* KIVRA HOME black-gold storefront */
:root {
  --ink: #0f1728;
  --black: #0b0b0b;
  --muted: #667085;
  --gold: #d8a344;
  --gold-light: #f4d28a;
  --cream: #fbf8f1;
  --line: #e9e2d6;
  --paper: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 40, 0.12);
  --soft-shadow: 0 12px 34px rgba(15, 23, 40, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.top-note,
.announcement {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 8px 14px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.brand span span {
  color: var(--gold);
}

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

.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 0 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 14px;
  right: 14px;
  display: none;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.site-nav a:hover {
  background: var(--cream);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
}

.search-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--ink);
  transform: rotate(45deg);
  right: 4px;
  bottom: 5px;
  border-radius: 999px;
}

.account-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.account-icon::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 18px;
  height: 10px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.order-track-icon::before {
  content: "";
  width: 17px;
  height: 20px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background:
    linear-gradient(var(--ink), var(--ink)) 4px 6px / 9px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 4px 11px / 9px 2px no-repeat;
}

.order-track-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 8px;
  height: 4px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: #fff;
}

.cart-icon::before {
  content: "";
  width: 18px;
  height: 16px;
  border: 2px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.cart-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 11px;
  height: 7px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.cart-icon span {
  position: absolute;
  top: 0;
  right: -3px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.home-hero {
  position: relative;
  min-height: clamp(560px, calc(100vh - 94px), 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  display: block;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.88) 0%, rgba(10, 8, 5, 0.68) 34%, rgba(10, 8, 5, 0.16) 61%, rgba(10, 8, 5, 0.04) 100%);
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  color: #fff;
}

.home-hero h1 {
  max-width: 600px;
  margin: 0 0 18px;
  font-size: clamp(48px, 5.8vw, 76px);
  line-height: 1.01;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-hero p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.home-hero-cta {
  min-width: 168px;
  min-height: 52px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-gold {
  background: linear-gradient(180deg, #e9bf69, var(--gold));
  color: #1b1407;
  box-shadow: 0 12px 26px rgba(201, 149, 58, 0.28);
}

.button-dark,
.button.primary,
.buy-now {
  background: var(--ink);
  color: #fff;
}

.button-light,
.button-outline,
.button.secondary,
.add-cart {
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
}

.service-row,
.category-section,
.best-section,
.celebrations-section,
.newsletter-section,
.value-strip {
  width: min(100% - 36px, 1160px);
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-row article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
}

.service-row strong,
.value-strip strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.service-row small,
.value-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.service-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  border: 2px solid var(--gold);
  border-radius: 8px;
  position: relative;
}

.truck-icon::after,
.lock-icon::after,
.return-icon::after,
.heart-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.category-section,
.best-section,
.celebrations-section {
  padding: 38px 0 26px;
}

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

.section-title h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.section-title-row a {
  color: #8f6a2a;
  font-size: 13px;
  font-weight: 800;
}

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

.category-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.category-item img {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  box-shadow: 0 10px 28px rgba(15, 23, 40, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-item:hover img {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 40, 0.15);
}

.occasion-section {
  width: min(100% - 36px, 1160px);
  margin: 0 auto;
  padding: 42px 0 30px;
}

.occasion-section .section-title h2 {
  text-transform: none;
}

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

.occasion-card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: var(--soft-shadow);
}

.occasion-card picture,
.occasion-card img {
  width: 100%;
  height: 100%;
  display: block;
}

.occasion-card img {
  object-fit: cover;
  transition: transform 180ms ease;
}

.occasion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.04) 58%);
  pointer-events: none;
}

.occasion-card span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.occasion-card span::after {
  content: " \2192";
  color: #f2c66f;
}

.occasion-card:hover img {
  transform: scale(1.025);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-width: 0;
  padding: 12px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 163, 68, 0.42);
  box-shadow: 0 20px 48px rgba(15, 23, 40, 0.14);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--cream);
}

.wish-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.wish-button::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.product-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.24;
  height: 2.48em;
  min-height: 2.48em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-price {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.stars {
  min-height: 34px;
  color: #f7b500;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.stars em {
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0;
  font-size: 12px;
}

.product-cta {
  flex: 0 0 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.product-card:hover .product-cta {
  background: var(--gold);
  color: #1b1407;
}

.bundle-banner {
  position: relative;
  width: 100%;
  min-height: 138px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 34px 0 0;
  padding: 26px max(36px, calc((100vw - 1160px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(201, 149, 58, 0.45), transparent 20%),
    radial-gradient(circle at 100% 100%, rgba(201, 149, 58, 0.45), transparent 22%),
    #050505;
  color: #fff;
}

.bundle-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(26px, 5vw, 34px);
  text-align: center;
  text-transform: uppercase;
}

.bundle-copy h2 span {
  color: var(--gold-light);
}

.bundle-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 18px;
  text-align: center;
}

.bundle-prices div {
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.bundle-prices div:first-child {
  border-left: 0;
}

.bundle-prices small,
.bundle-prices em {
  display: block;
  color: #d9c8a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.bundle-prices strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
  font-weight: 900;
}

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

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream);
}

.video-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 13px;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 34px;
  background: linear-gradient(90deg, #fff, var(--cream));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter-section h2 {
  margin: 0 0 8px;
  font-size: 26px;
  text-transform: uppercase;
}

.newsletter-section p {
  margin: 0 0 18px;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  outline: 0;
}

.newsletter-form button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-section img {
  width: 230px;
  justify-self: end;
  border-radius: 18px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 30px 0;
}

.value-strip article {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 5px;
}

.site-footer {
  margin-top: 0;
  padding: 42px max(24px, calc((100vw - 1160px) / 2)) 20px;
  background: #050505;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(130px, 1fr));
  gap: 28px;
}

.footer-brand {
  justify-self: start;
  color: #fff;
}

.footer-brand-column,
.footer-support {
  align-content: start;
}

.footer-description {
  max-width: 310px;
  margin: 14px 0 0;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer details {
  display: grid;
  gap: 8px;
}

.site-footer summary {
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  list-style: none;
}

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

.footer-support h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-support p {
  margin: 0 0 2px;
}

.footer-support > a {
  display: inline-block;
  color: #fff;
  overflow-wrap: anywhere;
}

.footer-support .footer-support-hours {
  margin-top: 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-link {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  cursor: default;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-social-link:first-child svg {
  fill: none;
}

.footer-social-link .footer-social-dot {
  fill: currentColor;
  stroke: none;
}

.footer-social-link > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-row span {
  min-width: 50px;
  padding: 5px 8px;
  color: #11326b;
  background: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.copyright {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-align: right;
}

/* Existing product pages */
.product-page {
  padding-bottom: 90px;
}

.product-buy,
.product-hero {
  width: min(100% - 32px, 1180px);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 20px 0 26px;
}

.gallery,
.product-gallery {
  display: grid;
  gap: 10px;
}

.gallery-main,
.main-image-wrap,
.buy-panel,
.purchase-panel,
.trust-strip div,
.story-section,
.detail-card,
.policy-stack article,
.faq-section details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.gallery-main img,
.main-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumb {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: white;
}

.thumb.is-active {
  border-color: var(--gold);
}

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

.buy-panel,
.purchase-panel {
  padding: 18px;
}

.buy-panel h1,
.purchase-panel h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 9vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead,
.product-lead,
.detail-card p,
.detail-card li,
.story-section p,
.policy-stack p,
.faq-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.rating {
  margin: 14px 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.rating span {
  color: var(--muted);
  font-weight: 700;
}

.price-display,
.product-price {
  display: grid;
  gap: 3px;
  margin: 14px 0;
}

.price-display strong,
.product-price strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.price-display span,
.product-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.bundle-box,
.bundle-group {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.bundle-heading,
.bundle-label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bundle-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 13px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  text-align: left;
}

.bundle-option.is-active {
  border-color: var(--gold);
  background: #fff7e8;
}

.radio-dot {
  width: 18px;
  height: 18px;
  border: 2px solid #c8ced8;
  border-radius: 999px;
}

.bundle-option.is-active .radio-dot {
  border-color: var(--gold);
  background: radial-gradient(circle, var(--gold) 0 42%, transparent 45%);
}

.bundle-option strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.bundle-option small {
  display: block;
  color: #8a621a;
  font-size: 13px;
  font-weight: 800;
}

.bundle-option em {
  color: var(--ink);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.value-note,
.best-value-note,
.secure-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.purchase-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.product-page .product-purchase-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(214, 164, 66, 0.72);
  border-radius: 14px;
  background: linear-gradient(135deg, #11100d 0%, #241b0e 100%);
  box-shadow: 0 8px 20px rgba(17, 16, 13, 0.12);
  color: #fffaf0;
  list-style: none;
}

.product-page .product-purchase-trust li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.product-page .product-purchase-trust li > span:first-child {
  flex: 0 0 auto;
  color: #e6b957;
  font-weight: 900;
}

.trust-strip,
.detail-grid,
.policy-stack,
.faq-section {
  width: min(100% - 32px, 1180px);
  display: grid;
  gap: 14px;
  margin: 0 auto 22px;
}

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

.trust-strip div,
.detail-card,
.policy-stack article,
.faq-section {
  padding: 18px;
}

.story-section {
  width: min(100% - 32px, 1180px);
  display: grid;
  gap: 18px;
  margin: 0 auto 22px;
  padding: 18px;
}

.story-section img,
.detail-card img {
  width: 100%;
  border-radius: 20px;
}

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

.detail-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.faq-section {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-section details {
  box-shadow: none;
}

.faq-section summary {
  min-height: 54px;
  padding: 16px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-section details p {
  margin: 0;
  padding: 0 16px 16px;
}

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -12px 30px rgba(7, 31, 85, 0.18);
}

.sticky-buy strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.sticky-buy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sticky-buy .button {
  min-width: 118px;
}

.home-page .sticky-buy {
  display: none;
}

@media (max-width: 760px) {
  .top-note {
    min-height: 30px;
    font-size: 12px;
  }

  .site-header {
    min-height: 58px;
    padding: 8px 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .account-icon {
    display: none;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .home-hero {
    min-height: 0;
    display: block;
    background: #11100e;
  }

  .home-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 56vh;
  }

  .home-hero-media::after {
    background: linear-gradient(0deg, rgba(17, 16, 14, 0.32), transparent 34%);
  }

  .home-hero-copy {
    width: 100%;
    padding: 24px 18px 28px;
  }

  .home-hero h1 {
    max-width: 350px;
    margin-bottom: 12px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .home-hero p {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  .home-hero-cta {
    width: 100%;
    min-height: 54px;
  }

  .service-row {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 16px 8px;
  }

  .service-row article {
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
  }

  .service-row strong {
    font-size: 11px;
    line-height: 1.15;
  }

  .service-row small {
    display: none;
  }

  .service-icon {
    width: 24px;
    height: 24px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 14px;
  }

  .category-item img {
    width: 104px;
    height: 104px;
  }

  .category-item {
    font-size: 12px;
  }

  .occasion-section {
    width: min(100% - 24px, 1160px);
    padding: 30px 0 22px;
  }

  .occasion-section .section-title {
    margin-bottom: 18px;
  }

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

  .occasion-card {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }

  .occasion-card span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 15px;
  }

  .best-section,
  .category-section,
  .celebrations-section {
    padding: 28px 0 18px;
  }

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

  .product-card strong {
    font-size: 12px;
  }

  .product-card img {
    aspect-ratio: 1 / 1;
  }

  .product-price {
    font-size: 15px;
  }

  .stars {
    font-size: 11px;
  }

  .stars em {
    display: block;
    margin-top: 2px;
    font-size: 10px;
  }

  .product-cta {
    min-height: 42px;
    font-size: 12px;
  }

  .bundle-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 16px;
  }

  .bundle-prices {
    width: 100%;
    gap: 0;
  }

  .bundle-prices div {
    padding: 0 8px;
  }

  .bundle-prices strong {
    font-size: 20px;
  }

  .video-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .video-card {
    flex: 0 0 48%;
    scroll-snap-align: start;
  }

  .newsletter-section {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 16px;
  }

  .newsletter-section img {
    width: 140px;
    justify-self: center;
  }

  .newsletter-form {
    max-width: none;
  }

  .newsletter-form button {
    padding: 0 12px;
    font-size: 11px;
  }

  .value-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    text-align: center;
  }

  .value-strip span {
    display: none;
  }

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

  .site-footer {
    padding: 26px 18px 16px;
  }

  .footer-description {
    max-width: 460px;
    margin-top: 10px;
  }

  .footer-socials {
    margin-top: 14px;
  }

  .footer-support {
    padding-top: 2px;
  }

  .site-footer details {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-footer summary {
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    align-items: center;
    margin: 0;
  }

  .site-footer summary::after {
    content: "+";
    color: #fff;
    font-size: 20px;
  }

  .site-footer details[open] summary::after {
    content: "−";
  }

  .copyright {
    text-align: center;
  }
}

.content-page main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.page-intro {
  margin-bottom: 28px;
  text-align: center;
}

.page-intro h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 6vw, 52px);
}

.page-intro p {
  max-width: 660px;
  margin: 0 auto;
  color: #5f5f5f;
  line-height: 1.7;
}

.info-card,
.collection-links a {
  border: 1px solid #e5e1d9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(25, 22, 16, 0.06);
}

.info-card {
  margin-top: 18px;
  padding: 24px;
  line-height: 1.7;
}

.info-card h2,
.info-card h3 {
  margin-top: 0;
}

.collection-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-links a {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.collection-links strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 759px) {
  .content-page main {
    padding: 34px 0 48px;
  }

  .collection-links {
    grid-template-columns: 1fr;
  }

  .info-card,
  .collection-links a {
    padding: 20px;
  }
}

@media (min-width: 760px) {
  .product-buy,
  .product-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: start;
    padding: 34px 0;
  }

  .gallery,
  .product-gallery {
    position: sticky;
    top: 78px;
  }

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

  .story-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

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

  .sticky-buy {
    display: none;
  }

  .product-page {
    padding-bottom: 0;
  }
}

@media (min-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 10px max(28px, calc((100vw - 1160px) / 2));
  }

  .menu-toggle {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

.site-nav a {
    min-height: 38px;
    padding: 8px 4px;
    font-size: 13px;
  }
}

/* Shopping cart */
.cart-main {
  width: min(calc(100% - 32px), 1160px);
  min-height: 60vh;
  margin: 0 auto;
  padding: 48px 0 72px;
}

.cart-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.cart-heading h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cart-heading p:last-child,
.cart-empty p,
.cart-summary p {
  color: var(--muted);
  line-height: 1.55;
}

.cart-layout {
  display: grid;
  gap: 24px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.cart-item-image {
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream);
}

.cart-item-image img {
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.cart-item-info {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.cart-item-info strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.cart-item-info > span {
  color: var(--muted);
  font-size: 14px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-item-actions button {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 900;
}

.cart-item-actions .cart-remove {
  width: auto;
  margin-left: 8px;
  padding: 0 12px;
  color: #9b2c2c;
  background: #fff;
}

.cart-line-total {
  font-size: 18px;
  white-space: nowrap;
}

.cart-empty,
.cart-summary {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
}

.cart-empty h2,
.cart-summary h2 {
  margin-top: 0;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 19px;
}

.cart-summary .button,
.cart-empty .button {
  margin-top: 8px;
}

.cart-summary .button {
  width: 100%;
}

.cart-checkout-button {
  background: var(--black);
  color: #fff;
}

@media (min-width: 860px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

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

  .cart-summary {
    position: sticky;
    top: 94px;
  }
}

@media (max-width: 600px) {
  .cart-main {
    width: min(calc(100% - 24px), 1160px);
    padding: 32px 0 52px;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-item-image img {
    width: 82px;
    height: 82px;
  }

  .cart-line-total {
    grid-column: 2;
  }

  .cart-item-actions {
    flex-wrap: wrap;
  }
}

/* Metallic heart balloon product */
.product-breadcrumb {
  width: min(calc(100% - 32px), 1180px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.heart-product-hero {
  gap: 42px;
  padding-top: 26px;
}

.heart-main-image-wrap {
  border-radius: 12px;
  box-shadow: none;
}

.heart-main-image-wrap img {
  object-fit: contain;
  background: #fff;
}

.heart-thumb-row {
  grid-template-columns: repeat(2, 92px);
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.heart-thumb-row .thumb {
  border-color: var(--line);
  border-radius: 8px;
}

.heart-thumb-row .thumb.is-active {
  border-color: var(--ink);
}

.heart-purchase-panel {
  align-self: start;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 27, 62, 0.08);
}

.heart-purchase-panel h1 {
  max-width: 520px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.02;
}

.heart-sku {
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.heart-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 22px 0;
}

.heart-price strong {
  font-size: 38px;
}

.heart-option-group {
  margin-top: 24px;
}

.heart-option-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.heart-option-heading > span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.heart-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.heart-color-option {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 8px 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.heart-color-option > span {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0 7%, var(--swatch) 23% 70%, #4c4c4c 145%);
  box-shadow: 0 0 0 1px var(--line);
}

.heart-color-option small {
  max-width: 100%;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.heart-color-option.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.pillow-option-group {
  margin-top: 20px;
}

.product-page.cloudsoft-pillow-page .purchase-panel h1 {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.cloudsoft-pillow-page .pillow-benefit-headline {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.cloudsoft-pillow-page .pillow-hero-benefit {
  max-width: 620px;
  margin: 0;
}

.cloudsoft-pillow-page .pillow-hero-quick-buy {
  display: none;
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
}

.cloudsoft-pillow-page .purchase-actions [data-buy-now] {
  background: var(--ink);
  color: #fff;
}

.cloudsoft-pillow-page .purchase-actions [data-add-cart] {
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
}

.cloudsoft-pillow-page .pillow-benefits {
  margin-top: 14px;
}

.pillow-option-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.pillow-option-heading > span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.pillow-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.pillow-color-option {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 8px 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.pillow-color-option > span {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px var(--line);
}

.pillow-color-option small {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.pillow-color-option.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

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

.pillow-pack-option {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 13px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.cloudsoft-pillow-page .pillow-pack-recommended {
  padding-top: 24px;
  border-color: rgba(199, 145, 44, 0.72);
}

.cloudsoft-pillow-page .pillow-pack-recommended em {
  position: absolute;
  top: 7px;
  left: 9px;
  color: #8a621a;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillow-pack-option strong,
.pillow-pack-option span {
  font-weight: 900;
}

.pillow-pack-option span {
  font-size: 18px;
}

.pillow-pack-option small {
  color: #8a621a;
  font-size: 11px;
  font-weight: 800;
}

.pillow-pack-option.is-active {
  border-color: var(--gold);
  background: #fff7e8;
  box-shadow: 0 0 0 1px var(--gold);
}

.pillow-detail-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.cloudsoft-pillow-page .pillow-pain-section,
.cloudsoft-pillow-page .pillow-use-cases,
.cloudsoft-pillow-page .pillow-faq {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cloudsoft-pillow-page .pillow-pain-section {
  background: linear-gradient(135deg, #eef9fb 0%, #fff 58%, #f8f5ff 100%);
}

.cloudsoft-pillow-page .pillow-pain-copy {
  max-width: 820px;
  margin: 0 auto;
}

.cloudsoft-pillow-page .pillow-pain-copy h2,
.cloudsoft-pillow-page .pillow-use-cases h2,
.cloudsoft-pillow-page .pillow-faq h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.cloudsoft-pillow-page .pillow-pain-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.cloudsoft-pillow-page .pillow-pain-copy li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.cloudsoft-pillow-page .pillow-pain-copy li::before {
  color: #528995;
  font-weight: 900;
  content: "•";
}

.cloudsoft-pillow-page .pillow-pain-copy > p:last-child {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
}

.cloudsoft-pillow-page .pillow-use-cases .section-heading,
.cloudsoft-pillow-page .pillow-faq .section-heading {
  margin-bottom: 18px;
}

.cloudsoft-pillow-page .pillow-use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cloudsoft-pillow-page .pillow-use-case-grid article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid #dfe8ea;
  border-radius: 16px;
  background: #f7fbfc;
}

.cloudsoft-pillow-page .pillow-use-case-grid strong {
  color: var(--ink);
  font-size: 17px;
}

.cloudsoft-pillow-page .pillow-use-case-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cloudsoft-pillow-page .pillow-faq-list {
  display: grid;
  gap: 8px;
}

.cloudsoft-pillow-page .pillow-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.cloudsoft-pillow-page .pillow-faq summary {
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.cloudsoft-pillow-page .pillow-faq details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .product-page.cloudsoft-pillow-page .purchase-panel h1 {
    font-size: 24px;
    line-height: 1.25;
  }

  .pillow-color-grid {
    grid-template-columns: repeat(5, minmax(52px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pillow-pack-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .cloudsoft-pillow-page .product-hero {
    gap: 12px;
    padding-top: 8px;
  }

  .cloudsoft-pillow-page .pillow-purchase-panel {
    order: -1;
    padding: 15px 16px 16px;
  }

  .product-page.cloudsoft-pillow-page .purchase-panel h1 {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.3;
  }

  .cloudsoft-pillow-page .pillow-benefit-headline {
    margin-bottom: 6px;
    font-size: 25px;
    line-height: 1.08;
  }

  .cloudsoft-pillow-page .pillow-purchase-panel .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .cloudsoft-pillow-page .pillow-hero-benefit {
    font-size: 14px;
    line-height: 1.38;
  }

  .cloudsoft-pillow-page .pillow-purchase-panel .product-price {
    margin: 9px 0 0;
  }

  .cloudsoft-pillow-page .pillow-purchase-panel .product-price strong {
    font-size: 31px;
  }

  .cloudsoft-pillow-page .pillow-hero-quick-buy {
    display: flex;
  }

  .cloudsoft-pillow-page .pillow-option-group {
    margin-top: 15px;
  }

  .cloudsoft-pillow-page .pillow-option-heading {
    margin-bottom: 8px;
  }

  .cloudsoft-pillow-page .purchase-actions [data-buy-now] {
    order: -2;
  }

  .cloudsoft-pillow-page .pillow-pain-section,
  .cloudsoft-pillow-page .pillow-use-cases,
  .cloudsoft-pillow-page .pillow-faq {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .cloudsoft-pillow-page .pillow-pain-copy h2,
  .cloudsoft-pillow-page .pillow-use-cases h2,
  .cloudsoft-pillow-page .pillow-faq h2 {
    font-size: 26px;
  }

  .cloudsoft-pillow-page .pillow-pain-copy ul {
    margin: 14px 0;
  }

  .cloudsoft-pillow-page .pillow-use-case-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cloudsoft-pillow-page .pillow-use-case-grid article {
    padding: 14px;
  }
}

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

.heart-pack-option {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 13px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.heart-pack-option span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.heart-pack-option small {
  color: #987320;
  font-size: 11px;
  font-weight: 800;
}

.heart-pack-option.is-active {
  border-color: var(--ink);
  background: #fffaf0;
  box-shadow: 0 0 0 1px var(--ink);
}

.heart-purchase-actions {
  grid-template-columns: 1fr 1fr;
  margin-top: 26px;
}

.heart-pack-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.number-option-group {
  margin: 1.25rem 0;
}

.number-option-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.number-option-heading span {
  color: var(--muted, #667085);
  font-size: .85rem;
  text-align: right;
}

.number-digit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
}

.number-digit-option {
  min-height: 3.25rem;
  border: 1px solid #ded6c8;
  border-radius: .85rem;
  background: #fff;
  color: #101828;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.number-digit-option:hover {
  border-color: #d89c2f;
  transform: translateY(-1px);
}

.number-digit-option.is-active {
  border-color: #d9961f;
  background: #fff7e8;
  box-shadow: 0 0 0 2px rgba(217, 150, 31, .14);
}

.number-pack-note {
  margin: .8rem 0 0;
  color: var(--muted, #667085);
  font-size: .88rem;
  line-height: 1.5;
}

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

@media (max-width: 640px) {
  .number-option-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
  }

  .number-option-heading span {
    text-align: left;
  }

  .number-inspiration-grid {
    grid-template-columns: 1fr;
  }
}

.heart-benefits {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.heart-benefits li::before {
  content: "✓";
  margin-right: 9px;
  color: #8b6a1b;
  font-weight: 900;
}

.heart-detail-section {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 24px;
  background: #fff8f3;
}

.heart-detail-section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.heart-detail-section p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.heart-detail-section img {
  border-radius: 18px;
}

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

.heart-color-showcase article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.heart-color-showcase img {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
}

.heart-color-showcase h3 {
  margin: 14px 0 6px;
}

.heart-color-showcase p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 760px) {
  .heart-detail-section {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

@media (max-width: 759px) {
  .product-breadcrumb {
    width: min(calc(100% - 24px), 1180px);
    padding-top: 14px;
    font-size: 11px;
  }

  .heart-product-hero {
    width: min(calc(100% - 24px), 1180px);
    gap: 18px;
    padding-top: 14px;
  }

  .heart-purchase-panel {
    padding: 20px 16px;
  }

  .heart-purchase-panel h1 {
    font-size: 38px;
  }

  .heart-color-grid {
    grid-template-columns: repeat(5, minmax(54px, 1fr));
    overflow-x: auto;
    padding: 2px;
  }

  .heart-pack-grid {
    grid-template-columns: 1fr;
  }

  .heart-pack-option {
    min-height: 72px;
  }

  .heart-purchase-actions {
    grid-template-columns: 1fr;
  }

  .heart-detail-section {
    padding: 20px;
  }
}

/* Shared rich product detail layout */
    .product-page { overflow-x: hidden; }
    .product-page main > .product-section {
      width: min(calc(100% - 32px), 1180px);
      margin: 0 auto 22px;
      box-sizing: border-box;
    }
    .product-page main > .product-section img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
    }
    .product-page .trust-strip > div {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }
    .product-page .trust-strip strong,
    .product-page .trust-strip span { display: block; }
    .product-page .conversion-strip,
    .product-page .feature-grid,
    .product-page .policy-grid,
    .product-page .faq-grid,
    .product-page .step-grid {
      display: grid;
      gap: 14px;
    }
    .product-page .conversion-strip,
    .product-page .step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-page .feature-grid,
    .product-page .policy-grid,
    .product-page .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-page .story-card,
    .product-page .split-card,
    .product-page .occasion-panel,
    .product-page .setup-steps,
    .product-page .image-feature,
    .product-page .feature-card,
    .product-page .policy-card,
    .product-page .faq-item,
    .product-page .step-card,
    .product-page .conversion-strip > div {
      min-width: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .product-page .story-card,
    .product-page .split-card,
    .product-page .occasion-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 22px;
      align-items: center;
      padding: 24px;
    }
    .product-page .setup-steps,
    .product-page .feature-card,
    .product-page .policy-card,
    .product-page .step-card,
    .product-page .conversion-strip > div { padding: 20px; }
    .product-page .image-feature { padding: 0; }
    .product-page .image-feature img,
    .product-page .split-card img,
    .product-page .policy-card img {
      width: 100%;
      height: auto;
      border-radius: 20px;
    }
    .product-page .occasion-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .product-page .occasion-list span {
      padding: 10px 12px;
      border-radius: 999px;
      background: #fff7e8;
      color: var(--ink);
      font-weight: 800;
      text-align: center;
    }
    .product-page .step-card > span {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--gold);
      color: #fff;
      font-weight: 900;
    }
    .product-page .faq-item summary {
      min-height: 54px;
      padding: 16px;
      color: var(--ink);
      font-weight: 900;
      cursor: pointer;
    }
    .product-page .faq-item p { margin: 0; padding: 0 16px 16px; }
    @media (max-width: 759px) {
      .product-page main > .product-section { width: min(calc(100% - 24px), 1180px); }
      .product-page .conversion-strip,
      .product-page .feature-grid,
      .product-page .policy-grid,
      .product-page .faq-grid,
      .product-page .step-grid,
      .product-page .story-card,
      .product-page .split-card,
      .product-page .occasion-panel { grid-template-columns: 1fr; }
      .product-page .story-card,
      .product-page .split-card,
      .product-page .occasion-panel,
      .product-page .setup-steps,
      .product-page .feature-card,
      .product-page .policy-card,
      .product-page .step-card,
      .product-page .conversion-strip > div { padding: 18px; }
      .product-page .occasion-list { grid-template-columns: 1fr; }
    }

/* Product detail conversion essentials */
.product-page .product-quick-info {
  width: min(calc(100% - 32px), 1180px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 22px;
}

.product-page .product-quick-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 27, 62, 0.07);
}

.product-page .product-quick-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.product-page .product-quick-item summary::-webkit-details-marker {
  display: none;
}

.product-page .product-quick-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.product-page .product-quick-item[open] summary::after {
  content: "\2212";
}

.product-page .product-quick-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-page .product-quick-item a {
  color: var(--ink);
  font-weight: 800;
}

.product-page .rating {
  font-size: 0;
}

.product-page .rating::before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 15px;
  letter-spacing: 1px;
}

.product-page .rating span {
  margin-left: 6px;
  font-size: 15px;
}

.product-page [data-add-cart] {
  min-height: 54px;
  border-color: var(--gold);
  background: linear-gradient(180deg, #e9bf69, var(--gold));
  color: #1b1407;
  box-shadow: 0 12px 24px rgba(201, 149, 58, 0.22);
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-card-price-row del {
  color: #777;
  font-size: 0.76rem;
}

.product-card-price-row mark,
.discount-badge {
  border-radius: 999px;
  background: #fff0e8;
  color: #a84114;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.18rem 0.42rem;
  text-decoration: none;
}

.product-card-price-row mark {
  white-space: nowrap;
}

.sale-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sale-price-row .product-price {
  margin: 0;
}

.compare-price {
  color: #777;
  font-size: 1rem;
}

.promotion-basis {
  flex-basis: 100%;
  color: #697386;
  font-size: 12px;
  line-height: 1.4;
}

.pawmotion-dog-ball-page .main-image-wrap {
  background: #fff;
}

.pawmotion-dog-ball-page .main-product-image,
.pawmotion-dog-ball-page .thumb img {
  object-fit: contain;
}

.pawmotion-dog-ball-page .bundle-offer-tag {
  display: inline-flex;
  margin-left: .45rem;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: #fff0ca;
  color: #7a4b00;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pawmotion-dog-ball-page .pawmotion-use-cases .detail-grid article {
  border: 1px solid #eadfcd;
  border-radius: 16px;
  padding: 1.15rem;
  background: #fffaf2;
}

.pawmotion-dog-ball-page .pawmotion-use-cases .detail-grid p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .pawmotion-dog-ball-page .thumb-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .35rem;
  }

  .pawmotion-dog-ball-page .thumb {
    flex: 0 0 70px;
  }

  .pawmotion-dog-ball-page .purchase-panel {
    min-width: 0;
  }

  .pawmotion-dog-ball-page .bundle-box {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Brushless cordless mini reciprocating saw product details */
.mini-reciprocating-saw-page .purchase-panel h1 {
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.05;
}

.mini-reciprocating-saw-page .main-image-wrap {
  background: #fff;
}

.mini-reciprocating-saw-page .main-product-image,
.mini-reciprocating-saw-page .thumb img {
  object-fit: contain;
}

.mini-reciprocating-saw-page .saw-feature-section,
.mini-reciprocating-saw-page .saw-kit-section,
.mini-reciprocating-saw-page .saw-safety-section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 0%, #f6f8fb 100%);
  box-shadow: var(--soft-shadow);
}

.mini-reciprocating-saw-page .saw-feature-section > h2,
.mini-reciprocating-saw-page .saw-feature-section > .eyebrow,
.mini-reciprocating-saw-page .saw-safety-section > h2,
.mini-reciprocating-saw-page .saw-safety-section > .eyebrow {
  text-align: center;
}

.mini-reciprocating-saw-page .saw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mini-reciprocating-saw-page .saw-feature-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(15, 23, 40, 0.1);
  border-radius: 18px;
  background: #fff;
}

.mini-reciprocating-saw-page .saw-feature-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.mini-reciprocating-saw-page .saw-feature-grid p,
.mini-reciprocating-saw-page .saw-kit-section p,
.mini-reciprocating-saw-page .saw-safety-section li {
  color: var(--muted);
  line-height: 1.65;
}

.mini-reciprocating-saw-page .saw-kit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.mini-reciprocating-saw-page .saw-kit-section img {
  width: 100%;
  border-radius: 18px;
  background: #fff;
}

.mini-reciprocating-saw-page .saw-safety-section ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: saw-step;
}

.mini-reciprocating-saw-page .saw-safety-section li {
  position: relative;
  padding: 20px 20px 20px 58px;
  border-radius: 16px;
  background: #fff;
  counter-increment: saw-step;
}

.mini-reciprocating-saw-page .saw-safety-section li::before {
  content: counter(saw-step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.mini-reciprocating-saw-page .saw-safety-section li strong {
  color: var(--ink);
}

@media (max-width: 759px) {
  .mini-reciprocating-saw-page .purchase-panel h1 {
    font-size: 28px;
  }

  .mini-reciprocating-saw-page .thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mini-reciprocating-saw-page .saw-feature-section,
  .mini-reciprocating-saw-page .saw-kit-section,
  .mini-reciprocating-saw-page .saw-safety-section {
    border-radius: 16px;
  }

  .mini-reciprocating-saw-page .saw-feature-grid,
  .mini-reciprocating-saw-page .saw-kit-section,
  .mini-reciprocating-saw-page .saw-safety-section ol {
    grid-template-columns: 1fr;
  }

  .mini-reciprocating-saw-page .saw-feature-grid {
    gap: 10px;
  }

  .mini-reciprocating-saw-page .saw-feature-grid article {
    padding: 18px;
  }
}

.mini-deep-fryer-pot-page .purchase-panel h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.spin-scrubber-page .purchase-panel h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mini-deep-fryer-pot-page .fryer-detail-benefits {
  display: grid;
  gap: 12px;
}

.mini-deep-fryer-pot-page .fryer-detail-cta {
  font-weight: 700;
}

.mini-deep-fryer-pot-page .fryer-detail-images {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 841px;
  margin: 28px auto 0;
}

.mini-deep-fryer-pot-page .fryer-detail-images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 759px) {
  .product-page .product-buy,
  .product-page .product-hero {
    width: min(calc(100% - 24px), 1180px);
    gap: 14px;
    padding: 12px 0 18px;
  }

  .product-page .gallery,
  .product-page .product-gallery {
    gap: 8px;
  }

  .product-page .gallery-main,
  .product-page .main-image-wrap {
    border-radius: 20px;
  }

  .product-page .gallery-main img,
  .product-page .main-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .product-page .thumb-row {
    gap: 6px;
  }

  .product-page .buy-panel,
  .product-page .purchase-panel {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .product-page .buy-panel h1,
  .product-page .purchase-panel h1,
  .product-page .heart-purchase-panel h1 {
    margin-bottom: 10px;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.02;
  }

  .mini-deep-fryer-pot-page .purchase-panel h1 {
    font-size: 23px;
    line-height: 1.25;
  }

  .spin-scrubber-page .purchase-panel h1 {
    font-size: 23px;
    line-height: 1.22;
  }

  .mini-deep-fryer-pot-page .fryer-detail-images {
    gap: 12px;
    margin-top: 20px;
  }

  .product-page .rating,
  .product-page .price-display,
  .product-page .product-price {
    margin: 10px 0;
  }

  .product-page .bundle-box,
  .product-page .bundle-group {
    margin: 12px 0;
  }

  .product-page .purchase-actions,
  .product-page .heart-purchase-actions {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .product-page .purchase-actions [data-add-cart],
  .product-page .heart-purchase-actions [data-add-cart] {
    order: -1;
    min-height: 56px;
  }

  .product-page .product-purchase-trust {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 9px;
    padding: 8px 10px;
  }

  .product-page .product-purchase-trust li {
    justify-content: flex-start;
    font-size: 11.5px;
    text-align: left;
  }

  .product-page .product-quick-info {
    width: min(calc(100% - 24px), 1180px);
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .product-page .product-quick-item summary {
    min-height: 52px;
    padding: 13px 15px;
  }

  .product-page .product-quick-item p {
    padding: 0 15px 14px;
  }
}

/* Checkout, order administration and cart feedback */
.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  max-width: min(380px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-main,
.admin-orders-main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 76px;
}

.checkout-heading { max-width: 720px; margin-bottom: 30px; }

.checkout-heading h1,
.admin-login h1,
.admin-orders-heading h1,
.payment-confirmation h1 {
  margin: 6px 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
}

.checkout-heading p:last-child,
.payment-availability,
.form-status,
.payment-step > p,
.checkout-success > p,
.payment-confirmation > p { color: var(--muted); }

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.checkout-form,
.checkout-summary,
.payment-step,
.checkout-success,
.checkout-empty,
.admin-login,
.admin-order-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.checkout-form fieldset { margin: 0 0 26px; padding: 0; border: 0; }

.checkout-form legend,
.checkout-summary h2,
.payment-step h2,
.checkout-success h2,
.admin-order-card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.checkout-fields { display: grid; grid-template-columns: 1fr; gap: 14px; }
.checkout-fields.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-fields.address-columns { grid-template-columns: minmax(160px, 1fr) 90px 120px 160px; }

.checkout-form label,
.admin-login label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.checkout-form label > span { color: var(--muted); font-weight: 400; }

.checkout-form input,
.checkout-form select,
.admin-login input,
.admin-order-actions input,
.admin-order-actions select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}

.checkout-form input:focus,
.checkout-form select:focus,
.admin-login input:focus,
.admin-order-actions input:focus,
.admin-order-actions select:focus {
  outline: 2px solid rgba(216, 163, 68, 0.35);
  border-color: var(--gold);
}

.payment-methods { display: grid; gap: 10px; }
.payment-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.payment-methods input { width: 18px; min-height: 18px; }
.checkout-submit { width: 100%; border: 0; }
.checkout-submit:disabled { cursor: wait; opacity: 0.65; }
.checkout-summary { position: sticky; top: 110px; }

.checkout-summary-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-summary-item img { width: 58px; height: 58px; object-fit: cover; border-radius: 10px; }
.checkout-summary-item div { display: grid; gap: 4px; }
.checkout-summary-item span { color: var(--muted); font-size: 12px; }
.checkout-total { display: flex; justify-content: space-between; padding-top: 20px; font-size: 20px; }
.payment-step, .checkout-success, .checkout-empty { max-width: 720px; }
#checkout-paypal-buttons { max-width: 480px; margin-top: 22px; }

.payment-confirmation {
  width: min(680px, calc(100% - 36px));
  margin: 10vh auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.top-note-marquee {
  display: block;
  min-height: 34px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
}

.top-note-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: top-note-scroll 28s linear infinite;
  will-change: transform;
}

.top-note-group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
}

.top-note-item,
.top-note-separator {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px clamp(22px, 4vw, 72px);
}

.top-note-separator {
  padding-inline: 4px;
  color: var(--gold-light);
}

.top-note-marquee:hover .top-note-track {
  animation-play-state: paused;
}

@keyframes top-note-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-note-track {
    width: 100%;
    animation: none;
  }

  .top-note-group {
    flex-wrap: wrap;
  }

  .top-note-group[aria-hidden="true"] {
    display: none;
  }
}
.payment-confirmation .brand { justify-content: center; margin-bottom: 28px; }
.admin-login { max-width: 560px; margin: 6vh auto; }
.admin-login form { display: grid; gap: 14px; margin-top: 24px; }
.admin-login .button { border: 0; }

.track-order-page main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.track-order-card,
.track-order-result {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.track-order-card h1 { margin: 4px 0 12px; }
.track-order-card > p:not(.eyebrow) { color: var(--muted); }

.track-order-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  margin-top: 28px;
}

.track-order-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.track-order-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.track-order-form input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(226, 166, 54, 0.18);
}

.track-order-form .button { min-height: 50px; border: 0; }
.track-order-form .button:disabled { cursor: wait; opacity: 0.65; }

.track-order-message { min-height: 24px; margin: 16px 0 0; }
.track-order-message.error { color: #a61b1b; font-weight: 700; }

.track-order-result { margin-top: 24px; }
.track-order-result:focus { outline: 3px solid rgba(226, 166, 54, 0.25); outline-offset: 4px; }

.track-order-result-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.track-order-result-heading h2 { margin: 4px 0 0; overflow-wrap: anywhere; }
.track-order-status { padding: 8px 14px; border-radius: 999px; background: #fff3d9; color: #7a4a00; font-weight: 900; }

.track-order-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin: 28px 0 0;
}

.track-order-details div { min-width: 0; }
.track-order-details dt { color: var(--muted); font-size: 0.84rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.track-order-details dd { margin: 6px 0 0; font-weight: 800; overflow-wrap: anywhere; }

.track-shipment { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.track-shipment h3 { margin: 0; }
.track-shipment .button { display: inline-flex; margin-top: 24px; }

@media (max-width: 760px) {
  .track-order-page main { width: min(100% - 24px, 620px); padding: 32px 0 60px; }
  .track-order-card,
  .track-order-result { padding: 24px 18px; border-radius: 20px; }
  .track-order-form { grid-template-columns: 1fr; }
  .track-order-form .button { width: 100%; }
  .track-order-result-heading { align-items: flex-start; flex-direction: column; }
  .track-order-details { grid-template-columns: 1fr; gap: 18px; }
}

.admin-orders-heading,
.admin-order-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.admin-orders-list { display: grid; gap: 20px; margin-top: 26px; }
.admin-order-card > header { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.admin-order-card > header > div { display: grid; gap: 4px; }
.admin-order-card > header span,
.admin-order-card p { color: var(--muted); line-height: 1.6; }
.order-status {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink) !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-order-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; padding: 22px 0; }
.admin-status-section { align-content: start; }
.admin-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f1efe9;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.payment-paid, .fulfillment-delivered { background: #dff4e5; color: #176b37; }
.payment-pending_payment, .fulfillment-unfulfilled { background: #fff1cf; color: #805500; }
.payment-payment_failed, .payment-cancelled { background: #ffe1dd; color: #9b2c22; }
.payment-refunded { background: #e7e4f8; color: #51458c; }
.fulfillment-processing, .fulfillment-shipped { background: #dfeaf9; color: #244f82; }
.admin-order-actions { display: grid; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.admin-shipping-fields { display: grid; grid-template-columns: 180px 180px minmax(180px, 1fr) minmax(240px, 1.4fr); gap: 12px; margin: 0; padding: 0; border: 0; }
.admin-shipping-fields legend { grid-column: 1 / -1; margin-bottom: 4px; color: var(--ink); font-size: 18px; font-weight: 900; }
.admin-shipping-fields label { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 800; }
.admin-order-save-row { display: flex; align-items: center; gap: 14px; }
.admin-order-actions .button { min-height: 46px; border: 0; }
.admin-order-save-row [data-update-status] { color: var(--muted); font-size: 13px; font-weight: 800; }

@media (max-width: 1040px) {
  .admin-order-grid,
  .admin-shipping-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .cart-toast { right: 16px; bottom: 16px; }
  .checkout-main, .admin-orders-main { width: min(100% - 24px, 680px); padding: 34px 0 54px; }
  .checkout-layout,
  .checkout-fields.two-columns,
  .checkout-fields.address-columns,
  .admin-order-grid,
  .admin-shipping-fields { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .checkout-form,
  .checkout-summary,
  .payment-step,
  .checkout-success,
  .checkout-empty,
  .admin-login,
  .admin-order-card,
  .payment-confirmation { padding: 20px; border-radius: 18px; }
  .admin-orders-heading, .admin-order-card > header { align-items: flex-start; }
}
/* Legal pages and privacy controls */
.legal-main { width: min(900px, calc(100% - 32px)); margin: 54px auto 80px; }
.legal-main h1 { margin-bottom: 24px; }
.legal-main h2 { margin-top: 34px; font-size: clamp(1.25rem, 2vw, 1.55rem); }
.legal-main p, .legal-main li { line-height: 1.75; color: #414141; }
.legal-main li + li { margin-top: 8px; }
.legal-table-wrap { overflow-x: auto; }
.legal-main table { width: 100%; border-collapse: collapse; min-width: 620px; }
.legal-main th, .legal-main td { padding: 12px; border: 1px solid #ddd; text-align: left; vertical-align: top; }
.legal-main th { background: #f7f4ed; }
.link-button, .legal-links button { border: 0; padding: 0; background: none; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; }
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; padding: 20px 24px 0; font-size: .9rem; }
.cookie-consent { position: fixed; z-index: 10000; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1040px; margin: auto; padding: 20px; border: 1px solid #cbb98b; border-radius: 14px; background: #fff; color: #1b1b1b; box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 6px 0; line-height: 1.45; }
.cookie-consent-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-consent .button { white-space: nowrap; }
.product-page #paypal-button-container, .product-page #paypal-status { display: none; }
.checkout-consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; line-height: 1.45; }
.checkout-consent input { margin-top: 4px; }
@media (max-width: 760px) { .cookie-consent { align-items: stretch; flex-direction: column; } .cookie-consent-actions { flex-direction: column-reverse; } }

/* Handheld garment steamer detail page */
.garment-steamer-page .steamer-voltage-note {
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid #d9b45d;
  border-radius: 12px;
  background: #fff8e8;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.garment-steamer-page .steamer-quick-content {
  padding: 0 18px 18px;
  color: var(--muted);
}

.garment-steamer-page .steamer-quick-content ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  line-height: 1.5;
}

.garment-steamer-page .steamer-detail-intro {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 24px;
  background: #fff8f3;
  text-align: center;
}

.garment-steamer-page .steamer-detail-intro h2,
.garment-steamer-page .steamer-detail-card h2,
.garment-steamer-page .steamer-important-note h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.garment-steamer-page .steamer-detail-intro > p:last-child,
.garment-steamer-page .steamer-detail-copy > p:last-child,
.garment-steamer-page .steamer-important-note > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.garment-steamer-page .steamer-detail-stack {
  display: grid;
  gap: 28px;
}

.garment-steamer-page .steamer-detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 27, 62, 0.08);
}

.garment-steamer-page .steamer-detail-copy {
  padding: clamp(22px, 4vw, 38px);
}

.garment-steamer-page .steamer-detail-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1464 / 600;
  object-fit: contain;
  background: #f7eee8;
}

.garment-steamer-page .steamer-important-note {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid #e1bd65;
  border-radius: 24px;
  background: #fff8e8;
}

@media (max-width: 759px) {
  .garment-steamer-page .steamer-detail-stack { gap: 18px; }
  .garment-steamer-page .steamer-detail-card,
  .garment-steamer-page .steamer-detail-intro,
  .garment-steamer-page .steamer-important-note { border-radius: 16px; }
  .garment-steamer-page .steamer-detail-copy { padding: 20px; }
  .garment-steamer-page .steamer-detail-card h2 { font-size: 26px; }
}

/* 10-tier shoe rack product details */
.shoe-rack-page .purchase-panel h1 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.04;
}

.shoe-rack-page .main-image-wrap {
  background: #fff;
}

.shoe-rack-page .main-product-image {
  object-fit: contain;
}

.shoe-rack-page .shoe-rack-detail-intro,
.shoe-rack-page .shoe-rack-assembly {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 0%, #fbf8f1 100%);
  box-shadow: var(--soft-shadow);
}

.shoe-rack-page .shoe-rack-detail-intro {
  text-align: center;
}

.shoe-rack-page .shoe-rack-detail-intro > p:last-of-type,
.shoe-rack-page .shoe-rack-assembly-lead {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.shoe-rack-page .shoe-rack-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.shoe-rack-page .shoe-rack-spec-grid > div {
  min-width: 0;
  padding: 20px 14px;
  border: 1px solid rgba(216, 163, 68, 0.34);
  border-radius: 18px;
  background: #fff;
}

.shoe-rack-page .shoe-rack-spec-grid strong,
.shoe-rack-page .shoe-rack-spec-grid span {
  display: block;
}

.shoe-rack-page .shoe-rack-spec-grid strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.shoe-rack-page .shoe-rack-spec-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shoe-rack-page .shoe-rack-assembly > h2,
.shoe-rack-page .shoe-rack-assembly > .eyebrow,
.shoe-rack-page .shoe-rack-assembly > .shoe-rack-assembly-lead {
  text-align: center;
}

.shoe-rack-page .shoe-rack-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.shoe-rack-page .shoe-rack-step {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.shoe-rack-page .shoe-rack-step img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #f8f8f8;
}

.shoe-rack-page .shoe-rack-step > div {
  padding: 20px;
}

.shoe-rack-page .shoe-rack-step span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shoe-rack-page .shoe-rack-step h3 {
  margin: 13px 0 8px;
  font-size: 23px;
  line-height: 1.16;
}

.shoe-rack-page .shoe-rack-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 759px) {
  .shoe-rack-page .purchase-panel h1 {
    font-size: 29px;
  }

  .shoe-rack-page .shoe-rack-detail-intro,
  .shoe-rack-page .shoe-rack-assembly {
    border-radius: 16px;
  }

  .shoe-rack-page .shoe-rack-detail-intro > p:last-of-type,
  .shoe-rack-page .shoe-rack-assembly-lead {
    font-size: 15px;
  }

  .shoe-rack-page .shoe-rack-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .shoe-rack-page .shoe-rack-spec-grid > div {
    padding: 16px 10px;
  }

  .shoe-rack-page .shoe-rack-step-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shoe-rack-page .shoe-rack-step {
    border-radius: 16px;
  }

  .shoe-rack-page .shoe-rack-step img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .shoe-rack-page .shoe-rack-step > div {
    padding: 17px;
  }

  .shoe-rack-page .shoe-rack-step h3 {
    font-size: 21px;
  }
}
