:root {
  --bg: #f6efe4;
  --bg-soft: #efe4d2;
  --panel: rgba(255, 250, 243, 0.78);
  --panel-strong: rgba(255, 251, 246, 0.92);
  --panel-dark: #173038;
  --text: #1f1712;
  --muted: #6d5a4d;
  --line: rgba(31, 23, 18, 0.1);
  --brand: #b86b3b;
  --brand-strong: #8f4e27;
  --forest: #27443f;
  --gold: #d6b17a;
  --cream: #fff5e8;
  --shadow-soft: 0 24px 60px rgba(63, 38, 22, 0.1);
  --shadow-strong: 0 30px 90px rgba(40, 24, 14, 0.16);
  --radius-2xl: 36px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 177, 122, 0.3), transparent 28%),
    radial-gradient(circle at top right, rgba(39, 68, 63, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f3ea 0%, #f0e4d4 38%, #f7efe4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

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

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

button,
input {
  font: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0.42;
  filter: blur(80px);
}

.ambient-left {
  top: 72px;
  left: -120px;
  background: rgba(216, 177, 124, 0.34);
}

.ambient-right {
  top: 280px;
  right: -120px;
  background: rgba(39, 68, 63, 0.22);
}

.wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.promo-bar {
  padding: 12px 0;
  background: linear-gradient(90deg, #173038 0%, #244346 50%, #173038 100%);
  color: #fff8ef;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 46px rgba(63, 38, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-strong), var(--gold));
  box-shadow: 0 18px 36px rgba(143, 78, 39, 0.3);
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.hero-copy h1,
.hero-product-copy h2,
.section-heading h2,
.feature-band-copy h2,
.spotlight-copy h2,
.summary-headline h2,
.product-copy h1,
.checkout-panel h1,
.thankyou-copy h1 {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy strong {
  font-size: 1.3rem;
  line-height: 1;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.cart-link,
.button,
.add-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  font-weight: 700;
}

.cart-link {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(31, 23, 18, 0.08);
}

.cart-link span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #fff;
  font-size: 0.88rem;
}

.button,
.add-button,
.ghost-button {
  padding: 14px 22px;
}

.button-primary,
.add-button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  box-shadow: 0 18px 38px rgba(143, 78, 39, 0.26);
}

.button-secondary,
.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 23, 18, 0.08);
}

.button:hover,
.cart-link:hover,
.add-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.hero-section {
  padding: 28px 0 8px;
}

.hero-grid,
.spotlight-grid,
.checkout-grid,
.product-layout,
.feature-band,
.thankyou-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: start;
}

.hero-copy,
.hero-product-card,
.collection-card,
.highlight-card,
.feature-band-copy,
.feature-band-product,
.spotlight-copy,
.spotlight-panel,
.service-card,
.newsletter-shell,
.product-visual-shell,
.product-copy,
.product-support-card,
.checkout-panel,
.summary-panel,
.thankyou-card,
.loading-card,
.error-card,
.empty-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.hero-product-card,
.highlight-card,
.feature-band-copy,
.feature-band-product,
.spotlight-copy,
.spotlight-panel,
.newsletter-shell,
.product-visual-shell,
.product-copy,
.checkout-panel,
.summary-panel,
.thankyou-card,
.loading-card,
.error-card,
.empty-card {
  border-radius: var(--radius-2xl);
}

.hero-copy {
  padding: 38px;
  display: grid;
  gap: 18px;
}

.hero-copy-panel {
  display: grid;
  gap: 18px;
}

.eyebrow,
.label,
.hero-quick-label,
.product-visual-badge {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow,
.label,
.hero-quick-label {
  color: var(--brand-strong);
}

.hero-copy h1,
.checkout-panel h1,
.thankyou-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-text,
.panel-text,
.collection-card p,
.product-meta-text,
.spotlight-copy p,
.service-card p,
.newsletter-shell p,
.product-copy p,
.product-support-card span,
.summary-highlight p,
.summary-note p,
.thankyou-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions,
.product-card-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-metric-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 23, 18, 0.06);
}

.hero-metric-card strong {
  font-size: 1.4rem;
}

.hero-metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-ad-banner {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.hero-ad-banner img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
}

.hero-ad-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 16, 0.05), rgba(24, 20, 16, 0.52));
}

.hero-ad-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(20, 17, 14, 0.24);
  color: #fff8f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-ad-overlay strong {
  font-size: 1.32rem;
  line-height: 1.1;
}

.hero-benefits,
.pill-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-benefits {
  color: var(--muted);
}

.hero-benefits span,
.pill,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(31, 23, 18, 0.06);
}

.pill,
.detail-tags span {
  color: var(--forest);
  font-size: 0.84rem;
}

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

.hero-quick-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 23, 18, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-quick-card:hover,
.collection-card:hover,
.product-card:hover,
.hero-mini-card:hover,
.spotlight-product-tile:hover,
.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.hero-quick-card strong {
  line-height: 1.35;
}

.hero-stage {
  display: grid;
  gap: 18px;
}

.hero-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 20px;
  overflow: hidden;
  padding: 20px;
}

.hero-card-primary {
  color: #fff8f0;
  background:
    radial-gradient(circle at top left, rgba(231, 198, 144, 0.22), transparent 26%),
    linear-gradient(150deg, #203a3c 0%, #17242c 48%, #8d4f25 100%);
}

.hero-card-primary .label,
.hero-card-primary p {
  color: rgba(255, 248, 240, 0.88);
}

.hero-product-image {
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
}

.hero-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.hero-product-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 0.98;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--brand-strong);
  font-weight: 800;
  font-size: 1.2rem;
}

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

.hero-mini-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.hero-mini-card img {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

.hero-mini-copy {
  display: grid;
  gap: 6px;
}

.summary-headline,
.service-card,
.product-support-card,
.detail-card,
.feature-band-meta {
  display: grid;
  gap: 8px;
}

.trust-row {
  padding: 10px 0 0;
}

.trust-grid,
.service-grid,
.product-story-grid,
.product-support-grid,
.summary-guarantees {
  display: grid;
  gap: 18px;
}

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

.trust-grid article,
.service-card,
.product-support-card,
.detail-card,
.summary-guarantees article,
.product-preview-note {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(31, 23, 18, 0.08);
}

.trust-grid strong,
.service-card strong,
.product-support-card strong,
.detail-card strong,
.summary-guarantees article,
.product-preview-note strong {
  display: block;
}

.trust-grid span,
.detail-card span,
.product-preview-note span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 58px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading h2,
.feature-band-copy h2,
.spotlight-copy h2,
.summary-headline h2,
.product-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
}

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

.collection-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
  border-radius: var(--radius-2xl);
}

.collection-preview {
  overflow: hidden;
  aspect-ratio: 0.95;
  border-radius: calc(var(--radius-xl) - 4px);
}

.collection-preview img,
.highlight-card img,
.feature-band-product img,
.spotlight-art-banner img,
.spotlight-product-tile img,
.product-media img,
.product-visual-shell img,
.thankyou-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-copy {
  display: grid;
  gap: 8px;
  padding: 6px 8px 12px;
}

.collection-card strong {
  font-size: 1.1rem;
}

.highlights-section {
  padding-top: 36px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: 18px;
}

.highlight-card {
  display: grid;
  overflow: hidden;
}

.highlight-card img {
  aspect-ratio: 1;
}

.highlight-card-large img {
  aspect-ratio: 1.12;
}

.highlight-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.feature-band {
  align-items: stretch;
}

.feature-band-copy,
.feature-band-product,
.spotlight-copy,
.spotlight-panel,
.checkout-panel,
.summary-panel {
  padding: 32px;
}

.feature-band-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.feature-band-product {
  display: grid;
  overflow: hidden;
}

.feature-band-product img {
  aspect-ratio: 1.08;
}

.feature-band-meta {
  padding: 20px 4px 4px;
}

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

.product-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92;
  border-radius: calc(var(--radius-xl) - 6px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(233, 220, 205, 0.86));
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.54), transparent 65%);
  pointer-events: none;
}

.product-card h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.35;
}

.product-card-actions {
  justify-content: space-between;
}

.product-card-actions .ghost-button,
.product-card-actions .add-button {
  flex: 1 1 0;
}

.spotlight-grid {
  align-items: stretch;
}

.spotlight-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.spotlight-panel {
  display: grid;
  gap: 18px;
}

.spotlight-art-banner {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 6px);
}

.spotlight-art-banner img {
  aspect-ratio: 1.26;
}

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

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

.spotlight-product-tile img {
  aspect-ratio: 1;
  border-radius: calc(var(--radius-lg) - 4px);
  background: rgba(255, 255, 255, 0.64);
}

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

.newsletter-shell {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter-form input,
.checkout-form input,
.qty-row input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(31, 23, 18, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.newsletter-form input {
  flex: 1 1 280px;
  min-width: 0;
  padding: 14px 16px;
}

.site-footer {
  padding: 64px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  padding: 26px 0;
  border-top: 1px solid rgba(31, 23, 18, 0.08);
}

.footer-grid > div {
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: var(--muted);
}

.product-main,
.checkout-main {
  padding: 34px 0 64px;
}

.thankyou-main {
  padding: 40px 0 70px;
}

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

.product-visual-column {
  display: grid;
  gap: 18px;
}

.product-visual-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.product-visual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--forest);
}

.product-visual-shell img {
  aspect-ratio: 1;
}

.product-support-grid,
.product-story-grid,
.summary-guarantees {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-copy {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.product-intro {
  font-size: 1.02rem;
}

.detail-stack {
  display: grid;
}

.detail-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31, 23, 18, 0.08);
}

.detail-line:last-child {
  border-bottom: 0;
}

.detail-line span:first-child {
  color: var(--muted);
}

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

.product-preview-note {
  display: grid;
  gap: 8px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-row label {
  font-weight: 700;
}

.qty-row input {
  width: 92px;
  padding: 12px 14px;
  border-radius: 999px;
}

.checkout-grid {
  align-items: start;
}

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

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.checkout-steps span {
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-weight: 700;
}

.checkout-steps .is-active {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #fff;
}

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

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

.checkout-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.checkout-form input {
  padding: 14px 16px;
}

.checkout-form input:focus,
.newsletter-form input:focus,
.qty-row input:focus {
  outline: 2px solid rgba(184, 107, 59, 0.18);
  border-color: rgba(184, 107, 59, 0.4);
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.paypal-panel {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 23, 18, 0.08);
}

.paypal-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.paypal-header span,
.paypal-message {
  color: var(--muted);
}

.summary-panel {
  display: grid;
  gap: 18px;
}

.summary-highlight {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(244, 228, 210, 0.72));
  border: 1px solid rgba(31, 23, 18, 0.08);
}

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

.summary-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 23, 18, 0.08);
}

.summary-item-top,
.price-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price-breakdown {
  display: grid;
  gap: 12px;
  margin: 0;
}

.price-breakdown dt,
.price-breakdown dd {
  margin: 0;
}

.price-total {
  padding-top: 12px;
  border-top: 1px solid rgba(31, 23, 18, 0.08);
  font-weight: 800;
}

.summary-note {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 23, 18, 0.08);
}

.summary-guarantees article {
  color: var(--forest);
  font-weight: 700;
}

.thankyou-main {
  display: grid;
  place-items: center;
}

.thankyou-card {
  width: min(1080px, calc(100% - 32px));
  overflow: hidden;
}

.thankyou-visual {
  overflow: hidden;
  border-radius: calc(var(--radius-2xl) - 4px);
}

.thankyou-visual img {
  aspect-ratio: 1.05;
}

.thankyou-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px 34px 34px 0;
}

.thankyou-points {
  display: grid;
  gap: 12px;
}

.thankyou-points article {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 23, 18, 0.08);
  color: var(--forest);
  font-weight: 700;
}

.loading-card,
.error-card,
.empty-card {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 26px;
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .hero-grid,
  .feature-band,
  .checkout-grid,
  .product-layout,
  .thankyou-card,
  .hero-product-card {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .product-grid,
  .service-grid,
  .trust-grid,
  .product-support-grid,
  .product-story-grid,
  .summary-guarantees {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .highlight-card-large {
    grid-column: 1 / -1;
  }

  .thankyou-copy {
    padding: 0 34px 34px;
  }
}

@media (max-width: 860px) {
  .nav-shell,
  .section-heading,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero-metric-row,
  .hero-quick-grid,
  .hero-mini-grid,
  .spotlight-product-grid,
  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .product-card-actions,
  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .product-card-actions .ghost-button,
  .product-card-actions .add-button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 20px, 1240px);
  }

  .hero-copy,
  .feature-band-copy,
  .feature-band-product,
  .spotlight-copy,
  .spotlight-panel,
  .newsletter-shell,
  .product-copy,
  .checkout-panel,
  .summary-panel {
    padding: 24px;
  }

  .hero-copy h1,
  .checkout-panel h1,
  .thankyou-copy h1,
  .section-heading h2,
  .feature-band-copy h2,
  .spotlight-copy h2,
  .summary-headline h2,
  .product-copy h1 {
    font-size: 2.35rem;
  }

  .collection-grid,
  .product-grid,
  .form-grid,
  .form-grid-third,
  .highlight-grid,
  .service-grid,
  .trust-grid,
  .product-support-grid,
  .product-story-grid,
  .summary-guarantees {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .promo-bar-inner {
    gap: 10px;
  }

  .summary-highlight,
  .summary-note,
  .product-support-card,
  .detail-card,
  .product-preview-note {
    padding: 18px;
  }

  .thankyou-copy {
    padding: 0 24px 24px;
  }
}

/* Premium mystical storefront refresh */
:root {
  --bg: #100f14;
  --bg-soft: #1b171f;
  --panel: rgba(255, 252, 245, 0.92);
  --panel-strong: #fffaf0;
  --panel-dark: #15131b;
  --text: #19151d;
  --muted: #716778;
  --line: rgba(37, 28, 42, 0.12);
  --brand: #9c6f3f;
  --brand-strong: #5d314a;
  --forest: #18463e;
  --gold: #d8b36d;
  --cream: #fff7ea;
  --shadow-soft: 0 20px 54px rgba(20, 14, 26, 0.12);
  --shadow-strong: 0 30px 80px rgba(20, 14, 26, 0.26);
  --radius-2xl: 18px;
  --radius-xl: 14px;
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

body {
  background:
    linear-gradient(180deg, rgba(18, 15, 23, 0.96) 0%, rgba(30, 23, 34, 0.9) 34%, #f7efe4 34%, #f7efe4 100%),
    #f7efe4;
}

body::before,
.ambient {
  display: none;
}

.promo-bar {
  background: #141019;
  color: #f8ead1;
}

.nav-shell {
  border-radius: 0;
  background: rgba(255, 250, 240, 0.92);
  border-color: rgba(216, 179, 109, 0.28);
}

.brand-mark {
  border-radius: 8px;
  background: linear-gradient(135deg, #17131c, #5d314a 55%, #d8b36d);
}

.cart-link,
.button,
.add-button,
.ghost-button,
.hero-benefits span,
.pill,
.detail-tags span,
.checkout-steps span,
.product-gallery-thumb {
  border-radius: 8px;
}

.button-primary,
.add-button,
.checkout-steps .is-active {
  background: linear-gradient(135deg, #17131c, #5d314a 54%, #9c6f3f);
  box-shadow: 0 18px 34px rgba(93, 49, 74, 0.26);
}

.hero-section {
  color: #fff8ec;
  padding: 36px 0 22px;
}

.hero-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 28px 0;
}

.hero-copy h1,
.hero-text,
.hero-benefits,
.hero-metric-card span {
  color: #fff8ec;
}

.hero-text {
  color: rgba(255, 248, 236, 0.78);
  max-width: 680px;
}

.hero-card-primary {
  background: #17131c;
  border-color: rgba(216, 179, 109, 0.32);
}

.hero-product-image,
.collection-preview,
.highlight-card,
.feature-band-product,
.spotlight-art-banner,
.product-media,
.product-visual-shell {
  background: #15131b;
}

.hero-product-image img,
.collection-preview img,
.highlight-card img,
.feature-band-product img,
.spotlight-art-banner img,
.product-media img,
.product-visual-shell img {
  filter: saturate(0.9) contrast(1.04);
}

.hero-metric-card,
.hero-quick-card,
.hero-mini-card {
  color: #fff8ec;
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(216, 179, 109, 0.18);
}

.trust-row {
  padding-top: 24px;
}

.section {
  padding-top: 64px;
}

.collection-card,
.product-card,
.service-card,
.newsletter-shell,
.feature-band-copy,
.feature-band-product,
.spotlight-copy,
.spotlight-panel,
.checkout-panel,
.summary-panel,
.product-copy,
.product-support-card,
.product-visual-shell,
.loading-card,
.error-card,
.empty-card {
  border-color: rgba(37, 28, 42, 0.1);
  backdrop-filter: none;
}

.product-card {
  padding: 14px;
}

.product-media::after {
  display: none;
}

.price {
  color: #5d314a;
}

.compare-price {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: line-through;
}

.add-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

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

.product-gallery-thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 28, 42, 0.14);
  background: #fffaf0;
  cursor: pointer;
}

.product-gallery-thumb.is-active {
  border-color: var(--brand-strong);
  box-shadow: 0 12px 24px rgba(93, 49, 74, 0.18);
}

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

.product-video-shell {
  overflow: hidden;
  border: 1px solid rgba(37, 28, 42, 0.12);
  background: #151219;
}

.product-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #151219;
}

.summary-highlight {
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 226, 205, 0.8));
}

.site-footer {
  background: #141019;
  color: #fff8ec;
  margin-top: 72px;
}

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

/* Free AI-lux storefront skin */
:root {
  --bg: #070b0b;
  --bg-soft: #0d1513;
  --panel: rgba(13, 21, 19, 0.9);
  --panel-strong: rgba(18, 28, 25, 0.96);
  --panel-dark: #090f0e;
  --text: #f4f7f1;
  --muted: #9dafaa;
  --line: rgba(201, 231, 219, 0.14);
  --brand: #58d6ad;
  --brand-strong: #1ba77f;
  --forest: #0e2d27;
  --gold: #d7bd6c;
  --cream: #f4f0dc;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.24);
  --shadow-strong: 0 34px 96px rgba(0, 0, 0, 0.42);
  --radius-2xl: 8px;
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
}

body {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 11, 11, 0.96) 0%, rgba(8, 14, 13, 0.96) 58%, #0b1110 100%),
    #070b0b;
}

body::before {
  display: block;
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.82;
  background-image:
    linear-gradient(rgba(88, 214, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 189, 108, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(88, 214, 173, 0.05), transparent 36%),
    linear-gradient(225deg, rgba(215, 189, 108, 0.05), transparent 32%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.18));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 8, 0.84), transparent 26%, transparent 74%, rgba(5, 8, 8, 0.84)),
    linear-gradient(180deg, rgba(88, 214, 173, 0.08), transparent 34%, rgba(215, 189, 108, 0.05));
}

.ambient {
  display: none !important;
}

body,
.promo-bar,
.eyebrow,
.brand-copy small,
.main-nav,
.pill,
.hero-quick-label,
.label {
  letter-spacing: 0;
}

.wrap {
  width: min(1280px, calc(100% - 32px));
}

.promo-bar {
  color: rgba(244, 247, 241, 0.86);
  background: rgba(5, 9, 9, 0.96);
  border-bottom: 1px solid rgba(88, 214, 173, 0.22);
}

.promo-bar-inner span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-bar-inner span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 16px rgba(88, 214, 173, 0.76);
}

.site-header {
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(7, 11, 11, 0.88), rgba(7, 11, 11, 0.42));
  border-bottom: 1px solid rgba(201, 231, 219, 0.08);
}

