@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Candalis';
  src: url('fonts/CandelisDEMO-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-main: #efefef;
  --pink-soft: #f8f1f5;
  --pink-section: #f1d9e4;
  --pink-text: #b95792;
  --pink-dark: #8d3c6c;
  --border-accent: #9ed7dd;
  --card-bg: #fbfbfb;
  --text-main: #56374d;
  --white: #ffffff;
}

body {
  font-family: 'Glacial Indifference', Arial, sans-serif;
  background: #efefef;
  color: var(--text-main);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* Decorative page bubbles */
.listings-page,
.cart-page,
.checkout-page,
.booking-page,
.terms-page,
.faq-page,
.product-page,
.page-panel-wrap {
  position: relative;
  overflow: hidden;
}

.listings-page > *:not(.page-bubble),
.cart-page > *:not(.page-bubble),
.checkout-page > *:not(.page-bubble),
.booking-page > *:not(.page-bubble),
.terms-page > *:not(.page-bubble),
.faq-page > *:not(.page-bubble),
.product-page > *:not(.page-bubble),
.page-panel-wrap > *:not(.page-bubble) {
  position: relative;
  z-index: 1;
}

.page-bubble {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.page-bubble-left {
  bottom: -150px;
  left: -250px;
  width: 900px;
  opacity: 0.8;
}

.page-bubble-right {
  bottom: -100px;
  right: -250px;
  width: 900px;
  opacity: 0.8;
}

.page-bubble-top-left {
  top: -200px;
  left: -250px;
  width: 850px;
  opacity: 0.75;
}

.page-bubble-top-right {
  top: -180px;
  right: -280px;
  width: 900px;
  opacity: 0.75;
}

.page-bubble-mid-left {
  top: 35%;
  left: -300px;
  width: 850px;
  opacity: 0.7;
}

.page-bubble-mid-right {
  top: 30%;
  right: -300px;
  width: 900px;
  opacity: 0.7;
}

.hero-gradient {
  background: linear-gradient(to bottom, #f8eef3, var(--pink-section));
}

.soft-pink {
  background: linear-gradient(to bottom, var(--pink-section), #f8eef3);
}

.blush-white {
  background: linear-gradient(to bottom, #f8eef3, var(--pink-section));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
}

.header-inner {
  width: 100%;
  max-width: 100%;
  height: 80px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: var(--pink-soft);
  transition: opacity 0.3s ease;
}

/* Pink gradient shadow under navbar */
.header-inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(241,217,228,0.5), transparent);
  z-index: -1;
  pointer-events: none;
}

/* Bottom-half heart shape bump under the logo */
.header-inner::after {
  content: "";
  position: absolute;
  left: 134px;
  bottom: -28px;
  width: 100px;
  height: 50px;
  background: var(--pink-soft);
  clip-path: path('M0,0 L100,0 L100,0 C100,18 88,34 58,50 C18,34 0,18 0,0 Z');
  z-index: 1;
}

.logo-link {
  display: inline-block;
  position: relative;
  z-index: 2;
  transform: translate(100px, 12px);
}

.logo-link-home {
  display: none;
}

.logo-notch-wrap {
  position: relative;
  width: 105px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-heart {
  width: 100px;
  position: relative;
  z-index: 2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--pink-text);
  font-size: 22px;
  padding-right: 8px;
  transform: translateX(-60px);
}

/* ── Hamburger button — hidden on desktop, shown on mobile via media query ── */
.hamburger-btn {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}

.hamburger-btn span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: var(--pink-text);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.hamburger-btn span:nth-child(1) { top: 12px; }
.hamburger-btn span:nth-child(2) { top: 20px; }
.hamburger-btn span:nth-child(3) { top: 28px; }

.hamburger-btn.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.main-nav a {
  font-weight: 400;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  border-bottom-color: var(--border-accent);
  transform: translateY(-2px);
}

.main-nav a.active-link {
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--pink-text);
  cursor: pointer;
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-btn:hover {
  border-bottom-color: var(--border-accent);
  transform: translateY(-2px);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 6px;
  min-width: 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  z-index: 30;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 8px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.show-menu {
  display: block;
}

.hero-section,
.split-section,
.listings-page,
.cart-page,
.page-panel-wrap {
  padding: 28px 24px;
}

.hero-card {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 20px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.hero-bg {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 183, 209, 0.42);
}

.hero-inner {
  position: absolute;
  inset: 0;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.hero-copy {
  max-width: 470px;
  color: var(--white);
  transform: translate(80px, 30px);
}

.hero-copy h1 {
  font-size: 36px;
  line-height: 1.35;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 3px 16px rgba(0,0,0,0.6);
}

.hero-brand img {
  width: 480px;
  transform: translateX(-120px);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 36px 20px;
}

.split-image img,
.service-image img {
  width: 100%;
  border-radius: 0;
  max-width: 520px;
}

.split-copy h2,
.service-copy h1,
.shop-intro h1,
.product-title,
.page-panel h1,
.form-panel h1,
.cart-card h1 {
  color: var(--pink-text);
}

.split-copy h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.split-copy p,
.service-copy p,
.page-panel p,
.form-panel p,
.shop-intro p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--pink-dark);
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  border: 2px solid transparent;
  color: var(--pink-text);
  border-radius: 6px;
}

.btn-light:hover {
  border-color: var(--border-accent);
}

.btn-hero {
  background: var(--white);
  border: 2px solid transparent;
  color: var(--pink-text);
  border-radius: 6px;
}

.btn-hero:hover {
  border-color: var(--border-accent);
}

.btn-primary {
  background: var(--pink-text);
  border: 2px solid transparent;
  color: var(--white);
  border-radius: 6px;
}

.btn-primary:hover {
  border-color: var(--border-accent);
}

.page-panel-wrap {
  min-height: 78vh;
}

.back-link {
  display: inline-block;
  color: var(--pink-text);
  margin-bottom: 18px;
}

.page-panel,
.form-panel,
.cart-card {
  background: #f9f9f9;
  border: 2px solid var(--border-accent);
  border-radius: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px;
}

.page-panel {
  text-align: center;
}

.page-panel h1,
.form-panel h1,
.cart-card h1 {
  font-size: 28px;
  margin-bottom: 18px;
}

.page-panel p {
  max-width: 860px;
  margin: 0 auto 18px;
}

.text-left {
  text-align: left;
}

.form-panel {
  max-width: 900px;
}

.site-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-form label {
  color: var(--pink-dark);
  margin-top: 4px;
}

.required {
  color: var(--pink-text);
  font-weight: 700;
}

.input-error {
  border: 1.5px solid var(--pink-text) !important;
  background: #fdf0f5 !important;
}

.field-error {
  display: block;
  color: var(--pink-text);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 600;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  border: 2px solid var(--border-accent);
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
}

.site-form textarea {
  resize: vertical;
}

.service-hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 32px;
}

.service-copy h1 {
  font-size: 34px;
  margin-bottom: 14px;
}

.service-bullets {
  padding-left: 18px;
  color: var(--pink-dark);
  line-height: 1.8;
}

.service-form-panel h2 {
  color: var(--pink-text);
  margin-bottom: 12px;
}

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

.shop-intro h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

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

.product-card {
  background: #fffdfd;
  border: 2px solid var(--border-accent);
  border-radius: 24px;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-card-media img,
.product-card-media video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.product-card-media video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card-media video {
  opacity: 1;
}

.product-card h3 {
  color: var(--text-main);
  margin-bottom: 8px;
}

.product-card .product-card-price {
  color: var(--pink-text);
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--pink-dark);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  padding: 40px 24px 70px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-thumbs img,
.product-thumbs video,
.product-thumbs .thumb-btn {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-thumbs .thumb-btn {
  padding: 0;
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
}

.product-thumbs .thumb-btn img,
.product-thumbs .thumb-btn video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: none;
  display: block;
  pointer-events: none;
}

.product-thumbs img.active-thumb,
.product-thumbs video.active-thumb,
.product-thumbs .thumb-btn.active-thumb {
  border-color: var(--pink-text);
}


.product-main-image-wrap {
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

/* All displayed images fill the square frame — placement diagrams included. */
.product-main-image.main-full {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Phone-only swipeable gallery strip — hidden by default, shown on phone. */
.product-gallery-strip { display: none; }

.product-price {
  font-size: 48px;
  margin-bottom: 12px;
  color: #352835;
}

.product-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.product-description {
  color: var(--pink-dark);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-description p {
  margin-bottom: 10px;
}

.how-to-order {
  margin-bottom: 20px;
}

.how-to-order h3 {
  color: var(--pink-text);
  font-size: 18px;
  margin-bottom: 10px;
}

.how-to-order ol {
  padding-left: 20px;
  color: var(--pink-dark);
  line-height: 1.8;
}

.helper-text {
  color: #7a6170;
  font-size: 14px;
  margin-bottom: 6px;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

/* Cart table */
.cart-table-wrap {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 2px solid var(--border-accent);
  border-radius: 18px;
  overflow: hidden;
}

.cart-table thead th {
  text-align: left;
  padding: 14px 16px;
  color: var(--pink-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border-accent);
  background: var(--pink-soft);
}

.cart-table tbody tr {
  border-bottom: 1px solid #ece3e8;
}

.cart-table tbody tr:last-child {
  border-bottom: none;
}

.cart-table td {
  padding: 16px;
  vertical-align: middle;
}

.cart-td-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-table-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.cart-td-name {
  color: var(--text-main);
  font-weight: 700;
  font-size: 15px;
}

.cart-td-details {
  color: var(--pink-dark);
  font-size: 14px;
  line-height: 1.5;
}

.cart-td-price {
  color: var(--pink-text);
  font-weight: 700;
  white-space: nowrap;
}

.cart-td-remove .btn {
  font-size: 13px;
  padding: 8px 14px;
}

.cart-page {
  min-height: 60vh;
}

.cart-empty {
  text-align: center;
  color: var(--pink-dark);
  padding: 60px 24px 80px;
  max-width: 520px;
  margin: 0 auto;
}

.cart-empty-illustration {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 auto 16px;
  opacity: 0.92;
  animation: cartEmptyFloat 3.5s ease-in-out infinite;
}

@keyframes cartEmptyFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}

.cart-empty h2 {
  color: var(--pink-text);
  font-size: 26px;
  margin: 0 0 10px;
}

.cart-empty p {
  color: var(--pink-dark);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.cart-empty-btn {
  display: inline-block;
  min-width: 200px;
}

/* Cart bottom: shipping + summary */
.cart-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.cart-shipping-card,
.cart-summary-card {
  background: var(--white);
  border: 2px solid var(--border-accent);
  border-radius: 22px;
  padding: 28px;
}

.cart-shipping-card h2,
.cart-summary-card h2 {
  color: var(--text-main);
  font-size: 20px;
  margin-bottom: 16px;
}

#shippingOptions h3 {
  color: var(--pink-text);
  font-size: 17px;
  margin: 20px 0 12px;
}

.shipping-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--border-accent);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.15s ease;
}

.shipping-option.selected {
  border-color: var(--pink-text);
  background: var(--pink-soft);
}

.shipping-option input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--pink-text);
}

.shipping-option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.shipping-option-name {
  color: var(--text-main);
  font-weight: 700;
  font-size: 15px;
}

.shipping-option-delivery {
  color: var(--pink-dark);
  font-size: 13px;
}

.shipping-option-note {
  color: #b0a0aa;
  font-size: 12px;
}

.shipping-option-price {
  color: var(--pink-text);
  font-weight: 700;
  white-space: nowrap;
}

/* Summary rows */
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--text-main);
  font-size: 15px;
  border-bottom: 1px solid #ece3e8;
}

