/* =================================================================
   Made by McKinley - Lonely Ghost-inspired aesthetic
   Cream base · big display type · friendly handwritten accents
   ================================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --cream: #fdf6e6;
  --cream-light: #fffaef;
  --ink: #15151c;
  --ink-2: #3a3a44;
  --muted: #7a7a82;
  --line: #ece4d0;
  --brand: #ec5a6b;          /* softer coral - pop without shouting */
  --brand-dark: #c43c47;
  --pink: #ffd6e0;           /* gentle bubblegum */
  --mint: #c7ead2;           /* gentle mint */
  --butter: #ffe9a3;         /* gentle sunshine */
  --sky: #c3e3f2;            /* gentle sky */
  --lavender: #e0ceff;       /* gentle lavender */
  --peach: #ffd9c2;           /* gentle peach */
  --shadow: 0 2px 12px rgba(21, 21, 28, 0.08);
  --shadow-lg: 0 20px 60px rgba(21, 21, 28, 0.18);
  --radius: 4px;
  --radius-lg: 12px;
}

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =================================================================
   Type system
   ================================================================= */
.brand-name {
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.04em;
  font-weight: 900;
}
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
}

/* =================================================================
   Announcement bar
   ================================================================= */
.announcement {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* =================================================================
   Header
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.icon-btn {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.15s;
  position: relative;
}
.icon-btn:hover { background: rgba(0, 0, 0, 0.05); }
.header-left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.search-wrap { position: relative; flex: 0 1 220px; min-width: 0; }
.header-search {
  width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-light);
  font-family: inherit;
  font-size: 0.88rem;
}
.header-search:focus { outline: 2px solid var(--ink); outline-offset: 1px; border-color: transparent; }

/* Search results dropdown */
.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 60;
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
}
.search-result {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title type"
    "desc  desc";
  align-items: baseline;
  gap: 4px 10px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover, .search-result:focus { background: var(--cream-light); }
.result-title {
  grid-area: title;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.result-type {
  grid-area: type;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--brand);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  align-self: center;
}
.result-desc {
  grid-area: desc;
  font-size: 0.82rem;
  color: var(--muted);
}
.cart-btn { justify-self: end; }
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}
.logo {
  justify-self: center;
  font-size: 1.4rem;
}
#search-input {
  width: 100%;
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--cream-light);
  font-family: inherit;
  font-size: 0.95rem;
}
#search-input:focus { outline: 2px solid var(--ink); outline-offset: 1px; }

/* =================================================================
   Hero
   ================================================================= */
.hero {
  background: var(--butter);
  padding: 80px 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hero-bg-loop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.hero-bg-track {
  display: flex;
  gap: 40px;
  height: 100%;
  align-items: center;
  width: max-content;
  padding: 0 20px;
  animation: hero-loop 45s linear infinite;
}
.hero-bg-track img {
  height: 70%;
  max-height: 320px;
  width: auto;
  object-fit: contain;
  transform: rotate(-3deg);
  filter: saturate(1.1);
}
.hero-bg-track img:nth-child(even) {
  transform: rotate(3deg);
}
@keyframes hero-loop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-track { animation: none; }
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-accent {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.9em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 28px;
}

/* =================================================================
   Buttons
   ================================================================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--brand); border-color: var(--brand); }
.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-light:hover { background: var(--ink); color: var(--cream); }
.btn-block { display: block; width: 100%; }

/* =================================================================
   Section heads
   ================================================================= */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* =================================================================
   Page hero (used on subpages like how-it-works)
   ================================================================= */
.page-hero {
  background: var(--butter);
  text-align: center;
  padding: 70px 20px 60px;
}
.page-hero .hero-eyebrow { margin-bottom: 16px; }
.page-hero .hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero .hero-sub {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto;
}

/* =================================================================
   Generic CTA strip
   ================================================================= */
.cta {
  background: var(--pink);
  text-align: center;
  padding: 70px 20px;
}
.cta .section-title { margin-bottom: 8px; }
.cta .section-sub { margin-bottom: 24px; }

/* =================================================================
   FAQ
   ================================================================= */
.faq {
  background: var(--mint);
  padding: 70px 20px 80px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream-light);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.15s;
}
.faq-item:hover { transform: translateY(-1px); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-right: 50px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { background: var(--butter); }
.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ol, .faq-answer ul { padding-left: 22px; margin-bottom: 10px; }
.faq-answer li { margin-bottom: 6px; }

/* =================================================================
   How it works
   ================================================================= */
.how-it-works {
  background: var(--lavender);
  padding: 80px 20px;
}
.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 30px 20px 24px;
  text-align: center;
  position: relative;
  border: 2px solid var(--ink);
  transition: transform 0.2s;
}
.step:hover { transform: translateY(-3px); }
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: var(--brand);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
}
.step-icon {
  font-size: 2.4rem;
  margin: 8px 0 14px;
}
.step-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   Products
   ================================================================= */