.nav-shell {
  border-radius: 8px;
  border: 1px solid rgba(201, 231, 219, 0.14);
  background: rgba(11, 17, 16, 0.84);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.brand {
  color: var(--text);
}

.brand-mark {
  color: #03110d;
  border-radius: 8px;
  background: linear-gradient(135deg, #58d6ad 0%, #d7bd6c 100%);
  box-shadow: 0 14px 34px rgba(88, 214, 173, 0.2);
}

.brand-copy small,
.main-nav a,
.cart-link {
  color: rgba(244, 247, 241, 0.68);
}

.main-nav a:hover,
.text-link,
.site-footer a:hover {
  color: var(--brand);
}

.cart-link {
  border: 1px solid rgba(88, 214, 173, 0.26);
  background: rgba(88, 214, 173, 0.08);
}

.cart-link span {
  color: #06110e;
  background: var(--brand);
}

.hero-section {
  position: relative;
  padding: 44px 0 28px;
  overflow: hidden;
}

.hero-grid {
  align-items: stretch;
  gap: 26px;
}

.hero-copy,
.hero-stage,
.checkout-panel,
.summary-panel,
.product-copy,
.product-visual-shell,
.thankyou-card,
.newsletter-shell,
.feature-band-copy,
.feature-band-product,
.spotlight-copy,
.spotlight-panel,
.collection-card,
.product-card,
.service-card,
.hero-product-card,
.hero-mini-card,
.highlight-card,
.hero-quick-card,
.hero-metric-card,
.product-support-card,
.detail-card,
.product-preview-note,
.summary-highlight,
.summary-note,
.loading-card,
.error-card,
.empty-card {
  border-radius: 8px;
  border: 1px solid rgba(201, 231, 219, 0.13);
  background:
    linear-gradient(180deg, rgba(20, 31, 28, 0.94), rgba(10, 16, 15, 0.94)),
    rgba(13, 21, 19, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-copy {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.hero-copy::before,
.product-copy::before,
.checkout-panel::before,
.thankyou-card::before,
.newsletter-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background-image:
    linear-gradient(90deg, rgba(88, 214, 173, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(215, 189, 108, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

.hero-copy > *,
.product-copy > *,
.checkout-panel > *,
.thankyou-card > *,
.newsletter-shell > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(88, 214, 173, 0.24);
  border-radius: 8px;
  color: var(--brand);
  background: rgba(88, 214, 173, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

.hero-copy h1 {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
  max-width: 820px;
}

.section-heading h2,
.feature-band-copy h2,
.spotlight-copy h2,
.summary-headline h2,
.product-copy h1,
.checkout-panel h1,
.thankyou-copy h1 {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: 2.6rem;
  line-height: 1.08;
}

.feature-band-copy h2,
.spotlight-copy h2,
.summary-headline h2,
.checkout-panel h1,
.thankyou-copy h1,
.product-copy h1 {
  font-size: 2.8rem;
  line-height: 1.06;
}

.hero-text,
.panel-text,
.feature-band-copy p,
.spotlight-copy p,
.service-card p,
.newsletter-shell p,
.product-copy p,
.product-intro,
.summary-highlight p,
.summary-note p,
.thankyou-copy p,
.site-footer p {
  color: rgba(244, 247, 241, 0.68);
}

.hero-actions {
  gap: 12px;
}

.button,
.add-button,
.ghost-button,
.checkout-steps span,
.pill,
.detail-tags span,
.product-gallery-thumb,
.newsletter-form input,
.checkout-form input,
.qty-row input {
  border-radius: 8px;
}

.button-primary,
.add-button,
.checkout-steps .is-active {
  color: #06110e;
  background: linear-gradient(135deg, #58d6ad 0%, #d7bd6c 100%);
  border: 1px solid rgba(244, 247, 241, 0.16);
  box-shadow: 0 18px 34px rgba(88, 214, 173, 0.18);
}

.button-primary:hover,
.add-button:hover {
  box-shadow: 0 24px 44px rgba(88, 214, 173, 0.24);
}

.button-secondary,
.ghost-button {
  color: var(--text);
  background: rgba(244, 247, 241, 0.05);
  border: 1px solid rgba(201, 231, 219, 0.2);
}

.button-secondary:hover,
.ghost-button:hover {
  border-color: rgba(88, 214, 173, 0.44);
  background: rgba(88, 214, 173, 0.1);
}

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

.hero-metric-card,
.hero-quick-card,
.hero-mini-card {
  background:
    linear-gradient(180deg, rgba(19, 30, 27, 0.84), rgba(8, 13, 12, 0.88)),
    rgba(10, 17, 16, 0.9);
}

.hero-metric-card {
  position: relative;
  overflow: hidden;
}

.hero-metric-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 13px;
  height: 3px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--brand), rgba(215, 189, 108, 0.92), transparent);
  opacity: 0.74;
}

.hero-metric-card strong,
.price {
  color: var(--brand);
}

.hero-metric-card span,
.hero-benefits span,
.hero-quick-label,
.label {
  color: rgba(244, 247, 241, 0.64);
}

.hero-ad-banner,
.hero-product-image,
.collection-preview,
.highlight-card,
.feature-band-product,
.spotlight-art-banner,
.product-media,
.product-visual-shell,
.thankyou-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #0a100f;
}

.hero-ad-banner::after,
.hero-product-image::after,
.collection-preview::after,
.highlight-card::after,
.feature-band-product::after,
.spotlight-art-banner::after,
.product-media::before,
.product-visual-shell::after,
.thankyou-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(5, 8, 8, 0.54)),
    linear-gradient(90deg, rgba(88, 214, 173, 0.12), transparent 44%, rgba(215, 189, 108, 0.1));
  mix-blend-mode: screen;
}

.hero-product-image img,
.collection-preview img,
.highlight-card img,
.feature-band-product img,
.spotlight-art-banner img,
.spotlight-product-tile img,
.product-media img,
.product-visual-shell img,
.thankyou-visual img {
  filter: saturate(0.88) contrast(1.08) brightness(0.92);
}

.hero-ad-overlay,
.highlight-copy {
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(5, 8, 8, 0.88));
}

.pill,
.detail-tags span,
.hero-benefits span {
  color: var(--cream);
  background: rgba(215, 189, 108, 0.1);
  border: 1px solid rgba(215, 189, 108, 0.22);
}

.trust-row {
  padding-top: 28px;
}

.trust-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(201, 231, 219, 0.13);
  background: linear-gradient(180deg, rgba(20, 31, 28, 0.86), rgba(9, 15, 14, 0.9));
}

.trust-grid article::before,
.service-card::before,
.detail-card::before,
.summary-guarantees article::before,
.thankyou-points article::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(88, 214, 173, 0.76);
}

.trust-grid strong,
.collection-card-copy strong,
.service-card strong,
.product-card h3,
.summary-highlight strong,
.summary-note strong,
.paypal-header strong,
.detail-card strong,
.product-preview-note strong,
.thankyou-points article,
.site-footer strong {
  color: var(--text);
}

.trust-grid span,
.collection-card-copy p,
.product-meta-text,
.summary-guarantees article,
.product-support-card span,
.detail-line span,
.detail-card span,
.product-preview-note span,
.paypal-header span {
  color: rgba(244, 247, 241, 0.62);
}

.section {
  padding-top: 78px;
}

.collection-card,
.product-card,
.service-card,
.spotlight-product-tile {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.collection-card:hover,
.product-card:hover,
.service-card:hover,
.spotlight-product-tile:hover,
.hero-mini-card:hover,
.hero-quick-card:hover,
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 214, 173, 0.34);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.product-card {
  padding: 12px;
}

.product-card .price-row,
.detail-line,
.price-breakdown div {
  border-color: rgba(201, 231, 219, 0.12);
}

.product-card-actions {
  gap: 10px;
}

.compare-price {
  color: rgba(244, 247, 241, 0.46);
}

.feature-band,
.spotlight-grid,
.checkout-grid,
.product-layout,
.thankyou-card {
  gap: 22px;
}

.feature-band-copy,
.spotlight-copy,
.checkout-panel,
.summary-panel,
.product-copy,
.thankyou-copy,
.newsletter-shell {
  padding: 30px;
}

.feature-band-product,
.spotlight-panel,
.summary-highlight,
.summary-note,
.product-preview-note {
  overflow: hidden;
}

.feature-band-meta {
  color: var(--text);
  background: linear-gradient(180deg, rgba(8, 13, 12, 0.16), rgba(8, 13, 12, 0.92));
}

.spotlight-product-tile,
.summary-guarantees article,
.thankyou-points article {
  border-radius: 8px;
  border: 1px solid rgba(201, 231, 219, 0.13);
  background: rgba(244, 247, 241, 0.04);
}

.newsletter-form input,
.checkout-form input,
.qty-row input {
  color: var(--text);
  border: 1px solid rgba(201, 231, 219, 0.18);
  background: rgba(4, 8, 8, 0.76);
}

.newsletter-form input::placeholder,
.checkout-form input::placeholder {
  color: rgba(244, 247, 241, 0.42);
}

.newsletter-form input:focus,
.checkout-form input:focus,
.qty-row input:focus {
  border-color: rgba(88, 214, 173, 0.7);
  box-shadow: 0 0 0 4px rgba(88, 214, 173, 0.12);
}

.checkout-main,
.product-main,
.thankyou-main {
  background: transparent;
}

.checkout-steps {
  gap: 10px;
}

.checkout-steps span {
  color: rgba(244, 247, 241, 0.62);
  border: 1px solid rgba(201, 231, 219, 0.12);
  background: rgba(244, 247, 241, 0.04);
}

.checkbox-row {
  color: rgba(244, 247, 241, 0.72);
}

.paypal-panel {
  border-radius: 8px;
  border: 1px solid rgba(88, 214, 173, 0.2);
  background:
    linear-gradient(135deg, rgba(88, 214, 173, 0.08), rgba(215, 189, 108, 0.06)),
    rgba(4, 8, 8, 0.66);
}

.paypal-message {
  color: rgba(244, 247, 241, 0.58);
}

.summary-panel {
  top: 98px;
}

.summary-highlight {
  background:
    linear-gradient(135deg, rgba(88, 214, 173, 0.12), rgba(215, 189, 108, 0.1)),
    rgba(8, 13, 12, 0.88);
}

.price-total dd {
  color: var(--gold);
}

.product-visual-badge {
  color: #06110e;
  border-radius: 8px;
  background: linear-gradient(135deg, #58d6ad, #d7bd6c);
}

.product-gallery-strip {
  margin-top: 12px;
}

.product-gallery-thumb {
  border-color: rgba(201, 231, 219, 0.14);
  background: rgba(244, 247, 241, 0.05);
}

.product-gallery-thumb.is-active {
  border-color: rgba(88, 214, 173, 0.78);
  box-shadow: 0 0 0 3px rgba(88, 214, 173, 0.12);
}

.product-support-grid,
.product-story-grid {
  gap: 12px;
}

.product-support-card,
.detail-card,
.product-preview-note {
  padding: 18px;
}

.detail-line strong {
  color: var(--text);
}

.qty-row label,
.checkout-form label {
  color: rgba(244, 247, 241, 0.72);
}

.thankyou-main {
  min-height: 100vh;
  padding: 42px 0 70px;
}

.thankyou-card {
  position: relative;
  overflow: hidden;
}

.thankyou-copy {
  color: var(--text);
}

.thankyou-points article {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 247, 241, 0.72);
}

.site-footer {
  margin-top: 86px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(9, 15, 14, 0.96), #050808),
    #050808;
  border-top: 1px solid rgba(88, 214, 173, 0.18);
}

.footer-grid a {
  color: rgba(244, 247, 241, 0.62);
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .section-heading h2,
  .feature-band-copy h2,
  .spotlight-copy h2,
  .summary-headline h2,
  .checkout-panel h1,
  .thankyou-copy h1,
  .product-copy h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 720px) {
  .promo-bar-inner {
    justify-content: flex-start;
  }

  .nav-shell {
    padding: 14px;
  }

  .hero-section {
    padding-top: 24px;
  }

  .hero-copy,
  .feature-band-copy,
  .spotlight-copy,
  .checkout-panel,
  .summary-panel,
  .product-copy,
  .thankyou-copy,
  .newsletter-shell {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .section-heading h2,
  .feature-band-copy h2,
  .spotlight-copy h2,
  .summary-headline h2,
  .checkout-panel h1,
  .thankyou-copy h1,
  .product-copy h1 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .hero-metric-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .product-card-actions,
  .detail-actions {
    align-items: stretch;
  }

  .button,
  .add-button,
  .ghost-button {
    justify-content: center;
    min-height: 46px;
  }
}

.summary-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.summary-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 231, 219, 0.14);
  background: rgba(244, 247, 241, 0.06);
}

.summary-product div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.summary-product span,
.summary-item-controls span {
  color: rgba(244, 247, 241, 0.6);
}