.summary-total {
  border-bottom: none;
  font-size: 20px;
  font-weight: 700;
  padding-top: 14px;
}

.summary-total span:last-child {
  color: var(--pink-text);
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  margin-top: 18px;
}

/* Checkout page */
.checkout-page {
  padding: 40px 24px 70px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.checkout-summary,
.checkout-payment {
  background: #f9f9f9;
  border: 2px solid var(--border-accent);
  border-radius: 28px;
  padding: 32px;
}

.checkout-summary h2,
.checkout-payment h2 {
  color: var(--text-main);
  font-size: 22px;
  margin-bottom: 20px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #ece3e8;
}

.checkout-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-item-name {
  color: var(--text-main);
  font-weight: 700;
}

.checkout-item-detail {
  color: var(--pink-dark);
  font-size: 13px;
}

.checkout-item-price {
  color: var(--pink-text);
  font-weight: 700;
  white-space: nowrap;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.checkout-total span:last-child {
  color: var(--pink-text);
}

/* Stripe card element */
#card-element,
.stripe-field {
  border: 2px solid var(--border-accent);
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
}

.stripe-field {
  margin-bottom: 12px;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card-row-item label {
  display: block;
}

/* Cancel-booking page */
.cancel-panel {
  max-width: 560px;
}

.booking-summary-card {
  background: var(--pink-soft);
  border: 2px solid var(--border-accent);
  border-radius: 16px;
  padding: 18px 22px;
  margin: 0 0 18px;
}

.booking-summary-card .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--text-main);
  font-size: 15px;
  border-bottom: 1px solid #f1dce7;
}

.booking-summary-card .summary-row:last-child {
  border-bottom: none;
}

.cancel-policy {
  background: #fff7fb;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--pink-dark);
}

.cancel-policy p {
  margin: 0 0 6px;
}

.cancel-policy p:last-child {
  margin: 0;
}

.cancel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cancel-actions .btn {
  flex: 1;
  min-width: 180px;
}

#payment-request-wrap {
  margin-bottom: 10px;
}