.products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  background: var(--cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); }
.product-image {
  aspect-ratio: 1 / 1;
  background: var(--pink);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(3n+2) .product-image { background: var(--mint); }
.product-card:nth-child(3n+3) .product-image { background: var(--butter); }
.product-card:nth-child(4n+4) .product-image { background: var(--sky); }
.product-card:nth-child(5n+5) .product-image { background: var(--lavender); }
.product-image::after {
  content: 'CUSTOM';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  border-radius: 999px;
}
.product-info { padding: 0 4px; }
.product-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.product-price { font-weight: 600; color: var(--ink); }
.product-blurb { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* =================================================================
   Customs carousel
   ================================================================= */
.customs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  background: var(--cream);
}
.carousel {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.carousel-track {
  min-width: 0;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  outline: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--pink);
  box-shadow: var(--shadow);
  display: block;
}
.carousel-slide figcaption {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--ink);
  text-align: center;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--cream-light);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--butter); transform: scale(1.05); }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.carousel-dot[aria-selected="true"] { background: var(--brand); border-color: var(--brand); }

@media (max-width: 720px) {
  .carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-slide figcaption { font-size: 1.2rem; }
}

/* =================================================================
   About
   ================================================================= */
.about {
  background: var(--mint);
  padding: 80px 20px;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  display: flex;
  justify-content: center;
}
.polaroid {
  background: #fff;
  padding: 16px 16px 28px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform 0.3s;
}
.polaroid:hover { transform: rotate(0deg); }
.polaroid-img {
  width: 240px;
  height: 240px;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  margin-bottom: 12px;
  overflow: hidden;
}
.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.polaroid-caption {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
}
.about-text p { margin-bottom: 14px; font-size: 1.02rem; }
.about-text strong { background: linear-gradient(transparent 60%, var(--butter) 60%); padding: 0 2px; }
.about-quote {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 20px !important;
  padding: 16px 20px;
  background: var(--peach);
  border-radius: var(--radius-lg);
}
.about-quote strong { background: none; }

/* =================================================================
   Contact
   ================================================================= */
.contact {
  background: var(--sky);
  padding: 80px 20px;
}
.contact .section-head, .contact-grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border: 2px solid transparent;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.contact-icon { font-size: 2rem; margin-bottom: 10px; }
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 50px 20px 30px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand .brand-name { font-size: 1.3rem; }
.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  margin-top: 4px;
  color: var(--brand);
}
.footer-meta {
  font-size: 0.85rem;
  text-align: right;
  color: var(--cream);
  opacity: 0.7;
}