.summary-item {
  border: 1px solid rgba(201, 231, 219, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 30, 27, 0.94), rgba(7, 13, 12, 0.94)),
    rgba(10, 17, 16, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.summary-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cart-quantity-control {
  display: inline-grid;
  grid-template-columns: 36px 54px 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(201, 231, 219, 0.16);
  border-radius: 8px;
  background: rgba(244, 247, 241, 0.05);
}

.cart-quantity-control button,
.cart-quantity-control input,
.summary-remove-button {
  border: 0;
  color: var(--text);
  background: transparent;
}

.cart-quantity-control button {
  min-height: 38px;
  cursor: pointer;
}

.cart-quantity-control input {
  width: 54px;
  min-height: 38px;
  padding: 0;
  text-align: center;
  border-left: 1px solid rgba(201, 231, 219, 0.12);
  border-right: 1px solid rgba(201, 231, 219, 0.12);
}

.cart-quantity-control input::-webkit-outer-spin-button,
.cart-quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.summary-remove-button {
  cursor: pointer;
  color: rgba(244, 247, 241, 0.66);
  font-weight: 700;
}

.summary-remove-button:hover {
  color: var(--brand);
}

.cart-empty-state {
  gap: 10px;
  min-height: 220px;
  text-align: center;
}

.policy-main {
  padding: 42px 0 72px;
}

.policy-hero,
.policy-card,
.contact-panel {
  border-radius: 8px;
  border: 1px solid rgba(201, 231, 219, 0.13);
  background:
    linear-gradient(180deg, rgba(20, 31, 28, 0.94), rgba(10, 16, 15, 0.94)),
    rgba(13, 21, 19, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.policy-hero {
  display: grid;
  gap: 16px;
  padding: 34px;
  margin-bottom: 22px;
}

.policy-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.policy-hero p,
.policy-card p,
.policy-card li,
.contact-panel p {
  color: rgba(244, 247, 241, 0.68);
  line-height: 1.72;
}

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

.policy-card,
.contact-panel {
  padding: 26px;
}

.policy-card h2,
.contact-panel h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.25rem;
}

.policy-card p,
.contact-panel p {
  margin: 0 0 12px;
}

.policy-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-list a,
.contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(201, 231, 219, 0.13);
  color: rgba(244, 247, 241, 0.72);
  background: rgba(244, 247, 241, 0.04);
}

@media (max-width: 720px) {
  .summary-item-top,
  .summary-item-controls,
  .contact-list a,
  .contact-list span {
    display: grid;
  }

  .summary-product {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .summary-product img {
    width: 56px;
    height: 56px;
  }

  .policy-hero,
  .policy-card,
  .contact-panel {
    padding: 22px;
  }

  .policy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Mystic luxury storefront direction */
:root {
  --bg: #0d080d;
  --bg-soft: #171016;
  --panel: rgba(31, 20, 29, 0.82);
  --panel-strong: rgba(43, 27, 38, 0.9);
  --panel-dark: #120b12;
  --text: #fff8ea;
  --muted: #c7b8b1;
  --line: rgba(229, 198, 126, 0.18);
  --brand: #d7b86d;
  --brand-strong: #a86fbd;
  --forest: #2d6656;
  --gold: #e3c77d;
  --cream: #fff5de;
  --shadow-soft: 0 24px 70px rgba(3, 1, 4, 0.42);
  --shadow-strong: 0 34px 110px rgba(3, 1, 4, 0.58);
  --radius-2xl: 8px;
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
}

body {
  color: var(--text);
  background:
    linear-gradient(140deg, rgba(70, 34, 67, 0.36) 0%, transparent 34%),
    linear-gradient(220deg, rgba(45, 102, 86, 0.24) 0%, transparent 36%),
    linear-gradient(180deg, #120912 0%, #0c080d 46%, #110d0f 100%);
}

body::before {
  display: block;
  z-index: -2;
  opacity: 0.54;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(227, 199, 125, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 22%, rgba(168, 111, 189, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 38%, rgba(114, 183, 159, 0.22) 0 1px, transparent 2px),
    linear-gradient(135deg, rgba(227, 199, 125, 0.08), transparent 30%, rgba(168, 111, 189, 0.07) 68%, transparent);
  background-size: 260px 260px, 340px 340px, 300px 300px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32));
}

body::after {
  background:
    linear-gradient(90deg, rgba(7, 4, 7, 0.86), transparent 20%, transparent 80%, rgba(7, 4, 7, 0.86)),
    linear-gradient(180deg, transparent, rgba(28, 14, 24, 0.42));
}

.promo-bar {
  background: linear-gradient(90deg, #1b1018, #392035 48%, #14100c);
  color: #f7dfaa;
  border-bottom: 1px solid rgba(227, 199, 125, 0.24);
}

.promo-bar-inner span::before {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(227, 199, 125, 0.64);
}

.site-header {
  background: linear-gradient(180deg, rgba(13, 8, 13, 0.9), rgba(13, 8, 13, 0.36));
  border-bottom: 1px solid rgba(227, 199, 125, 0.12);
}

.nav-shell {
  border-color: rgba(227, 199, 125, 0.2);
  background: rgba(19, 12, 18, 0.74);
  box-shadow: 0 18px 50px rgba(3, 1, 4, 0.34);
}

.brand-mark {
  color: #1b1017;
  background: linear-gradient(135deg, #f5e4a8 0%, #c99a49 48%, #a86fbd 100%);
  box-shadow: 0 16px 34px rgba(227, 199, 125, 0.22);
}

.brand-copy strong,
.hero-copy h1,
.hero-product-copy h2,
.section-heading h2,
.feature-band-copy h2,
.spotlight-copy h2,
.summary-headline h2,
.product-copy h1,
.checkout-panel h1,
.thankyou-copy h1,
.policy-hero h1 {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy small,
.main-nav a,
.cart-link {
  color: rgba(255, 248, 234, 0.72);
}

.main-nav a:hover,
.text-link,
.site-footer a:hover {
  color: var(--gold);
}

.cart-link {
  border-color: rgba(227, 199, 125, 0.28);
  background: rgba(227, 199, 125, 0.08);
}

.cart-link span {
  color: #1b1017;
  background: linear-gradient(135deg, #f0d98c, #a86fbd);
}

.hero-copy,
.hero-stage,
.checkout-panel,
.summary-panel,
.product-copy,
.product-visual-shell,
.thankyou-card,
.newsletter-shell,
.feature-band-copy,
.feature-band-product,
.spotlight-copy,
.spotlight-panel,
.collection-card,
.product-card,
.service-card,
.hero-product-card,
.hero-mini-card,
.highlight-card,
.hero-quick-card,
.hero-metric-card,
.product-support-card,
.detail-card,
.product-preview-note,
.summary-highlight,
.summary-note,
.loading-card,
.error-card,
.empty-card,
.policy-hero,
.policy-card,
.contact-panel,
.summary-item {
  border: 1px solid rgba(227, 199, 125, 0.16);
  background:
    linear-gradient(180deg, rgba(40, 25, 36, 0.9), rgba(18, 11, 18, 0.92)),
    rgba(25, 15, 23, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-copy::before,
.product-copy::before,
.checkout-panel::before,
.thankyou-card::before,
.newsletter-shell::before {
  background-image:
    linear-gradient(135deg, rgba(227, 199, 125, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 24%, rgba(168, 111, 189, 0.2), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(45, 102, 86, 0.18), transparent 30%);
  background-size: 88px 88px, 100% 100%, 100% 100%;
  opacity: 0.34;
}

.hero-copy h1 {
  max-width: 780px;
  color: var(--cream);
  font-size: clamp(3.3rem, 5vw, 6.1rem);
  line-height: 0.86;
}

.section-heading h2,
.feature-band-copy h2,
.spotlight-copy h2,
.summary-headline h2,
.checkout-panel h1,
.thankyou-copy h1,
.product-copy h1,
.policy-hero h1 {
  color: var(--cream);
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 3.4vw, 4rem);
}

.hero-text,
.panel-text,
.feature-band-copy p,
.spotlight-copy p,
.service-card p,
.newsletter-shell p,
.product-copy p,
.product-intro,
.summary-highlight p,
.summary-note p,
.thankyou-copy p,
.policy-hero p,
.policy-card p,
.policy-card li,
.contact-panel p,
.site-footer p {
  color: rgba(255, 248, 234, 0.68);
}

.eyebrow {
  color: #f0d98c;
  border-color: rgba(227, 199, 125, 0.34);
  background: rgba(227, 199, 125, 0.08);
}

.button-primary,
.add-button,
.checkout-steps .is-active {
  color: #1b1017;
  background: linear-gradient(135deg, #f0d98c 0%, #caa052 48%, #a86fbd 100%);
  border: 1px solid rgba(255, 248, 234, 0.18);
  box-shadow: 0 20px 42px rgba(168, 111, 189, 0.22);
}

.button-secondary,
.ghost-button {
  color: var(--cream);
  border-color: rgba(227, 199, 125, 0.22);
  background: rgba(255, 248, 234, 0.045);
}

.button-secondary:hover,
.ghost-button:hover {
  border-color: rgba(227, 199, 125, 0.5);
  background: rgba(227, 199, 125, 0.11);
}

.hero-card-primary {
  background:
    linear-gradient(145deg, rgba(53, 28, 48, 0.96), rgba(20, 12, 18, 0.95)),
    #1b1018;
  border-color: rgba(227, 199, 125, 0.24);
}

.hero-metric-card::after {
  background: linear-gradient(90deg, #e3c77d, #a86fbd, #2d6656);
}

.hero-metric-card strong,
.price {
  color: var(--gold);
}

.hero-ad-banner,
.hero-product-image,
.collection-preview,
.highlight-card,
.feature-band-product,
.spotlight-art-banner,
.product-media,
.product-visual-shell,
.thankyou-visual {
  background:
    linear-gradient(145deg, rgba(45, 20, 41, 0.86), rgba(7, 5, 8, 0.94)),
    #120b12;
}

.hero-ad-banner::after,
.hero-product-image::after,
.collection-preview::after,
.highlight-card::after,
.feature-band-product::after,
.spotlight-art-banner::after,
.product-media::before,
.product-visual-shell::after,
.thankyou-visual::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(11, 6, 11, 0.72)),
    linear-gradient(90deg, rgba(168, 111, 189, 0.12), transparent 45%, rgba(227, 199, 125, 0.11));
  mix-blend-mode: screen;
}

.hero-product-image img,
.collection-preview img,
.highlight-card img,
.feature-band-product img,
.spotlight-art-banner img,
.spotlight-product-tile img,
.product-media img,
.product-visual-shell img,
.thankyou-visual img {
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
}

.hero-ad-overlay,
.highlight-copy,
.feature-band-meta {
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(14, 8, 13, 0.92));
}

.pill,
.detail-tags span,
.hero-benefits span {
  color: #f7e8bf;
  border-color: rgba(227, 199, 125, 0.28);
  background: rgba(227, 199, 125, 0.09);
}

.trust-grid article,
.spotlight-product-tile,
.summary-guarantees article,
.thankyou-points article,
.contact-list a,
.contact-list span {
  border-color: rgba(227, 199, 125, 0.16);
  background: rgba(255, 248, 234, 0.045);
}

.trust-grid article::before,
.service-card::before,
.detail-card::before,
.summary-guarantees article::before,
.thankyou-points article::before {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(227, 199, 125, 0.64);
}

.trust-grid strong,
.collection-card-copy strong,
.service-card strong,
.product-card h3,
.summary-highlight strong,
.summary-note strong,
.paypal-header strong,
.detail-card strong,
.product-preview-note strong,
.thankyou-points article,
.site-footer strong,
.policy-card h2,
.contact-panel h2 {
  color: var(--cream);
}

.trust-grid span,
.collection-card-copy p,
.product-meta-text,
.summary-guarantees article,
.product-support-card span,
.detail-line span,
.detail-card span,
.product-preview-note span,
.paypal-header span,
.summary-product span,
.summary-item-controls span {
  color: rgba(255, 248, 234, 0.62);
}

.product-card:hover,
.collection-card:hover,
.service-card:hover,
.spotlight-product-tile:hover,
.hero-mini-card:hover,
.hero-quick-card:hover,
.highlight-card:hover {
  border-color: rgba(227, 199, 125, 0.38);
  box-shadow: var(--shadow-strong);
}

.newsletter-form input,
.checkout-form input,
.qty-row input {
  color: var(--cream);
  border-color: rgba(227, 199, 125, 0.2);
  background: rgba(8, 5, 8, 0.72);
}

.newsletter-form input:focus,
.checkout-form input:focus,
.qty-row input:focus {
  border-color: rgba(227, 199, 125, 0.72);
  box-shadow: 0 0 0 4px rgba(227, 199, 125, 0.12);
}

.paypal-panel {
  border-color: rgba(227, 199, 125, 0.22);
  background:
    linear-gradient(135deg, rgba(168, 111, 189, 0.12), rgba(227, 199, 125, 0.08)),
    rgba(16, 9, 15, 0.74);
}

.summary-highlight {
  background:
    linear-gradient(135deg, rgba(168, 111, 189, 0.12), rgba(227, 199, 125, 0.1)),
    rgba(24, 14, 22, 0.9);
}

.price-total dd {
  color: var(--gold);
}

.summary-product img {
  border-color: rgba(227, 199, 125, 0.18);
  background: rgba(255, 248, 234, 0.05);
}

.cart-quantity-control {
  border-color: rgba(227, 199, 125, 0.18);
  background: rgba(255, 248, 234, 0.05);
}

.summary-remove-button:hover {
  color: var(--gold);
}

.product-visual-badge {
  color: #1b1017;
  background: linear-gradient(135deg, #f0d98c, #a86fbd);
}

.product-gallery-thumb {
  border-color: rgba(227, 199, 125, 0.16);
  background: rgba(255, 248, 234, 0.05);
}

.product-gallery-thumb.is-active {
  border-color: rgba(227, 199, 125, 0.78);
  box-shadow: 0 0 0 3px rgba(227, 199, 125, 0.13);
}

.site-footer {
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(18, 10, 17, 0.98), #080507),
    #080507;
  border-top: 1px solid rgba(227, 199, 125, 0.18);
}

.footer-grid a {
  color: rgba(255, 248, 234, 0.62);
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    font-size: 3.3rem;
    line-height: 0.95;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: 2.65rem;
    line-height: 0.98;
  }

  .section-heading h2,
  .feature-band-copy h2,
  .spotlight-copy h2,
  .summary-headline h2,
  .checkout-panel h1,
  .thankyou-copy h1,
  .product-copy h1,
  .policy-hero h1 {
    font-size: 2.08rem;
  }
}

/* Bright champagne luxury gift-shop direction */
:root {
  --bg: #fbf6ed;
  --bg-soft: #f4eadc;
  --panel: rgba(255, 252, 246, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --panel-dark: #fffaf0;
  --text: #241c21;
  --muted: #75686e;
  --line: rgba(100, 75, 58, 0.14);
  --brand: #c89a4b;
  --brand-strong: #a982b8;
  --forest: #426f61;
  --gold: #c99b50;
  --cream: #fffaf0;
  --shadow-soft: 0 22px 60px rgba(120, 86, 55, 0.12);
  --shadow-strong: 0 34px 90px rgba(120, 86, 55, 0.2);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(199, 162, 215, 0.24), transparent 30%),
    radial-gradient(circle at 86% 4%, rgba(201, 155, 80, 0.2), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fbf3e8 44%, #f6ede3 100%);
}

body::before {
  display: block;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(201, 155, 80, 0.36) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 18%, rgba(169, 130, 184, 0.28) 0 1px, transparent 2px),
    linear-gradient(135deg, rgba(201, 155, 80, 0.08), transparent 38%, rgba(169, 130, 184, 0.08));
  background-size: 260px 260px, 340px 340px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
}

body::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.86), transparent 22%, transparent 78%, rgba(255, 253, 248, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 60%);
}

.promo-bar {
  color: #5e4630;
  background: linear-gradient(90deg, #fff8ea, #eadcf0 48%, #fff4df);
  border-bottom: 1px solid rgba(201, 155, 80, 0.22);
}

.promo-bar-inner span::before {
  background: #c99b50;
  box-shadow: 0 0 12px rgba(201, 155, 80, 0.34);
}

.site-header {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.42));
  border-bottom: 1px solid rgba(201, 155, 80, 0.16);
}

.nav-shell {
  border-color: rgba(201, 155, 80, 0.24);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 18px 44px rgba(120, 86, 55, 0.1);
}

.brand,
.brand-copy strong {
  color: var(--text);
}

.brand-mark {
  color: #2b2018;
  background: linear-gradient(135deg, #f7df9a 0%, #c99b50 48%, #c7a2d7 100%);
  box-shadow: 0 14px 30px rgba(201, 155, 80, 0.22);
}

.brand-copy small,
.main-nav a,
.cart-link {
  color: rgba(36, 28, 33, 0.68);
}

.main-nav a:hover,
.text-link,
.site-footer a:hover {
  color: #9a6d2f;
}

.cart-link {
  border-color: rgba(201, 155, 80, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.cart-link span {
  color: #2b2018;
  background: linear-gradient(135deg, #f4d985, #c7a2d7);
}

.hero-copy,
.hero-stage,
.checkout-panel,
.summary-panel,
.product-copy,
.product-visual-shell,
.thankyou-card,
.newsletter-shell,
.feature-band-copy,
.feature-band-product,
.spotlight-copy,
.spotlight-panel,
.collection-card,
.product-card,
.service-card,
.hero-product-card,
.hero-mini-card,
.highlight-card,
.hero-quick-card,
.hero-metric-card,
.product-support-card,
.detail-card,
.product-preview-note,
.summary-highlight,
.summary-note,
.loading-card,
.error-card,
.empty-card,
.policy-hero,
.policy-card,
.contact-panel,
.summary-item {
  color: var(--text);
  border: 1px solid rgba(100, 75, 58, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 240, 0.9)),
    rgba(255, 252, 246, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-copy::before,
.product-copy::before,
.checkout-panel::before,
.thankyou-card::before,
.newsletter-shell::before {
  opacity: 0.2;
  background-image:
    linear-gradient(135deg, rgba(201, 155, 80, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 20% 24%, rgba(199, 162, 215, 0.24), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(66, 111, 97, 0.12), transparent 32%);
  background-size: 98px 98px, 100% 100%, 100% 100%;
}

.hero-copy h1 {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(3.15rem, 5vw, 5.8rem);
  line-height: 0.88;
}

.section-heading h2,
.feature-band-copy h2,
.spotlight-copy h2,
.summary-headline h2,
.checkout-panel h1,
.thankyou-copy h1,
.product-copy h1,
.policy-hero h1 {
  color: var(--text);
}

.hero-text,
.panel-text,
.feature-band-copy p,
.spotlight-copy p,
.service-card p,
.newsletter-shell p,
.product-copy p,
.product-intro,
.summary-highlight p,
.summary-note p,
.thankyou-copy p,
.policy-hero p,
.policy-card p,
.policy-card li,
.contact-panel p,
.site-footer p {
  color: rgba(36, 28, 33, 0.66);
}

.eyebrow {
  color: #8c642e;
  border-color: rgba(201, 155, 80, 0.28);
  background: rgba(255, 246, 224, 0.9);
}

.button-primary,
.add-button,
.checkout-steps .is-active {
  color: #2b2018;
  background: linear-gradient(135deg, #f5d982 0%, #d5a957 52%, #c7a2d7 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 34px rgba(201, 155, 80, 0.18);
}

.button-secondary,
.ghost-button {
  color: var(--text);
  border-color: rgba(100, 75, 58, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.button-secondary:hover,
.ghost-button:hover {
  border-color: rgba(201, 155, 80, 0.42);
  background: rgba(255, 246, 224, 0.92);
}

.hero-card-primary {
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(240, 222, 243, 0.86)),
    #fffaf0;
  border-color: rgba(201, 155, 80, 0.22);
}

.hero-card-primary .label,
.hero-card-primary p {
  color: rgba(36, 28, 33, 0.65);
}

.hero-metric-card::after {
  background: linear-gradient(90deg, #d5a957, #c7a2d7, #8db8aa);
}

.hero-metric-card strong,
.price {
  color: #9b6d2e;
}

.hero-ad-banner,
.hero-product-image,
.collection-preview,
.highlight-card,
.feature-band-product,
.spotlight-art-banner,
.product-media,
.product-visual-shell,
.thankyou-visual {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 236, 225, 0.94)),
    #fffdf8;
}

.hero-ad-banner::after,
.hero-product-image::after,
.collection-preview::after,
.highlight-card::after,
.feature-band-product::after,
.spotlight-art-banner::after,
.product-media::before,
.product-visual-shell::after,
.thankyou-visual::after {
  background:
    linear-gradient(180deg, transparent 54%, rgba(255, 248, 236, 0.44)),
    linear-gradient(90deg, rgba(199, 162, 215, 0.18), transparent 44%, rgba(201, 155, 80, 0.13));
  mix-blend-mode: multiply;
}

.hero-product-image img,
.collection-preview img,
.highlight-card img,
.feature-band-product img,
.spotlight-art-banner img,
.spotlight-product-tile img,
.product-media img,
.product-visual-shell img,
.thankyou-visual img {
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
}

.hero-ad-overlay,
.highlight-copy,
.feature-band-meta {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 252, 246, 0.92));
}

.pill,
.detail-tags span,
.hero-benefits span {
  color: #725126;
  border-color: rgba(201, 155, 80, 0.24);
  background: rgba(255, 246, 224, 0.82);
}

.trust-grid article,
.spotlight-product-tile,
.summary-guarantees article,
.thankyou-points article,
.contact-list a,
.contact-list span {
  border-color: rgba(100, 75, 58, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.trust-grid article::before,
.service-card::before,
.detail-card::before,
.summary-guarantees article::before,
.thankyou-points article::before {
  background: #c99b50;
  box-shadow: 0 0 14px rgba(201, 155, 80, 0.32);
}

.trust-grid strong,
.collection-card-copy strong,
.service-card strong,
.product-card h3,
.summary-highlight strong,
.summary-note strong,
.paypal-header strong,
.detail-card strong,
.product-preview-note strong,
.thankyou-points article,
.site-footer strong,
.policy-card h2,
.contact-panel h2,
.detail-line strong {
  color: var(--text);
}

.trust-grid span,
.collection-card-copy p,
.product-meta-text,
.summary-guarantees article,
.product-support-card span,
.detail-line span,
.detail-card span,
.product-preview-note span,
.paypal-header span,
.summary-product span,
.summary-item-controls span {
  color: rgba(36, 28, 33, 0.62);
}

.product-card:hover,
.collection-card:hover,
.service-card:hover,
.spotlight-product-tile:hover,
.hero-mini-card:hover,
.hero-quick-card:hover,
.highlight-card:hover {
  border-color: rgba(201, 155, 80, 0.32);
  box-shadow: var(--shadow-strong);
}

.newsletter-form input,
.checkout-form input,
.qty-row input {
  color: var(--text);
  border-color: rgba(100, 75, 58, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.checkout-form label,
.qty-row label,
.checkbox-row,
.paypal-header span,
.paypal-message {
  color: rgba(36, 28, 33, 0.68);
}

.checkout-steps span {
  color: rgba(36, 28, 33, 0.6);
  border-color: rgba(100, 75, 58, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.newsletter-form input::placeholder,
.checkout-form input::placeholder {
  color: rgba(36, 28, 33, 0.42);
}

.newsletter-form input:focus,
.checkout-form input:focus,
.qty-row input:focus {
  border-color: rgba(201, 155, 80, 0.62);
  box-shadow: 0 0 0 4px rgba(201, 155, 80, 0.12);
}

.paypal-panel {
  border-color: rgba(201, 155, 80, 0.18);
  background:
    linear-gradient(135deg, rgba(201, 155, 80, 0.08), rgba(199, 162, 215, 0.12)),
    rgba(255, 255, 255, 0.7);
}

.summary-highlight {
  background:
    linear-gradient(135deg, rgba(255, 246, 224, 0.9), rgba(240, 222, 243, 0.74)),
    rgba(255, 255, 255, 0.74);
}

.price-total dd {
  color: #9b6d2e;
}

.summary-product img {
  border-color: rgba(201, 155, 80, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.cart-quantity-control {
  border-color: rgba(100, 75, 58, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.cart-quantity-control button,
.cart-quantity-control input,
.summary-remove-button {
  color: var(--text);
}

.summary-remove-button:hover {
  color: #9b6d2e;
}

.product-visual-badge {
  color: #2b2018;
  background: linear-gradient(135deg, #f5d982, #c7a2d7);
}

.product-gallery-thumb {
  border-color: rgba(100, 75, 58, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.product-gallery-thumb.is-active {
  border-color: rgba(201, 155, 80, 0.72);
  box-shadow: 0 0 0 3px rgba(201, 155, 80, 0.12);
}

.site-footer {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.86), #fff8ea),
    #fff8ea;
  border-top: 1px solid rgba(201, 155, 80, 0.16);
}

.footer-grid a {
  color: rgba(36, 28, 33, 0.62);
}

.compare-price {
  color: rgba(36, 28, 33, 0.48);
}

.product-card .price-row,
.detail-line,
.price-breakdown div {
  border-color: rgba(100, 75, 58, 0.12);
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    font-size: 3.2rem;
    line-height: 0.96;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .section-heading h2,
  .feature-band-copy h2,
  .spotlight-copy h2,
  .summary-headline h2,
  .checkout-panel h1,
  .thankyou-copy h1,
  .product-copy h1,
  .policy-hero h1 {
    font-size: 2rem;
  }
}

/* Final bright-theme contrast pass for small home-page signal text. */
.hero-metric-card span,
.hero-quick-label,
.label {
  color: rgba(36, 28, 33, 0.58);
}

.hero-quick-card strong,
.hero-metric-card strong {
  color: #8c642e;
}

.hero-quick-card {
  background: rgba(255, 255, 255, 0.72);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(100, 75, 58, 0.16);
  border-radius: 999px;
  color: rgba(36, 28, 33, 0.68);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 155, 80, 0.42);
  background: rgba(255, 246, 224, 0.92);
}

.language-toggle [data-language-current] {
  color: #8c642e;
}

.language-toggle-separator,
.language-toggle [data-language-next] {
  opacity: 0.56;
}

/* Final mobile storefront polish. Keep the luxury artwork readable on narrow screens. */
@media (max-width: 720px) {
  .hero-grid,
  .feature-band,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .product-grid,
  .highlight-grid,
  .service-grid,
  .trust-grid,
  .spotlight-product-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card-large {
    grid-column: auto;
  }

  .hero-ad-banner {
    display: grid;
    min-height: 0;
    padding: 10px;
    background: linear-gradient(140deg, rgba(255, 251, 244, 0.96), rgba(238, 224, 243, 0.76));
  }

  .hero-ad-banner img {
    min-height: 0;
    height: auto;
    aspect-ratio: 1.2;
    border-radius: 18px;
  }

  .hero-ad-banner::after {
    display: none;
  }

  .hero-ad-overlay {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -26px 10px 8px;
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 252, 246, 0.9);
    border-color: rgba(211, 168, 82, 0.28);
    box-shadow: 0 18px 46px rgba(83, 55, 30, 0.12);
  }

  .hero-ad-overlay strong {
    font-size: 1rem;
    line-height: 1.14;
  }

  .hero-ad-overlay > span:last-child {
    color: rgba(46, 38, 43, 0.68);
  }

  .feature-band-product,
  .spotlight-panel {
    padding: 18px;
  }
}

/* Checkout and confirmation polish for the bright luxury storefront. */
.product-assurance-strip,
.checkout-assurance,
.thankyou-order-meta {
  display: grid;
  gap: 12px;
}

.product-assurance-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 4px 0 2px;
}

.product-assurance-strip span,
.checkout-assurance article,
.thankyou-order-meta span {
  position: relative;
  padding: 14px 16px 14px 34px;
  border-radius: 14px;
  border: 1px solid rgba(201, 155, 80, 0.18);
  background: rgba(255, 252, 246, 0.72);
  color: rgba(36, 28, 33, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 14px 34px rgba(83, 55, 30, 0.07);
}

.product-assurance-strip span::before,
.checkout-assurance article::before,
.thankyou-order-meta span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c99b50;
  box-shadow: 0 0 14px rgba(201, 155, 80, 0.34);
}

.checkout-assurance {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 22px;
}

.checkout-assurance strong,
.thankyou-order-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.94rem;
}

.thankyou-main {
  min-height: auto;
  padding: 34px 0 64px;
  place-items: start center;
}

.thankyou-card {
  margin-top: 0;
  width: min(1120px, calc(100% - 32px));
}

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

@media (max-width: 960px) {
  .product-assurance-strip,
  .checkout-assurance,
  .thankyou-order-meta {
    grid-template-columns: 1fr;
  }
}

/* Contact page readability fix: only the outer support rows should be framed. */
.contact-list > a,
.contact-list > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.contact-list > a strong,
.contact-list > span strong {
  color: var(--text);
}

.contact-list > a > span,
.contact-list > span > span {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8c642e;
  box-shadow: none;
  font-weight: 600;
}

@media (max-width: 720px) {
  .contact-list > a,
  .contact-list > span {
    grid-template-columns: 1fr;
  }
}

/* Full catalog / collection page. */
.shop-main {
  padding: 34px 0 64px;
}

.shop-hero {
  padding: 34px 0 10px;
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: stretch;
}

.shop-hero-copy,
.shop-hero-aside,
.shop-toolbar {
  border: 1px solid rgba(100, 75, 58, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 240, 0.9)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.shop-hero-copy,
.shop-hero-aside {
  border-radius: var(--radius-2xl);
  padding: 34px;
}

.shop-hero-copy {
  display: grid;
  gap: 16px;
}

.shop-hero-copy h1 {
  max-width: 920px;
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.94;
}

.shop-hero-copy p,
.shop-hero-aside small,
.shop-status-row p {
  margin: 0;
  color: rgba(36, 28, 33, 0.66);
  line-height: 1.7;
}

.shop-hero-aside {
  display: grid;
  align-content: center;
  gap: 10px;
}

.shop-hero-aside span {
  color: #8c642e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero-aside strong {
  color: var(--text);
  font-size: 2rem;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(160px, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.shop-toolbar label {
  display: grid;
  gap: 8px;
  color: rgba(36, 28, 33, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.shop-toolbar input,
.shop-toolbar select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(100, 75, 58, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
  padding: 0 14px;
}

.shop-toolbar input:focus,
.shop-toolbar select:focus {
  outline: 2px solid rgba(201, 155, 80, 0.16);
  border-color: rgba(201, 155, 80, 0.62);
}

.shop-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
}

.shop-clear-button {
  min-height: 42px;
  padding: 0 18px;
}

.shop-product-grid {
  align-items: stretch;
}

.shop-card-meta {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(201, 155, 80, 0.16);
  background: rgba(255, 252, 246, 0.72);
  color: rgba(36, 28, 33, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.shop-card-meta span:first-child {
  color: #8c642e;
  font-weight: 800;
}

.shop-empty-card {
  grid-column: 1 / -1;
}

@media (max-width: 1080px) {
  .shop-hero-grid,
  .shop-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .shop-main {
    padding: 22px 0 48px;
  }

  .shop-hero-grid,
  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .shop-hero-copy,
  .shop-hero-aside,
  .shop-toolbar {
    padding: 22px;
  }

  .shop-hero-copy h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .shop-status-row {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    padding: 8px 0;
    font-size: 0.76rem;
  }

  .promo-bar-inner {
    justify-content: center;
    gap: 0;
  }

  .promo-bar-inner span {
    text-align: center;
    white-space: normal;
  }

  .promo-bar-inner span:not(:first-child),
  .promo-bar-inner span::before {
    display: none;
  }
}

/* STARFALL reference storefront refresh. Keep this as the final public-site skin. */
body:not([data-page="admin"]) {
  color: #171512;
  background: #faf9f6;
}

body:not([data-page="admin"])::before,
body:not([data-page="admin"])::after,
body:not([data-page="admin"]) .ambient,
body:not([data-page="admin"]) .promo-bar {
  display: none !important;
}

body:not([data-page="admin"]) .wrap {
  width: min(1320px, calc(100% - 48px));
}

body:not([data-page="admin"]) .site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0;
  border-bottom: 1px solid #e7e2d9;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(16px);
}

body:not([data-page="admin"]) .nav-shell {
  gap: 28px;
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body:not([data-page="admin"]) .brand {
  min-width: 220px;
  gap: 10px;
}

body:not([data-page="admin"]) .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 0;
  color: #171512;
  background: transparent;
  box-shadow: none;
  font-size: 0.72rem;
  font-weight: 800;
}

body:not([data-page="admin"]) .brand-mark::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background:
    linear-gradient(90deg, transparent 46%, currentColor 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, currentColor 46% 54%, transparent 54%);
  transform: rotate(26deg);
}

body:not([data-page="admin"]) .brand-mark {
  font-size: 0;
}

body:not([data-page="admin"]) .brand-copy strong {
  color: #171512;
  font-family: "Manrope", sans-serif;
  font-size: 1.16rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .brand-copy small {
  margin-top: 3px;
  color: #77716a;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .main-nav {
  flex: 1;
  justify-content: center;
  gap: 24px;
  color: #2d2a25;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .main-nav a::after {
  bottom: -8px;
}

body:not([data-page="admin"]) .cart-link,
body:not([data-page="admin"]) .language-toggle {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: 999px;
  color: #171512;
  background: transparent;
  box-shadow: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not([data-page="admin"]) .cart-link span {
  width: 22px;
  height: 22px;
  color: #fff;
  background: #171512;
  font-size: 0.72rem;
}

body:not([data-page="admin"]) .button,
body:not([data-page="admin"]) .add-button,
body:not([data-page="admin"]) .ghost-button {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

body:not([data-page="admin"]) .button-primary,
body:not([data-page="admin"]) .add-button {
  color: #fff;
  border: 1px solid #171512;
  background: #171512;
}

body:not([data-page="admin"]) .button-secondary,
body:not([data-page="admin"]) .ghost-button {
  color: #171512;
  border: 1px solid rgba(23, 21, 18, 0.28);
  background: transparent;
}

body:not([data-page="admin"]) .button:hover,
body:not([data-page="admin"]) .cart-link:hover,
body:not([data-page="admin"]) .add-button:hover,
body:not([data-page="admin"]) .ghost-button:hover,
body:not([data-page="admin"]) .language-toggle:hover {
  transform: translateY(-1px);
  border-color: #171512;
}

body[data-page="home"] {
  background: #faf9f6;
}

body[data-page="home"] .site-header {
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.96);
}

body[data-page="home"] .brand-copy strong,
body[data-page="home"] .brand-mark,
body[data-page="home"] .main-nav,
body[data-page="home"] .main-nav a,
body[data-page="home"] .cart-link,
body[data-page="home"] .language-toggle {
  color: #fff;
}

body[data-page="home"] .brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .cart-link,
body[data-page="home"] .language-toggle {
  border-color: rgba(255, 255, 255, 0.24);
}

body[data-page="home"] .cart-link span {
  color: #171512;
  background: #d6c0a0;
}

body[data-page="home"] .hero-section {
  min-height: 760px;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 38%, rgba(214, 192, 160, 0.14), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 5, 5, 0.96) 48%, rgba(3, 5, 5, 0.88) 100%),
    #030504;
}

body[data-page="home"] .hero-grid {
  min-height: 760px;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.7fr);
  gap: 44px;
  align-items: end;
  padding: 132px 0 42px;
}

body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-stage,
body[data-page="home"] .hero-copy-panel,
body[data-page="home"] .hero-metric-card,
body[data-page="home"] .hero-product-card,
body[data-page="home"] .hero-mini-card {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="home"] .hero-copy {
  padding: 0;
  gap: 78px;
}

body[data-page="home"] .hero-copy-panel {
  max-width: 630px;
  gap: 18px;
}

body[data-page="home"] .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border: 0;
  color: #d6c0a0;
  background: transparent;
}

body[data-page="home"] .hero-copy h1 {
  max-width: 640px;
  color: #fff;
  font-size: 4.6rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page="home"] .hero-text {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.75;
}

body[data-page="home"] .hero-actions {
  margin-top: 8px;
}

body[data-page="home"] .button-primary {
  color: #171512;
  border-color: #d6c0a0;
  background: #d6c0a0;
}

body[data-page="home"] .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

body[data-page="home"] .hero-metric-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .hero-metric-card {
  position: relative;
  min-height: 74px;
  padding: 0 0 0 28px;
}

body[data-page="home"] .hero-metric-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(214, 192, 160, 0.9);
  border-radius: 50%;
}

body[data-page="home"] .hero-metric-card::after {
  display: none;
}

body[data-page="home"] .hero-metric-card strong {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.3;
}

body[data-page="home"] .hero-metric-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.55;
}

body[data-page="home"] .hero-ad-banner,
body[data-page="home"] .hero-quick-grid,
body[data-page="home"] .hero-benefits {
  display: none;
}

body[data-page="home"] .hero-stage {
  align-self: stretch;
  align-content: end;
}

body[data-page="home"] .hero-card-primary {
  display: grid;
  grid-template-columns: 1fr;
  align-self: end;
  gap: 14px;
  max-width: 340px;
  margin-left: auto;
  padding: 14px;
  color: #fff;
  border: 1px solid rgba(214, 192, 160, 0.26);
  border-radius: 6px;
  background: rgba(7, 7, 7, 0.52);
}

body[data-page="home"] .hero-product-image {
  min-height: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

body[data-page="home"] .hero-product-image img {
  aspect-ratio: 1;
  object-fit: cover;
}

body[data-page="home"] .hero-product-copy {
  gap: 8px;
  padding: 2px;
}

body[data-page="home"] .hero-product-copy h2 {
  color: #fff;
  font-size: 1.72rem;
  line-height: 1.05;
  letter-spacing: 0;
}

body[data-page="home"] .hero-card-primary .label,
body[data-page="home"] .hero-card-primary p {
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .hero-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 340px;
  margin-left: auto;
}

body[data-page="home"] .hero-mini-card {
  padding: 0;
  color: #fff;
}

body[data-page="home"] .hero-mini-card img {
  aspect-ratio: 1;
  border-radius: 4px;
}

body:not([data-page="admin"]) .trust-row {
  padding: 0;
  background: #050505;
}

body:not([data-page="admin"]) .trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body:not([data-page="admin"]) .trust-grid article {
  min-height: 104px;
  padding: 26px 28px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

body:not([data-page="admin"]) .trust-grid article:last-child {
  border-right: 0;
}

body:not([data-page="admin"]) .trust-grid span {
  color: rgba(255, 255, 255, 0.64);
}

body:not([data-page="admin"]) .section {
  padding: 58px 0;
  background: #faf9f6;
}

body:not([data-page="admin"]) .section-heading {
  align-items: end;
  margin-bottom: 28px;
}

body:not([data-page="admin"]) .section-heading h2,
body:not([data-page="admin"]) .feature-band-copy h2,
body:not([data-page="admin"]) .spotlight-copy h2,
body:not([data-page="admin"]) .summary-headline h2,
body:not([data-page="admin"]) .checkout-panel h1,
body:not([data-page="admin"]) .thankyou-copy h1,
body:not([data-page="admin"]) .product-copy h1,
body:not([data-page="admin"]) .policy-hero h1,
body:not([data-page="admin"]) .shop-hero-copy h1 {
  color: #171512;
  font-size: 2.52rem;
  line-height: 1.05;
  letter-spacing: 0;
}

body:not([data-page="admin"]) .eyebrow,
body:not([data-page="admin"]) .label,
body:not([data-page="admin"]) .hero-quick-label,
body:not([data-page="admin"]) .product-visual-badge {
  padding: 0;
  border: 0;
  color: #806545;
  background: transparent;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

body:not([data-page="admin"]) .collection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body:not([data-page="admin"]) .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body:not([data-page="admin"]) .collection-card,
body:not([data-page="admin"]) .highlight-card,
body:not([data-page="admin"]) .feature-band-copy,
body:not([data-page="admin"]) .feature-band-product,
body:not([data-page="admin"]) .spotlight-copy,
body:not([data-page="admin"]) .spotlight-panel,
body:not([data-page="admin"]) .service-card,
body:not([data-page="admin"]) .newsletter-shell,
body:not([data-page="admin"]) .product-visual-shell,
body:not([data-page="admin"]) .product-copy,
body:not([data-page="admin"]) .product-support-card,
body:not([data-page="admin"]) .checkout-panel,
body:not([data-page="admin"]) .summary-panel,
body:not([data-page="admin"]) .thankyou-card,
body:not([data-page="admin"]) .loading-card,
body:not([data-page="admin"]) .error-card,
body:not([data-page="admin"]) .empty-card,
body:not([data-page="admin"]) .product-card,
body:not([data-page="admin"]) .policy-hero,
body:not([data-page="admin"]) .policy-card,
body:not([data-page="admin"]) .contact-panel,
body:not([data-page="admin"]) .shop-hero-copy,
body:not([data-page="admin"]) .shop-hero-aside,
body:not([data-page="admin"]) .shop-toolbar,
body:not([data-page="admin"]) .summary-item {
  border: 1px solid #ece8e0;
  border-radius: 6px;
  color: #171512;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

body:not([data-page="admin"]) .collection-card,
body:not([data-page="admin"]) .product-card {
  padding: 14px;
}

body:not([data-page="admin"]) .collection-preview,
body:not([data-page="admin"]) .product-media,
body:not([data-page="admin"]) .highlight-card img,
body:not([data-page="admin"]) .feature-band-product img,
body:not([data-page="admin"]) .spotlight-art-banner,
body:not([data-page="admin"]) .product-visual-shell,
body:not([data-page="admin"]) .thankyou-visual {
  border-radius: 4px;
  background: #f5f3ef;
}

body:not([data-page="admin"]) .product-media {
  aspect-ratio: 1;
}

body:not([data-page="admin"]) .product-media::before,
body:not([data-page="admin"]) .product-media::after,
body:not([data-page="admin"]) .collection-preview::after,
body:not([data-page="admin"]) .highlight-card::after,
body:not([data-page="admin"]) .feature-band-product::after,
body:not([data-page="admin"]) .spotlight-art-banner::after,
body:not([data-page="admin"]) .product-visual-shell::after,
body:not([data-page="admin"]) .thankyou-visual::after {
  display: none;
}

body:not([data-page="admin"]) .product-card h3 {
  font-size: 0.95rem;
  line-height: 1.32;
}

body:not([data-page="admin"]) .price-row {
  align-items: flex-start;
}

body:not([data-page="admin"]) .price {
  color: #171512;
  font-size: 0.98rem;
}

body:not([data-page="admin"]) .compare-price {
  color: #9b948d;
}

body:not([data-page="admin"]) .pill,
body:not([data-page="admin"]) .detail-tags span,
body:not([data-page="admin"]) .hero-benefits span {
  padding: 6px 9px;
  border: 1px solid #e6dfd3;
  border-radius: 999px;
  color: #6e5b42;
  background: #faf7f0;
  font-size: 0.72rem;
}

body:not([data-page="admin"]) .product-meta-text,
body:not([data-page="admin"]) .hero-text,
body:not([data-page="admin"]) .panel-text,
body:not([data-page="admin"]) .collection-card p,
body:not([data-page="admin"]) .spotlight-copy p,
body:not([data-page="admin"]) .service-card p,
body:not([data-page="admin"]) .newsletter-shell p,
body:not([data-page="admin"]) .product-copy p,
body:not([data-page="admin"]) .product-support-card span,
body:not([data-page="admin"]) .summary-highlight p,
body:not([data-page="admin"]) .summary-note p,
body:not([data-page="admin"]) .thankyou-copy p,
body:not([data-page="admin"]) .site-footer p,
body:not([data-page="admin"]) .policy-hero p,
body:not([data-page="admin"]) .policy-card li,
body:not([data-page="admin"]) .contact-panel p,
body:not([data-page="admin"]) .shop-hero-copy p,
body:not([data-page="admin"]) .shop-hero-aside small,
body:not([data-page="admin"]) .shop-status-row p {
  color: #716a62;
  line-height: 1.72;
}

body:not([data-page="admin"]) .shop-main,
body:not([data-page="admin"]) .product-main,
body:not([data-page="admin"]) .checkout-main,
body:not([data-page="admin"]) .thankyou-main,
body:not([data-page="admin"]) .policy-main {
  padding: 48px 0 72px;
  background: #faf9f6;
}

body:not([data-page="admin"]) .shop-hero {
  padding: 0 0 24px;
}

body:not([data-page="admin"]) .shop-hero-grid {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
}

body:not([data-page="admin"]) .shop-hero-copy,
body:not([data-page="admin"]) .shop-hero-aside,
body:not([data-page="admin"]) .shop-toolbar,
body:not([data-page="admin"]) .checkout-panel,
body:not([data-page="admin"]) .summary-panel,
body:not([data-page="admin"]) .product-copy,
body:not([data-page="admin"]) .policy-hero,
body:not([data-page="admin"]) .policy-card,
body:not([data-page="admin"]) .contact-panel {
  padding: 28px;
}

body:not([data-page="admin"]) .shop-toolbar {
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(140px, 1fr));
}

body:not([data-page="admin"]) .shop-toolbar input,
body:not([data-page="admin"]) .shop-toolbar select,
body:not([data-page="admin"]) .newsletter-form input,
body:not([data-page="admin"]) .checkout-form input,
body:not([data-page="admin"]) .qty-row input {
  border: 1px solid #ded8ce;
  border-radius: 4px;
  color: #171512;
  background: #fff;
}

body:not([data-page="admin"]) .product-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.7fr);
  gap: 38px;
  align-items: start;
}

body:not([data-page="admin"]) .product-visual-shell {
  padding: 0;
  overflow: hidden;
}

body:not([data-page="admin"]) .product-visual-badge {
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  color: #171512;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.84);
}

body:not([data-page="admin"]) .product-gallery-thumb {
  border: 1px solid #e6dfd3;
  border-radius: 4px;
  background: #fff;
}

body:not([data-page="admin"]) .product-gallery-thumb.is-active {
  border-color: #171512;
  box-shadow: none;
}

body:not([data-page="admin"]) .product-copy {
  border: 0;
  background: transparent;
}

body:not([data-page="admin"]) .detail-line,
body:not([data-page="admin"]) .product-card .price-row,
body:not([data-page="admin"]) .price-breakdown div {
  border-color: #e6dfd3;
}

body:not([data-page="admin"]) .product-support-grid,
body:not([data-page="admin"]) .product-story-grid,
body:not([data-page="admin"]) .summary-guarantees,
body:not([data-page="admin"]) .checkout-assurance,
body:not([data-page="admin"]) .thankyou-order-meta {
  gap: 12px;
}

body:not([data-page="admin"]) .product-support-card,
body:not([data-page="admin"]) .detail-card,
body:not([data-page="admin"]) .summary-guarantees article,
body:not([data-page="admin"]) .product-preview-note,
body:not([data-page="admin"]) .checkout-assurance article,
body:not([data-page="admin"]) .thankyou-order-meta span {
  border: 1px solid #e6dfd3;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

body:not([data-page="admin"]) .checkout-steps span {
  border: 1px solid #e6dfd3;
  border-radius: 4px;
  background: #fff;
}

body:not([data-page="admin"]) .checkout-steps .is-active {
  color: #fff;
  border-color: #171512;
  background: #171512;
}

body:not([data-page="admin"]) .summary-highlight,
body:not([data-page="admin"]) .paypal-panel,
body:not([data-page="admin"]) .summary-note,
body:not([data-page="admin"]) .shop-card-meta {
  border: 1px solid #e6dfd3;
  border-radius: 4px;
  background: #fff;
}

body:not([data-page="admin"]) .cart-quantity-control {
  border: 1px solid #e6dfd3;
  border-radius: 4px;
  background: #fff;
}

body:not([data-page="admin"]) .summary-remove-button {
  color: #171512;
}

body:not([data-page="admin"]) .thankyou-card {
  width: min(1120px, calc(100% - 48px));
}

body:not([data-page="admin"]) .site-footer {
  padding: 54px 0 34px;
  color: #171512;
  border-top: 1px solid #e7e2d9;
  background: #faf9f6;
}

body:not([data-page="admin"]) .footer-grid {
  padding: 0;
  border-top: 0;
}

body:not([data-page="admin"]) .footer-grid a {
  color: #716a62;
}

@media (max-width: 1120px) {
  body:not([data-page="admin"]) .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  body[data-page="home"] .hero-grid,
  body:not([data-page="admin"]) .product-layout,
  body:not([data-page="admin"]) .checkout-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-stage,
  body[data-page="home"] .hero-card-primary,
  body[data-page="home"] .hero-mini-grid {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  body:not([data-page="admin"]) .wrap {
    width: min(100% - 28px, 1320px);
  }

  body:not([data-page="admin"]) .nav-shell {
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
  }

  body:not([data-page="admin"]) .brand {
    min-width: 0;
  }

  body:not([data-page="admin"]) .main-nav {
    width: 100%;
    gap: 16px;
    order: 4;
  }

  body[data-page="home"] .hero-section {
    min-height: auto;
    background:
      radial-gradient(circle at 52% 118px, rgba(214, 192, 160, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(3, 5, 5, 0.9) 58%, rgba(3, 5, 5, 0.98) 100%),
      #030504;
  }

  body[data-page="home"] .hero-grid {
    min-height: auto;
    padding: 188px 0 34px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: 3rem;
    line-height: 1;
  }

  body[data-page="home"] .hero-metric-row,
  body:not([data-page="admin"]) .trust-grid,
  body:not([data-page="admin"]) .collection-grid,
  body:not([data-page="admin"]) .product-grid,
  body:not([data-page="admin"]) .highlight-grid,
  body:not([data-page="admin"]) .service-grid,
  body:not([data-page="admin"]) .shop-hero-grid,
  body:not([data-page="admin"]) .shop-toolbar,
  body:not([data-page="admin"]) .product-support-grid,
  body:not([data-page="admin"]) .product-story-grid,
  body:not([data-page="admin"]) .checkout-steps,
  body:not([data-page="admin"]) .form-grid,
  body:not([data-page="admin"]) .form-grid-third,
  body:not([data-page="admin"]) .summary-guarantees {
    grid-template-columns: 1fr;
  }

  body:not([data-page="admin"]) .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body:not([data-page="admin"]) .section-heading,
  body:not([data-page="admin"]) .footer-grid {
    align-items: flex-start;
  }

  body:not([data-page="admin"]) .section-heading h2,
  body:not([data-page="admin"]) .feature-band-copy h2,
  body:not([data-page="admin"]) .spotlight-copy h2,
  body:not([data-page="admin"]) .summary-headline h2,
  body:not([data-page="admin"]) .checkout-panel h1,
  body:not([data-page="admin"]) .thankyou-copy h1,
  body:not([data-page="admin"]) .product-copy h1,
  body:not([data-page="admin"]) .policy-hero h1,
  body:not([data-page="admin"]) .shop-hero-copy h1 {
    font-size: 2rem;
    line-height: 1.08;
  }
}

/* Cosmic Core Stone homepage image-to-code refresh from the provided STARFALL reference. */
body[data-page="home"] {
  --star-ink: #07090a;
  --star-ink-2: #0d1013;
  --star-gold: #caa56c;
  --star-gold-2: #e1c695;
  --star-paper: #ebe7df;
  --star-line: rgba(202, 165, 108, 0.34);
  margin: 0;
  color: #111;
  background: var(--star-paper);
  font-family: "Manrope", sans-serif;
}

body[data-page="home"]::before,
body[data-page="home"]::after {
  display: none;
}

body[data-page="home"] .wrap {
  width: min(1264px, calc(100% - 176px));
}

body[data-page="home"] .star-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent);
  backdrop-filter: none;
}

body[data-page="home"] .star-nav {
  display: grid;
  grid-template-columns: minmax(320px, auto) minmax(520px, 1fr) repeat(4, auto);
  align-items: center;
  gap: 24px;
  padding: 32px 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .star-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

body[data-page="home"] .star-logo-image {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

body[data-page="home"] .star-header .star-brand {
  width: 270px;
  height: 72px;
  align-items: flex-start;
  overflow: hidden;
}

body[data-page="home"] .star-brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .star-brand-mark::before,
body[data-page="home"] .star-brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px 14px;
  background: linear-gradient(180deg, #f6dfaa, #b98640);
  transform: rotate(45deg);
}

body[data-page="home"] .star-brand-mark::after {
  inset: 14px 3px;
  transform: rotate(45deg);
}

body[data-page="home"] .brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body[data-page="home"] .star-main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .star-main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease, letter-spacing 180ms ease;
}

body[data-page="home"] .star-main-nav a::after {
  display: none;
}

body[data-page="home"] .star-main-nav a.is-active,
body[data-page="home"] .star-main-nav a:hover {
  color: var(--star-gold-2);
  transform: translateY(-1px);
  letter-spacing: 0.15em;
}

body[data-page="home"] .star-main-nav a.is-active::after,
body[data-page="home"] .star-main-nav a:hover::after {
  display: none;
}

body[data-page="home"] .star-icon-button,
body[data-page="home"] .star-cart-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

body[data-page="home"] .star-icon-button:hover,
body[data-page="home"] .star-cart-link:hover {
  color: var(--star-gold-2);
  transform: translateY(-1px);
}

body[data-page="home"] .star-nav-icon {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .star-cart-link .star-nav-icon {
  width: 27px;
  height: 27px;
}

body[data-page="home"] .language-toggle {
  position: relative;
  width: 50px;
  min-width: 50px;
  height: 32px;
  min-height: 32px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--star-gold-2);
  background: transparent;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .language-toggle:hover {
  transform: none;
  border: 0;
  background: transparent;
}

body[data-page="home"] .language-toggle-button {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--star-gold-2);
  background: transparent;
  box-shadow: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

body[data-page="home"] .language-toggle-button:hover,
body[data-page="home"] .language-toggle[data-open="true"] .language-toggle-button {
  color: #f1d8a9;
  background: transparent;
}

body[data-page="home"] .language-toggle-button svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

body[data-page="home"] .language-toggle[data-open="true"] .language-toggle-button svg {
  transform: rotate(180deg);
}

body[data-page="home"] .language-toggle:focus-visible {
  outline: 2px solid rgba(225, 198, 149, 0.65);
  outline-offset: 3px;
}

body[data-page="home"] .language-toggle-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: auto;
  z-index: 80;
  display: grid;
  min-width: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body[data-page="home"] .language-toggle[data-open="true"] .language-toggle-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body[data-page="home"] .language-toggle-menu button {
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

body[data-page="home"] .language-toggle-menu button:hover,
body[data-page="home"] .language-toggle-menu button[data-selected="true"] {
  color: var(--star-gold-2);
  background: transparent;
}

body[data-page="home"] .star-search-icon {
  position: relative;
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

body[data-page="home"] .star-search-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  margin: 15px 0 0 -1px;
  background: currentColor;
  transform: rotate(45deg);
}

body[data-page="home"] .star-account-icon {
  position: relative;
}

body[data-page="home"] .star-account-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

body[data-page="home"] .star-account-icon::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 19px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

body[data-page="home"] .star-cart-link {
  position: relative;
  text-decoration: none;
}

body[data-page="home"] .star-cart-icon {
  position: relative;
  display: block;
  min-width: 0;
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  background: transparent;
  border-radius: 0;
  color: #fff;
  font-size: 0;
}

body[data-page="home"] .star-cart-link .star-cart-icon {
  min-width: 0;
  width: 18px;
  height: 14px;
  color: #fff;
  background: transparent;
  border-radius: 0;
}

body[data-page="home"] .star-cart-icon::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  margin: -4px 0 0 -2px;
  background: currentColor;
  transform: skewX(-18deg);
}

body[data-page="home"] .star-cart-link b {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15100a;
  background: var(--star-gold);
  font-size: 0.58rem;
  line-height: 1;
}

body[data-page="home"] .star-homepage {
  overflow: hidden;
  background: var(--star-paper);
}

body[data-page="home"] .star-hero {
  position: relative;
  min-height: 542px;
  color: #fff;
  background: #020404;
}

body[data-page="home"] .star-hero-bg,
body[data-page="home"] .star-about-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 32%, rgba(0, 0, 0, 0.26) 62%, rgba(0, 0, 0, 0.16) 100%), url("../../ber01.png");
  background-size: cover;
  background-position: center;
}

body[data-page="home"] .star-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 542px;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

body[data-page="home"] .star-hero-copy {
  max-width: 510px;
  margin-top: 18px;
}

body[data-page="home"] .star-hero-copy h1,
body[data-page="home"] .star-section-title h2,
body[data-page="home"] .star-about h2,
body[data-page="home"] .star-newsletter h2 {
  margin: 0;
  color: inherit;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body[data-page="home"] .star-hero-copy h1 {
  font-size: clamp(2.85rem, 4.1vw, 3.95rem);
  line-height: 1.08;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.52);
}

body[data-page="home"] .star-hero-copy p {
  max-width: 400px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.72;
}

body[data-page="home"] .star-button {
  display: inline-flex;
  min-width: 205px;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(245, 219, 177, 0.38);
  border-radius: 4px;
  color: #17120b;
  background: linear-gradient(180deg, #e4c797, #caa56c);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

body[data-page="home"] .star-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 229, 180, 0.78);
  background: linear-gradient(180deg, #f0d39d, #d4ac70);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(225, 198, 149, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  filter: brightness(1.05);
}

body[data-page="home"] .star-trust-strip {
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0c0e10, #060708);
}

body[data-page="home"] .star-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .star-trust-grid article {
  min-height: 106px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  align-items: center;
  padding: 21px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

body[data-page="home"] .star-trust-grid article:last-child {
  border-right: 0;
}

body[data-page="home"] .star-trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body[data-page="home"] .star-trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  line-height: 1.45;
}

body[data-page="home"] .star-line-icon {
  box-sizing: border-box;
  width: 47px;
  height: 47px;
  display: block;
  padding: 9px;
  color: var(--star-gold-2);
  border: 1px solid rgba(202, 165, 108, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 20%, rgba(225, 198, 149, 0.16), transparent 42%),
    rgba(202, 165, 108, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .star-section {
  padding: 40px 0 42px;
  background:
    radial-gradient(circle at center top, rgba(202, 165, 108, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.86), rgba(5, 7, 10, 0.8)),
    url("../../bei01.png") center / cover no-repeat;
  background-color: #050708;
}

body[data-page="home"] .star-section-title {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #fff;
  text-align: center;
}

body[data-page="home"] .star-section-title h2,
body[data-page="home"] .star-newsletter h2 {
  font-size: 1.42rem;
  line-height: 1.2;
}

body[data-page="home"] .star-section-title > span,
body[data-page="home"] .star-section-title div > span,
body[data-page="home"] .star-about h2 + span {
  width: 80px;
  height: 12px;
  display: block;
  background:
    linear-gradient(90deg, transparent, var(--star-gold), transparent) center / 100% 1px no-repeat,
    radial-gradient(circle, var(--star-gold) 0 2px, transparent 3px) center / 12px 12px no-repeat;
}

body[data-page="home"] .star-title-row {
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
}

body[data-page="home"] .star-title-row div {
  display: grid;
  place-items: center;
  gap: 10px;
}

body[data-page="home"] .star-title-row a {
  position: absolute;
  right: 0;
  top: 7px;
  justify-self: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

body[data-page="home"] .star-title-row a:hover {
  color: var(--star-gold-2);
  transform: translateY(-1px);
}

body[data-page="home"] .star-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

body[data-page="home"] .star-collection-card {
  position: relative;
  min-height: 342px;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  background: #030506;
  text-decoration: none;
}

body[data-page="home"] .star-collection-card img {
  width: 100%;
  height: 100%;
  min-height: 342px;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

body[data-page="home"] .star-collection-card:hover img {
  transform: scale(1.04);
}

body[data-page="home"] .star-collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), transparent 72%);
}

body[data-page="home"] .star-card-copy {
  position: absolute;
  left: 40px;
  top: 42px;
  z-index: 1;
  display: grid;
  gap: 20px;
}

body[data-page="home"] .star-card-copy strong {
  max-width: 230px;
  font-family: "Cinzel", serif;
  font-size: 1.54rem;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body[data-page="home"] .star-card-copy small {
  max-width: 155px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
}

body[data-page="home"] .star-card-copy em {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(245, 219, 177, 0.34);
  border-radius: 4px;
  color: #21180e;
  background: linear-gradient(180deg, #dfc191, #cba66d);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body[data-page="home"] .star-collection-card:hover .star-card-copy em {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #efd09b, #d4ac70);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(225, 198, 149, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  filter: brightness(1.04);
}

body[data-page="home"] .star-featured {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.88), rgba(5, 7, 10, 0.82)),
    url("../../bei01.png") center 48% / cover no-repeat;
}

body[data-page="home"] .star-product-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 19px;
}

body[data-page="home"] .star-product-card {
  min-width: 0;
}

body[data-page="home"] .star-product-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(231, 226, 217, 0.94);
  text-decoration: none;
}

body[data-page="home"] .star-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms ease;
}

body[data-page="home"] .star-product-media:hover img {
  transform: scale(1.05);
}

body[data-page="home"] .star-product-media span {
  display: none;
}

body[data-page="home"] .star-product-card h3 {
  min-height: 34px;
  margin: 10px 0 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.28;
}

body[data-page="home"] .star-product-card strong {
  color: var(--star-gold-2);
  font-size: 0.82rem;
  font-weight: 600;
}

body[data-page="home"] .star-about {
  position: relative;
  min-height: 272px;
  color: #fff;
  background: #030506;
}

body[data-page="home"] .star-about-bg {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.2)), url("../media/starfall-home/about-cosmos.jpg");
  background-position: center;
}

body[data-page="home"] .star-about-inner {
  position: relative;
  z-index: 1;
  min-height: 272px;
  display: flex;
  align-items: center;
}

body[data-page="home"] .star-about-inner > div {
  max-width: 410px;
}

body[data-page="home"] .star-about h2 {
  font-size: 1.54rem;
  line-height: 1.18;
}

body[data-page="home"] .star-about h2 + span {
  margin: 14px 0 18px;
}

body[data-page="home"] .star-about p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.72;
}

body[data-page="home"] .star-newsletter {
  min-height: 76px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, 0.88), rgba(6, 8, 11, 0.82)),
    url("../../bei01.png") center 58% / cover no-repeat;
}

body[data-page="home"] .star-newsletter-inner {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 1px minmax(420px, 0.95fr);
  gap: 62px;
  align-items: center;
  grid-template-rows: 1fr;
}

body[data-page="home"] .star-newsletter-copy {
  width: min(100%, 560px);
  grid-column: 1;
  grid-row: 1;
  display: grid;
  justify-self: center;
  align-self: center;
  place-items: center;
  text-align: center;
}

body[data-page="home"] .star-mail-icon {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 0 3px;
  fill: none;
  stroke: var(--star-gold);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .star-newsletter h2 {
  font-size: 1.05rem;
  color: #fff;
}

body[data-page="home"] .star-newsletter p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  line-height: 1.24;
}

body[data-page="home"] .star-newsletter-inner::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 1px;
  height: 58px;
  background: rgba(225, 198, 149, 0.34);
}

body[data-page="home"] .star-newsletter-form {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 0;
  align-self: center;
  transform: translateY(10px);
}

body[data-page="home"] .star-newsletter-form input,
body[data-page="home"] .star-newsletter-form button {
  min-height: 34px;
  border: 1px solid #d8d1c6;
  border-radius: 0;
  font: inherit;
}

body[data-page="home"] .star-newsletter-form input {
  padding: 0 17px;
  color: #17120d;
  background: rgba(241, 238, 232, 0.92);
}

body[data-page="home"] .star-newsletter-form button {
  color: #18130d;
  background: linear-gradient(180deg, #d8b985, #caa56c);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

body[data-page="home"] .star-newsletter-form button:hover {
  background: linear-gradient(180deg, #efd09b, #d4ac70);
  box-shadow: 0 0 20px rgba(202, 165, 108, 0.28);
  filter: brightness(1.04);
}

body[data-page="home"] .star-newsletter-message {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: min(100%, 555px);
  margin: 0;
  color: #7a736a;
  font-size: 0.72rem;
  text-align: left;
}

body[data-page="home"] .star-newsletter-message:empty {
  display: none;
}

body[data-page="home"] .star-footer {
  margin-top: 0;
  padding: 32px 0 25px;
  color: #fff;
  border: 0;
  background: radial-gradient(circle at 50% -10%, rgba(45, 58, 68, 0.42), transparent 45%), #050708;
}

body[data-page="home"] .star-footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.7fr) repeat(4, minmax(120px, 1fr));
  gap: 42px;
}

body[data-page="home"] .star-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.9;
  text-decoration: none;
}

body[data-page="home"] .star-footer strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="home"] .star-footer p,
body[data-page="home"] .star-footer small {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  line-height: 1.55;
}

body[data-page="home"] .star-footer-brand .star-brand {
  margin-bottom: 10px;
}

body[data-page="home"] .star-footer-brand .star-brand {
  width: 218px;
  height: 58px;
  overflow: hidden;
}

body[data-page="home"] .star-footer-brand .star-logo-image {
  width: 218px;
}

body[data-page="home"] .star-footer-brand .brand-copy strong {
  font-size: 1rem;
}

body[data-page="home"] .star-socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0;
}

body[data-page="home"] .star-socials a {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(225, 198, 149, 0.62);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

body[data-page="home"] .star-socials a:hover {
  color: #16120b;
  border-color: var(--star-gold-2);
  background: linear-gradient(180deg, #e1c695, #caa56c);
  transform: translateY(-1px);
}

body[data-page="home"] .star-socials svg {
  width: 14px;
  height: 14px;
  display: block;
}

body[data-page="home"] .star-socials a[aria-label="Instagram"] svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .star-socials a[aria-label="Facebook"] svg path,
body[data-page="home"] .star-socials a[aria-label="Pinterest"] svg path,
body[data-page="home"] .star-socials a[aria-label="TikTok"] svg path {
  fill: currentColor;
  stroke: none;
}

body[data-page="home"] .star-socials a[aria-label="YouTube"] svg path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

body[data-page="home"] .star-socials a[aria-label="YouTube"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1100px) {
  body[data-page="home"] .star-nav {
    grid-template-columns: 1fr repeat(4, auto);
  }

  body[data-page="home"] .star-main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  body[data-page="home"] .star-product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="home"] .star-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .wrap {
    width: min(100% - 28px, 1120px);
  }

  body[data-page="home"] .star-nav {
    gap: 12px;
    padding-top: 18px;
  }

  body[data-page="home"] .brand-copy strong {
    font-size: 0.95rem;
  }

  body[data-page="home"] .brand-copy small {
    font-size: 0.52rem;
  }

  body[data-page="home"] .star-main-nav {
    gap: 18px;
    font-size: 0.6rem;
  }

  body[data-page="home"] .star-hero,
  body[data-page="home"] .star-hero-inner {
    min-height: 650px;
  }

  body[data-page="home"] .star-hero-bg {
    background-position: 62% center;
  }

  body[data-page="home"] .star-hero-copy {
    max-width: 310px;
    margin-top: 118px;
  }

  body[data-page="home"] .star-hero-copy h1 {
    font-size: 3.05rem;
  }

  body[data-page="home"] .star-trust-grid,
  body[data-page="home"] .star-collection-grid,
  body[data-page="home"] .star-newsletter-inner,
  body[data-page="home"] .star-footer-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .star-trust-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body[data-page="home"] .star-product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .star-title-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="home"] .star-title-row a {
    position: static;
    justify-self: center;
    top: auto;
    right: auto;
  }

  body[data-page="home"] .star-card-copy {
    left: 26px;
    top: 30px;
  }

  body[data-page="home"] .star-newsletter-inner {
    gap: 18px;
    padding: 28px 0;
  }

  body[data-page="home"] .star-newsletter-inner::before {
    display: none;
  }

  body[data-page="home"] .star-newsletter-form,
  body[data-page="home"] .star-newsletter-message {
    grid-column: auto;
  }

  body[data-page="home"] .star-newsletter-form {
    transform: none;
  }

  body[data-page="home"] .star-newsletter-message {
    margin: 0;
    text-align: center;
  }
}

/* Story and care pages aligned with the Cosmic Core Stone homepage direction. */
body.star-subpage {
  --star-ink: #07090a;
  --star-ink-2: #0d1013;
  --star-gold: #caa56c;
  --star-gold-2: #e1c695;
  --star-paper: #ebe7df;
  --star-panel: #f1eee8;
  --star-panel-2: #e7e1d7;
  --star-line: rgba(202, 165, 108, 0.34);
  margin: 0;
  color: #15120e;
  background: var(--star-paper);
  font-family: "Manrope", sans-serif;
}

body.star-subpage::before,
body.star-subpage::after {
  display: none;
}

body.star-subpage .wrap {
  width: min(1264px, calc(100% - 176px));
}

body.star-subpage .star-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent);
  backdrop-filter: none;
}

body.star-subpage .star-nav {
  display: grid;
  grid-template-columns: minmax(320px, auto) minmax(520px, 1fr) repeat(4, auto);
  align-items: center;
  gap: 24px;
  padding: 32px 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.star-subpage .star-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

body.star-subpage .star-brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.star-subpage .star-brand-mark::before,
body.star-subpage .star-brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px 14px;
  background: linear-gradient(180deg, #f6dfaa, #b98640);
  transform: rotate(45deg);
}

body.star-subpage .star-brand-mark::after {
  inset: 14px 3px;
  transform: rotate(45deg);
}

body.star-subpage .brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.star-subpage .brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.star-subpage .star-main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.star-subpage .star-main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease, letter-spacing 180ms ease;
}

body.star-subpage .star-main-nav a::after {
  display: none;
}

body.star-subpage .star-main-nav a.is-active,
body.star-subpage .star-main-nav a:hover {
  color: var(--star-gold-2);
  transform: translateY(-1px);
  letter-spacing: 0.15em;
}

body.star-subpage .star-icon-button,
body.star-subpage .star-cart-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

body.star-subpage .star-icon-button:hover,
body.star-subpage .star-cart-link:hover {
  color: var(--star-gold-2);
  transform: translateY(-1px);
}

body.star-subpage .star-nav-icon {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.star-subpage .star-cart-link {
  position: relative;
  text-decoration: none;
}

body.star-subpage .star-cart-link .star-nav-icon {
  width: 27px;
  height: 27px;
}

body.star-subpage .star-cart-link b {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15100a;
  background: var(--star-gold);
  font-size: 0.58rem;
  line-height: 1;
}

body.star-subpage .language-toggle {
  position: relative;
  width: 50px;
  min-width: 50px;
  height: 32px;
  min-height: 32px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--star-gold-2);
  background: transparent;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.star-subpage .language-toggle:hover {
  transform: none;
  border: 0;
  background: transparent;
}

body.star-subpage .language-toggle-button {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--star-gold-2);
  background: transparent;
  box-shadow: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

body.star-subpage .language-toggle-button:hover,
body.star-subpage .language-toggle[data-open="true"] .language-toggle-button {
  color: #f1d8a9;
  background: transparent;
}

body.star-subpage .language-toggle-button svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

body.star-subpage .language-toggle[data-open="true"] .language-toggle-button svg {
  transform: rotate(180deg);
}

body.star-subpage .language-toggle-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: auto;
  z-index: 80;
  display: grid;
  min-width: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body.star-subpage .language-toggle[data-open="true"] .language-toggle-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.star-subpage .language-toggle-menu button {
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
}

body.star-subpage .language-toggle-menu button:hover,
body.star-subpage .language-toggle-menu button[data-selected="true"] {
  color: var(--star-gold-2);
  background: transparent;
}

body.star-subpage .star-subpage-main {
  overflow: hidden;
  background: var(--star-paper);
}

body.star-subpage .star-subpage-hero {
  position: relative;
  min-height: 500px;
  color: #fff;
  background: #020404;
}

body.star-subpage .star-subpage-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0.34) 68%, rgba(0, 0, 0, 0.16) 100%),
    url("../media/starfall-home/about-cosmos.jpg");
  background-size: cover;
  background-position: center;
}

body[data-page="care-guide"].star-subpage .star-subpage-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 36%, rgba(0, 0, 0, 0.26) 70%, rgba(0, 0, 0, 0.1) 100%),
    url("../../ber01.png");
  background-position: center 48%;
}

body.star-subpage .star-subpage-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

body.star-subpage .star-subpage-copy {
  max-width: 590px;
  margin-top: 24px;
}

body.star-subpage .star-kicker {
  margin: 0 0 14px;
  color: var(--star-gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.star-subpage .star-subpage-copy h1,
body.star-subpage .star-section-title h2,
body.star-subpage .star-subpage-band h2,
body.star-subpage .star-story-panel h2,
body.star-subpage .star-story-cards h2,
body.star-subpage .star-care-grid h2 {
  margin: 0;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.star-subpage .star-subpage-copy h1 {
  max-width: 640px;
  color: #fff;
  font-size: clamp(2.55rem, 3.85vw, 3.55rem);
  line-height: 1.08;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.52);
  text-wrap: balance;
}

body.star-subpage .star-subpage-copy > p:not(.star-kicker) {
  max-width: 470px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.74;
}

body.star-subpage .star-button {
  display: inline-flex;
  min-width: 205px;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(245, 219, 177, 0.38);
  border-radius: 4px;
  color: #17120b;
  background: linear-gradient(180deg, #e4c797, #caa56c);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

body.star-subpage .star-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 229, 180, 0.78);
  background: linear-gradient(180deg, #f0d39d, #d4ac70);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(225, 198, 149, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  filter: brightness(1.05);
}

body.star-subpage .star-subpage-section {
  padding: 44px 0 52px;
  background:
    radial-gradient(circle at center top, rgba(202, 165, 108, 0.14), transparent 34%),
    linear-gradient(180deg, #eeeae2 0%, #e7e2d9 100%);
}

body.star-subpage .star-section-title {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #17120d;
  text-align: center;
}

body.star-subpage .star-section-title h2 {
  max-width: 760px;
  font-size: 1.52rem;
  line-height: 1.24;
  text-wrap: balance;
}

body.star-subpage .star-section-title > span {
  width: 80px;
  height: 12px;
  display: block;
  background:
    linear-gradient(90deg, transparent, var(--star-gold), transparent) center / 100% 1px no-repeat,
    radial-gradient(circle, var(--star-gold) 0 2px, transparent 3px) center / 12px 12px no-repeat;
}

body.star-subpage .star-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 16px;
  align-items: stretch;
}

body.star-subpage .star-story-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  background: #030506;
}

body.star-subpage .star-story-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.star-subpage .star-story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18));
}

body.star-subpage .star-story-panel > div {
  position: absolute;
  left: 42px;
  bottom: 38px;
  z-index: 1;
  max-width: 430px;
}

body.star-subpage .star-story-panel span,
body.star-subpage .star-story-cards span,
body.star-subpage .star-care-grid span {
  display: block;
  margin-bottom: 13px;
  color: var(--star-gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.star-subpage .star-story-panel h2 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.12;
}

body.star-subpage .star-story-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.72;
}

body.star-subpage .star-story-cards {
  display: grid;
  gap: 16px;
}

body.star-subpage .star-story-cards article,
body.star-subpage .star-care-grid article,
body.star-subpage .star-principles article {
  border: 1px solid rgba(177, 143, 92, 0.24);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(247, 244, 237, 0.82), rgba(232, 226, 216, 0.96)),
    var(--star-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body.star-subpage .star-story-cards article {
  min-height: 146px;
  padding: 27px 30px;
}

body.star-subpage .star-story-cards h2,
body.star-subpage .star-care-grid h2 {
  color: #15120e;
  font-size: 1.28rem;
  line-height: 1.18;
}

body.star-subpage .star-story-cards p,
body.star-subpage .star-care-grid p,
body.star-subpage .star-principles p {
  margin: 13px 0 0;
  color: #6f6a62;
  font-size: 0.86rem;
  line-height: 1.68;
}

body.star-subpage .star-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

body.star-subpage .star-care-grid article {
  min-height: 330px;
  padding: 27px 24px;
}

body.star-subpage .star-care-grid .star-line-icon {
  margin-bottom: 24px;
}

body.star-subpage .star-line-icon {
  box-sizing: border-box;
  width: 47px;
  height: 47px;
  display: block;
  padding: 9px;
  color: var(--star-gold-2);
  border: 1px solid rgba(202, 165, 108, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 20%, rgba(225, 198, 149, 0.16), transparent 42%),
    rgba(202, 165, 108, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.star-subpage .star-subpage-band {
  padding: 54px 0 56px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 0%, rgba(202, 165, 108, 0.16), transparent 30%),
    linear-gradient(180deg, #0c0e10, #050708);
}

body.star-subpage .star-subpage-band-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
  gap: 58px;
  align-items: start;
}

body.star-subpage .star-subpage-band h2 {
  max-width: 470px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.18;
  text-wrap: balance;
}

body.star-subpage .star-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.star-subpage .star-principles article {
  min-height: 150px;
  padding: 24px 23px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
}

body.star-subpage .star-principles strong {
  display: block;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.star-subpage .star-principles p {
  color: rgba(255, 255, 255, 0.74);
}

body.star-subpage .star-footer {
  margin-top: 0;
  padding: 32px 0 25px;
  color: #fff;
  border: 0;
  background: radial-gradient(circle at 50% -10%, rgba(45, 58, 68, 0.42), transparent 45%), #050708;
}

body.star-subpage .star-footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.7fr) repeat(4, minmax(120px, 1fr));
  gap: 42px;
}

body.star-subpage .star-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.9;
  text-decoration: none;
}

body.star-subpage .star-footer a:hover {
  color: var(--star-gold-2);
}

body.star-subpage .star-footer strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.star-subpage .star-footer p,
body.star-subpage .star-footer small {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  line-height: 1.55;
}

body.star-subpage .star-footer-brand .star-brand {
  margin-bottom: 10px;
}

body.star-subpage .star-footer-brand .brand-copy strong {
  font-size: 1rem;
}

body.star-subpage .star-socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0;
}

body.star-subpage .star-socials a {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(225, 198, 149, 0.62);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.star-subpage .star-socials a:hover {
  color: #16120b;
  border-color: var(--star-gold-2);
  background: linear-gradient(180deg, #e1c695, #caa56c);
  transform: translateY(-1px);
}

body.star-subpage .star-socials svg {
  width: 14px;
  height: 14px;
  display: block;
}

body.star-subpage .star-socials a[aria-label="Instagram"] svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.star-subpage .star-socials a[aria-label="Facebook"] svg path,
body.star-subpage .star-socials a[aria-label="Pinterest"] svg path,
body.star-subpage .star-socials a[aria-label="TikTok"] svg path {
  fill: currentColor;
  stroke: none;
}

body.star-subpage .star-socials a[aria-label="YouTube"] svg path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

body.star-subpage .star-socials a[aria-label="YouTube"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

body[data-page="about"].star-subpage .star-subpage-section,
body[data-page="care-guide"].star-subpage .star-subpage-section {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(202, 165, 108, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(3, 8, 11, 0.78), rgba(3, 8, 11, 0.94)),
    url("../../bei01.png") center / cover fixed;
}

body[data-page="about"].star-subpage .star-section-title,
body[data-page="care-guide"].star-subpage .star-section-title {
  color: #fff;
}

body[data-page="about"].star-subpage .star-section-title h2,
body[data-page="care-guide"].star-subpage .star-section-title h2 {
  color: #fff;
}

body[data-page="about"].star-subpage .star-story-cards article,
body[data-page="care-guide"].star-subpage .star-care-grid article {
  border-color: rgba(202, 165, 108, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(5, 13, 17, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-page="about"].star-subpage .star-story-cards h2,
body[data-page="care-guide"].star-subpage .star-care-grid h2 {
  color: #fff;
}

body[data-page="about"].star-subpage .star-story-cards p,
body[data-page="care-guide"].star-subpage .star-care-grid p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
  body.star-subpage .star-nav {
    grid-template-columns: 1fr repeat(4, auto);
  }

  body.star-subpage .star-main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  body.star-subpage .star-story-grid,
  body.star-subpage .star-subpage-band-grid {
    grid-template-columns: 1fr;
  }

  body.star-subpage .star-care-grid,
  body.star-subpage .star-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.star-subpage .star-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.star-subpage .wrap {
    width: min(100% - 28px, 1120px);
  }

  body.star-subpage .star-nav {
    gap: 12px;
    padding-top: 18px;
  }

  body.star-subpage .brand-copy strong {
    font-size: 0.95rem;
  }

  body.star-subpage .brand-copy small {
    font-size: 0.52rem;
  }

  body.star-subpage .star-main-nav {
    gap: 18px;
    font-size: 0.6rem;
  }

  body.star-subpage .star-subpage-hero,
  body.star-subpage .star-subpage-hero-inner {
    min-height: 620px;
  }

  body.star-subpage .star-subpage-copy {
    max-width: 330px;
    margin-top: 112px;
  }

  body.star-subpage .star-subpage-copy h1 {
    font-size: 2.92rem;
  }

  body.star-subpage .star-story-grid,
  body.star-subpage .star-care-grid,
  body.star-subpage .star-principles,
  body.star-subpage .star-footer-grid {
    grid-template-columns: 1fr;
  }

  body.star-subpage .star-story-panel {
    min-height: 420px;
  }

  body.star-subpage .star-story-panel > div {
    left: 26px;
    right: 26px;
    bottom: 30px;
  }

  body.star-subpage .star-story-panel h2,
  body.star-subpage .star-subpage-band h2 {
    font-size: 1.62rem;
  }
}

/* Product listing page from shangpinliebiao01 direction. Desktop-first storefront skin. */
body[data-page="shop"] {
  --star-ink: #07090a;
  --star-ink-2: #0d1013;
  --star-gold: #caa56c;
  --star-gold-2: #e1c695;
  --star-line: rgba(202, 165, 108, 0.34);
  color: #fff;
  background: #050708;
  font-family: "Manrope", sans-serif;
}

body[data-page="shop"] .star-logo-image {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

body[data-page="shop"] .star-header .star-brand {
  width: 270px;
  height: 72px;
  align-items: flex-start;
  overflow: hidden;
}

body[data-page="shop"] .star-footer-brand .star-brand {
  width: 218px;
  height: 58px;
  overflow: hidden;
}

body[data-page="shop"] .star-footer-brand .star-logo-image {
  width: 218px;
}

body[data-page="shop"] .star-shop-main {
  overflow: hidden;
  background: #050708;
}

body[data-page="shop"] .star-shop-hero {
  position: relative;
  min-height: 390px;
  color: #fff;
  background: #020404;
}

body[data-page="shop"] .star-shop-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 34%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.14) 100%),
    url("../../ber01.png");
  background-size: cover;
  background-position: center 48%;
}

body[data-page="shop"] .star-shop-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: flex;
  align-items: center;
  padding-top: 82px;
}

body[data-page="shop"] .star-shop-hero-copy {
  max-width: 530px;
}

body[data-page="shop"] .star-shop-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(2.75rem, 4.15vw, 4.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

body[data-page="shop"] .star-shop-hero h1 span {
  display: block;
  color: var(--star-gold-2);
}

body[data-page="shop"] .star-shop-hero p {
  max-width: 430px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.72;
}

body[data-page="shop"] .star-shop-catalog {
  padding: 10px 0 24px;
  background:
    linear-gradient(180deg, rgba(4, 8, 11, 0.88), rgba(4, 8, 11, 0.92)),
    url("../../bei01.png") center top / cover repeat-y;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(202, 165, 108, 0.22);
}

body[data-page="shop"] .star-shop-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

body[data-page="shop"] .star-shop-sidebar,
body[data-page="shop"] .star-shop-results {
  border: 1px solid rgba(202, 165, 108, 0.34);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(8, 13, 16, 0.84), rgba(5, 8, 11, 0.92)),
    rgba(4, 7, 9, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body[data-page="shop"] .star-shop-sidebar {
  padding: 20px 18px;
}

body[data-page="shop"] .star-filter-group {
  padding: 0 0 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="shop"] .star-filter-group:last-of-type {
  margin-bottom: 16px;
}

body[data-page="shop"] .star-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

body[data-page="shop"] .star-filter-heading strong {
  color: var(--star-gold-2);
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="shop"] .star-filter-heading span {
  width: 12px;
  height: 1px;
  background: var(--star-gold);
}

body[data-page="shop"] .star-filter-row {
  width: 100%;
  min-height: 29px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 2px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body[data-page="shop"] .star-filter-row:hover,
body[data-page="shop"] .star-filter-row.is-active {
  color: var(--star-gold-2);
  border-left-color: var(--star-gold);
  transform: translateX(1px);
}

body[data-page="shop"] .star-filter-row em {
  color: inherit;
  font-style: normal;
}

body[data-page="shop"] .star-check-row {
  min-height: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  cursor: pointer;
}

body[data-page="shop"] .star-check-row input {
  width: 13px;
  height: 13px;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(202, 165, 108, 0.72);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

body[data-page="shop"] .star-check-row input:checked {
  background:
    linear-gradient(180deg, #e4c797, #caa56c);
  box-shadow: inset 0 0 0 2px #10100d;
}

body[data-page="shop"] .star-filter-apply {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(202, 165, 108, 0.58);
  border-radius: 3px;
  color: var(--star-gold-2);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

body[data-page="shop"] .star-filter-apply:hover {
  color: #17120b;
  background: linear-gradient(180deg, #e4c797, #caa56c);
  transform: translateY(-1px);
}

body[data-page="shop"] .star-shop-results {
  padding: 18px;
}

body[data-page="shop"] .star-shop-results-head {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 17px;
}

body[data-page="shop"] .star-shop-results-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="shop"] .star-shop-results-head label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page="shop"] .star-shop-results-head .star-shop-search {
  flex: 1 1 300px;
  max-width: 370px;
}

body[data-page="shop"] .star-shop-results-head input[type="search"] {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(202, 165, 108, 0.34);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(5, 8, 11, 0.68);
  font: inherit;
  letter-spacing: 0.02em;
  text-transform: none;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

body[data-page="shop"] .star-shop-results-head input[type="search"]:focus {
  border-color: rgba(225, 198, 149, 0.72);
  background: rgba(5, 8, 11, 0.86);
}

body[data-page="shop"] .star-shop-results-head input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

body[data-page="shop"] .star-shop-results-head select {
  min-width: 174px;
  min-height: 38px;
  padding: 0 37px 0 14px;
  border: 1px solid rgba(202, 165, 108, 0.34);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(5, 8, 11, 0.68);
  font: inherit;
  text-transform: none;
}

body[data-page="shop"] .star-shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="shop"] .star-shop-product-card {
  position: relative;
  min-width: 0;
  padding: 13px 13px 16px;
  border: 1px solid rgba(202, 165, 108, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(5, 8, 11, 0.78);
}

body[data-page="shop"] .star-shop-product-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  background:
    radial-gradient(circle at 50% 65%, rgba(202, 165, 108, 0.2), transparent 48%),
    #efede8;
  text-decoration: none;
}

body[data-page="shop"] .star-shop-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

body[data-page="shop"] .star-shop-product-card:hover .star-shop-product-media img {
  filter: brightness(1.05);
  transform: scale(1.04);
}

body[data-page="shop"] .star-shop-favorite {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--star-gold-2);
  background: transparent;
  cursor: pointer;
}

body[data-page="shop"] .star-shop-favorite svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="shop"] .star-shop-product-card h3 {
  min-height: 40px;
  margin: 12px 0 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
}

body[data-page="shop"] .star-shop-product-card strong {
  color: var(--star-gold-2);
  font-size: 0.84rem;
  font-weight: 700;
}

body[data-page="shop"] .star-shop-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  min-height: 180px;
  place-items: center;
  border: 1px solid rgba(202, 165, 108, 0.28);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.82);
}

body[data-page="shop"] .star-shop-empty strong {
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
}

body[data-page="shop"] .star-shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 28px 0 4px;
}

body[data-page="shop"] .star-shop-pagination button,
body[data-page="shop"] .star-shop-pagination a {
  min-width: 42px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(202, 165, 108, 0.34);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 8, 11, 0.68);
  font: inherit;
  font-size: 0.78rem;
  text-decoration: none;
}

body[data-page="shop"] .star-shop-pagination button.is-active {
  color: #17120b;
  background: linear-gradient(180deg, #e4c797, #caa56c);
}

body[data-page="shop"] .star-shop-pagination a {
  min-width: 168px;
  margin-left: auto;
  color: var(--star-gold-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="shop"] .star-shop-trust-strip {
  color: #fff;
  border-bottom: 1px solid rgba(202, 165, 108, 0.2);
  background: linear-gradient(180deg, #0c0e10, #060708);
}

body[data-page="shop"] .star-shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="shop"] .star-shop-trust-grid article {
  min-height: 94px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

body[data-page="shop"] .star-shop-trust-grid article:last-child {
  border-right: 0;
}

body[data-page="shop"] .star-shop-trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body[data-page="shop"] .star-shop-trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  body[data-page="shop"] .star-shop-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  body[data-page="shop"] .star-shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Product detail page rebuilt from the supplied black-and-gold reference. */
body[data-page="product"] {
  --star-ink: #050708;
  --star-ink-2: #0b1114;
  --star-gold: #caa56c;
  --star-gold-2: #e1c695;
  --star-line: rgba(202, 165, 108, 0.34);
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(28, 61, 72, 0.25), transparent 34%),
    linear-gradient(180deg, #050708 0%, #081013 48%, #050708 100%);
  font-family: "Manrope", sans-serif;
}

body[data-page="product"] .star-logo-image {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

body[data-page="product"] .star-header .star-brand {
  width: 270px;
  height: 72px;
  align-items: flex-start;
  overflow: hidden;
}

body[data-page="product"] .star-footer-brand .star-brand {
  width: 218px;
  height: 58px;
  overflow: hidden;
}

body[data-page="product"] .star-footer-brand .star-logo-image {
  width: 218px;
}

body[data-page="product"] .star-product-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(202, 165, 108, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(4, 8, 11, 0.92), rgba(4, 8, 11, 0.96)),
    url("../../bei01.png") center top / cover repeat-y;
}

body[data-page="product"] .star-product-loading {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding-top: 130px;
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="product"] .star-product-detail-hero {
  padding: 126px 0 44px;
  border-bottom: 1px solid rgba(202, 165, 108, 0.22);
}

body[data-page="product"] .star-product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

body[data-page="product"] .star-product-breadcrumb a,
body[data-page="product"] .star-product-breadcrumb strong {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

body[data-page="product"] .star-product-breadcrumb a:hover {
  color: var(--star-gold-2);
}

body[data-page="product"] .star-product-breadcrumb strong {
  color: rgba(255, 255, 255, 0.7);
}

body[data-page="product"] .star-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.98fr) minmax(420px, 0.9fr);
  gap: 34px;
  align-items: start;
}

body[data-page="product"] .star-product-gallery {
  min-width: 0;
}

body[data-page="product"] .star-product-main-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(202, 165, 108, 0.36);
  border-radius: 6px;
  background:
    radial-gradient(circle at 48% 52%, rgba(202, 165, 108, 0.16), transparent 36%),
    #030506;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-page="product"] .star-product-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 18% 100%, rgba(202, 165, 108, 0.14), transparent 34%);
}

body[data-page="product"] .star-product-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

body[data-page="product"] .star-product-main-image:hover img {
  filter: brightness(1.05);
  transform: scale(1.045);
}

body[data-page="product"] .star-product-main-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(202, 165, 108, 0.58);
  border-radius: 3px;
  color: var(--star-gold-2);
  background: rgba(5, 8, 11, 0.68);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-page="product"] .star-product-main-image > button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 165, 108, 0.54);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

body[data-page="product"] .star-product-main-image > button:hover {
  color: var(--star-gold-2);
  border-color: var(--star-gold-2);
  transform: translateY(-1px);
}

body[data-page="product"] .star-product-main-image svg,
body[data-page="product"] .star-product-save svg,
body[data-page="product"] .star-product-related-card button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="product"] .star-product-thumbs-wrap {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

body[data-page="product"] .star-product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="product"] .star-product-thumb,
body[data-page="product"] .star-product-thumb-arrow {
  border: 1px solid rgba(202, 165, 108, 0.3);
  color: var(--star-gold-2);
  background: rgba(5, 8, 11, 0.72);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

body[data-page="product"] .star-product-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 5px;
  padding: 0;
}

body[data-page="product"] .star-product-thumb.is-active,
body[data-page="product"] .star-product-thumb:hover {
  border-color: var(--star-gold-2);
  transform: translateY(-1px);
}

body[data-page="product"] .star-product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body[data-page="product"] .star-product-thumb-arrow {
  width: 32px;
  height: 46px;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
}

body[data-page="product"] .star-product-thumb-arrow:hover {
  color: #fff;
  transform: translateX(1px);
}

body[data-page="product"] .star-product-summary {
  position: relative;
  min-width: 0;
  padding-top: 3px;
}

body[data-page="product"] .star-product-summary h1 {
  max-width: 560px;
  margin: 0;
  padding-right: 58px;
  color: #f4efe6;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.85vw, 2.7rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

body[data-page="product"] .star-product-save {
  position: absolute;
  top: 9px;
  right: 3px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--star-gold-2);
  background: transparent;
  cursor: pointer;
}

body[data-page="product"] .star-product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 17px 0 16px;
  color: var(--star-gold);
  font-size: 0.86rem;
}

