/* ============================================
   Blondie Slays — Custom Styles
   ============================================ */

/* ── Projects / Feature Swiper ───────────────── */
.projects-feature { padding: 4rem 0; }
.projects-title { font-family: 'Caveat', cursive !important; font-weight: 700 !important; text-transform: none !important; letter-spacing: 0 !important; color: #be185d !important; margin-bottom: 3rem !important; font-size: 2.8rem !important; }
.feature-swiper-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.feature-swiper { overflow: hidden; padding-bottom: 3rem; }
.feature-card { display: flex; flex-direction: row; align-items: center; background: transparent; border: none; box-shadow: none; gap: 3rem; min-height: 440px; padding: 1rem 0; }
.feature-card-image-wrap { position: relative; flex-shrink: 0; display: flex; align-items: center; }
.feature-card-image { width: 320px; height: 420px; border: none; border-radius: 16px; overflow: hidden; background: #f5f5f5; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 36px rgba(190,24,93,.15), 0 4px 12px rgba(0,0,0,.05); }
.feature-card-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-dot { display: block; width: 14px; height: 14px; border-radius: 50%; background: #FF1493; flex-shrink: 0; }
.feature-dot-left { margin-right: 18px; }
.feature-dot-right { margin-left: 18px; }
.feature-card-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.feature-card-title { font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 1.5px !important; color: #000 !important; margin-bottom: 1rem !important; font-size: 1.6rem !important; line-height: 1.2 !important; }
.feature-card-description { color: #444 !important; font-size: 1rem !important; line-height: 1.6 !important; margin-bottom: 1.5rem !important; }
.feature-card-skills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.skill-chip { display: inline-block; padding: 0.4rem 1.1rem; border-radius: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #000; border: 1.5px solid #000; }
.skill-pink     { background: #FFD1E8; }
.skill-blue     { background: #CCE7FF; }
.skill-mint     { background: #C8F0DC; }
.skill-lavender { background: #E1D4F5; }
.feature-pagination { position: relative !important; text-align: center; margin-top: 2rem; }
.feature-pagination .swiper-pagination-bullet { background: #000 !important; opacity: 0.3 !important; width: 12px !important; height: 12px !important; margin: 0 8px !important; transition: all 0.2s ease; }
.feature-pagination .swiper-pagination-bullet-active { background: #FF1493 !important; opacity: 1 !important; transform: scale(1.2); }

@media (max-width: 768px) {
  .feature-card { flex-direction: column; gap: 1.5rem; min-height: auto; }
  .feature-card-image { width: 260px; height: 340px; }
  .feature-dot { display: none; }
  .feature-card-content { padding: 0 1rem; }
  .feature-card-title { font-size: 1.25rem !important; }
  .feature-swiper-wrapper { padding: 0 1rem; }
}

/* ── Hero ─────────────────────────────────────── */
/* Explicit margins on h1/h2/p — without these the browser's default UA
   margin (0.67em / 0.83em, scaled off each element's OWN font-size) applies.
   At a 7rem h1 that default is ~75px top AND bottom on its own — the single
   biggest hidden source of "empty" space in the old layout. */
#hero h1 { font-family: 'Caveat', cursive !important; font-weight: 700 !important; letter-spacing: 0 !important; color: #FF1493 !important; font-size: 4rem !important; line-height: 1.05 !important; margin: 0 0 .6rem 0 !important; }
#hero h2 { font-size: 1.4rem !important; font-weight: 500 !important; letter-spacing: 0 !important; color: #5a5a5a !important; margin: 0 0 .9rem 0 !important; }
#hero p.hero-content { color: #5a5a5a !important; margin: 0 !important; }
#hero { overflow: hidden !important; margin-bottom: 0 !important; position: relative !important; }

/* Content-driven hero — fixed, generous padding rather than viewport-height
   centering. A vh-locked box leaves dead space when the content is short
   (text-only hero); padding sizes the box to what's actually there. */
#hero {
  padding-top: 4.5rem !important;
  padding-bottom: 3.25rem !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,20,147,.07), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(200,240,251,.55), transparent 46%),
    #FFFBFD !important;
}
@media (max-width: 991px) {
  #hero { padding-top: 3rem !important; padding-bottom: 2.5rem !important; }
}
@media (min-width: 992px) {
  #hero h1 { font-size: 6.4rem !important; }
  #hero h2 { font-size: 1.7rem !important; }
}

@media (max-width: 768px) {
  #hero h1 { font-size: 3.2rem !important; }
}
#hero .row { align-items: center !important; }
#hero .col-sm-12.col-md-9.pt-5 { padding-top: 0 !important; }

/* Minimal text-only hero: centered copy block, generous breathing room */
.hero-minimal { display: flex !important; flex-direction: column !important; align-items: center !important; }
.hero-minimal p.hero-content { max-width: 600px !important; margin: 0 auto !important; }

/* Decorative flanking marks — on very wide screens the centered text
   column leaves a lot of open canvas either side; a faint brand mark
   (reused lightning bolt from the logo) gives it texture instead of
   dead air, without competing with the copy. */
.hero-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.hero-deco-left { left: 4%; }
.hero-deco-right { right: 4%; transform: translateY(-50%) scaleX(-1); }
#hero .container { position: relative; z-index: 1; }

/* Eyebrow badge above the headline — small anchor of texture/colour up top */
.hero-minimal .subtitle {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 1.25rem !important;
  padding: .4rem 1rem !important;
  border-radius: 999px !important;
  border: 1.5px solid #f9a8d4 !important;
  background: #FFF0F6 !important;
  color: #be185d !important;
  font-family: Montserrat, sans-serif !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
}

/* Stat row beneath the CTA — quick-hit facts that give the hero more mass */
.hero-stat-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: .6rem !important;
  margin-top: 2rem !important;
  padding-top: 1.25rem !important;
  border-top: 1px solid #f5dce8 !important;
  width: 100%;
  max-width: 520px;
}
.hero-stat {
  font-family: Montserrat, sans-serif !important;
  font-size: .82rem !important;
  color: #7a5566 !important;
  white-space: nowrap;
}
.hero-stat strong { color: #be185d !important; font-weight: 700 !important; }
.hero-stat-dot { color: #f9a8d4 !important; font-weight: 700 !important; }
@media (max-width: 480px) {
  .hero-stat-dot { display: none; }
  .hero-stat-row { flex-direction: column; gap: .4rem !important; }
}

.hero-carousel-wrap { display: flex; justify-content: center; align-items: flex-start; height: 100%; padding-top: 1rem; overflow: hidden; max-height: 500px; }
.hero-swiper { width: 100%; max-width: 360px; overflow: hidden; }
.hero-carousel-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 16px; border: none; box-shadow: 0 16px 36px rgba(190,24,93,.15), 0 4px 12px rgba(0,0,0,.05); }
.hero-swiper-dots { position: relative !important; margin-top: 1.25rem !important; text-align: center !important; width: 100% !important; left: 0 !important; }
.hero-swiper-dots .swiper-pagination-bullet { background: #000 !important; opacity: 0.3 !important; }
.hero-swiper-dots .swiper-pagination-bullet-active { background: #FF1493 !important; opacity: 1 !important; }

.hero-cta-row { display: flex !important; align-items: center !important; gap: 1rem !important; margin-top: 1.75rem !important; flex-wrap: wrap; }


/* LinkedIn circle button */
.hero-linkedin-btn,
.hero-linkedin-btn:link,
.hero-linkedin-btn:visited {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 2px solid #f9a8d4 !important;
  background: #fff !important;
  color: #FF1493 !important;
  text-decoration: none !important;
  transition: all .15s ease !important;
  flex-shrink: 0 !important;
}
.hero-linkedin-btn:hover {
  background: #FF1493 !important;
  border-color: #FF1493 !important;
  color: #fff !important;
}

/* Who is Elise button */
.hero-who-btn { background: #fff !important; color: #000 !important; border: 2px solid #000 !important; border-radius: 8px !important; font-weight: 600 !important; transition: all .15s ease !important; }
.hero-who-btn:hover { background: #f9c6e0 !important; border-color: #FF1493 !important; color: #FF1493 !important; }

#hero a[href*="instagram"] { display: none !important; }

.hero-crown-zone { background: #FFF0F6 !important; display: flex !important; justify-content: center !important; align-items: center !important; padding: 1.5rem 0 !important; width: 100vw !important; margin-left: calc(-50vw + 50%) !important; margin-top: 0 !important; margin-bottom: 0 !important; border: none !important; }
.hero-crown-peek-img { width: 180px !important; height: auto !important; filter: drop-shadow(0 6px 16px rgba(255,20,147,.3)) !important; margin: 0 !important; display: block !important; }

/* ── Specialty sections ───────────────────────── */
.specialty-section { padding: 4rem 0; border-top: 1px solid #f0f0f0; }
.specialty-alt { background: #fafafa; }
.specialty-title { font-family: 'Caveat', cursive !important; font-weight: 700 !important; text-transform: none !important; letter-spacing: 0 !important; color: #be185d !important; margin-bottom: 1rem !important; font-size: 2.8rem !important; }
.specialty-intro { color: #555 !important; font-size: 1rem !important; max-width: 700px; margin: 0 auto 2.5rem auto !important; line-height: 1.6 !important; }
.specialty-section .swiper-pagination { position: relative !important; text-align: center; margin-top: 2rem; }
.specialty-section .swiper-pagination-bullet { background: #000 !important; opacity: 0.3 !important; width: 12px !important; height: 12px !important; margin: 0 8px !important; }
.specialty-section .swiper-pagination-bullet-active { background: #FF1493 !important; opacity: 1 !important; transform: scale(1.2); }
#webdesign .feature-card-image { max-width: 380px !important; height: 300px !important; border-radius: 16px !important; padding: 8px !important; }
#webdesign .feature-card-image img { object-fit: contain !important; width: 100% !important; height: auto !important; }

/* ── Custom Order Form ────────────────────────── */
.custom-order-section { padding: 4rem 0; border-top: 1px solid #f0f0f0; }
.custom-order-title { font-family: 'Caveat', cursive !important; font-weight: 700 !important; text-transform: none !important; letter-spacing: 0 !important; color: #be185d !important; margin-bottom: 1rem !important; font-size: 3.2rem !important; }
/* Script font reserved for one marquee moment per page (the hero on the homepage,
   the CNPL testimonial on Team Orders) — quote-form headers use the bold display face */
.custom-order-title.classic-title { font-family: 'Bebas Neue', sans-serif !important; font-weight: 400 !important; text-transform: uppercase !important; letter-spacing: 2px !important; font-size: 2.6rem !important; }
.custom-order-intro { color: #555 !important; font-size: 1rem !important; max-width: 600px; margin: 0 auto 2.5rem auto !important; line-height: 1.6 !important; }
.order-form-card { max-width: 800px; margin: 0 auto; background: #fff; border: 1px solid #f0d4e2; border-radius: 18px; box-shadow: 0 18px 44px rgba(190,24,93,.10), 0 4px 12px rgba(0,0,0,.04); padding: 2.5rem; }
.order-form .form-row { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.order-form .form-group { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.order-form .form-group.full-width { flex: none; width: 100%; margin-bottom: 1.5rem; }
.order-form label { font-size: 0.75rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; color: #000 !important; }
.order-form input, .order-form select, .order-form textarea { border: 1.5px solid #ecd7e1 !important; border-radius: 10px !important; padding: 0.6rem 0.9rem !important; font-size: 0.95rem !important; outline: none !important; width: 100% !important; font-family: inherit !important; background: #fff !important; }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { border-color: #FF1493 !important; box-shadow: 0 0 0 3px rgba(255,20,147,0.15) !important; }
.order-submit-btn { background: #FF1493 !important; color: #fff !important; border: none !important; padding: 0.85rem 2.75rem !important; font-size: 0.85rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 1px !important; border-radius: 999px !important; cursor: pointer !important; box-shadow: 0 10px 24px rgba(255,20,147,.28) !important; transition: all 0.15s ease !important; margin-top: 0.5rem !important; }
.order-submit-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 14px 30px rgba(255,20,147,.35) !important; background: #e60e83 !important; }

@media (max-width: 768px) {
  .order-form .form-row { flex-direction: column; gap: 1rem; }
  .order-form-card { padding: 1.5rem; }
}

/* ── Shirt Builder ────────────────────────────── */
.shirt-builder-section { padding: 2rem 0 3rem; border-top: 1px solid #f0f0f0; }
#shirt-builder { border-top: none !important; padding-top: 1.5rem !important; }
#shirt-builder .custom-order-intro { display: block !important; text-align: center !important; background: #FFF0F6 !important; border: 1px solid #f9a8d4 !important; border-radius: 8px !important; color: #be185d !important; font-size: 0.85rem !important; padding: 8px 16px !important; max-width: 600px !important; margin: 0 auto 2rem auto !important; line-height: 1.5 !important; }
.bldr { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto; align-items: start; }
.slide-side { display: flex; flex-direction: column; gap: .75rem; }
.slide-label { font-size: 12px; color: #888; text-align: center; }
.ctrl-side { display: flex; flex-direction: column; gap: 1.1rem; }
.bcl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #666; margin-bottom: 5px; display: block; }
.btd { background: conic-gradient(#f9a8d4 0deg,#a5f3fc 90deg,#bbf7d0 180deg,#fde68a 270deg,#f9a8d4 360deg) !important; }
.btd-note { font-size: 11px; color: #3a7fa3; background: #eef7fc; border-radius: 6px; padding: 5px 9px; border: 1px solid #89c4e1; margin-top: 3px; }
.btxt-in { width: 100%; padding: 8px 11px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; }
.btxt-in:focus { border-color: #FF1493; }
.bvc { padding: 4px 10px; border: 1.5px solid #ddd; border-radius: 20px; cursor: pointer; font-size: 12px; background: #fff; color: #666; transition: all .12s; }
.bvc.on { border-color: #FF1493; color: #FF1493; font-weight: 700; }
.bfont-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.bfo { padding: 8px 10px; border: 1.5px solid #ddd; border-radius: 8px; cursor: pointer; background: #fff; color: #333; transition: border-color .12s; font-size: 14px; text-align: center; }
.bfo.on { border-color: #FF1493; color: #FF1493; }
.bsummary { background: #fafafa; border-radius: 10px; padding: .75rem 1rem; font-size: 12px; color: #666; line-height: 1.9; border: 1px solid #eee; }
.bobtn { width: 100%; padding: 11px; background: transparent; color: #FF1493; border: 2px solid #FF1493; border-radius: 8px; font-family: Montserrat, sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all .2s; }
.bobtn:hover { background: #FF1493; color: #fff; }

@media (max-width: 768px) { .bldr { grid-template-columns: 1fr; } }

.bplacement-row { display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; gap: 6px !important; }
.bpl { padding: 4px 10px !important; border: 1.5px solid #ddd; border-radius: 20px !important; cursor: pointer; font-size: 11px !important; background: #fff; color: #666; transition: all .12s; white-space: nowrap !important; }
.bpl.on { border-color: #FF1493; color: #FF1493; font-weight: 700; }

.builder-note { font-size: 0.9rem !important; color: #FF1493 !important; max-width: 650px; margin: -0.5rem auto 1.5rem auto !important; line-height: 1.6 !important; }
.builder-combo-note, .btd-note { background: #eef7fc !important; border: 1px solid #89c4e1 !important; color: #3a7fa3 !important; border-radius: 8px !important; }
.builder-combo-note::before { content: '' !important; }

.bvc-glitter { background: linear-gradient(135deg, #fff, #d4af37, #fff) !important; }
.bvc-holo { background: linear-gradient(135deg, #f9a8d4, #a5f3fc, #c4b5fd, #f9a8d4) !important; }

.bcolor-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.bcolor-btn { display: flex; align-items: center; gap: 7px; padding: 5px 10px 5px 7px; border: 1.5px solid #ddd; border-radius: 20px; cursor: pointer; font-size: 12px; background: #fff; color: #333; transition: all .12s; white-space: nowrap; }
.bcolor-btn.on { border-color: #FF1493; color: #FF1493; font-weight: 600; }
.bcolor-btn:hover { border-color: #89c4e1; }
.bcolor-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
#bvcs-special { display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; gap: 6px !important; }
#bvcs-special .bcolor-btn { flex-shrink: 0 !important; }

/* ── Design CTA Banner ────────────────────────── */
.design-cta-section { padding: 4rem 0; }
.design-cta-banner { background: #FFF0F6; position: relative; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; overflow: hidden; }
.design-cta-bolt-left, .design-cta-bolt-right { position: absolute; top: 50%; transform: translateY(-50%); opacity: 0.18; width: 160px; pointer-events: none; }
.design-cta-bolt-left { left: -20px; }
.design-cta-bolt-right { right: -20px; transform: translateY(-50%) scaleX(-1); }
.design-cta-bolt-left img, .design-cta-bolt-right img { width: 100%; height: auto; }
.design-cta-inner { max-width: 720px; width: 100%; position: relative; z-index: 1; text-align: center; }
.design-cta-title { font-family: 'Caveat', cursive !important; font-weight: 700 !important; font-size: 2.8rem !important; text-transform: none !important; letter-spacing: 0 !important; color: #be185d !important; margin-bottom: .75rem !important; }
.design-cta-body { color: #555 !important; font-size: 1rem !important; line-height: 1.7 !important; margin-bottom: 2rem !important; max-width: 560px; margin-left: auto !important; margin-right: auto !important; }
.design-cta-form { background: #fff; border: 2px solid #000; box-shadow: 6px 6px 0 #FF1493; padding: 2rem; text-align: left; }
.dcta-row { display: flex; gap: 1.25rem; margin-bottom: 1.25rem; }
.dcta-group { flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.dcta-full { width: 100%; margin-bottom: 1.25rem; }
.dcta-group label { font-size: 11px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .5px !important; color: #000 !important; }
.dcta-group input, .dcta-group select, .dcta-group textarea { border: 1.5px solid #000 !important; border-radius: 8px !important; padding: .6rem .9rem !important; font-size: .95rem !important; outline: none !important; width: 100% !important; font-family: inherit !important; background: #fff !important; }
.dcta-group input:focus, .dcta-group select:focus, .dcta-group textarea:focus { border-color: #FF1493 !important; box-shadow: 0 0 0 3px rgba(255,20,147,.12) !important; }
.dcta-submit-wrap { text-align: center; margin-top: .5rem; }
.dcta-btn { background: #FF1493 !important; color: #fff !important; border: 2px solid #000 !important; padding: .75rem 2.5rem !important; font-size: .85rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 1px !important; border-radius: 8px !important; cursor: pointer !important; box-shadow: 4px 4px 0 #000 !important; transition: all .15s ease !important; }
.dcta-btn:hover { transform: translate(-2px, -2px) !important; box-shadow: 6px 6px 0 #000 !important; }

@media (max-width: 768px) {
  .dcta-row { flex-direction: column; gap: 1rem; }
  .design-cta-bolt-left, .design-cta-bolt-right { width: 100px; }
  .design-cta-banner { padding: 3rem 1rem; }
}

.mockup-carousel { display: flex; flex-direction: column; gap: .75rem; }
.mockup-frame { border: none; border-radius: 16px; overflow: hidden; background: #f9f9f9; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 36px rgba(190,24,93,.15), 0 4px 12px rgba(0,0,0,.05); }
.mockup-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── BSA Services Section ─────────────────────── */
.bsa-services-section { background: #FFF0F6; padding: 5rem 0; }
.bsa-services-title { font-family: 'Caveat', cursive !important; font-size: 3.2rem !important; font-weight: 700 !important; text-transform: none !important; letter-spacing: 0 !important; color: #be185d !important; text-align: center !important; margin-bottom: 1rem !important; }
.bsa-services-subtitle { text-align: center; color: #444; font-size: 1.1rem; max-width: 600px; margin: 0 auto 3rem auto; }
.bsa-services-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.bsa-card { background: #fff; border: 2px solid #000; border-radius: 0; box-shadow: 6px 6px 0 #FF1493; padding: 2rem; }
.bsa-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.bsa-card h3 { font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 1px !important; font-size: 1rem !important; margin-bottom: 0.75rem !important; color: #000 !important; }
.bsa-card p { color: #444; font-size: 0.95rem; line-height: 1.6; margin: 0; }
.bsa-services-cta { text-align: center; padding-top: 1rem; }
.bsa-cta-text { font-size: 1.2rem; color: #000; margin-bottom: 1.25rem; font-weight: 600; }
.bsa-cta-btn { display: inline-block; background: #FF1493; color: #fff !important; padding: 0.85rem 2.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; border: 2px solid #000; box-shadow: 5px 5px 0 #000; text-decoration: none !important; transition: all 0.15s ease; }
.bsa-cta-btn:hover { background: #000 !important; color: #fff !important; transform: translate(-2px, -2px); box-shadow: 7px 7px 0 #FF1493; }

a[href="/lets-build-something/"] { background: #FF1493 !important; color: #fff !important; padding: 0.4rem 1.1rem !important; border-radius: 6px !important; font-weight: 700 !important; text-decoration: none !important; }
a[href="/lets-build-something/"]:hover { background: #000 !important; color: #fff !important; }
/* ── Navbar ───────────────────────────────────── */
nav, .navbar, #profileHeader nav { background-color: #FFF8F5 !important; }
/* Permanent hairline so the nav reads as fixed chrome even before the
   scroll-triggered shadow kicks in — otherwise its blush tone sits flush
   against the hero's near-white top edge with no boundary at all. */
#profileHeader { border-bottom: 1px solid rgba(190,24,93,.08) !important; }
body.page-downloads nav, body.page-downloads .navbar { background-color: #ffffff !important; }
a.nav-link[href="#contact"] { color: #FF1493 !important; font-weight: 600 !important; }
#dl-nav-btn { font-size: 0.75rem !important; padding: 0.4rem 1rem !important; box-shadow: none !important; color: #ffffff !important; }

/* ── Nav + hero buttons: shared geometry ─────────────── */
#dl-nav-btn,
#bulk-nav-btn,
#designer-nav-btn,
a#hero-builder-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;   /* stops the navbar stretching this one taller */
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1 !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 0.45rem 1.1rem !important;
  border: 2px solid #FF1493 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
/* Primary (filled): Start Your Order — the hero's one conversion action.
   Same shape language as the nav pills, scaled up since this is the hero's
   single primary CTA and needs more visual weight than a nav button. */
a#hero-builder-btn {
  background: #FF1493 !important;
  color: #ffffff !important;
}
#hero a#hero-builder-btn {
  font-size: 0.85rem !important;
  padding: 0.8rem 2.1rem !important;
}
a#hero-builder-btn:hover {
  background: #d1147d !important;
  border-color: #d1147d !important;
  color: #ffffff !important;
}
/* Primary (filled): Digital Downloads + Bulk Orders */
#dl-nav-btn,
#bulk-nav-btn {
  background: #FF1493 !important;
  color: #ffffff !important;
}
#dl-nav-btn:hover,
#bulk-nav-btn:hover {
  background: #d1147d !important;
  border-color: #d1147d !important;
  color: #ffffff !important;
}


/* ── Mobile nav: stack the injected buttons neatly in the menu ── */
@media (max-width: 991px) {
  #navbarContent .navbar-nav { align-items: center !important; padding-bottom: .6rem; }
  #dl-nav-btn,
  #bulk-nav-btn,
  #designer-nav-btn {
    margin: .35rem 0 !important;
    width: 220px !important;
    max-width: 80vw !important;
    padding: .6rem 1.1rem !important;
  }
  #about-nav-btn { margin: .5rem 0 !important; }
  #poke-nav-btn { margin: .55rem 0 !important; }
}

/* ── Builder mockup frame — the REAL image container ── */
.mockup-frame { aspect-ratio: 8/9; background: #fff; }
.mockup-frame img { object-fit: contain; }

/* ── Builder left-column info boxes (downloads + towel teaser) ── */
.builder-aside { display: flex; flex-direction: column; gap: .9rem; margin-top: 1rem; }
.builder-aside-block { background: #FFF0F6; border: 1px solid #f9a8d4; border-radius: 14px; padding: 1.1rem 1.25rem; }
.ba-eyebrow { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #FF1493; margin-bottom: .35rem; }
.ba-title { font-weight: 800; font-size: 1.02rem; color: #be185d; line-height: 1.25; margin-bottom: .45rem; }
.ba-text { color: #7a5566; font-size: .9rem; line-height: 1.5; margin: 0 0 .9rem; }
.ba-soon .ba-text { margin-bottom: 0; }
.ba-btn { display: inline-block; background: #FF1493; color: #fff !important; text-decoration: none !important; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; padding: .5rem 1.1rem; border-radius: 6px; border: 2px solid #FF1493; transition: all .15s ease; }
.ba-btn:hover { background: #fff; color: #FF1493 !important; }
.ba-pill { display: inline-block; background: #FFD1E8; color: #be185d; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 2px 8px; border-radius: 999px; vertical-align: middle; margin-left: 6px; }

/* ── Digital-download preview cards (thumbnail + text, whole card clickable) ── */
.ba-preview { display: flex; align-items: center; gap: .9rem; text-decoration: none !important; transition: box-shadow .15s ease, transform .15s ease; }
.ba-preview:hover { box-shadow: 0 10px 24px rgba(255,20,147,.16); transform: translateY(-2px); }
.ba-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; background: #fff; flex-shrink: 0; box-shadow: 0 4px 10px rgba(190,24,93,.15); }
.ba-preview-text { flex: 1; min-width: 0; }
.ba-preview .ba-text { margin-bottom: .45rem; }
.ba-link-hint { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .68rem; color: #FF1493; }

/* ── Text placement nested under font options ── */
.bplace-col { margin-top: 1rem; }

/* ── Text placement pills: 2×2 grid ── */
.bplace-col #bplacements { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.bplace-col #bplacements .bpl { text-align: center; }

/* ── Featured Work: optional CTA link per project card ── */
.feature-card-link {
  display: inline-block;
  margin-top: .8rem;
  font-family: Montserrat, sans-serif !important;
  font-weight: 700 !important;
  font-size: .78rem !important;
  color: #FF1493 !important;
  text-decoration: none !important;
  border-bottom: 2px solid #FFD1E8;
  padding-bottom: 2px;
  transition: border-color .15s ease;
}
.feature-card-link:hover { border-color: #FF1493; }

/* Secondary (outline): Shirt Designer — kept visually subordinate to the
   solid-pink Bulk Orders button so the nav has one clear primary action */
#designer-nav-btn,
#designer-nav-btn:link,
#designer-nav-btn:visited {
  background: #ffffff !important;
  border-color: #0E93A6 !important;
  color: #0E93A6 !important;
}
#designer-nav-btn:hover,
#designer-nav-btn:active {
  background: #0E93A6 !important;
  border-color: #0E93A6 !important;
  color: #ffffff !important;
}

/* ── "Meet Elise" profile chip: circular photo + name, not a filled button ── */
#about-nav-btn {
  display: inline-flex !important;
  align-items: center !important;
  align-self: center !important;
  gap: 9px !important;
  text-decoration: none !important;
  padding: 3px 16px 3px 3px !important;
  border-radius: 999px !important;
  border: 2px solid #FFD1E8 !important;
  background: #ffffff !important;
  transition: all .15s ease !important;
}
#about-nav-btn img {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  box-shadow: 0 0 0 2px #FF1493 !important;
}
#about-nav-btn span {
  font-family: Montserrat, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  color: #be185d !important;
  white-space: nowrap !important;
}
#about-nav-btn:hover {
  border-color: #FF1493 !important;
  background: #FFF0F6 !important;
}

/* ── Nav brand logo: white circle to balance the Meet Elise chip ── */
.navbar-brand img {
  background: #ffffff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(190,24,93,.18);
  width: 34px !important;
  height: 34px !important;
  object-fit: contain;
}

/* ── Design Gallery / Shop cards ───────────────── */
.design-gallery-section { padding: 4rem 0; border-top: 1px solid #f0f0f0; }
.design-gallery-title { font-family: 'Bebas Neue', sans-serif !important; font-weight: 400 !important; text-transform: uppercase !important; letter-spacing: 2px !important; color: #be185d !important; margin-bottom: .5rem !important; font-size: 2.6rem !important; }
.design-gallery-subtitle { color: #666 !important; font-size: .95rem !important; max-width: 600px; margin: 0 auto 2.5rem auto !important; line-height: 1.6 !important; }
.design-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; max-width: 1100px; margin: 0 auto; }
.design-card { background: #fff; border: 1px solid #f0d4e2; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 28px rgba(190,24,93,.08), 0 4px 10px rgba(0,0,0,.03); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.design-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(190,24,93,.14), 0 4px 12px rgba(0,0,0,.05); }
.design-card-image-wrap { position: relative; aspect-ratio: 8/9; background: #fafafa; overflow: hidden; }
.design-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.design-toggle-btn { position: absolute; bottom: .6rem; right: .6rem; background: rgba(255,255,255,.92); border: 1.5px solid #FF1493; color: #FF1493; font-family: Montserrat, sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .35rem .7rem; border-radius: 999px; cursor: pointer; transition: all .15s ease; }
.design-toggle-btn:hover { background: #FF1493; color: #fff; }
.design-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.design-card-title { font-family: Montserrat, sans-serif !important; font-weight: 800 !important; font-size: 1.02rem !important; color: #000 !important; margin: 0 !important; text-transform: uppercase; letter-spacing: .03em; }
.design-card-tagline { color: #777 !important; font-size: .82rem !important; line-height: 1.5 !important; margin: 0 !important; }
.design-card-controls { display: flex; gap: .6rem; margin-top: auto; padding-top: .4rem; }
.design-size-select { flex: 0 0 72px; border: 1.5px solid #ecd7e1; border-radius: 8px; padding: .5rem .4rem; font-size: .85rem; font-family: inherit; background: #fff; }
.design-add-btn { flex: 1; background: #FF1493; color: #fff; border: none; border-radius: 8px; font-family: Montserrat, sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .6rem .5rem; cursor: pointer; transition: all .15s ease; }
.design-add-btn:hover { background: #d1147d; }
.design-add-btn.added { background: #1ea672 !important; }

@media (max-width: 768px) {
  .design-gallery-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.1rem; }
  .design-card-body { padding: .9rem 1rem 1.1rem; }
}

/* ── Cart nav icon + badge ──────────────────────── */
#cart-nav-btn { position: relative; display: inline-flex !important; align-items: center; justify-content: center; align-self: center !important; margin-left: .75rem; width: 40px; height: 40px; border-radius: 50%; border: 2px solid #FF1493; background: #fff; text-decoration: none; transition: all .15s ease; cursor: pointer; }
#cart-nav-btn:hover { background: #FFF0F6; }
#cart-nav-btn .cart-icon { font-size: 1.05rem; line-height: 1; }
.cart-badge { position: absolute; top: -6px; right: -6px; background: #FF1493; color: #fff; font-family: Montserrat, sans-serif; font-size: .65rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px; box-shadow: 0 0 0 2px #fff; }

/* ── Cart drawer ─────────────────────────────────── */
#cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
#cart-overlay.open { opacity: 1; pointer-events: auto; }
#cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 90vw; background: #fff; z-index: 2001; box-shadow: -8px 0 32px rgba(0,0,0,.15); transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column; }
#cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.4rem; border-bottom: 1px solid #f0d4e2; }
.cart-drawer-header h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; color: #be185d; margin: 0; text-transform: uppercase; }
.cart-drawer-close { background: none; border: none; font-size: 1.4rem; line-height: 1; cursor: pointer; color: #888; padding: .2rem; }
.cart-drawer-close:hover { color: #FF1493; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.cart-drawer-empty { text-align: center; color: #888; font-size: .9rem; padding: 2.5rem 1rem; }
.cart-item { display: flex; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid #f5f0f2; }
.cart-item img { width: 56px; height: 63px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: #fafafa; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .85rem; color: #000; margin: 0 0 .2rem; }
.cart-item-meta { font-size: .75rem; color: #888; margin: 0 0 .4rem; }
.cart-item-row { display: flex; align-items: center; gap: .5rem; }
.cart-qty-btn { width: 22px; height: 22px; border: 1px solid #ecd7e1; border-radius: 6px; background: #fff; cursor: pointer; font-size: .85rem; line-height: 1; display: flex; align-items: center; justify-content: center; }
.cart-qty-val { font-size: .82rem; font-weight: 700; min-width: 16px; text-align: center; }
.cart-item-remove { margin-left: auto; background: none; border: none; color: #c53030; font-size: .72rem; text-decoration: underline; cursor: pointer; }
.cart-drawer-footer { border-top: 1px solid #f0d4e2; padding: 1.1rem 1.4rem 1.4rem; }
.cart-drawer-count { font-size: .85rem; color: #555; margin: 0 0 .8rem; text-align: center; }
.cart-checkout-btn { width: 100%; background: #FF1493; color: #fff; border: none; padding: .85rem; font-family: Montserrat, sans-serif; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; border-radius: 999px; cursor: pointer; box-shadow: 0 10px 24px rgba(255,20,147,.28); transition: all .15s ease; }
.cart-checkout-btn:hover { background: #d1147d; transform: translateY(-1px); }
.cart-checkout-note { font-size: .72rem; color: #999; text-align: center; margin-top: .6rem; line-height: 1.5; }

@media (max-width: 991px) {
  #cart-nav-btn { margin: .35rem 0 !important; }
}
@media (max-width: 480px) {
  #cart-drawer { width: 100vw; max-width: 100vw; }
}