/* =================================================================
   Modal (product detail / checkout)
   ================================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(2px);
}
.modal-panel {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: rgba(0, 0, 0, 0.06); }
.modal-body { padding: 28px; }

/* Product detail */
.detail-image {
  width: 160px;
  height: 160px;
  background: var(--pink);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
  margin: 0 auto 16px;
}
.detail-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.detail-price {
  font-size: 1.1rem;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 12px;
}
.detail-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.option-group { margin-bottom: 20px; }
.option-label {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.swatch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 6px 8px;
  min-width: 60px;
  transition: border-color 0.15s, background 0.15s;
}
.swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-bottom: 6px;
}
.swatch-name { font-size: 0.7rem; text-align: center; line-height: 1.1; font-weight: 600; }
.swatch-up { font-size: 0.65rem; color: var(--brand); font-weight: 700; margin-top: 2px; }
.swatch:hover { background: rgba(0, 0, 0, 0.04); }
.swatch.selected {
  border-color: var(--ink);
  background: #fff;
}

.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-pill {
  position: relative;
  cursor: pointer;
  padding: 10px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.size-pill input { position: absolute; opacity: 0; pointer-events: none; }
.size-pill:hover { border-color: var(--ink); }
.size-pill.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.size-up { font-size: 0.65rem; font-weight: 600; opacity: 0.8; margin-top: 1px; }

textarea, .text-input {
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  resize: vertical;
  background: #fff;
}
textarea:focus, .text-input:focus { outline: 2px solid var(--ink); outline-offset: 1px; border-color: transparent; }

.upload-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 6px;
}
.upload-zone {
  margin-top: 4px;
}
.upload-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 16px;
  border: 2px dashed var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
}
.upload-cta:hover { background: var(--butter); transform: translateY(-1px); }
.upload-icon { font-size: 1.6rem; line-height: 1; }
.upload-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.upload-sub { font-size: 0.78rem; color: var(--muted); }
.upload-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
}
.upload-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
}
.upload-preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.upload-filename {
  font-size: 0.85rem;
  color: var(--ink-2);
  word-break: break-all;
  flex: 1;
}
.upload-remove {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s;
}
.upload-remove:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
#file-preview { display: block; }

.detail-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  margin: 20px 0;
}
.detail-total {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
}
.detail-total-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* =================================================================
   Cart Drawer
   ================================================================= */