#payment-request-button {
  margin-bottom: 16px;
}

.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--pink-text);
  font-family: 'Glacial Indifference', Arial, sans-serif;
  font-size: 14px;
  margin: 18px 0 10px;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--border-accent);
}

.or-divider span {
  padding: 0 14px;
  font-style: italic;
  white-space: nowrap;
}

.checkout-error {
  color: #e74c3c;
  font-size: 14px;
  min-height: 20px;
  margin-top: 4px;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  margin-top: 10px;
}

.checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success state */
.checkout-success {
  padding: 80px 24px;
}

.success-card {
  background: #f9f9f9;
  border: 2px solid var(--border-accent);
  border-radius: 28px;
  max-width: 560px;
  margin: 0 auto;
  padding: 50px 40px;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-text);
  color: var(--white);
  font-size: 32px;
  line-height: 64px;
  margin: 0 auto 20px;
}

.success-card h2 {
  color: var(--text-main);
  margin-bottom: 14px;
}

.success-card p {
  color: var(--pink-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}

.success-email {
  font-size: 14px;
  margin-bottom: 24px;
}

.site-footer {
  background: var(--pink-soft);
  width: 100%;
  max-width: 100%;
  padding: 8px 42px 6px;
  border-top: 1.5px solid var(--pink-section);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.footer-group {
  text-align: right;
  padding-top: 16px;
}

.footer-logo img {
  width: 240px;
}

.footer-group h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-group a {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-copy {
  margin-top: 6px;
  font-size: 12px;
}

.footer-logo-home {
  display: none;
}

/* About page */
.about-page {
  background: #f8e8f0;
  min-height: 80vh;
  padding: 40px 24px 70px;
  position: relative;
  overflow: hidden;
}

.about-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 2px solid var(--border-accent);
  border-radius: 20px;
  max-width: 800px;
  margin: 30px auto 0;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(158, 215, 221, 0.2);
  text-align: center;
}

.about-card h1 {
  color: var(--pink-dark);
  font-size: 32px;
  margin-bottom: 24px;
}

.about-card p {
  color: var(--pink-dark);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 20px;
}

.about-card .about-muted {
  color: #c07aa3;
}

/* Bow framing private party text */
.bow-framed {
  position: relative;
}

.party-bow-topleft {
  position: absolute;
  top: -80px;
  left: -100px;
  width: 440px;
  transform: rotate(0deg);
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 900px) {
  .party-bow-topleft {
    width: 120px;
    top: -50px;
    left: -20px;
  }
}

/* Decorative stickers */
.sticker-section {
  position: relative;
  overflow: visible;
}

.sticker {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  user-select: none;
  -webkit-user-drag: none;
}

/* Hero stickers */
.sticker-hero-charm {
  top: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(6deg);
  width: 70px;
  z-index: 3;
}

/* Charm bar event section */
.sticker-bubbles-left {
  top: -380px;
  right: -100px;
  width: 820px;
  opacity: 0.85;
  z-index: 4;
}

.sticker-charm-top-right {
  top: 20px;
  right: 40%;
  width: 55px;
  transform: rotate(-18deg);
}

.sticker-charm-bottom-left {
  bottom: 20px;
  left: 32%;
  width: 60px;
  transform: rotate(15deg);
}

/* Private party section */
.sticker-party-charm-top {
  top: 30px;
  left: 42%;
  width: 60px;
  transform: rotate(-10deg);
}

.sticker-party-charm-bottom {
  bottom: 40px;
  right: 38%;
  width: 65px;
  transform: rotate(14deg);
}

.sticker-party-bow {
  bottom: 60px;
  left: 40px;
  width: 85px;
  transform: rotate(-8deg);
}

/* Shop section */
.sticker-whitebubbles {
  top: -380px;
  right: -100px;
  width: 820px;
  opacity: 0.85;
  z-index: 4;
}

.sticker-shop-charm1 {
  top: 20px;
  left: 30px;
  width: 55px;
  transform: rotate(-15deg);
}

.sticker-shop-charm2 {
  bottom: 30px;
  right: 42%;
  width: 60px;
  transform: rotate(12deg);
}

.sticker-shop-charm4 {
  top: 40%;
  right: 30px;
  width: 70px;
  transform: rotate(-6deg);
}

/* Hide smaller decorative stickers on phone only — tablet keeps them */
@media (max-width: 600px) {
  .sticker-charm-top-right,
  .sticker-charm-bottom-left,
  .sticker-party-charm-top,
  .sticker-party-charm-bottom,
  .sticker-shop-charm1,
  .sticker-shop-charm2,
  .sticker-shop-charm4,
  .sticker-party-bow {
    display: none;
  }

  .sticker-hero-bow,
  .sticker-hero-charm {
    width: 60px;
  }
}

/* FAQ page */
.faq-page {
  padding: 40px 24px 70px;
}

.faq-list {
  max-width: 800px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border-accent);
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--pink-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--pink-text);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.6;
}

/* Terms page */
.terms-page {
  padding: 40px 24px 70px;
}

.terms-card {
  background: var(--white);
  border: 2px solid var(--border-accent);
  border-radius: 28px;
  max-width: 800px;
  margin: 20px auto 0;
  padding: 40px;
}

.terms-card h1 {
  color: var(--pink-text);
  font-size: 28px;
  margin-bottom: 6px;
}

.terms-sub {
  color: var(--pink-dark);
  margin-bottom: 24px;
}

.terms-card h3 {
  color: var(--text-main);
  font-size: 17px;
  margin: 20px 0 8px;
}

.terms-card p {
  color: var(--pink-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Inline scrollable terms box */
.terms-scroll-box {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--pink-soft);
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-main);
}

.terms-scroll-box h4 {
  font-size: 14px;
  color: var(--pink-dark);
  margin: 14px 0 4px;
}

.terms-scroll-box h4:first-child {
  margin-top: 0;
}

.terms-scroll-box p {
  margin-bottom: 6px;
}

/* Terms checkbox */
.terms-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.terms-agree input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--pink-text);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.terms-agree label {
  color: var(--pink-dark);
  font-size: 14px;
  line-height: 1.4;
}

.terms-agree a {
  color: var(--pink-text);
  text-decoration: underline;
}

/* Info dropdowns */
.info-dropdown {
  border: 2px solid var(--border-accent);
  border-radius: 14px;
  margin-top: 14px;
  overflow: hidden;
}

