/* ═══════════════════════════════════════════════════════════
   JG Keychain & Pen Co. — Storefront Styles
   Makers Collective Platform · DarkWave Studios LLC
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand Colors — warm, handmade, inviting */
  --cream: #FFF8F0;
  --warm-white: #FEFCF8;
  --sage: #6B8F5E;
  --sage-dark: #4A6B3E;
  --sage-light: #8DB87C;
  --forest: #2D5016;
  --earth: #8B6914;
  --clay: #C4956A;
  --blush: #F2C4C4;
  --sky: #A8D4E6;
  --charcoal: #2A2A2A;
  --text: #3D3D3D;
  --text-light: #6B6B6B;
  --text-muted: #999;
  --border: #E8E0D6;
  --card-bg: #FFFFFF;
  --shadow: rgba(45, 80, 22, 0.08);
  --shadow-hover: rgba(45, 80, 22, 0.15);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: 5rem 0;
  --container-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title--center { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   KEN BURNS HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: kenburns 20s ease-in-out infinite alternate;
}

.hero__slide--active {
  opacity: 1;
}

@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  25%  { transform: scale(1.08) translate(-1%, 1%); }
  50%  { transform: scale(1.12) translate(1%, -1%); }
  75%  { transform: scale(1.06) translate(-0.5%, 0.5%); }
  100% { transform: scale(1.1) translate(0.5%, -0.5%); }
}