.drawer { position: fixed; inset: 0; z-index: 100; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(2px);
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.25s ease-out;
}
.drawer-panel-left {
  right: auto;
  left: 0;
  animation: slideInLeft 0.25s ease-out;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Menu drawer specifics */
.menu-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  flex: 1;
  overflow-y: auto;
}
.menu-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
  display: block;
}
.menu-link:hover {
  background: var(--brand);
  color: #fff;
  padding-left: 32px;
}
.menu-search {
  border-top: 1px solid var(--line);
  padding: 18px 24px;
}
.menu-search .option-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  display: block;
}
.menu-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--cream-light);
}
.menu-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 4px;
}
.menu-credit {
  font-size: 0.85rem;
  color: var(--muted);
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-header h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
.drawer-header .modal-close { position: static; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-footer { border-top: 1px solid var(--line); padding: 20px; background: #fff; }

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 60px 20px;
}
.cart-empty::before {
  content: '🛒';
  display: block;
  font-size: 3rem;
  margin-bottom: 12px;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.cart-item-detail { font-size: 0.78rem; color: var(--muted); margin-top: 2px; word-break: break-word; }
.cart-item-price { font-weight: 700; color: var(--ink); margin-top: 6px; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  text-decoration: underline;
}
.cart-item-remove:hover { color: var(--brand-dark); }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

/* =================================================================
   Checkout
   ================================================================= */
.payment-options { display: grid; gap: 10px; margin: 20px 0; }
.payment-option {
  position: relative;
  cursor: pointer;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-option:hover { border-color: var(--ink); }
.payment-option.selected {
  border-color: var(--ink);
  background: var(--cream-light);
}
.payment-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.icon-venmo { background: #3D95CE; }
.icon-greenlight { background: #00B27A; }
.icon-cash { background: #2E7D32; }
.payment-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.payment-sub { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

.checkout-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 16px;
}
.checkout-result h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.copy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.copy-value {
  flex: 1;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.88rem;
  word-break: break-all;
  min-width: 0;
}
.copy-btn {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.copy-btn:hover { background: var(--brand); }

/* Checkout step labels and how-it-works callout */
.checkout-total {
  color: var(--muted);
  margin-top: 0;
  font-size: 1rem;
}
.checkout-howto {
  background: var(--sky);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  margin: 16px 0 22px;
}
.checkout-howto-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.checkout-howto-list {
  margin: 0;
  padding-left: 22px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.checkout-howto-list li { margin-bottom: 6px; }
.checkout-howto-list li:last-child { margin-bottom: 0; }
.checkout-step-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 10px;
}
.checkout-step-num {
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Post-checkout "send order to McKinley" panel */
.send-order {
  background: var(--butter);
  border: 2px solid var(--ink);
  margin-top: 14px;
}
.send-order h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.send-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.send-actions .btn { flex: 1 1 140px; text-align: center; }

/* =================================================================
   Mobile
   ================================================================= */
@media (max-width: 700px) {
  .header-inner { padding: 12px 14px; gap: 8px; }
  .header-search { width: 100%; min-width: 0; font-size: 0.85rem; padding: 7px 10px; }
  .brand-name { font-size: 0.95rem; }
  .hero { padding: 50px 16px 0; }
  .hero-inner { padding-bottom: 40px; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.8rem; }
  .products, .contact { padding: 50px 16px; }
  .about { padding: 50px 16px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .polaroid-img { width: 200px; height: 200px; font-size: 6rem; }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .product-image { font-size: 4rem; border-radius: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-meta { text-align: center; }
}

/* =================================================================
   Customer info (checkout)
   ================================================================= */
.customer-info {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 14px 0 22px;
  transition: box-shadow 0.2s;
}
.customer-info.flash {
  box-shadow: 0 0 0 3px var(--brand);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.info-field { display: flex; flex-direction: column; gap: 4px; font-size: 0.85rem; }
.info-field span {
  font-weight: 600;
  color: var(--ink-2);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.info-field input,
.info-field select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.info-field input:focus,
.info-field select:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
  border-color: transparent;
}
.info-field-wide { grid-column: 1 / -1; }

.info-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-2);
  margin: 6px 0 8px;
}
.delivery-options { display: grid; gap: 10px; margin-bottom: 12px; }
.delivery-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.delivery-option:hover { border-color: var(--ink); }
.delivery-option.selected {
  border-color: var(--brand);
  background: var(--cream-light);
}
.delivery-option input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-icon { font-size: 1.5rem; line-height: 1; }
.delivery-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.delivery-sub { font-size: 0.82rem; color: var(--muted); }
.delivery-warn {
  background: #fff4e6;
  border: 1px solid #f0c674;
  color: #7a4500;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: var(--radius);
}
.delivery-detail {
  background: #fff;
  border: 2px solid var(--brand);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.payment-option.disabled:hover { border-color: var(--line); }

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

/* =================================================================
   Contact choice mini-modal (Text or Call?)
   ================================================================= */
.modal-panel-mini { max-width: 420px; }
.modal-panel-mini .modal-body { padding: 24px 22px 20px; }
.modal-panel-mini h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.choice-sub-intro {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.choice-options {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.choice-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.choice-option:hover { border-color: var(--ink); }
.choice-option.selected {
  border-color: var(--brand);
  background: var(--cream-light);
}
.choice-option input { position: absolute; opacity: 0; pointer-events: none; }
.choice-icon { font-size: 1.6rem; line-height: 1; }
.choice-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.choice-sub { font-size: 0.82rem; color: var(--muted); }
.choice-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.choice-actions .btn {
  flex: 0 0 auto;
  padding: 10px 18px;
}
.choice-actions .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