.info-dropdown summary {
  padding: 14px 18px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.info-dropdown summary::after {
  content: "+";
  font-size: 20px;
  color: var(--pink-text);
  transition: transform 0.2s ease;
}

.info-dropdown[open] summary::after {
  content: "−";
}

.info-dropdown-content {
  padding: 0 18px 16px;
  color: var(--pink-dark);
  font-size: 15px;
  line-height: 1.6;
}

.info-dropdown-content p {
  margin-bottom: 10px;
}

.info-dropdown-content ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.info-dropdown-content ul li {
  margin-bottom: 4px;
}

/* Booking section titles */
.booking-section-title {
  color: var(--pink-text);
  font-size: 18px;
  margin: 20px 0 10px;
}

.booking-options {
  margin-bottom: 20px;
}

/* Booking pages */
.booking-page {
  padding: 40px 24px 70px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  max-width: 1100px;
  margin: 20px auto 0;
  align-items: start;
}

.booking-info-card,
.booking-form-card {
  background: var(--white);
  border: 2px solid var(--border-accent);
  border-radius: 28px;
  overflow: hidden;
}

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

.booking-info-body {
  padding: 30px 32px 36px;
}

.booking-info-body h1 {
  color: var(--pink-text);
  font-size: 28px;
  margin-bottom: 12px;
}

.booking-intro {
  color: var(--pink-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.booking-info-body .service-bullets {
  margin-bottom: 0;
}

.booking-form-card {
  padding: 32px;
  position: sticky;
  top: 24px;
}

.booking-form-card h2 {
  color: var(--pink-text);
  font-size: 22px;
  margin-bottom: 6px;
}

.booking-sub {
  color: var(--pink-dark);
  font-size: 15px;
  margin-bottom: 18px;
}

.booking-price-inline {
  color: var(--pink-text);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}

.booking-highlight {
  color: var(--pink-text);
  font-weight: 700;
  font-size: 15px;
}

.party-price-summary {
  background: var(--pink-soft);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 6px;
}

.party-price-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-main);
  font-size: 15px;
  margin-bottom: 6px;
}

.party-price-deposit {
  font-weight: 700;
  color: var(--pink-text);
  font-size: 17px;
}

.party-price-note {
  font-size: 13px;
  color: var(--pink-dark);
  margin-top: 8px;
  line-height: 1.4;
}

/* Payment modal */
.payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.payment-modal {
  background: var(--white);
  border: 2px solid var(--border-accent);
  border-radius: 22px;
  padding: 36px;
  max-width: 440px;
  width: 100%;
}

.payment-modal h3 {
  color: var(--text-main);
  font-size: 20px;
  margin-bottom: 6px;
}

.payment-modal p {
  color: var(--pink-dark);
  font-size: 14px;
  margin-bottom: 18px;
}

#booking-card-element {
  border: 2px solid var(--border-accent);
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 6px;
}

.payment-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.payment-modal-actions .btn {
  flex: 1;
  text-align: center;
}

