

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Backgrounds (Kept light and airy) */
  --ivory: #FDFBF7;
  --warm-white: #F9F6F0;
  --cream: #F0EBE0;
  
  /* Muted Accents (Slightly deepened) */
  --sand: #C4B5A1; 
  --blush: #E8D5D0; 
  --sage: #91A387; 
  
  /* Text & Primary Accents (Deepened significantly for contrast) */
  --taupe: #6C6258; 
  --gold: #96733D; 
  --gold-light: #B8976A; 
  --dusty-rose: #A87162; 
  
  /* High Contrast Darks (Unchanged) */
  --charcoal: #2C2C2C;
  --soft-black: #1A1A1A;
  
  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

@font-face {
  font-family: 'Hamilton';
  src: url('fonts/HAMILTON.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satisfy';
  src: url('fonts/Satisfy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Self-hosted Google Fonts — eliminates 700ms external round-trip */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v16-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v16-latin-300italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v16-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v16-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v16-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-v15-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-v15-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-v15-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}


/* ========== ACCORDION FORM STYLES ========== */
.accordion-step {
  border: 2px solid var(--sand); /* Darker, thicker outline */
  margin-bottom: 1rem;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04); /* Subtle shadow to lift it */
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Make the active step pop with your brand gold */
.accordion-step.active {
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(150, 115, 61, 0.1);
}

/* --- Completed step (green) --- */
.accordion-step.step-valid:not(.active) {
  border-color: #27ae60;
  box-shadow: 0 4px 12px rgba(39,174,96,0.08);
}
.accordion-step.step-valid .accordion-header .step-check {
  display: inline-block;
}
.accordion-step.step-valid:not(.active) .accordion-header {
  background: linear-gradient(135deg, #f0faf4 0%, var(--warm-white) 100%);
}

/* --- Incomplete / error step (red) --- */
.accordion-step.step-error {
  border-color: #e74c3c !important;
  box-shadow: 0 4px 12px rgba(231,76,60,0.12) !important;
  animation: stepShake 0.4s ease;
}
.accordion-step.step-error:not(.active) .accordion-header {
  background: linear-gradient(135deg, #fef5f4 0%, var(--warm-white) 100%);
}

.step-check {
  display: none;
  color: #27ae60;
  font-size: 1.1rem;
  margin-left: 0.5rem;
  font-weight: 600;
}

@keyframes stepShake {
  0%, 100% { transform: translateX(0); }
  15%, 55% { transform: translateX(-5px); }
  35%, 75% { transform: translateX(5px); }
}



.accordion-header {
  padding: 1.25rem 1.5rem;
  background: var(--warm-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--soft-black);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease;
}
.accordion-header:hover {
  background: var(--cream);
}
.accordion-step.active .accordion-header {
  border-bottom: 1px solid var(--cream);
  background: var(--ivory);
  font-weight: 500;
}
.accordion-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.accordion-step.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion-content {
  display: none;
  padding: 2rem 1.5rem;
}

/* This is the magic rule that makes the form visible! */
.accordion-step.active .accordion-content {
  display: block;
  animation: fadeIn 0.4s ease;
}

.accordion-step.active .accordion-header {
  border-bottom: 2px solid var(--gold); /* Matches the outer border */
  background: var(--ivory);
  font-weight: 500;
}


.step-nav {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--cream);
  text-align: right;
}
.btn-next {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--gold);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-next:hover {
  background: var(--charcoal);
}




html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== FREE SHIPPING BAR ========== */
.free-shipping-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 40%, var(--blush) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,208,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeUp 1.2s ease-out;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--soft-black);
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: #7A6E62;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--soft-black);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--taupe);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: var(--taupe);
}

/* ========== SECTION STYLING ========== */
section {
  padding: 5rem 1.5rem;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  color: var(--soft-black);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  text-align: center;
  color: #7A6E62;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* ========== BUNDLE CARDS ========== */
.bundles-section {
  background: var(--warm-white);
}

.bundles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .bundles-grid.single-bundle {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

.bundle-card {
  background: var(--ivory);
  border: 1px solid var(--cream);
  padding: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (hover: hover) {
  .bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  }
}

.bundle-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--cream);
}

.bundle-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--gold);
  padding: 0.35rem 1.2rem;
  margin-bottom: 1rem;
}