body[data-page="product"] .star-product-rating strong,
body[data-page="product"] .star-product-rating span {
  margin-left: 4px;
  color: var(--star-gold-2);
  font-size: 0.78rem;
  font-weight: 500;
}

body[data-page="product"] .star-product-rating span {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.64);
}

body[data-page="product"] .star-product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  color: #f0b65c;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body[data-page="product"] .star-product-price span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
  text-decoration: line-through;
}

body[data-page="product"] .star-product-summary > p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.75;
}

body[data-page="product"] .star-product-specs {
  margin: 0 0 19px;
}

body[data-page="product"] .star-product-specs div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  min-height: 34px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

body[data-page="product"] .star-product-specs dt {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="product"] .star-product-specs svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--star-gold);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="product"] .star-product-specs dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

body[data-page="product"] .star-product-actions {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 12px 18px;
  max-width: 560px;
}

body[data-page="product"] .star-qty-control {
  display: grid;
  gap: 8px;
}

body[data-page="product"] .star-qty-control > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[data-page="product"] .star-qty-control div {
  height: 41px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  border: 1px solid rgba(202, 165, 108, 0.43);
  border-radius: 4px;
  background: rgba(5, 8, 11, 0.62);
}

body[data-page="product"] .star-qty-control button,
body[data-page="product"] .star-qty-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  text-align: center;
}