/* Booking calendar */
.booking-calendar {
  margin-top: 10px;
  background: var(--white);
  border: 2px solid var(--border-accent);
  border-radius: 18px;
  padding: 18px;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cal-title {
  font-weight: 700;
  color: var(--text-main);
  font-size: 16px;
}

.cal-nav {
  background: none;
  border: 2px solid var(--border-accent);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font-size: 20px;
  cursor: pointer;
  color: var(--pink-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav:hover {
  background: var(--pink-soft);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.cal-day-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-dark);
  padding: 6px 0;
}

.cal-cell {
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 14px;
}

.cal-empty {
  background: none;
}

.cal-past {
  color: #ccc;
}

.cal-booked {
  background: #f8d7da;
  color: #9e3a3a;
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-available {
  cursor: pointer;
  color: var(--text-main);
  transition: 0.15s ease;
}

.cal-available:hover {
  background: var(--pink-soft);
}

.cal-selected {
  background: var(--pink-text) !important;
  color: var(--white) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.booking-success {
  text-align: center;
  padding: 30px 0;
}

.booking-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-text);
  color: var(--white);
  font-size: 28px;
  line-height: 56px;
  margin: 0 auto 16px;
}

.booking-success h3 {
  color: var(--text-main);
  margin-bottom: 10px;
}

.booking-success p {
  color: var(--pink-dark);
  margin-bottom: 8px;
}

/* ─────────────────────────────────────────────
   TABLET BREAKPOINT (601px – 900px)
   Keep the laptop multi-column layout — just shrunk.
   The 600px phone tier below overrides these for phones.
   ───────────────────────────────────────────── */
@media (max-width: 900px) and (min-width: 601px) {
  .main-nav {
    gap: 18px;
    font-size: 15px;
  }

  .nav-dropdown-btn {
    font-size: 15px;
  }

  /* Hero — keep side-by-side, but cancel laptop's fixed translates */
  .hero-inner {
    padding: 28px 24px;
    gap: 16px;
  }

  .hero-copy {
    max-width: 50%;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 24px;
    line-height: 1.35;
  }

  .hero-brand {
    flex: 0 0 auto;
  }

  .hero-brand img {
    width: 260px;
    transform: none;
  }

  /* Split sections — keep 2 columns, shrink images, drop heavy padding */
  .split-section {
    padding: 32px 22px;
  }

  .split-grid {
    gap: 22px;
    padding: 24px 12px;
  }

  .split-image img,
  .service-image img {
    max-width: 100%;
  }

  .split-copy h2,
  .service-copy h1 {
    font-size: 26px;
  }

  /* Listings — 3 columns (vs 4 on laptop) */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* Cart bottom + checkout — keep 2 columns */
  .cart-bottom,
  .checkout-grid {
    gap: 18px;
  }

  /* Booking page — keep 2 columns */
  .booking-layout {
    gap: 22px;
  }

  .booking-hero img {
    height: 280px;
  }

  .booking-info-body {
    padding: 26px 22px 30px;
  }

  /* Product detail — keep 2 columns */
  .product-gallery {
    gap: 18px;
  }

  .product-thumbs {
    flex-direction: column;
  }

  .product-main-image {
    height: 460px;
  }

  /* Footer — keep 5 columns, just shrunk */
  .footer-inner {
    gap: 20px;
    padding: 36px 24px 24px;
  }

  .footer-group h3 {
    font-size: 13px;
  }

  .footer-group a {
    font-size: 12px;
  }

  /* Charm bar section (first split-section) — image left, text right.
     Override the inline translates baked into the HTML. */
  .split-section:nth-of-type(2) .split-image img {
    transform: translateX(-30px) scale(1.25) !important;
  }

  .split-section:nth-of-type(2) .split-copy {
    transform: translateX(20px) !important;
  }

  /* Private party section (second split-section) — text + image both left,
     larger bow sticker. */
  .split-section:nth-of-type(3) .split-copy {
    transform: translateX(35px) !important;
  }

  .split-section:nth-of-type(3) .split-image img {
    transform: translateX(25px) scale(1.25) !important;
  }

  .party-bow-topleft {
    width: 280px !important;
    top: -70px !important;
    left: -50px !important;
  }

  /* Customize section (fourth split-section) — image left, text right. */
  .split-section:nth-of-type(4) .split-image img {
    transform: translate(-30px, -60px) scale(1.25) !important;
  }

  .split-section:nth-of-type(4) .split-copy {
    transform: translate(20px, -60px) !important;
  }

  /* Inner-page bubbles — shrink from laptop's 850-900px to fit tablet width */
  .page-bubble-left {
    width: 560px;
    bottom: -100px;
    left: -160px;
  }
  .page-bubble-right {
    width: 560px;
    bottom: -80px;
    right: -160px;
  }
  .page-bubble-top-left {
    width: 540px;
    top: -130px;
    left: -160px;
  }
  .page-bubble-top-right {
    width: 560px;
    top: -120px;
    right: -180px;
  }
  .page-bubble-mid-left {
    width: 540px;
    left: -200px;
  }
  .page-bubble-mid-right {
    width: 560px;
    right: -200px;
  }

  /* Home-page sticker bubbles — shrink from laptop's 820px */
  .sticker-bubbles-left,
  .sticker-whitebubbles {
    width: 560px;
    top: -260px;
    right: -80px;
    opacity: 0.85;
  }
}

/* ─────────────────────────────────────────────
   PHONE BREAKPOINT (≤ 600px)
   Targets all phones; sits on top of the 900px tablet tier above.
   ───────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Stop the page from scrolling sideways no matter what */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .page-shell {
    overflow-x: hidden;
  }

  /* ── Header + Hamburger ── */
  .header-inner {
    height: 70px;
    padding: 0 16px;
  }

  /* Reposition the heart-shaped notch under the mobile logo
     and override the clip-path with a path scaled to the new box size */
  .header-inner::after {
    left: 22px;
    bottom: -18px;
    width: 60px;
    height: 30px;
    clip-path: path('M0,0 L60,0 C60,11 53,20 35,30 C7,20 0,11 0,0 Z');
  }

  .logo-link {
    transform: translate(6px, 12px);
  }

  .logo-notch-wrap {
    width: 80px;
    height: 78px;
  }

  .logo-heart {
    width: 76px;
  }

  .hamburger-btn {
    display: block;
  }

  /* Nav becomes a full-screen drawer that slides in from the right */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--pink-soft);
    box-shadow: -8px 0 24px rgba(185, 87, 146, 0.18);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 84px 28px 28px;
    font-size: 20px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 50;
    overflow-y: auto;
  }

  .main-nav.nav-open {
    transform: translateX(0);
  }

  .main-nav a,
  .nav-dropdown {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(185, 87, 146, 0.18);
  }

  .main-nav a {
    border-bottom: 1px solid rgba(185, 87, 146, 0.18);
  }

  .nav-dropdown-btn {
    font-size: 20px;
    padding: 14px 0;
    text-align: left;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 8px 16px;
    min-width: 0;
  }

  .nav-dropdown-menu a {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: none;
  }

  /* ── Hero — stack: logo on top, text below, button below ── */
  .hero-section {
    padding: 16px 12px;
  }

  .hero-card {
    min-height: 460px;
    margin-top: 8px;
    max-width: 100%;
    border-radius: 22px;
  }

  .hero-bg {
    height: 460px;
  }

  .hero-inner {
    padding: 28px 22px;
    /* column-reverse puts .hero-brand (logo) on top, .hero-copy (text + btn) below */
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .hero-copy {
    transform: translateY(-100px);
    max-width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .hero-copy .btn {
    display: inline-block;
    width: auto;
    min-width: 180px;
  }

  .hero-brand {
    text-align: center;
  }

  .hero-brand img {
    width: 360px;
    transform: translateX(0);
  }

  /* ── Split sections — KEEP 2 columns like laptop, just shrunk ── */
  .split-section {
    padding: 26px 12px;
    overflow: visible;
  }

  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 10px 0;
    align-items: center;
  }

  /* Neutralize the desktop inline translates and scale images up so frames pop */
  .split-image img {
    transform: scale(1.35) !important;
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  /* Section 1: image on left → push image LEFT away from text */
  .split-section:nth-of-type(2) .split-image img {
    transform: scale(1.35) translateX(-14%) !important;
    transform-origin: left center;
  }
  .split-section:nth-of-type(2) .split-copy {
    transform: translateX(0) !important;
  }

  /* Section 2: image on right → push image RIGHT away, pull text RIGHT toward it */
  .split-section:nth-of-type(3) .split-image img {
    transform: scale(1.35) translateX(8%) !important;
    transform-origin: right center;
  }
  .split-section:nth-of-type(3) .split-copy {
    transform: translateX(8%) !important;
  }

  /* Section 3: image on left → push image LEFT away from text */
  .split-section:nth-of-type(4) .split-image img {
    transform: scale(1.35) translateX(-8%) !important;
    transform-origin: left center;
  }
  .split-section:nth-of-type(4) .split-copy {
    transform: translateX(6%) !important;
  }

  /* Neutralize the desktop inline translates on copy */
  .split-copy {
    transform: none !important;
    font-size: 13px !important;
    text-align: left;
    padding: 0 2px;
  }

  .split-copy h2 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .split-copy p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .split-copy .btn {
    padding: 9px 16px;
    font-size: 13px;
    min-height: 0;
  }

  .bow-framed {
    text-align: left;
  }

  .party-bow-topleft {
    width: 260px;
    top: -30px;
    left: -40px;
    transform: none;
  }

  /* ── Buttons ── */
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .btn-primary,
  .btn-light,
  .btn-hero {
    min-height: 44px; /* Apple HIG touch target */
  }

  /* ── Section titles & generic page panels ── */
  .section-title,
  .page-panel h1,
  .form-panel h1,
  .cart-card h1,
  .shop-intro h1 {
    font-size: 26px !important;
  }

  .page-panel-wrap,
  .listings-page,
  .cart-page,
  .checkout-page {
    padding: 22px 14px;
  }

  /* ── Forms ── */
  .site-form input,
  .site-form select,
  .site-form textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 12px 14px;
  }

  .site-form button,
  .site-form .btn {
    width: 100%;
  }

  /* ── About card ── */
  .about-page {
    padding: 24px 14px 50px;
  }

  .about-card {
    padding: 28px 22px;
    margin: 14px auto 0;
    border-radius: 18px;
  }

  .about-card h1 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* ── Product listings — KEEP grid like laptop, just shrunk ── */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 4px;
  }

  .product-card {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .product-card .product-card-price {
    font-size: 13px;
  }

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

  /* ── Product detail page ── */
  .product-page {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px 14px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-thumbs {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
  }

  /* On phone, hide the static main image and show the swipeable strip instead. */
  .product-main-image-wrap {
    display: none;
  }

  .product-gallery-strip {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
  }

  .product-gallery-strip::-webkit-scrollbar { display: none; }
  .product-gallery-strip { scrollbar-width: none; }

  /* All gallery images on phone use the same square frame as the placement
     diagram — feels consistent across product photos, chain photos, and
     placement images. */
  .product-gallery-strip .strip-slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    scroll-snap-align: center;
    border-radius: 18px;
  }
  .product-gallery-strip .strip-slide-full {
    object-fit: cover;
  }

  .product-main-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-title {
    font-size: 24px;
  }

  /* ── Cart table → keep laptop layout (rows side by side), just shrunk ── */
  .cart-table-wrap {
    overflow-x: visible;
  }

  .cart-table {
    table-layout: fixed;
    width: 100%;
  }

  .cart-table thead th {
    padding: 8px 6px;
    font-size: 9px;
    letter-spacing: 0.3px;
  }

  .cart-table td {
    padding: 8px 6px;
    font-size: 11px;
    vertical-align: middle;
  }

  .cart-td-product {
    gap: 6px;
    flex-wrap: wrap;
    min-width: 0;
  }

  .cart-table-img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
  }

  .cart-td-name {
    font-size: 11px;
    line-height: 1.2;
    flex: 1 1 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .cart-td-details {
    font-size: 10px;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .cart-td-price {
    font-size: 11px;
  }

  .cart-td-remove .btn {
    font-size: 9px;
    padding: 5px 8px;
    min-width: 0;
  }

  /* ── Cart bottom (shipping + summary) ── */
  .cart-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-shipping-card,
  .cart-summary-card {
    padding: 22px 18px;
  }

  /* ── Checkout ── */
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .checkout-summary,
  .checkout-payment {
    padding: 22px 18px;
  }

  .checkout-item {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* ── Booking pages ── */
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .booking-form-card {
    position: static;
    padding: 22px 18px;
  }

  .booking-hero img {
    height: 200px;
  }

  .booking-info-body {
    padding: 22px 18px 24px;
  }

  /* Calendar widget — make sure cells stay tappable */
  .booking-calendar {
    max-width: 100%;
  }

  .cal-cell {
    min-height: 38px;
    font-size: 14px;
  }

  /* ── FAQ ── */
  .faq-page {
    padding: 24px 14px 50px;
  }

  .faq-question {
    font-size: 15px;
  }

  /* ── Footer — KEEP laptop layout, just shrunk ── */
  .site-footer {
    padding: 8px 10px 10px;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 6px;
    align-items: start;
  }

  .footer-logo img {
    width: 100px;
  }

  .footer-group {
    text-align: right;
    padding-top: 8px;
  }

  .footer-group h3 {
    font-size: 9px;
    margin-bottom: 3px;
  }

  .footer-group a {
    font-size: 8px;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .footer-socials {
    justify-content: flex-end;
    gap: 6px;
  }

  .footer-socials img {
    width: 16px;
    height: 16px;
  }

  .footer-copy {
    font-size: 9px;
    margin-top: 4px;
  }

  /* ── Empty cart ── */
  .cart-empty {
    padding: 40px 16px 60px;
  }

  .cart-empty h2 {
    font-size: 22px;
  }

  /* Page bubbles — scale down + reposition so they peek around the cards */
  .page-bubble {
    width: 360px !important;
    opacity: 0.7;
  }

  .page-bubble-left {
    bottom: -60px;
    left: -120px;
  }

  .page-bubble-right {
    bottom: -60px;
    right: -120px;
  }

  .page-bubble-top-left {
    top: -80px;
    left: -130px;
  }

  .page-bubble-top-right {
    top: -80px;
    right: -130px;
  }

  .page-bubble-mid-left {
    top: 30%;
    left: -160px;
  }

  .page-bubble-mid-right {
    top: 30%;
    right: -160px;
  }

  /* Narrow cards a touch so bubbles can peek around the sides */
  .about-card,
  .form-panel {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Cart shipping + summary cards span the full width like the items table */
  .cart-shipping-card,
  .cart-summary-card {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Home-page bubble stickers — restore from the 900px tablet override */
  .sticker-bubbles-left,
  .sticker-whitebubbles {
    width: 440px !important;
    opacity: 0.85 !important;
    top: -160px !important;
  }
  .sticker-bubbles-left {
    top: -220px !important;
  }

  /* ── Payment modal ── */
  .payment-modal {
    margin: 16px;
    padding: 22px 18px;
    max-width: calc(100vw - 32px);
  }

  .payment-modal-actions {
    flex-direction: column;
  }

  .payment-modal-actions .btn {
    width: 100%;
  }

  /* ── Stickers — hide only the small charm stickers, keep bubbles ── */
  .sticker-hero-charm {
    display: none;
  }

  /* ── Modal/dialog safety ── */
  .payment-modal-overlay {
    padding: 0;
  }

  /* ── Terms scroll box ── */
  .terms-scroll-box {
    max-height: 180px;
    padding: 14px;
    font-size: 13px;
  }
}
/* ── Charm picker ─────────────────────────────────────── */
#charmPickerWrap { margin-top: 18px; }
.charm-picker-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.charm-picker-count {
  font-size: 13px;
  color: var(--pink-text);
  background: var(--pink-section);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.charm-picker-count.complete { background: #e7f5ea; color: #2e7d3a; }
.charm-picker-count.over { background: #fdecea; color: #a93226; }

.charm-picker-tabs {
  display: flex;
  gap: 6px;
  margin: 14px 0 10px;
  border-bottom: 1px solid #f1dce7;
  flex-wrap: wrap;
}
.charm-tab {
  appearance: none;
  background: transparent;
  border: none;
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-text);
  cursor: pointer;
  border-radius: 999px 999px 0 0;
  transition: background 0.15s;
}
.charm-tab:hover { background: #fbe9f0; }
.charm-tab.active {
  background: var(--pink-section);
  color: var(--pink-dark);
}

.charm-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  max-height: 480px;
  overflow-y: auto;
  border: 1px solid #f1dce7;
  border-radius: 18px;
  padding: 14px;
  background: #fdf1f6;
}

.charm-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  border: 2px solid #f4d6e4;
  border-radius: 16px;
  background: #fdf5f8;
  cursor: pointer;
  transition: transform 0.1s, border-color 0.15s, box-shadow 0.15s;
  text-align: center;
  overflow: hidden; /* clip the zoomed photo to the tile */
}
.charm-tile:hover { border-color: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(185,87,146,0.15); }
.charm-tile img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  /* charms sit in lots of whitespace — zoom in so they fill the tile */
  transform: scale(1.85);
  transform-origin: center;
  /* gentle exposure / brightness boost — adjust the numbers if needed */
  filter: brightness(1.18) contrast(1.08) saturate(1.1);
}
.charm-tile .charm-img-placeholder {
  width: 95px;
  height: 95px;
  background: #f4d6e4;
  border-radius: 50%;
}
.charm-tile .charm-name {
  font-size: 11px;
  line-height: 1.2;
  color: var(--pink-text);
  min-height: 26px;
  display: flex;
  align-items: center;
}

/* Letter tiles — bubble shares one source photo, rounded has none, so we
   render the actual letter character big and centered. */
.charm-tile.letter-tile .letter-visual {
  width: 95px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--pink-dark);
  background: linear-gradient(135deg, #fff7fb 0%, #fde4ef 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #f4d6e4;
}
.charm-tile.letter-tile .letter-visual[data-style="rounded"] {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -2px;
}
.charm-tile.picked-count {
  border-color: var(--pink-dark);
  background: #fff7fb;
}
.charm-tile .picked-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--pink-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.charm-tile.out-of-stock {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f9f5f7;
}
.charm-tile.out-of-stock:hover { transform: none; box-shadow: none; border-color: #f4d6e4; }
.charm-tile.placeholder {
  cursor: default;
  border-style: dashed;
  background: #fdf5f8;
}
.charm-tile.placeholder:hover { transform: none; box-shadow: none; }

.charm-letter-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: #fdf5f8;
  border-radius: 14px;
  margin-bottom: 10px;
}
.charm-letter-picker label { font-size: 13px; font-weight: 600; color: var(--pink-text); }
.charm-letter-picker select {
  padding: 10px 14px;
  border: 1px solid #f1dce7;
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: var(--pink-text);
  cursor: pointer;
}
.charm-letter-picker .add-letter-btn {
  align-self: flex-start;
}

.charm-picks {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--pink-section);
  border-radius: 14px;
  min-height: 50px;
}
.charm-picks-empty {
  margin: 0;
  font-style: italic;
  color: var(--pink-text);
  font-size: 13px;
}
.charm-pick-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #f4d6e4;
  border-radius: 999px;
  padding: 5px 10px 5px 5px;
  font-size: 12px;
  color: var(--pink-dark);
  margin: 3px;
}
.charm-pick-item img { width: 24px; height: 24px; object-fit: contain; border-radius: 50%; background: #fff; }
.charm-pick-item .remove-pick {
  background: none;
  border: none;
  color: var(--pink-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
}
.charm-pick-item .remove-pick:hover { color: #a93226; }

/* ── Charm tile + add button ──────────────────────────── */
.charm-tile { cursor: zoom-in; }
.charm-tile .charm-stock {
  font-size: 10px;
  font-weight: 600;
  color: var(--pink-text);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: -2px;
}
.charm-tile .charm-stock.low {
  color: #c0392b;
}

/* ── Charm preview modal ──────────────────────────────── */
.charm-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.charm-modal[hidden] { display: none; }
.charm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(120, 60, 90, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.charm-modal-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(120, 60, 90, 0.35);
  animation: charm-modal-in 0.2s ease-out;
}
@keyframes charm-modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.charm-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--pink-text);
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
}
.charm-modal-close:hover { color: var(--pink-dark); }
.charm-modal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  width: 240px;
  height: 240px;
  background: #fdf1f6;
  border-radius: 24px;
  overflow: hidden;
}
.charm-modal-visual img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  transform: scale(1.6);
  filter: brightness(1.18) contrast(1.08) saturate(1.1);
}
.charm-modal-visual .modal-letter {
  width: 240px;
  height: 240px;
  font-size: 150px;
  border-radius: 24px;
}
.charm-modal-title {
  font-family: Georgia, serif;
  font-size: 20px;
  margin: 0 0 6px;
  color: #56374d;
}
.charm-modal-stock {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--pink-text);
}
.charm-modal-add {
  width: 100%;
}

/* ── Charm placement inputs ───────────────────────────── */
#charmPlacementWrap { margin-top: 18px; }
.placement-inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  background: var(--pink-section);
  border-radius: 14px;
  margin-top: 8px;
}
.placement-empty {
  margin: 0;
  font-style: italic;
  color: var(--pink-text);
  font-size: 13px;
}
.placement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border: 1px solid #f4d6e4;
  border-radius: 12px;
  padding: 6px 10px 6px 6px;
}
.placement-charm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pink-dark);
  flex: 1;
  min-width: 0;
}
.placement-charm img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
  background: #fdf1f6;
  flex-shrink: 0;
}
.placement-input {
  width: 70px;
  padding: 7px 10px;
  border: 1px solid #f1dce7;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  text-align: center;
  color: var(--pink-text);
  background: #fff;
}
.placement-input.input-error {
  border-color: #e74c3c;
  background: #fff5f5;
}