.bundle-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--soft-black);
  margin-bottom: 0.3rem;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
}

.bundle-price-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--taupe);
  margin-top: 0.2rem;
}

.bundle-set-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  margin-top: 0.6rem;
}

/* Image gallery in card */
.bundle-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream);
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

/* Bundle CTA button */
.bundle-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--gold);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.bundle-cta:active {
  background: var(--charcoal);
}
@media (hover: hover) {
  .bundle-cta:hover {
    background: var(--charcoal);
  }
}

.bundle-gallery .gallery-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .gallery-img-wrap:hover img {
    transform: scale(1.05);
  }
}

.bundle-gallery .gallery-wide {
  grid-column: 1 / -1;
}

.bundle-gallery .gallery-wide img {
  aspect-ratio: 2 / 1;
}

/* Gallery zoom/magnifier button */
.gallery-zoom-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
  z-index: 5;
  padding: 0;
}

.gallery-zoom-btn svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  pointer-events: none;
}

@media (hover: hover) {
  .gallery-img-wrap:hover .gallery-zoom-btn {
    opacity: 1;
  }
}

.gallery-zoom-btn:hover {
  background: rgba(0,0,0,0.75);
}

@media (max-width: 768px) {
  .gallery-zoom-btn {
    opacity: 1;
  }
}

/* Gallery select bar — bottom overlay on each image */
.gallery-select-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.5rem;
  background: rgba(44, 44, 44, 0.8);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
  z-index: 4;
  border: none;
  width: 100%;
}
.gallery-select-bar:active {
  background: var(--gold);
}
@media (hover: hover) {
  .gallery-img-wrap:hover .gallery-select-bar {
    opacity: 1;
  }
  .gallery-select-bar:hover {
    background: var(--gold);
  }
}
.gallery-select-bar svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .gallery-select-bar {
    opacity: 1;
    font-size: 0.55rem;
    padding: 0.35rem 0.4rem;
  }
}

/* Bundle includes */
.bundle-includes {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--cream);
}

.bundle-includes h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.75rem;
}

.bundle-includes ul {
  list-style: none;
}

.bundle-includes li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.bundle-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.55rem;
}

/* ========== ORDER FORM ========== */
.order-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--warm-white) 100%);
}

.order-container {
  max-width: 700px;
  margin: 0 auto;
}

.order-form {
  background: white;
  border: 1px solid var(--cream);
  padding: 2.5rem 2rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.form-group label .required {
  color: var(--dusty-rose);
}

.form-group textarea,
.form-group select,
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--cream);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A89888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--cream);
  margin: 2rem 0;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--soft-black);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream);
}

/* Bundle Type Radio Cards */
.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 450px;
}

.bundle-options label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--cream);
  background: var(--ivory);
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
  text-transform: none;
  letter-spacing: normal;
}

.bundle-options label:hover, .bundle-options label:focus-within {
  border-color: var(--gold);
  background: white;
}

.bundle-options input[type="radio"] {
  margin-top: 0.25rem;
}