body[data-page="product"] .star-qty-control button {
  cursor: pointer;
}

body[data-page="product"] .star-add-button,
body[data-page="product"] .star-buy-button {
  min-height: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

body[data-page="product"] .star-add-button {
  align-self: end;
  border: 1px solid rgba(245, 219, 177, 0.38);
  color: #17120b;
  background: linear-gradient(180deg, #e4c797, #caa56c);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

body[data-page="product"] .star-buy-button {
  grid-column: 2;
  border: 1px solid rgba(202, 165, 108, 0.58);
  color: var(--star-gold-2);
  background: rgba(5, 8, 11, 0.3);
}

body[data-page="product"] .star-add-button:hover,
body[data-page="product"] .star-buy-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 24px rgba(225, 198, 149, 0.24);
}

body[data-page="product"] .star-add-button:disabled,
body[data-page="product"] .star-buy-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

body[data-page="product"] .star-add-button svg,
body[data-page="product"] .star-buy-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="product"] .star-product-mini-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="product"] .star-product-mini-trust article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
  min-width: 0;
}

body[data-page="product"] .star-product-mini-trust svg,
body[data-page="product"] .star-product-guarantee svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--star-gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="product"] .star-product-mini-trust span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

body[data-page="product"] .star-product-info-section,
body[data-page="product"] .star-product-related-section {
  border-bottom: 1px solid rgba(202, 165, 108, 0.2);
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.94), rgba(7, 13, 16, 0.94)),
    url("../../bei01.png") center top / cover repeat-y;
}