/* ── Pick chips with letter prefix + drag-and-drop ─── */
.charm-pick-item {
  cursor: grab;
  padding: 5px 10px 5px 5px;
  user-select: none;
  transition: transform 0.1s, box-shadow 0.15s;
  touch-action: none; /* let our touchmove handler control scrolling */
}
.charm-pick-item:active { cursor: grabbing; }
.charm-pick-item.dragging { opacity: 0.4; }
.charm-pick-item.drag-over {
  box-shadow: 0 0 0 2px var(--pink-dark);
  transform: translateY(-1px);
}
.charm-pick-item .pick-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink-dark);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-family: Georgia, serif;
}
.charm-pick-item .pick-name {
  font-size: 12px;
  color: var(--pink-dark);
}
.charm-picks-help {
  margin: 12px 0 6px;
  font-size: 12px;
  color: var(--pink-text);
  font-style: italic;
}

/* ── Materials + Care dropdowns under gallery images ──
   Sits in the same column as the main image (col 2) so they stay attached
   to the photo even when the thumbs column is taller. */
.product-main-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
/* Materials + Care Instructions dropdowns live inside the customizer form,
   directly above the Buy now / Add to cart buttons. */
.gallery-info-dropdowns {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}


/* ── Chain picker ──────────────────────────────────── */
.chain-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  padding: 14px;
  background: #fdf1f6;
  border: 1px solid #f1dce7;
  border-radius: 18px;
  margin-top: 8px;
}
.chain-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  border: 2px solid #f4d6e4;
  border-radius: 16px;
  background: #fdf5f8;
  cursor: pointer;
  text-align: center;
  transition: transform 0.1s, border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