.bundle-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bundle-main-price {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.value-pricing {
  display: block;
  font-style: italic;
  color: var(--taupe);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* Style selector cards */
.style-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.style-option {
  position: relative;
  cursor: pointer;
}

.style-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.style-option .style-card {
  border: 1.5px solid var(--cream);
  padding: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  position: relative;
  opacity: 0.75;
}
@media (hover: hover) {
  .style-option .style-card:hover {
    border-color: var(--sand);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
}

/* --- Radio dot indicator --- */
.style-card .radio-dot {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  background: white;
  z-index: 2;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.style-option input[type="radio"]:checked + .style-card .radio-dot {
  border-color: var(--gold);
  background: var(--gold);
}
.style-option input[type="radio"]:checked + .style-card .radio-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.style-option .style-card .img-wrap {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
}

.style-option .style-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.style-card .zoom-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
  z-index: 5;
  padding: 0;
}

.style-card .zoom-btn svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  pointer-events: none;
}

@media (hover: hover) {
  .style-card:hover .zoom-btn {
    opacity: 1;
  }
}
.style-card .zoom-btn:focus {
  opacity: 1;
}

.style-card .zoom-btn:hover {
  background: rgba(0,0,0,0.75);
}

/* His & Hers swap card */
.swap-card {
  position: relative;
  margin-bottom: 0.5rem;
}

.swap-card .img-wrap {
  margin-bottom: 0;
}

.swap-card .img-wrap.hidden-version {
  display: none;
}

.swap-card .img-wrap img {
  aspect-ratio: 1;
}

.swap-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.45rem 0.5rem;
  border: none;
  background: var(--charcoal);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}

.swap-toggle:active {
  background: var(--gold);
  color: var(--ivory);
}
@media (hover: hover) {
  .swap-toggle:hover {
    background: var(--gold);
    color: var(--ivory);
  }
}

.swap-toggle svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.style-option .style-card span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  padding-bottom: 0.25rem;
}

.style-option input[type="radio"]:checked + .style-card {
  border-color: var(--gold);
  border-width: 3px;
  box-shadow: 0 0 0 2px var(--gold), 0 4px 12px rgba(150, 115, 61, 0.2);
  opacity: 1;
  transform: none;
}

.style-option input[type="radio"]:checked + .style-card span {
  color: var(--gold);
  font-weight: 500;
}

.style-option .style-card .swap-toggle span {
  color: #FFFFFF;
  font-weight: 400;
}

.style-option input[type="radio"]:checked + .style-card .swap-toggle span {
  color: #FFFFFF;
  font-weight: 400;
}

.style-card-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: normal;
  text-transform: none;
  color: var(--taupe);
  margin-bottom: 0.2rem;
}
.tap-hint {
  display: none;
  font-weight: 300;
  font-style: italic;
}

.style-option input[type="radio"]:checked + .style-card .style-card-note {
  color: var(--taupe);
  font-weight: 300;
}

.imprint-foot-preview {
  margin-top: 1.25rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(135deg, #fef9f0 0%, #fdf4e7 100%);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--taupe);
  text-align: center;
}
.imprint-foot-preview .ifp-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.imprint-foot-preview .ifp-pair-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--soft-black);
  margin-right: 0.3rem;
}
.imprint-foot-preview .ifp-foot-label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
  margin-right: 0.15rem;
}
.imprint-foot-preview .ifp-foot-text {
  color: var(--soft-black);
  font-weight: 500;
}
.imprint-foot-preview .ifp-spacer {
  display: inline-block;
  width: 0.8rem;
}
.imprint-foot-preview .ifp-row {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.imprint-foot-preview .ifp-format-row {
  margin-top: 0.4rem;
  padding-top: 0.35rem;
  border-top: 1px dashed var(--gold-light);
  text-align: center;
}
.imprint-foot-preview .ifp-format-caption {
  font-size: 0.65rem;
  font-style: italic;
  color: var(--taupe);
  letter-spacing: 0.02em;
}
.date-format-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: none;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  margin-left: 0.5rem;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.2s ease, color 0.2s ease;
}
.date-format-btn:hover {
  background: var(--gold);
  color: white;
}
.ifp-char-tip {
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--taupe);
  line-height: 1.5;
  text-align: center;
}
.ifp-shorten-link {
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
  font-style: italic;
}
.ifp-columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 600px) {
  .ifp-columns { gap: 0.5rem; }
  .imprint-foot-preview { padding: 0.5rem 0.4rem; font-size: 0.72rem; }
  .ifp-col-design { font-size: 0.88rem; }
  .ifp-col-line, .ifp-col-foot-text { font-size: 0.75rem; }
  .ifp-col-foot-label { font-size: 0.62rem; }
  .ifp-col-label { font-size: 0.7rem; }
}
.ifp-col {
  text-align: center;
  min-width: 0;
  flex: 1;
}
.ifp-col-design {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--soft-black);
  margin-bottom: 0.15rem;
}
.ifp-col-line {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--soft-black);
}
.ifp-col-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.35rem;
}
.ifp-col-foot-label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
  margin-right: 0.15rem;
}
.ifp-col-foot-text {
  color: var(--soft-black);
  font-weight: 500;
  font-size: 0.82rem;
}