body[data-page="product"] .star-product-info-section {
  padding: 31px 0 34px;
}

body[data-page="product"] .star-product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: start;
}

body[data-page="product"] .star-product-tab-list {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="product"] .star-product-tab-list button {
  position: relative;
  min-height: 42px;
  padding: 0 0 14px;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

body[data-page="product"] .star-product-tab-list button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--star-gold);
  transition: transform 180ms ease;
}

body[data-page="product"] .star-product-tab-list button.is-active,
body[data-page="product"] .star-product-tab-list button:hover {
  color: var(--star-gold-2);
}

body[data-page="product"] .star-product-tab-list button.is-active::after,
body[data-page="product"] .star-product-tab-list button:hover::after {
  transform: scaleX(1);
}

body[data-page="product"] .star-product-tab-panel {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.78;
}

body[data-page="product"] .star-product-tab-panel p {
  margin: 0 0 20px;
}

body[data-page="product"] .star-product-tab-panel ul {
  margin: 0;
  padding-left: 17px;
}

body[data-page="product"] .star-product-tab-panel li::marker {
  color: var(--star-gold);
}

body[data-page="product"] .star-product-guarantee {
  border: 1px solid rgba(202, 165, 108, 0.32);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(6, 11, 14, 0.74);
}

body[data-page="product"] .star-product-guarantee article {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 24px;
  align-items: center;
  min-height: 90px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="product"] .star-product-guarantee article:last-child {
  border-bottom: 0;
}

body[data-page="product"] .star-product-guarantee strong {
  color: var(--star-gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="product"] .star-product-guarantee p {
  max-width: 320px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

body[data-page="product"] .star-product-related-section {
  padding: 27px 0 34px;
}

body[data-page="product"] .star-product-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

body[data-page="product"] .star-product-related-head h2 {
  margin: 0;
  color: #f4efe6;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="product"] .star-product-related-head a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

body[data-page="product"] .star-product-related-head a:hover {
  color: var(--star-gold-2);
}

body[data-page="product"] .star-product-related-row {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 12px;
  align-items: center;
}

body[data-page="product"] .star-product-related-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="product"] .star-product-related-card {
  position: relative;
  min-width: 0;
  padding: 12px 12px 15px;
  border: 1px solid rgba(202, 165, 108, 0.3);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(5, 8, 11, 0.78);
}

body[data-page="product"] .star-product-related-card a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  background: #edeae4;
}

body[data-page="product"] .star-product-related-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

body[data-page="product"] .star-product-related-card:hover img {
  transform: scale(1.04);
}

body[data-page="product"] .star-product-related-card button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--star-gold-2);
  background: transparent;
  cursor: pointer;
}

body[data-page="product"] .star-product-related-card h3 {
  min-height: 40px;
  margin: 12px 0 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

body[data-page="product"] .star-product-related-card strong {
  color: var(--star-gold-2);
  font-size: 0.78rem;
}

body[data-page="product"] .star-product-related-arrow {
  width: 28px;
  height: 44px;
  border: 0;
  color: var(--star-gold-2);
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

@media (max-width: 1180px) {
  body[data-page="product"] .star-product-detail-grid {
    grid-template-columns: minmax(460px, 1fr) minmax(360px, 0.9fr);
    gap: 24px;
  }

  body[data-page="product"] .star-product-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body[data-page="product"] .star-product-mini-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Checkout page rebuilt from the supplied black-and-gold reference. */
body[data-page="checkout"] {
  --star-ink: #050708;
  --star-ink-2: #0b1114;
  --star-gold: #caa56c;
  --star-gold-2: #e1c695;
  --star-line: rgba(202, 165, 108, 0.34);
  color: #fff;
  background:
    radial-gradient(circle at 72% 2%, rgba(202, 165, 108, 0.12), transparent 27%),
    linear-gradient(180deg, #050708 0%, #081013 48%, #050708 100%);
  font-family: "Manrope", sans-serif;
}

body[data-page="checkout"] .star-logo-image {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

body[data-page="checkout"] .star-header .star-brand {
  width: 270px;
  height: 72px;
  align-items: flex-start;
  overflow: hidden;
}

body[data-page="checkout"] .star-footer-brand .star-brand {
  width: 218px;
  height: 58px;
  overflow: hidden;
}

body[data-page="checkout"] .star-footer-brand .star-logo-image {
  width: 218px;
}

body[data-page="checkout"] .star-checkout-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 6, 8, 0.52), rgba(4, 8, 11, 0.96) 38%, rgba(4, 8, 11, 0.98)),
    url("../../bei01.png") center top / cover repeat-y;
}

body[data-page="checkout"] .star-checkout-hero {
  position: relative;
  padding: 124px 0 28px;
}

body[data-page="checkout"] .star-checkout-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="checkout"] .star-checkout-progress::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50px;
  right: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(202, 165, 108, 0.86), rgba(202, 165, 108, 0.36), rgba(255, 255, 255, 0.18));
}

body[data-page="checkout"] .star-checkout-progress li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
}

body[data-page="checkout"] .star-checkout-progress span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 165, 108, 0.66);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  background: #050708;
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page="checkout"] .star-checkout-progress strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="checkout"] .star-checkout-progress .is-active span,
body[data-page="checkout"] .star-checkout-progress .is-complete span {
  color: #15100a;
  background: linear-gradient(180deg, #e4c797, #caa56c);
  box-shadow: 0 0 24px rgba(225, 198, 149, 0.22);
}

body[data-page="checkout"] .star-checkout-progress .is-active strong,
body[data-page="checkout"] .star-checkout-progress .is-complete strong {
  color: var(--star-gold-2);
}

body[data-page="checkout"] .star-checkout-section {
  padding: 0 0 24px;
}

body[data-page="checkout"] .star-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(360px, 0.98fr);
  gap: 14px;
  align-items: start;
}