.chain-tile:hover { border-color: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(185,87,146,0.15); }
.chain-tile.selected { border-color: var(--pink-dark); background: #fff7fb; box-shadow: 0 0 0 2px rgba(185,87,146,0.3); }
.chain-tile img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  filter: brightness(1.05);
}
.chain-tile .chain-name {
  font-size: 11px;
  line-height: 1.3;
  color: var(--pink-text);
  font-weight: 500;
  min-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 2px;
}
.chain-tile.out-of-stock { opacity: 0.45; cursor: not-allowed; }
.chain-tile.out-of-stock:hover { transform: none; box-shadow: none; border-color: #f4d6e4; }

.chain-size-buttons {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.chain-size-btn {
  flex: 1;
  min-width: 70px;
  padding: 10px 8px;
  border: 2px solid #f4d6e4;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.chain-size-btn:hover { border-color: var(--pink-dark); }
.chain-size-btn.selected { border-color: var(--pink-dark); background: #fff7fb; }
.chain-size-btn .size-code { font-weight: 700; color: var(--pink-dark); font-size: 16px; }
.chain-size-btn .size-measure { font-size: 11px; color: var(--pink-text); }

/* ── Responsive fixes for product page + pickers ───────────────────────── */

/* On narrower laptop windows (1024px and below), the 1.1fr / 0.9fr split
   crams the customizer column too tight and the pickers overflow. Switch to
   stacked layout earlier so everything has room to breathe. */
@media (max-width: 1024px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-main-column {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  .product-details {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Prevent any horizontal scroll on the product page */
.product-page { overflow-x: hidden; }
.product-form, .product-details { min-width: 0; }
.charm-picker-grid, .chain-picker-grid, .charm-picks { max-width: 100%; min-width: 0; }
.charm-pick-item { max-width: 100%; }
.charm-pick-item .pick-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}

/* Phone ≤ 600px: tighten picker tiles + chain size buttons */
@media (max-width: 600px) {
  /* Charm + chain picker tiles slightly smaller so 2-3 fit per row */
  .charm-picker-grid {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 8px;
    padding: 10px;
    max-height: 420px;
  }
  .charm-tile { padding: 6px 4px; }
  .charm-tile img,
  .charm-tile .charm-img-placeholder {
    width: 78px;
    height: 78px;
  }
  .charm-tile.letter-tile .letter-visual {
    width: 78px;
    height: 78px;
    font-size: 50px;
  }
  .charm-tile .charm-name { font-size: 10px; min-height: 22px; }

  .chain-picker-grid {
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 8px;
    padding: 10px;
  }
  .chain-tile img { width: 80px; height: 80px; }
  .chain-tile .chain-name { font-size: 10px; min-height: 26px; }

  /* Chain size buttons: 2-up grid on phone, full width */
  .chain-size-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .chain-size-btn { min-width: 0; padding: 8px 6px; }

  /* Picks panel: smaller chips */
  .charm-pick-item { font-size: 11px; padding: 4px 8px 4px 4px; }
  .charm-pick-item .pick-letter { width: 22px; height: 22px; font-size: 12px; }

  /* Modal: smaller card on phone */
  .charm-modal-card { padding: 24px 18px 22px; max-width: 320px; }
  .charm-modal-visual { width: 200px; height: 200px; margin-bottom: 14px; }
  .charm-modal-visual img { width: 200px; height: 200px; }
  .charm-modal-visual .modal-letter { width: 200px; height: 200px; font-size: 120px; }

  /* Picker tabs: 3 equal-width buttons in one row, smaller padding/text so they fit. */
  .charm-picker-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    flex-wrap: nowrap;
  }
  .charm-tab {
    padding: 8px 4px;
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ── Mother's Day promo banner + discounted price + ribbon ─────────────── */
:root { --promo-color: #5a0f3a; }

.promo-banner {
  background: var(--promo-color);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Glacial Indifference', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.promo-banner strong {
  font-weight: 700;
  margin: 0 4px;
  letter-spacing: 1.6px;
}

/* Strikethrough original price + emphasized discounted price */
.promo-strike {
  color: #b48ea3;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-weight: 400;
  margin-right: 6px;
  font-size: 0.85em;
}
.promo-price { color: var(--promo-color); font-weight: 700; }

/* Diagonal corner ribbon on listing cards */
.product-card { position: relative; overflow: hidden; }
.promo-ribbon {
  position: absolute;
  top: 14px;
  left: -38px;
  z-index: 5;
  width: 130px;
  padding: 5px 0;
  background: var(--promo-color);
  color: #fff;
  font-family: 'Glacial Indifference', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-40deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

@media (max-width: 600px) {
  .promo-banner { font-size: 12px; letter-spacing: 0.8px; padding: 9px 12px; }
  .promo-ribbon { font-size: 10px; width: 110px; left: -34px; top: 12px; }
}


/* ── Hero "Customize" button: small diagonal ribbon in top-left during promo ── */
.btn-hero.has-promo-badge {
  position: relative;
  overflow: hidden;
  border-color: var(--promo-color, #5a0f3a);
  color: var(--promo-color, #5a0f3a);
}
.btn-hero.has-promo-badge:hover {
  border-color: var(--promo-color, #5a0f3a);
  background: var(--promo-color, #5a0f3a);
  color: #fff;
}
/* Reuses .promo-ribbon base; just shrinks for the button. No animation. */
.promo-ribbon-btn {
  top: 6px;
  left: -28px;
  width: 90px;
  padding: 2px 0;
  font-size: 9px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .promo-ribbon-btn {
    width: 78px;
    left: -26px;
    top: 5px;
    font-size: 8px;
    letter-spacing: 0.8px;
  }
}

/* Cart + checkout: "You save" row + line-item strikethrough during promo */
.cart-savings-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(185, 87, 146, 0.18);
  font-family: 'Glacial Indifference', Arial, sans-serif;
  font-size: 14px;
}
.cart-savings-label {
  color: var(--promo-color, #5a0f3a);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.cart-savings-amount {
  color: var(--promo-color, #5a0f3a);
  font-weight: 700;
}
.checkout-savings-row {
  background: rgba(90, 15, 58, 0.06);
  border-radius: 8px;
  padding: 6px 10px;
}
.checkout-savings-row .checkout-item-name {
  color: var(--promo-color, #5a0f3a);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
}

/* Cart price cell: keep struck-through and discounted price on one line */
.cart-td-price .promo-strike,
.cart-td-price .promo-price,
.checkout-item-price .promo-strike,
.checkout-item-price .promo-price { white-space: nowrap; }