@media (max-width: 600px) {
  .image-modal img.enlarged-crop {
    transform: scale(1.7); 
  }
}

/* Price summary */
.price-summary {
  background: var(--warm-white);
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid var(--cream);
}

.price-summary .total-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.price-summary .total-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--soft-black);
  margin: 0.25rem 0;
}

.price-summary .total-note {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--taupe);
}

.price-summary .original-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--taupe);
  text-decoration: line-through;
  margin-bottom: 0.1rem;
}

.price-summary .discount-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
  background: var(--sage);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.3rem;
}

.promo-toggle-wrap {
  margin-top: 0.75rem;
}

.promo-toggle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.promo-toggle:hover {
  color: var(--taupe);
}

.promo-drawer {
  display: none;
  margin-top: 0.5rem;
}

.promo-drawer.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

.promo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  max-width: 260px;
  margin: 0 auto;
}

.promo-row input[type="text"] {
  flex: 1;
  padding: 0.45rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: white;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}

.promo-row input[type="text"]:focus {
  outline: none;
  border-color: var(--gold);
}

.promo-row .btn-apply {
  padding: 0.45rem 0.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  background: transparent;
  border: 1px solid var(--sand);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.promo-row .btn-apply:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.promo-feedback {
  font-family: var(--font-body);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  min-height: 1em;
}

.promo-feedback.success {
  color: var(--sage);
  font-weight: 600;
}

.promo-feedback.error {
  color: var(--dusty-rose);
}

/* PayPal button area */
.paypal-container {
  margin-top: 1.5rem;
  text-align: center;
}

/* Free checkout (when promo covers full amount) */
.free-checkout-container {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-free-checkout {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--sage);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.btn-free-checkout:hover {
  background: #7a8e70;
}

/* Shipping info box */
.shipping-info-box {
  background: var(--warm-white);
  border: 1px solid var(--cream);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
}
.shipping-info-box .shipping-info-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--soft-black);
  margin: 0 0 0.6rem;
  letter-spacing: 0.05em;
}
.shipping-info-box .shipping-detail {
  font-size: 0.85rem;
  color: var(--taupe);
  margin: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.shipping-info-box .shipping-detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
}
.shipping-options {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shipping-option-card {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid var(--cream);
  border-radius: 4px;
  cursor: pointer;
  background: white;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.shipping-option-card:hover {
  border-color: var(--gold-light);
  background: var(--ivory);
}
.shipping-option-card.selected {
  border-color: var(--gold);
  background: var(--ivory);
  box-shadow: 0 0 0 1px var(--gold);
}
.shipping-option-card input[type="radio"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.shipping-option-text {
  flex: 1;
}
.shipping-option-title {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--soft-black);
}
.shipping-option-price {
  font-weight: 600;
  color: var(--gold);
}
.shipping-option-hint {
  font-size: 0.78rem;
  color: var(--taupe);
  margin-top: 0.15rem;
  line-height: 1.4;
}
.shipping-option-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.badge-rush {
  background: var(--blush);
  color: var(--dusty-rose);
}
.badge-fastest {
  background: #ffe4e1;
  color: #c0392b;
}

#paypal-button-container {
  max-width: 500px;
  margin: 0 auto;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--taupe);
}

.secure-note svg {
  width: 14px;
  height: 14px;
}