body[data-page="checkout"] .star-checkout-panel,
body[data-page="checkout"] .star-order-summary {
  border: 1px solid rgba(202, 165, 108, 0.32);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(5, 9, 12, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body[data-page="checkout"] .star-checkout-panel {
  overflow: hidden;
}

body[data-page="checkout"] .star-checkout-block {
  padding: 22px 28px 21px;
  border-bottom: 1px solid rgba(202, 165, 108, 0.18);
}

body[data-page="checkout"] .star-checkout-block:last-of-type {
  border-bottom: 0;
}

body[data-page="checkout"] .star-checkout-block-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

body[data-page="checkout"] .star-inline-head {
  align-items: center;
}

body[data-page="checkout"] .star-checkout-block-head svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  fill: none;
  stroke: var(--star-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="checkout"] .star-checkout-block-head h1,
body[data-page="checkout"] .star-checkout-block-head h2,
body[data-page="checkout"] .star-order-summary h2 {
  margin: 0;
  color: #f4efe6;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

body[data-page="checkout"] .star-checkout-block-head h2 span {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body[data-page="checkout"] .star-checkout-block-head p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.48;
}

body[data-page="checkout"] .star-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="checkout"] .star-form-grid-3 {
  grid-template-columns: 0.95fr 0.85fr 0.8fr;
}

body[data-page="checkout"] .star-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

body[data-page="checkout"] .star-field > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body[data-page="checkout"] .star-field[data-required] > span::after {
  content: "*";
  color: var(--star-gold-2);
  font-size: 0.82rem;
  line-height: 1;
}

body[data-page="checkout"] .star-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(202, 165, 108, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(3, 7, 10, 0.62);
  font: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

body[data-page="checkout"] .star-field input:focus {
  border-color: rgba(225, 198, 149, 0.84);
  background: rgba(3, 7, 10, 0.86);
  box-shadow: 0 0 0 3px rgba(202, 165, 108, 0.13);
}

body[data-page="checkout"] .star-field input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

body[data-page="checkout"] .star-checkline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  cursor: pointer;
}

body[data-page="checkout"] .star-checkline input,
body[data-page="checkout"] .star-radio-stack input {
  width: 17px;
  height: 17px;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(202, 165, 108, 0.68);
  background: transparent;
  cursor: pointer;
}

body[data-page="checkout"] .star-checkline input {
  border-radius: 3px;
}

body[data-page="checkout"] .star-checkline input:checked {
  background:
    linear-gradient(180deg, #e4c797, #caa56c);
  box-shadow: inset 0 0 0 3px #0b0d0c;
}

body[data-page="checkout"] .star-radio-stack {
  display: grid;
  border: 1px solid rgba(202, 165, 108, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

body[data-page="checkout"] .star-radio-stack label {
  min-height: 42px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  cursor: pointer;
}

body[data-page="checkout"] .star-radio-stack label:last-child {
  border-bottom: 0;
}

body[data-page="checkout"] .star-radio-stack input {
  border-radius: 50%;
}

body[data-page="checkout"] .star-radio-stack input:checked {
  box-shadow: inset 0 0 0 4px #071014;
  background: var(--star-gold);
}

body[data-page="checkout"] .star-radio-stack strong {
  color: var(--star-gold-2);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

body[data-page="checkout"] .star-payment-panel {
  border: 1px solid rgba(202, 165, 108, 0.3);
  border-radius: 4px;
  padding: 16px;
  background: rgba(3, 7, 10, 0.45);
}

body[data-page="checkout"] .paypal-header {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

body[data-page="checkout"] .paypal-header strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page="checkout"] .paypal-header span,
body[data-page="checkout"] .paypal-message {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

body[data-page="checkout"] .paypal-message {
  margin: 10px 0 0;
}

body[data-page="checkout"] .star-payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(202, 165, 108, 0.18);
}

body[data-page="checkout"] .payment-logo {
  position: relative;
  min-width: 86px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 14px;
  border: 1px solid rgba(225, 198, 149, 0.32);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 9, 12, 0.82);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

body[data-page="checkout"] .payment-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.11) 50%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 180ms ease, transform 320ms ease;
}

body[data-page="checkout"] .payment-logo:hover {
  border-color: rgba(225, 198, 149, 0.66);
  transform: translateY(-1px);
}

body[data-page="checkout"] .payment-logo:hover::after {
  opacity: 1;
  transform: translateX(24%);
}

body[data-page="checkout"] .payment-logo-paypal {
  min-width: 112px;
  border-color: rgba(225, 198, 149, 0.58);
  background:
    linear-gradient(180deg, #fff6de 0%, #e7c27a 100%);
  font-size: 0.92rem;
  letter-spacing: -0.025em;
  text-transform: none;
}

body[data-page="checkout"] .paypal-word {
  display: inline-flex;
  align-items: baseline;
  color: #003087;
  font-weight: 900;
}

body[data-page="checkout"] .paypal-word span:last-child {
  color: #009cde;
}

body[data-page="checkout"] .payment-logo-visa {
  color: #1a4fb7;
  background:
    linear-gradient(180deg, #fff 0%, #eef2fb 100%);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

body[data-page="checkout"] .payment-logo-mastercard {
  min-width: 146px;
  justify-content: flex-start;
}

body[data-page="checkout"] .mastercard-mark {
  position: relative;
  width: 34px;
  height: 22px;
  display: inline-block;
  flex: 0 0 34px;
}

body[data-page="checkout"] .mastercard-mark i {
  position: absolute;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

body[data-page="checkout"] .mastercard-mark i:first-child {
  left: 3px;
  background: #eb001b;
}

body[data-page="checkout"] .mastercard-mark i:last-child {
  right: 3px;
  background: #f79e1b;
  mix-blend-mode: screen;
}

body[data-page="checkout"] .payment-logo-amex {
  min-width: 88px;
  color: #fff;
  background:
    linear-gradient(180deg, #4bb2ff 0%, #0b64b3 100%);
  border-color: rgba(96, 184, 255, 0.65);
  letter-spacing: 0.08em;
}

body[data-page="checkout"] .payment-logo-discover {
  min-width: 116px;
  color: #11100d;
  background:
    radial-gradient(circle at 64% 50%, #f79e1b 0 18%, #f6c15b 19% 31%, transparent 32%),
    linear-gradient(180deg, #fff 0%, #ece7dd 100%);
  border-color: rgba(225, 198, 149, 0.54);
}

body[data-page="checkout"] .payment-logo-discover span {
  position: relative;
  z-index: 1;
}

body[data-page="checkout"] .star-checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 22px;
}

body[data-page="checkout"] .star-checkout-actions a,
body[data-page="checkout"] .star-checkout-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

body[data-page="checkout"] .star-checkout-actions a {
  color: var(--star-gold-2);
}

body[data-page="checkout"] .star-checkout-actions a::before {
  content: "<";
}

body[data-page="checkout"] .star-checkout-actions button {
  min-width: 232px;
  border: 1px solid rgba(245, 219, 177, 0.38);
  border-radius: 4px;
  color: #17120b;
  background: linear-gradient(180deg, #e4c797, #caa56c);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

body[data-page="checkout"] .star-checkout-actions button::after {
  content: ">";
  font-size: 1rem;
}

body[data-page="checkout"] .star-checkout-actions button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 0 24px rgba(225, 198, 149, 0.24);
}

body[data-page="checkout"] .star-order-summary {
  position: sticky;
  top: 20px;
  padding: 34px 31px 30px;
}

body[data-page="checkout"] .star-order-summary h2 {
  margin-bottom: 23px;
}

body[data-page="checkout"] .star-summary-items {
  display: grid;
  gap: 0;
}

body[data-page="checkout"] .star-summary-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  align-items: center;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(202, 165, 108, 0.22);
  border-radius: 0;
  background: transparent;
}

body[data-page="checkout"] .star-summary-product {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 15px;
  align-items: center;
  min-width: 0;
}

body[data-page="checkout"] .star-summary-image {
  position: relative;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(202, 165, 108, 0.28);
  border-radius: 4px;
  overflow: visible;
  background: #ebe8e2;
}

body[data-page="checkout"] .star-summary-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}

body[data-page="checkout"] .star-summary-image em {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15100a;
  background: var(--star-gold);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

body[data-page="checkout"] .star-summary-product strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

body[data-page="checkout"] .star-summary-product span,
body[data-page="checkout"] .star-summary-product small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

body[data-page="checkout"] .star-summary-line-price {
  color: var(--star-gold-2);
  font-size: 0.88rem;
  white-space: nowrap;
}

body[data-page="checkout"] .star-summary-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-left: 97px;
}

body[data-page="checkout"] .cart-quantity-control {
  width: 104px;
  height: 32px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  border: 1px solid rgba(202, 165, 108, 0.32);
  border-radius: 4px;
  overflow: hidden;
}

body[data-page="checkout"] .cart-quantity-control button,
body[data-page="checkout"] .cart-quantity-control input {
  min-width: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  text-align: center;
}

body[data-page="checkout"] .cart-quantity-control button {
  cursor: pointer;
}

body[data-page="checkout"] .summary-remove-button {
  border: 0;
  color: rgba(225, 198, 149, 0.7);
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

body[data-page="checkout"] .summary-remove-button:hover {
  color: #fff;
}

body[data-page="checkout"] .star-price-breakdown {
  margin: 18px 0 0;
  padding: 0;
}

body[data-page="checkout"] .star-price-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

body[data-page="checkout"] .star-price-breakdown dt,
body[data-page="checkout"] .star-price-breakdown dd {
  margin: 0;
}

body[data-page="checkout"] .star-price-breakdown dd {
  color: rgba(255, 255, 255, 0.86);
}

body[data-page="checkout"] .star-price-breakdown .price-total {
  min-height: 70px;
  margin-top: 12px;
  padding-top: 17px;
  border-top: 1px solid rgba(202, 165, 108, 0.25);
  color: #f4efe6;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="checkout"] .star-price-breakdown .price-total dd {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #f0b65c;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body[data-page="checkout"] .star-price-breakdown .price-total span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

body[data-page="checkout"] .star-secure-box {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  margin: 14px 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(202, 165, 108, 0.28);
  border-radius: 5px;
  background:
    radial-gradient(circle at 92% 50%, rgba(202, 165, 108, 0.13), transparent 38%),
    rgba(3, 7, 10, 0.48);
}

body[data-page="checkout"] .star-secure-box svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--star-gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="checkout"] .star-secure-box strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="checkout"] .star-secure-box p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.45;
}

body[data-page="checkout"] .cart-empty-state {
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid rgba(202, 165, 108, 0.25);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 7, 10, 0.42);
}

body[data-page="checkout"] .cart-empty-state strong {
  color: #fff;
}

body[data-page="checkout"] .cart-empty-state a {
  color: var(--star-gold-2);
}

body[data-page="checkout"] .star-shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="checkout"] .star-shop-trust-grid article {
  min-height: 94px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

body[data-page="checkout"] .star-shop-trust-grid article:last-child {
  border-right: 0;
}

body[data-page="checkout"] .star-shop-trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body[data-page="checkout"] .star-shop-trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  body[data-page="checkout"] .star-checkout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="checkout"] .star-order-summary {
    position: static;
  }

  body[data-page="checkout"] .star-shop-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Contact page rebuilt from lianxi01 reference. */
body[data-page="contact"] {
  --contact-gold: #d29a3f;
  --contact-gold-soft: #e1c695;
  --contact-bg: #02080b;
  --contact-line: rgba(210, 154, 63, 0.32);
  color: #fff;
  background: var(--contact-bg);
}

body[data-page="contact"] .star-logo-image {
  width: 312px;
  max-width: 100%;
  height: auto;
  display: block;
}

body[data-page="contact"] .star-footer-brand .star-logo-image {
  width: 250px;
}

body[data-page="contact"] .star-contact-main {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 91, 112, 0.18), transparent 32%),
    radial-gradient(circle at 84% 48%, rgba(202, 165, 108, 0.12), transparent 30%),
    linear-gradient(180deg, #03090d 0%, #051115 54%, #020607 100%);
}

body[data-page="contact"] .star-contact-hero {
  position: relative;
  min-height: 374px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(210, 154, 63, 0.2);
  color: #fff;
  background: #020506;
}

body[data-page="contact"] .star-contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 32%, rgba(0, 0, 0, 0.28)),
    url("../../ber01.png");
  background-size: cover;
  background-position: center 50%;
}

body[data-page="contact"] .star-contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding-top: 98px;
  text-align: center;
}

body[data-page="contact"] .star-contact-hero h1,
body[data-page="contact"] .star-contact-methods h2,
body[data-page="contact"] .star-contact-form-panel h2,
body[data-page="contact"] .star-contact-title h2,
body[data-page="contact"] .star-contact-card h3,
body[data-page="contact"] .star-help-card-grid span {
  margin: 0;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="contact"] .star-contact-hero h1 {
  font-size: clamp(2.75rem, 4.25vw, 4.05rem);
  line-height: 1;
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.58);
}

body[data-page="contact"] .star-contact-hero-inner > span,
body[data-page="contact"] .star-contact-title > span {
  width: 300px;
  height: 24px;
  display: block;
  margin: 24px 0 16px;
  background:
    linear-gradient(90deg, transparent, var(--contact-gold), transparent) center / 100% 1px no-repeat,
    radial-gradient(circle, var(--contact-gold-soft) 0 3px, transparent 4px) center / 20px 20px no-repeat;
}

body[data-page="contact"] .star-contact-hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.72;
}

body[data-page="contact"] .star-contact-section {
  padding: 27px 0 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 154, 63, 0.12), transparent 31%),
    linear-gradient(180deg, rgba(2, 11, 15, 0.96), rgba(2, 9, 12, 0.96));
}

body[data-page="contact"] .star-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(520px, 1.08fr);
  gap: 66px;
  align-items: start;
}

body[data-page="contact"] .star-contact-methods {
  position: relative;
  padding-right: 4px;
}

body[data-page="contact"] .star-contact-methods::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -34px;
  width: 1px;
  height: calc(100% - 6px);
  min-height: 420px;
  background: linear-gradient(180deg, transparent, rgba(210, 154, 63, 0.48), transparent);
}

body[data-page="contact"] .star-contact-methods::before {
  content: "";
  position: absolute;
  top: 48%;
  right: -41px;
  z-index: 1;
  width: 15px;
  height: 15px;
  background:
    linear-gradient(90deg, transparent 47%, var(--contact-gold) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--contact-gold) 47% 53%, transparent 53%);
  transform: rotate(45deg);
}

body[data-page="contact"] .star-contact-methods h2,
body[data-page="contact"] .star-contact-form-panel h2 {
  margin-bottom: 16px;
  color: var(--contact-gold-soft);
  font-size: 1.05rem;
  line-height: 1.2;
}

body[data-page="contact"] .star-contact-card-list {
  display: grid;
  gap: 10px;
}

body[data-page="contact"] .star-contact-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 18px 24px;
  border: 1px solid var(--contact-line);
  border-radius: 5px;
  background:
    radial-gradient(circle at 6% 30%, rgba(210, 154, 63, 0.08), transparent 34%),
    rgba(4, 13, 18, 0.7);
}

body[data-page="contact"] .star-contact-card svg {
  width: 46px;
  height: 46px;
  justify-self: center;
  fill: none;
  stroke: var(--contact-gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="contact"] .star-contact-card h3 {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.16;
}

body[data-page="contact"] .star-contact-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.45;
}

body[data-page="contact"] .star-contact-card a,
body[data-page="contact"] .star-contact-socials a {
  color: var(--contact-gold-soft);
  font-size: 0.78rem;
  text-decoration: none;
}

body[data-page="contact"] .star-contact-card a:hover,
body[data-page="contact"] .star-contact-socials a:hover {
  color: #fff;
}

body[data-page="contact"] .star-contact-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

body[data-page="contact"] .star-contact-socials a {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(210, 154, 63, 0.56);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0;
}

body[data-page="contact"] .star-contact-form-panel {
  min-width: 0;
}

body[data-page="contact"] .star-contact-form {
  display: grid;
  gap: 13px;
}

body[data-page="contact"] .star-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body[data-page="contact"] .star-contact-form label:not(.star-contact-check) {
  position: relative;
  display: grid;
}

body[data-page="contact"] .star-contact-form label:not(.star-contact-check) > span {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  line-height: 1;
  pointer-events: none;
}

body[data-page="contact"] .star-contact-form input,
body[data-page="contact"] .star-contact-form select,
body[data-page="contact"] .star-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(210, 154, 63, 0.34);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(3, 10, 14, 0.74);
  font: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body[data-page="contact"] .star-contact-form input,
body[data-page="contact"] .star-contact-form select {
  height: 49px;
  padding: 19px 15px 8px;
}

body[data-page="contact"] .star-contact-form textarea {
  min-height: 124px;
  resize: vertical;
  padding: 30px 15px 12px;
}

body[data-page="contact"] .star-contact-form input:focus,
body[data-page="contact"] .star-contact-form select:focus,
body[data-page="contact"] .star-contact-form textarea:focus {
  border-color: rgba(225, 198, 149, 0.84);
  background: rgba(5, 15, 20, 0.9);
  box-shadow: 0 0 0 3px rgba(210, 154, 63, 0.12);
}

body[data-page="contact"] .star-contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--contact-gold) 50%),
    linear-gradient(135deg, var(--contact-gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 27px,
    calc(100% - 12px) 27px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

body[data-page="contact"] .star-contact-form option {
  color: #fff;
  background: #071014;
}

body[data-page="contact"] .star-contact-check {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

body[data-page="contact"] .star-contact-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--contact-gold);
}

body[data-page="contact"] .star-contact-submit {
  height: 47px;
  margin-top: 2px;
  border: 1px solid rgba(245, 219, 177, 0.36);
  border-radius: 4px;
  color: #170f07;
  background:
    linear-gradient(180deg, rgba(255, 224, 158, 0.62), rgba(183, 122, 40, 0.72)),
    #d09a47;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 16px 34px rgba(0, 0, 0, 0.2);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

body[data-page="contact"] .star-contact-submit::after {
  content: "  ->";
  letter-spacing: 0.08em;
}

body[data-page="contact"] .star-contact-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 18px 38px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(210, 154, 63, 0.28);
}

body[data-page="contact"] .star-contact-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

body[data-page="contact"] .star-contact-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: var(--contact-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="contact"] .star-contact-help,
body[data-page="contact"] .star-contact-faq {
  padding: 20px 0 0;
  background:
    radial-gradient(circle at 50% 4%, rgba(210, 154, 63, 0.11), transparent 28%),
    rgba(2, 9, 12, 0.96);
}

body[data-page="contact"] .star-contact-title {
  display: grid;
  place-items: center;
  text-align: center;
}

body[data-page="contact"] .star-contact-title h2 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.2;
}

body[data-page="contact"] .star-contact-title > span {
  width: 150px;
  margin: 11px 0 14px;
}

body[data-page="contact"] .star-help-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="contact"] .star-help-card-grid a {
  position: relative;
  min-height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 18px 22px;
  border: 1px solid rgba(210, 154, 63, 0.34);
  border-radius: 5px;
  color: #fff;
  background: #061015;
  text-decoration: none;
}

body[data-page="contact"] .star-help-card-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.78)),
    var(--help-card-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 280ms ease, filter 280ms ease;
}

body[data-page="contact"] .star-help-card-grid a::after {
  content: "->";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--contact-gold);
  font-size: 1.05rem;
}

body[data-page="contact"] .star-help-card-grid a:hover::before {
  transform: scale(1.06);
  filter: brightness(1.14);
}

body[data-page="contact"] .star-help-card-grid span,
body[data-page="contact"] .star-help-card-grid p {
  position: relative;
  z-index: 1;
}

body[data-page="contact"] .star-help-card-grid span {
  max-width: 170px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

body[data-page="contact"] .star-help-card-grid p {
  max-width: 180px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

body[data-page="contact"] .star-help-card-shipping {
  --help-card-bg: url("../media/starfall-home/about-cosmos.jpg");
}

body[data-page="contact"] .star-help-card-returns {
  --help-card-bg: url("../media/starfall-home/collection-meteorites.jpg");
}

body[data-page="contact"] .star-help-card-authenticity {
  --help-card-bg: url("../media/starfall-home/hero-cosmic-core.jpg");
}

body[data-page="contact"] .star-help-card-custom {
  --help-card-bg: url("../media/starfall-home/collection-pendants.jpg");
}

body[data-page="contact"] .star-help-card-care {
  --help-card-bg: url("../media/starfall-home/collection-pendants.jpg");
}

body[data-page="contact"] .star-contact-faq {
  padding-bottom: 28px;
}

body[data-page="contact"] .star-contact-title-row {
  position: relative;
  margin-top: 6px;
  border-top: 1px solid rgba(210, 154, 63, 0.18);
}

body[data-page="contact"] .star-contact-title-row h2 {
  margin-top: 14px;
}

body[data-page="contact"] .star-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}

body[data-page="contact"] .star-faq-grid details {
  border: 1px solid rgba(210, 154, 63, 0.32);
  border-radius: 4px;
  background: rgba(3, 12, 16, 0.66);
}

body[data-page="contact"] .star-faq-grid summary {
  position: relative;
  padding: 15px 54px 15px 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  list-style: none;
  cursor: pointer;
}

body[data-page="contact"] .star-faq-grid summary::-webkit-details-marker {
  display: none;
}

body[data-page="contact"] .star-faq-grid summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--contact-gold);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
}

body[data-page="contact"] .star-faq-grid details[open] summary::after {
  content: "-";
}

body[data-page="contact"] .star-faq-grid p {
  margin: -4px 20px 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.58;
}

body[data-page="contact"] .star-contact-trust {
  border-top: 1px solid rgba(210, 154, 63, 0.22);
  border-bottom: 1px solid rgba(210, 154, 63, 0.24);
  background:
    radial-gradient(circle at 0% 50%, rgba(210, 154, 63, 0.16), transparent 26%),
    radial-gradient(circle at 100% 50%, rgba(210, 154, 63, 0.14), transparent 26%),
    #061015;
}

body[data-page="contact"] .star-contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="contact"] .star-contact-trust article {
  min-height: 95px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

body[data-page="contact"] .star-contact-trust article:last-child {
  border-right: 0;
}

body[data-page="contact"] .star-contact-trust svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--contact-gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="contact"] .star-contact-trust strong {
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="contact"] .star-contact-trust p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Compact shared trust strips on storefront pages. */
body[data-page="home"] .star-trust-grid article,
body[data-page="shop"] .star-shop-trust-grid article,
body[data-page="checkout"] .star-shop-trust-grid article,
body[data-page="contact"] .star-contact-trust article {
  min-height: 74px;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 12px 22px;
}

body[data-page="home"] .star-line-icon,
body[data-page="shop"] .star-shop-trust-grid .star-line-icon,
body[data-page="checkout"] .star-shop-trust-grid .star-line-icon {
  width: 38px;
  height: 38px;
  padding: 7px;
}

body[data-page="contact"] .star-contact-trust svg {
  width: 38px;
  height: 38px;
}

body[data-page="home"] .star-trust-grid strong,
body[data-page="shop"] .star-shop-trust-grid strong,
body[data-page="checkout"] .star-shop-trust-grid strong,
body[data-page="contact"] .star-contact-trust strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.68rem;
  letter-spacing: 0.055em;
}

body[data-page="home"] .star-trust-grid p,
body[data-page="shop"] .star-shop-trust-grid p,
body[data-page="checkout"] .star-shop-trust-grid p,
body[data-page="contact"] .star-contact-trust p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.3;
}