.hero__slide:nth-child(1) { animation-duration: 22s; }
.hero__slide:nth-child(2) { animation-duration: 26s; animation-direction: alternate-reverse; }
.hero__slide:nth-child(3) { animation-duration: 24s; }
.hero__slide:nth-child(4) { animation-duration: 28s; animation-direction: alternate-reverse; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 80, 22, 0.55) 0%,
    rgba(45, 80, 22, 0.7) 50%,
    rgba(45, 80, 22, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero__logo {
  width: min(360px, 80vw);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
  animation: gentleFloat 6s ease-in-out infinite;
}

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

.hero__tagline {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.6rem 2rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero__cta {
  display: inline-block;
  background: #fff;
  color: var(--forest);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  background: var(--sage-light);
  color: #fff;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px var(--shadow);
  border: 4px solid #fff;
}

.about__photo-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 2rem;
  border: 2px dashed var(--sage-light);
  opacity: 0.4;
  z-index: -1;
}

.about__bio {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about__tag {
  background: rgba(107, 143, 94, 0.1);
  color: var(--sage-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT GALLERY
   ═══════════════════════════════════════════════════════════ */
.shop {
  padding: var(--section-pad);
  background: var(--cream);
}

.shop__subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.shop__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--border);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.filter-btn--active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.product-card.hidden {
  display: none;
}

.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__info {
  padding: 1.5rem;
}

.product-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.product-card__info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.order-btn {
  background: var(--sage);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: var(--forest);
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 15px rgba(107, 143, 94, 0.3);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ORDER MODAL
   ═══════════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal__close:hover {
  background: rgba(0,0,0,0.05);
  color: var(--charcoal);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.modal__item-name {
  color: var(--sage);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 160px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  background: var(--warm-white);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sage-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:first-child { border-radius: 0.75rem 0 0 0.75rem; }
.qty-btn:last-child { border-radius: 0 0.75rem 0.75rem 0; }

.qty-btn:hover {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

.quantity-control input {
  width: 60px;
  text-align: center;
  border-radius: 0;
  border-left: none;
  border-right: none;
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button { -webkit-appearance: none; }

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin: 0.5rem 0 1.25rem;
  border-top: 2px solid var(--border);
  font-size: 1.1rem;
  font-weight: 600;
}

.order-total__amount {
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 700;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(107, 143, 94, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 143, 94, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Order Success */
.order-success {
  text-align: center;
  padding: 1rem 0;
}

.order-success__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.order-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.order-success p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cashapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00D632;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 214, 50, 0.3);
}

.cashapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 214, 50, 0.4);
}

.cashapp-btn__icon {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.order-success__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CONNECT SECTION
   ═══════════════════════════════════════════════════════════ */
.connect {
  padding: var(--section-pad);
  background: var(--cream);
  text-align: center;
}

.connect__subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.connect__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
}

.connect-btn--fb {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.connect-btn--fb:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.connect-btn--cash {
  background: #00D632;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 214, 50, 0.3);
}

.connect-btn--cash:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 214, 50, 0.4);
}

.connect-btn__dollar {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.connect__local {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 143, 94, 0.08);
  border: 1px solid rgba(107, 143, 94, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--sage-dark);
}

.connect__pin { font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer__logo {
  width: 160px;
  height: auto;
  margin-bottom: 0.75rem;
  opacity: 0.85;
  filter: brightness(1.3);
}

.footer__brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

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

.footer__links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: #fff; }

.footer__made-with {
  margin-bottom: 1.25rem;
}

.footer__lume-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.footer__lume-link strong {
  background: linear-gradient(135deg, #06b6d4, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__lume-link:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.footer__legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer__dw {
  cursor: pointer;
  transition: color 0.3s;
}

.footer__dw:hover {
  color: rgba(255,255,255,0.7);
}

.footer__egg {
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   EASTER EGG MODAL
   ═══════════════════════════════════════════════════════════ */
.egg-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.egg-modal.active {
  opacity: 1;
  pointer-events: all;
}

.egg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}

.egg-modal__content {
  position: relative;
  background: linear-gradient(135deg, #0a0a12, #12121f);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.egg-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
}

.egg-modal__close:hover { color: #fff; }

.egg-modal__logo {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  background: linear-gradient(135deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.egg-modal__content h3 {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.egg-modal__content p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.egg-modal__sub {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.3) !important;
}

.egg-modal__links a {
  color: #06b6d4;
  text-decoration: none;
  font-size: 0.85rem;
}

.egg-modal__links a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__photo {
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title { font-size: 2rem; }
}

@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 0; }

  .hero { min-height: 500px; }

  .hero__logo { width: min(280px, 75vw); }

  .hero__tagline { font-size: 1.1rem; }

  .hero__badge { font-size: 1rem; padding: 0.5rem 1.5rem; }

  .hero__cta { padding: 0.85rem 2.5rem; font-size: 1rem; }

  .section-title { font-size: 1.75rem; }

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

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

  .step { padding: 1.5rem 1rem; }

  .modal__content { padding: 2rem 1.5rem; }

  .connect__buttons { flex-direction: column; align-items: center; }

  .shop__filters { gap: 0.4rem; }

  .filter-btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
}

/* ══════════════════════════
   DELIVERY TOGGLE
   ══════════════════════════ */

.delivery-toggle {
  display: flex;
  gap: 0.75rem;
}

.delivery-option {
  flex: 1;
  cursor: pointer;
}

.delivery-option input { display: none; }

.delivery-option__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  background: var(--warm-white);
}

.delivery-option__label small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.delivery-option--active .delivery-option__label,
.delivery-option input:checked + .delivery-option__label {
  border-color: var(--sage);
  background: rgba(107, 143, 94, 0.08);
  color: var(--sage-dark);
}

.shipping-address textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--warm-white);
  resize: vertical;
  transition: border-color 0.2s;
}

.shipping-address textarea:focus {
  outline: none;
  border-color: var(--sage);
}

/* ── Order Total Breakdown ── */
.order-total__line {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.order-total__line--grand {
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
}

/* ── Venmo Button ── */
.venmo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #008CFF, #0070C9);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s;
}

.venmo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3);
}

.venmo-btn__icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin: 1rem 0;
}

.connect-btn--venmo {
  background: linear-gradient(135deg, #008CFF, #0070C9);
  color: #fff;
}

.connect-btn--venmo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3);
}

/* ══════════════════════════
   PWA INSTALL BANNER
   ══════════════════════════ */

.install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.install-banner__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.install-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

.install-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.install-banner__text strong {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.install-banner__text small {
  font-size: 0.8rem;
  color: var(--text-light);
}

.install-banner__btn {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.install-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(107,143,94,0.3);
}

.install-banner__dismiss {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .delivery-toggle { flex-direction: column; gap: 0.5rem; }
  .payment-buttons { width: 100%; }
  .payment-buttons a { width: 100%; justify-content: center; }
}