/* ========== PRE-ORDER HELP ========== */
.preorder-help {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  text-align: center;
  border-top: 1px dashed var(--cream);
}
.preorder-help-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.preorder-help-contact {
  font-size: 0.8rem;
  color: var(--taupe);
}
.preorder-help-contact a {
  color: var(--gold);
  text-decoration: none;
}
.preorder-help-contact a:hover {
  text-decoration: underline;
}
.preorder-help-note {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--taupe);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ========== CUSTOM PRODUCT POLICY ========== */
.policy-toggle-wrap {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--cream);
}
.policy-toggle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--taupe);
  text-decoration: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.3s ease;
}
.policy-toggle:hover {
  color: var(--gold);
}
.policy-arrow {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  margin-left: 0.2rem;
}
.policy-toggle-wrap.open .policy-arrow {
  transform: rotate(180deg);
}
.policy-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  text-align: left;
  padding: 0 0.5rem;
}
.policy-toggle-wrap.open .policy-drawer {
  max-height: 300px;
  padding: 1rem 0.5rem 0.25rem;
}
.policy-drawer p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--taupe);
  margin-bottom: 0.6rem;
}
.policy-drawer p:last-child {
  margin-bottom: 0;
}
.policy-drawer a {
  color: var(--gold);
  text-decoration: none;
}
.policy-drawer a:hover {
  text-decoration: underline;
}

/* ========== BAGS SHOWCASE ========== */
.bags-section {
  background: var(--cream);
  text-align: center;
}

.bags-image {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.bags-image img {
  width: 100%;
  display: block;
}

.bag-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.bag-option {
  background: var(--ivory);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  border: 1px solid var(--sand);
}

/* ========== TRUST BAR (above order form) ========== */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 1rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
}

.trust-bar-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.trust-bar-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.trust-bar-sep {
  color: var(--sand);
  font-size: 0.7rem;
}

@media (max-width: 500px) {
  .trust-bar {
    gap: 0.3rem 0.8rem;
    padding: 0.8rem 1rem;
  }
  .trust-bar-item { font-size: 0.72rem; }
  .trust-bar-sep { display: none; }
}

/* ========== TESTIMONIALS CAROUSEL ========== */
.testimonials-section {
  background: var(--warm-white);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}

.testimonials-track-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

.testimonial-inner {
  background: var(--ivory);
  border: 1px solid var(--cream);
  padding: 2rem 2rem 1.6rem;
  text-align: left;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--cream);
  padding-top: 1rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.testimonial-date {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--taupe);
}

.testimonial-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 2px;
}

.badge-printed {
  background: var(--blush);
  color: var(--dusty-rose);
}

.badge-imprint {
  background: #e6e0d4;
  color: var(--gold);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.testimonials-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.testimonials-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

/* Swipe hint on mobile */
.testimonials-swipe-hint {
  display: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--taupe);
  margin-top: 0.8rem;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .testimonials-swipe-hint { display: block; }
}

/* ========== SOCIAL PROOF ========== */
.proof-section {
  background: var(--ivory);
  text-align: center;
}

.proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.proof-stat {
  flex: 1;
  min-width: 150px;
}

.proof-stat .stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.proof-stat .stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--taupe);
  margin-top: 0.5rem;
}

/* ========== FOOTER ========== */
.page-footer {
  background: var(--soft-black);
  color: var(--sand);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--taupe);
}