@media (max-width: 1180px) {
  body[data-page="contact"] .star-contact-grid,
  body[data-page="contact"] .star-faq-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .star-contact-methods::before,
  body[data-page="contact"] .star-contact-methods::after {
    display: none;
  }

  body[data-page="contact"] .star-help-card-grid,
  body[data-page="contact"] .star-contact-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Shared policy, legal, and confirmation pages. */
body.star-subpage .star-logo-image {
  width: 312px;
  max-width: 100%;
  height: auto;
  display: block;
}

body.star-subpage .star-footer-brand .star-logo-image {
  width: 250px;
}

body.star-info-page,
body.star-thankyou-page {
  --info-gold: #caa56c;
  --info-gold-2: #e1c695;
  --info-line: rgba(202, 165, 108, 0.32);
  color: #fff;
  background: #050708;
}

body.star-info-page .star-info-main,
body.star-thankyou-page .star-thankyou-main {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 17% 16%, rgba(41, 87, 103, 0.2), transparent 30%),
    radial-gradient(circle at 88% 44%, rgba(202, 165, 108, 0.12), transparent 28%),
    linear-gradient(180deg, #03080c 0%, #071115 58%, #030607 100%);
}

body.star-info-page .star-info-hero,
body.star-thankyou-page .star-thankyou-hero {
  position: relative;
  min-height: 500px;
  color: #fff;
  background: #020405;
}

body.star-info-page .star-info-hero-bg,
body.star-thankyou-page .star-thankyou-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 39%, rgba(0, 0, 0, 0.24) 78%),
    url("../../ber01.png");
  background-size: cover;
  background-position: center 50%;
}

body[data-page="returns"] .star-info-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.64) 42%, rgba(0, 0, 0, 0.28) 100%),
    url("../media/starfall-home/about-cosmos.jpg");
}

body[data-page="privacy"] .star-info-hero-bg,
body[data-page="terms"] .star-info-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.65) 44%, rgba(0, 0, 0, 0.26) 100%),
    url("../media/starfall-home/collection-meteorites.jpg");
}

body.star-info-page .star-info-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 156px;
  padding-bottom: 58px;
}

body.star-info-page .star-info-hero h1,
body.star-info-page .star-info-aside h2,
body.star-info-page .star-info-panel h2,
body.star-thankyou-page .star-thankyou-copy h1,
body.star-thankyou-page .star-thankyou-card h2 {
  margin: 0;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

body.star-info-page .star-info-hero h1,
body.star-thankyou-page .star-thankyou-copy h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.75rem, 4.25vw, 4.15rem);
  line-height: 1.04;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.58);
  text-wrap: balance;
}

body.star-info-page .star-info-hero p:not(.star-kicker),
body.star-thankyou-page .star-thankyou-copy > p:not(.star-kicker) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

body.star-info-page .star-info-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

body.star-info-page .star-info-hero-facts span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(225, 198, 149, 0.34);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(3, 8, 11, 0.44);
  backdrop-filter: blur(8px);
  font-size: 0.74rem;
}

body.star-info-page .star-info-hero-facts strong {
  color: var(--info-gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.star-info-page .star-info-section {
  padding: 52px 0 58px;
  background:
    radial-gradient(circle at 50% 0%, rgba(202, 165, 108, 0.12), transparent 30%),
    rgba(2, 8, 11, 0.96);
}

body.star-info-page .star-info-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
}

body.star-info-page .star-info-aside {
  position: sticky;
  top: 100px;
  padding: 31px 30px;
  border: 1px solid var(--info-line);
  border-radius: 5px;
  background:
    radial-gradient(circle at 90% 0%, rgba(202, 165, 108, 0.16), transparent 34%),
    rgba(5, 13, 17, 0.72);
}

body.star-info-page .star-info-aside > span,
body.star-info-page .star-info-panel > span,
body.star-thankyou-page .star-thankyou-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--info-gold-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.star-info-page .star-info-aside h2 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.2;
  text-wrap: balance;
}

body.star-info-page .star-info-aside p {
  margin: 17px 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.7;
}

body.star-info-page .star-info-aside a,
body.star-thankyou-page .star-button-ghost {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(225, 198, 149, 0.46);
  border-radius: 4px;
  color: var(--info-gold-2);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

body.star-info-page .star-info-aside a:hover,
body.star-thankyou-page .star-button-ghost:hover {
  color: #14100a;
  border-color: var(--info-gold-2);
  background: linear-gradient(180deg, #e1c695, #caa56c);
  transform: translateY(-2px);
}

body.star-info-page .star-info-content {
  display: grid;
  gap: 14px;
}

body.star-info-page .star-info-panel {
  display: grid;
  grid-template-columns: 86px 1fr;
  column-gap: 22px;
  padding: 29px 31px;
  border: 1px solid var(--info-line);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(5, 12, 16, 0.66);
}

body.star-info-page .star-info-panel > span {
  grid-row: 1 / span 2;
  margin: 4px 0 0;
  font-size: 0.86rem;
}

body.star-info-page .star-info-panel h2 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
}

body.star-info-page .star-info-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.62;
  list-style: none;
}

body.star-info-page .star-info-panel li {
  position: relative;
  padding-left: 18px;
}

body.star-info-page .star-info-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--info-gold);
  transform: rotate(45deg);
}

body.star-info-page .star-info-band,
body.star-thankyou-page .star-thankyou-band {
  padding: 0;
  border-top: 1px solid rgba(202, 165, 108, 0.22);
  border-bottom: 1px solid rgba(202, 165, 108, 0.22);
  background:
    radial-gradient(circle at 0% 50%, rgba(202, 165, 108, 0.13), transparent 25%),
    #071014;
}

body.star-info-page .star-info-band-grid,
body.star-thankyou-page .star-info-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.star-info-page .star-info-band article,
body.star-thankyou-page .star-info-band-grid article {
  min-height: 118px;
  padding: 27px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

body.star-info-page .star-info-band article:last-child,
body.star-thankyou-page .star-info-band-grid article:last-child {
  border-right: 0;
}

body.star-info-page .star-info-band strong,
body.star-thankyou-page .star-info-band-grid strong {
  display: block;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.star-info-page .star-info-band p,
body.star-thankyou-page .star-info-band-grid p {
  max-width: 330px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  line-height: 1.55;
}

body.star-thankyou-page .star-thankyou-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding-top: 98px;
}

body.star-thankyou-page .star-thankyou-copy {
  max-width: 770px;
}

body.star-thankyou-page .star-thankyou-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

body.star-thankyou-page .star-thankyou-meta span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0 18px;
  border: 1px solid rgba(202, 165, 108, 0.32);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(4, 12, 16, 0.58);
  font-size: 0.74rem;
}

body.star-thankyou-page .star-thankyou-meta strong {
  color: var(--info-gold-2);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.star-thankyou-page .star-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

body.star-thankyou-page .star-thankyou-card {
  overflow: hidden;
  border: 1px solid rgba(202, 165, 108, 0.34);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(5, 12, 16, 0.7);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

body.star-thankyou-page .star-thankyou-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

body.star-thankyou-page .star-thankyou-card > div {
  padding: 28px;
}

body.star-thankyou-page .star-thankyou-card h2 {
  color: #fff;
  font-size: 1.36rem;
  line-height: 1.24;
}

body.star-thankyou-page .star-thankyou-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
  list-style: none;
}

body.star-thankyou-page .star-thankyou-card li {
  position: relative;
  padding-left: 17px;
}

body.star-thankyou-page .star-thankyou-card li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--info-gold);
  transform: rotate(45deg);
}

@media (max-width: 1180px) {
  body.star-info-page .star-info-layout,
  body.star-thankyou-page .star-thankyou-grid {
    grid-template-columns: 1fr;
  }

  body.star-info-page .star-info-aside {
    position: static;
  }

  body.star-info-page .star-info-band-grid,
  body.star-thankyou-page .star-info-band-grid {
    grid-template-columns: 1fr;
  }

body.star-info-page .star-info-band article,
body.star-thankyou-page .star-info-band-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Site-wide custom selects: keeps shop and contact dropdowns out of browser default blue/gray UI. */
body:not([data-page="admin"]) .site-native-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body:not([data-page="admin"]) .site-select {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-width: 0;
}

body:not([data-page="admin"]) .site-select.is-open {
  z-index: 70;
}

body:not([data-page="admin"]) .site-select-parent-open {
  z-index: 80;
}

body[data-page="contact"] .star-contact-form label.site-select-parent:not(.star-contact-check) > span:not(.site-select) {
  opacity: 0;
}

body:not([data-page="admin"]) .site-select-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(202, 165, 108, 0.36);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(8, 11, 13, 0.78), rgba(5, 8, 11, 0.9)),
    rgba(5, 8, 11, 0.78);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body:not([data-page="admin"]) .site-select-button:hover,
body:not([data-page="admin"]) .site-select.is-open .site-select-button {
  border-color: rgba(225, 198, 149, 0.78);
  background:
    linear-gradient(180deg, rgba(13, 17, 19, 0.9), rgba(5, 8, 11, 0.98)),
    rgba(5, 8, 11, 0.92);
  color: #ffe6b4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 30px rgba(0, 0, 0, 0.26);
}

body:not([data-page="admin"]) .site-select-button:focus-visible {
  outline: 2px solid rgba(210, 154, 63, 0.28);
  outline-offset: 2px;
  border-color: rgba(225, 198, 149, 0.84);
}

body:not([data-page="admin"]) .site-select-button:active {
  transform: translateY(1px);
}

body:not([data-page="admin"]) .site-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body:not([data-page="admin"]) .site-select-caret {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #d6aa63;
  border-bottom: 1.5px solid #d6aa63;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

body:not([data-page="admin"]) .site-select.is-open .site-select-caret {
  transform: translateY(2px) rotate(225deg);
}

body:not([data-page="admin"]) .site-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 75;
  display: none;
  max-height: 240px;
  overflow: auto;
  padding: 6px;
  border: 1px solid rgba(202, 165, 108, 0.42);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(12, 15, 16, 0.98), rgba(4, 7, 9, 0.98)),
    #06090b;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body:not([data-page="admin"]) .site-select.is-open .site-select-menu {
  display: grid;
  gap: 3px;
}

body:not([data-page="admin"]) .site-select-option {
  width: 100%;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

body:not([data-page="admin"]) .site-select-option:hover,
body:not([data-page="admin"]) .site-select-option.is-selected {
  border-color: rgba(202, 165, 108, 0.26);
  background: rgba(202, 165, 108, 0.15);
  color: #ffe6b4;
}

body:not([data-page="admin"]) select option,
body:not([data-page="admin"]) select optgroup {
  background: #06090b;
  color: #f6eee2;
}

body[data-page="shop"] .star-shop-results-head .site-select {
  width: 174px;
  min-width: 174px;
}

body[data-page="shop"] .star-shop-results-head .site-select-button {
  min-height: 38px;
  padding: 0 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}

body[data-page="contact"] .star-contact-form .site-select-button {
  height: 49px;
  padding: 19px 15px 8px;
  border-color: rgba(210, 154, 63, 0.34);
  border-radius: 5px;
  background: rgba(3, 10, 14, 0.74);
}

body[data-page="contact"] .star-contact-form .site-select-button::before {
  content: attr(data-site-label);
  position: absolute;
  top: 10px;
  left: 15px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1;
}

body[data-page="contact"] .star-contact-form .site-select-caret {
  position: absolute;
  right: 16px;
  top: 25px;
}

body[data-page="contact"] .star-contact-form .site-select-value {
  padding-right: 28px;
}

/* Compact hero treatments shared across storefront pages. */
body[data-page="home"] .star-hero,
body[data-page="home"] .star-hero-inner {
  min-height: 454px;
}

body[data-page="home"] .star-hero-bg,
body[data-page="shop"] .star-shop-hero-bg,
body[data-page="contact"] .star-contact-hero-bg,
body[data-page="care-guide"].star-subpage .star-subpage-hero-bg,
body[data-page="shipping"] .star-info-hero-bg,
body.star-thankyou-page .star-thankyou-bg {
  background-size: min(100vw, 1840px) auto;
  background-repeat: no-repeat;
  background-position: center 44%;
}

body[data-page="home"] .star-hero-inner {
  padding-top: 62px;
}

body[data-page="home"] .star-hero-copy {
  max-width: 460px;
  margin-top: 8px;
}

body[data-page="home"] .star-hero-copy h1 {
  font-size: clamp(2.35rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

body[data-page="home"] .star-hero-copy p {
  max-width: 360px;
  margin: 16px 0 24px;
  font-size: 0.92rem;
  line-height: 1.58;
}

body.star-subpage .star-subpage-hero,
body.star-subpage .star-subpage-hero-inner {
  min-height: 430px;
}

body.star-subpage .star-subpage-hero-inner {
  padding-top: 64px;
}

body.star-subpage .star-subpage-copy {
  margin-top: 8px;
}

body.star-subpage .star-subpage-copy h1 {
  font-size: clamp(2.15rem, 3.15vw, 3.1rem);
  line-height: 1.05;
}

body.star-subpage .star-subpage-copy > p:not(.star-kicker) {
  margin: 16px 0 24px;
  font-size: 0.92rem;
  line-height: 1.58;
}

body[data-page="shop"] .star-shop-hero,
body[data-page="shop"] .star-shop-hero-inner {
  min-height: 340px;
}

body[data-page="shop"] .star-shop-hero-inner {
  padding-top: 72px;
}

body[data-page="shop"] .star-shop-hero h1 {
  font-size: clamp(2.2rem, 3.35vw, 3.35rem);
  line-height: 1.02;
}

body[data-page="shop"] .star-shop-hero p {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.58;
}

body[data-page="contact"] .star-contact-hero {
  min-height: 330px;
}

body[data-page="contact"] .star-contact-hero-inner {
  padding-top: 76px;
}

body[data-page="contact"] .star-contact-hero h1 {
  font-size: clamp(2.15rem, 3.25vw, 3.25rem);
}

body[data-page="contact"] .star-contact-hero-inner > span {
  display: none;
}

body[data-page="contact"] .star-contact-hero p {
  max-width: 520px;
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.58;
}

body[data-page="contact"] .star-contact-form label.site-select-parent:not(.star-contact-check) {
  margin: 0;
}

body[data-page="contact"] .star-contact-form label.site-select-parent .site-select {
  position: relative;
  top: auto;
  left: auto;
  z-index: 3;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: normal;
  pointer-events: auto;
}

body[data-page="contact"] .star-contact-form .site-select-button {
  box-sizing: border-box;
  width: 100%;
}

body[data-page="contact"] .star-contact-methods::before {
  display: none;
}

body.star-info-page .star-info-hero,
body.star-thankyou-page .star-thankyou-hero {
  min-height: 410px;
}

body.star-info-page .star-info-hero-inner {
  min-height: 410px;
  padding-top: 118px;
  padding-bottom: 44px;
}

body.star-info-page .star-info-hero h1,
body.star-thankyou-page .star-thankyou-copy h1 {
  font-size: clamp(2.2rem, 3.25vw, 3.28rem);
  line-height: 1.04;
}

body.star-info-page .star-info-hero p:not(.star-kicker),
body.star-thankyou-page .star-thankyou-copy > p:not(.star-kicker) {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.58;
}

body.star-info-page .star-info-hero-facts {
  margin-top: 24px;
}

body.star-thankyou-page .star-thankyou-grid {
  min-height: 500px;
  padding-top: 78px;
}

body[data-page="home"] .star-collections {
  padding-top: 24px;
  padding-bottom: 34px;
}

body[data-page="home"] .star-collections .star-section-title {
  gap: 6px;
  margin-bottom: 16px;
}

body[data-page="home"] .star-collections .star-section-title h2 {
  font-size: 1.22rem;
  line-height: 1.14;
}

body[data-page="home"] .star-collections .star-section-title > span {
  width: 62px;
  height: 8px;
  background:
    linear-gradient(90deg, transparent, var(--star-gold), transparent) center / 100% 1px no-repeat,
    radial-gradient(circle, var(--star-gold) 0 2px, transparent 3px) center / 10px 10px no-repeat;
}

@media (min-width: 761px) {
  body[data-page="home"] .star-hero-copy,
  body.star-subpage .star-subpage-copy,
  body[data-page="shop"] .star-shop-hero-copy,
  body.star-thankyou-page .star-thankyou-copy {
    margin-left: clamp(42px, 3.5vw, 72px);
  }

  body.star-info-page .star-info-hero-inner {
    padding-left: clamp(42px, 3.5vw, 72px);
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .star-hero,
  body[data-page="home"] .star-hero-inner {
    min-height: 560px;
  }

  body[data-page="home"] .star-hero-bg,
  body[data-page="shop"] .star-shop-hero-bg,
  body[data-page="contact"] .star-contact-hero-bg,
  body[data-page="care-guide"].star-subpage .star-subpage-hero-bg,
  body[data-page="shipping"] .star-info-hero-bg,
  body.star-thankyou-page .star-thankyou-bg {
    background-size: auto 100%;
    background-position: 58% center;
  }

  body[data-page="home"] .star-hero-copy {
    max-width: 300px;
    margin-top: 88px;
  }

  body[data-page="home"] .star-hero-copy h1 {
    font-size: 2.55rem;
  }

  body.star-subpage .star-subpage-hero,
  body.star-subpage .star-subpage-hero-inner {
    min-height: 520px;
  }

  body.star-subpage .star-subpage-copy {
    margin-top: 86px;
  }

  body.star-subpage .star-subpage-copy h1 {
    font-size: 2.45rem;
  }

  body[data-page="shop"] .star-shop-hero,
  body[data-page="shop"] .star-shop-hero-inner,
  body[data-page="contact"] .star-contact-hero,
  body.star-info-page .star-info-hero,
  body.star-thankyou-page .star-thankyou-hero {
    min-height: 460px;
  }

  body.star-info-page .star-info-hero-inner,
  body.star-thankyou-page .star-thankyou-grid {
    min-height: 460px;
    padding-top: 92px;
  }
}

/* H5 QA pass: prevent narrow mobile layouts from inheriting desktop minimum columns. */
@media (max-width: 900px) {
  body[data-page="shop"] .star-shop-shell,
  body[data-page="product"] .star-product-detail-grid,
  body[data-page="product"] .star-product-info-grid,
  body[data-page="checkout"] .star-checkout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="shop"] .star-shop-results-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
  }

  body[data-page="shop"] .star-shop-results-head label,
  body[data-page="shop"] .star-shop-results-head .site-select,
  body[data-page="shop"] .star-shop-results-head .site-select-button {
    width: 100%;
    max-width: none;
  }

  body[data-page="shop"] .star-shop-results-head label {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  body[data-page="shop"] .star-shop-results-head .star-shop-search {
    max-width: none;
  }

  body[data-page="shop"] .star-shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="product"] .star-product-detail-hero {
    padding-top: 104px;
  }

  body[data-page="product"] .star-product-summary,
  body[data-page="product"] .star-product-gallery,
  body[data-page="product"] .star-product-tabs,
  body[data-page="product"] .star-product-guarantee {
    min-width: 0;
    width: 100%;
  }

  body[data-page="product"] .star-product-actions {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  body[data-page="product"] .star-buy-button {
    grid-column: auto;
  }

  body[data-page="product"] .star-product-tab-list {
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  body[data-page="product"] .star-product-tab-list::-webkit-scrollbar {
    display: none;
  }

  body[data-page="product"] .star-product-tab-list button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  body[data-page="product"] .star-product-tab-panel {
    max-width: none;
  }

  body[data-page="product"] .star-product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body:not([data-page="admin"]) {
    background: #050708;
  }

  body:not([data-page="admin"]) {
    overflow-x: hidden;
  }

  body[data-page="home"] .star-nav,
  body.star-subpage .star-nav {
    grid-template-columns: minmax(0, 1fr) repeat(4, 32px);
    gap: 8px;
    width: 100%;
  }

  body[data-page="home"] .star-header .star-brand,
  body.star-subpage .star-header .star-brand {
    width: min(210px, 46vw);
    height: 58px;
  }

  body[data-page="home"] .star-header .star-logo-image,
  body.star-subpage .star-header .star-logo-image {
    width: 210px;
  }

  body[data-page="home"] .star-icon-button,
  body[data-page="home"] .star-cart-link,
  body.star-subpage .star-icon-button,
  body.star-subpage .star-cart-link {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  body[data-page="home"] .star-nav-icon,
  body.star-subpage .star-nav-icon {
    width: 21px;
    height: 21px;
  }

  body[data-page="home"] .star-cart-link .star-nav-icon,
  body.star-subpage .star-cart-link .star-nav-icon {
    width: 23px;
    height: 23px;
  }

  body[data-page="home"] .language-toggle,
  body.star-subpage .language-toggle {
    width: 42px;
    min-width: 42px;
    height: 32px;
    min-height: 32px;
    padding: 0;
  }

  body[data-page="product"] .star-product-specs div {
    grid-template-columns: minmax(104px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
  }

  body[data-page="product"] .star-product-specs dt {
    gap: 9px;
    font-size: 0.66rem;
  }

  body[data-page="product"] .star-product-specs dd {
    overflow-wrap: anywhere;
  }

  body[data-page="product"] .star-product-guarantee article {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 14px;
    padding: 18px;
  }

  body[data-page="product"] .star-product-guarantee svg {
    width: 28px;
    height: 28px;
  }

  body[data-page="product"] .star-product-related-row {
    grid-template-columns: 22px minmax(0, 1fr) 22px;
    gap: 8px;
  }

  body[data-page="product"] .star-product-related-card {
    padding: 10px;
  }

  body[data-page="product"] .star-product-related-card h3 {
    min-height: 0;
    font-size: 0.72rem;
  }

  body[data-page="checkout"] .star-checkout-progress {
    gap: 4px;
  }

  body[data-page="checkout"] .star-checkout-progress::before {
    left: 24px;
    right: 24px;
  }

  body[data-page="checkout"] .star-checkout-progress strong {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  body[data-page="checkout"] .star-form-grid,
  body[data-page="checkout"] .star-form-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="checkout"] .star-checkout-block,
  body[data-page="checkout"] .star-order-summary {
    padding-left: 18px;
    padding-right: 18px;
  }

  body[data-page="home"] .star-newsletter-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  body[data-page="home"] .star-newsletter-form input,
  body[data-page="home"] .star-newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  body[data-page="shop"] .star-shop-sidebar,
  body[data-page="shop"] .star-shop-results {
    padding: 16px;
  }

  body[data-page="shop"] .star-shop-trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="product"] .star-product-mini-trust {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="product"] .star-product-summary h1 {
    padding-right: 44px;
    font-size: 1.82rem;
  }
}