/* ========== INFO MODALS (Contact / Privacy) ========== */
.info-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,26,0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
.info-modal.show {
  display: flex;
}
.info-modal-content {
  background: var(--ivory);
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  padding: 2.5rem 2rem;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  font-family: var(--font-body);
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.7;
}
.info-modal-tall {
  max-width: 640px;
  padding-bottom: 1.5rem;
}
.info-modal-scroll {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.info-modal-scroll::-webkit-scrollbar { width: 4px; }
.info-modal-scroll::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 4px; }
.info-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.8rem;
  color: var(--taupe);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.info-modal-close:hover {
  color: var(--gold);
}
.info-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 0.25rem 0;
}
.info-modal-subtitle {
  font-size: 0.85rem;
  color: var(--taupe);
  margin-bottom: 1rem;
}
.info-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem 0;
}
.info-modal-content p {
  margin: 0 0 0.75rem 0;
}
.info-modal-details p {
  margin: 0 0 1rem 0;
}
.info-modal-content a {
  color: var(--gold);
  text-decoration: none;
}
.info-modal-content a:hover {
  color: var(--dusty-rose);
}
.info-modal-updated {
  font-size: 0.75rem;
  color: var(--taupe);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ========== SUCCESS OVERLAY ========== */
.success-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.success-overlay.show {
  display: flex;
}

.success-box {
  background: white;
  max-width: 500px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  animation: fadeUp 0.5s ease-out;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-box h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
}

.success-box .order-number {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.success-box p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.success-box a {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  text-decoration: none;
  transition: all 0.4s ease;
}

.success-box a:hover {
  background: var(--gold);
  color: var(--soft-black);
}

/* ========== FORM PROCESSING SPINNER ========== */
.form-processing {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-processing.show {
  display: block;
}

.form-processing .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--cream);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-processing p {
  font-size: 0.9rem;
  color: var(--taupe);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: skip fade-in animations — iOS inertial scroll delays the observer */
@media (max-width: 768px) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  
  .style-options {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .style-option .style-card .img-wrap {
    margin-bottom: 0;
  }

  .style-option .style-card .swap-card {
    margin-bottom: 0.35rem;
  }
  
  .style-card .zoom-btn {
    opacity: 0.7;
    width: 24px;
    height: 24px;
  }
  .style-card .radio-dot {
    width: 16px;
    height: 16px;
    top: 8px;
    left: 8px;
  }
  .style-option input[type="radio"]:checked + .style-card .radio-dot::after {
    width: 5px;
    height: 5px;
  }
  .tap-hint { display: inline; }

  .swap-toggle {
    font-size: 0.55rem;
    padding: 0.35rem 0.25rem;
    letter-spacing: 0.08em;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .order-form {
    padding: 1.5rem 1.25rem;
  }
  
  .proof-stats {
    gap: 2rem;
  }
  
  .bundle-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== NOTIFICATION ========== */
/* --- Inline step notification (inside each accordion step) --- */
.step-notification {
  display: none;
  background: #fde8e8;
  border: 1px solid #e5a5a5;
  border-left: 4px solid #c0392b;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: #8b2020;
  border-radius: 4px;
  line-height: 1.5;
}
.step-notification.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}
.step-notification .notif-icon {
  margin-right: 0.4rem;
}

/* Legacy global notification — hidden, replaced by step-level */
.form-notification {
  display: none !important;
}

/* ========== COLOR SWATCHES ========== */
.color-select-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.color-select-wrap select {
  flex: 1;
  border-left: none;
}

.color-swatch {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid var(--cream);
  background: var(--ivory);
  flex-shrink: 0;
}

/* ========== CHAR COUNT & HINTS ========== */
.char-count {
  font-size: 0.75rem;
  color: var(--taupe);
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.char-count.warning {
  color: var(--dusty-rose);
  font-weight: 400;
}

.char-count.over-limit {
  color: #c0392b;
  font-weight: 500;
}

.personalization-hint {
  font-size: 0.9rem;
  color: var(--taupe);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
}

.personalization-hint strong {
  color: var(--charcoal);
  font-weight: 500;
}

.personalization-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dusty-rose);
  letter-spacing: normal;
  text-transform: none;
}

/* ========== AUTOFILL CHECKBOX ========== */
.autofill-wrap {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--cream);
  border-radius: 6px;
}
.autofill-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
}
.autofill-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.autofill-note {
  display: block;
  margin-top: 0.45rem;
  padding-left: 1.65rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--taupe);
  line-height: 1.5;
}

/* ========== BAG STYLE SELECTION ========== */
.bag-preview-large {
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  background: var(--warm-white);
  margin-bottom: 1rem;
  position: relative;
}
.bag-preview-set {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1rem;
}
.bag-preview-set.active {
  visibility: visible;
  position: relative;
  padding: 0;
}
.bag-card-previews {
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
}
.bag-card-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.bag-print-area {
  width: 100%;
  aspect-ratio: 7 / 4;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Hamilton', serif;
  color: var(--soft-black);
  line-height: 1.2;
  padding: 0.5rem;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.bag-print-area.font-satisfy {
  font-family: 'Satisfy', cursive;
}
.bag-print-area .bag-line1 {
  white-space: nowrap;
  text-align: center;
}
.bag-print-area .bag-line2 {
  white-space: nowrap;
  text-align: center;
  margin-top: 2px;
}
.bag-print-area .bag-line3 {
  white-space: nowrap;
  text-align: center;
  margin-top: 1px;
}
/* Anniversary mode: big number on line1, "Anniversary" on line2, date on line3 */
.bag-print-area.anniversary-mode .bag-line1 {
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.bag-card-who {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--taupe);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bag-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.bag-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--cream);
  border-radius: 6px;
  background: white;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.bag-radio-label:hover {
  border-color: var(--sand);
  background: var(--ivory);
}
.bag-radio-label:has(input:checked) {
  border-color: var(--gold);
  background: var(--ivory);
}
.bag-radio-label input[type="radio"] {
  accent-color: var(--gold);
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .bag-card-previews { max-width: 100%; gap: 0.75rem; }
  .bag-preview-large { padding: 1rem 0.75rem; }
}

.shipping-note {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--taupe);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  line-height: 1.5;
}

.gift-message-label-hint {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--taupe);
  font-style: italic;
  margin-top: 0.3rem;
}

.checkbox-row-billing {
  margin-bottom: 1rem;
}

.checkbox-row-billing label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--charcoal);
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-row-billing input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ========== IMAGE LIGHTBOX MODAL ========== */
.image-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.image-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.image-modal img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: var(--ivory);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2001;
}

.close-modal:hover {
  color: var(--gold);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== HIS & HERS SIDE-BY-SIDE BLOCKS ========== */
/* On desktop: two columns. On mobile: Her block first, His block second — no alternating. */
.his-hers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.pair-col-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--soft-black);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--cream);
}

@media (max-width: 600px) {
  .his-hers-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== SIZE PILL SELECTOR ========== */
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.size-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.size-group-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  border: 1.5px solid var(--sand);
  border-radius: 6px;
  padding: 0.35rem 0.4rem;
  background: var(--warm-white);
  transition: border-color 0.2s ease;
}

.size-group.has-selected .size-group-pills {
  border-color: #2e7d32;
}

.size-group-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.size-group.has-selected .size-group-label {
  color: #2e7d32;
  font-weight: 600;
}

.size-group.has-selected .size-group-label::before {
  content: '\2713 ';
}

.size-pill {
  position: relative;
}

.size-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.size-pill label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 42px;
  border: 1.5px solid var(--sand);
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.size-pill label:hover {
  border-color: var(--gold-light);
  background: var(--warm-white);
}

.size-pill input[type="radio"]:checked + label {
  border-color: var(--gold);
  background: var(--charcoal);
  color: var(--ivory);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(150, 115, 61, 0.15);
}

.size-pill input[type="radio"]:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.size-pill.not-available label {
  border-color: var(--cream);
  background: var(--warm-white);
  color: var(--sand);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: var(--sand);
}

.size-pill.not-available input[type="radio"] {
  pointer-events: none;
}

.size-tip {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--taupe);
  font-style: italic;
  margin-bottom: 0.6rem;
}

@media (max-width: 480px) {
  .size-pill label {
    width: 46px;
    height: 36px;
    font-size: 0.8rem;
  }
  .size-pills {
    gap: 0.45rem;
  }
  .size-group-pills {
    gap: 0.25rem;
    padding: 0.3rem 0.3rem;
  }
  .size-group-label {
    font-size: 0.62rem;
  }
}

