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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #2c3e2d;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Sticky Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  background: rgba(44, 62, 45, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
}

.site-header .ebay-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  transition: background 0.15s;
}

.site-header .ebay-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover,
.nav-link-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-header .ebay-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Shipping bar ── */
.shipping-bar {
  background: #2c3e2d;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.2px;
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 72px 24px 56px;
}

.hero h1 {
  font-size: 3.2rem;
  color: #2c3e2d;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.1rem;
  color: #556;
  max-width: 480px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Main ── */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* ── Section label ── */
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7cb342;
  margin-bottom: 28px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Plants Grid ── */
.plants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* ── Plant Card ── */
.plant-card {
  background: #fff;
  border: 2px solid rgba(124, 179, 66, 0.15);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.plant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.plant-card.sold {
  opacity: 0.72;
}

/* ── Card image ── */
.plant-image {
  position: relative;
}

.plant-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.plant-image .img-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #d4e8c2 0%, #b8d9a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

/* ── Status badge ── */
.status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}

.status-available { background: rgba(34, 197, 94, 0.92); }
.status-limited   { background: rgba(245, 158, 11, 0.92); }
.status-sold      { background: rgba(220, 38, 38, 0.92); }
.status-new       { background: rgba(147, 51, 234, 0.92); }

/* ── Card text info ── */
.plant-info {
  padding: 18px 20px 22px;
}

.plant-name {
  font-size: 1.15rem;
  font-weight: bold;
  color: #2c3e2d;
  margin-bottom: 3px;
}

.plant-species {
  font-size: 0.85rem;
  color: #7a9a7a;
  font-style: italic;
  margin-bottom: 10px;
}

.plant-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #7cb342;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Price tiers ── */
.price-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  margin-bottom: 12px;
}

.price-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  padding: 3px 0;
  border-bottom: 1px solid #f0f0ec;
}

.tier-size {
  color: #888;
}

.tier-price {
  font-weight: 700;
  color: #7cb342;
}

.plant-description {
  font-size: 0.875rem;
  color: #556;
  line-height: 1.55;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── About section ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  margin-top: 72px;
  padding-top: 52px;
  border-top: 2px solid rgba(124, 179, 66, 0.2);
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-photo-main    { aspect-ratio: 3/4; }
.about-photo-secondary { aspect-ratio: 3/4; }

.about-title {
  font-size: 1.9rem;
  color: #2c3e2d;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 0.95rem;
  color: #556;
  line-height: 1.75;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 14px;
}
.about-text p:last-child { margin-bottom: 0; }

.about-text a {
  color: #7cb342;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 179, 66, 0.4);
  transition: border-color 0.15s;
}
.about-text a:hover { border-color: #7cb342; }

/* ── Friends & Resources ── */
.friends-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 2px solid rgba(124, 179, 66, 0.2);
}
.friends-title {
  font-size: 1.5rem;
  color: #2c3e2d;
  margin-bottom: 24px;
}
.friend-card {
  background: #f4f8f0;
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-radius: 12px;
  padding: 28px 32px;
}
.friend-card h3 {
  font-size: 1.15rem;
  color: #2c3e2d;
  margin-bottom: 10px;
}
.friend-card h3 a {
  color: #558b2f;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 179, 66, 0.4);
}
.friend-card h3 a:hover { border-color: #7cb342; }
.friend-card p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-photos {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ── Bulk & Wholesale section ── */
.bulk-section {
  margin-top: 72px;
  padding-top: 52px;
  border-top: 2px solid rgba(124, 179, 66, 0.2);
}

.bulk-section-title {
  font-size: 1.9rem;
  color: #2c3e2d;
  margin-bottom: 8px;
}

.bulk-section-intro {
  color: #556;
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 540px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

/* ── Contact / Order section ── */
.contact-section {
  margin-top: 72px;
  padding-top: 52px;
  border-top: 2px solid rgba(124, 179, 66, 0.2);
}

.contact-section h2 {
  font-size: 1.9rem;
  color: #2c3e2d;
  margin-bottom: 10px;
}

.contact-intro {
  color: #556;
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 540px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 25px;
  border: 1.5px solid #ddd;
  background: #fff;
  text-decoration: none;
  color: #2c3e2d;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  background: #f8faf5;
}

.contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-link.email     { border-color: #7cb342; color: #4a7a20; }
.contact-link.instagram { border-color: #c13584; color: #8a2060; }
.contact-link.facebook  { border-color: #1877f2; color: #1255c0; }
.contact-link.reddit    { border-color: #ff4500; color: #cc3300; }
.contact-link.ebay      { border-color: #e53238; color: #b02020; }

/* ── Card hover hint ── */
.card-view-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(44, 62, 45, 0.82);
  color: #fff;
  font-size: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  white-space: nowrap;
}

.plant-card:hover .card-view-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Modal overlay ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

/* ── Modal box ── */
.modal-box {
  background: #fff;
  border-radius: 15px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* ── Modal main image ── */
.modal-main-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 15px 15px 0 0;
}

/* ── Thumbnails ── */
.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  border-bottom: 1px solid #f0f0ec;
  background: #fafaf8;
}

.modal-thumb {
  flex-shrink: 0;
  cursor: pointer;
  text-align: center;
}

.modal-thumb img {
  width: 80px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border-color 0.15s;
  display: block;
}

.modal-thumb.active img,
.modal-thumb:hover img {
  border-color: #7cb342;
}

.modal-thumb-label {
  font-size: 0.68rem;
  color: #888;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ── Modal details ── */
.modal-details {
  padding: 22px 26px 28px;
}

.modal-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e2d;
  margin-bottom: 3px;
}

.modal-species {
  font-style: italic;
  color: #7a9a7a;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.modal-price-tiers {
  margin-bottom: 16px;
}

.modal-description {
  font-size: 0.9rem;
  color: #556;
  line-height: 1.65;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 20px;
}

.modal-order-btn {
  display: inline-block;
  background: #7cb342;
  color: #fff;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: background 0.15s, transform 0.15s;
}

.modal-order-btn:hover {
  background: #5a8f2a;
  transform: translateY(-1px);
}

.modal-video-btn {
  display: inline-block;
  background: transparent;
  color: #7cb342;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border: 2px solid #7cb342;
  margin-left: 10px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.modal-video-btn:hover {
  background: #7cb342;
  color: #fff;
  transform: translateY(-1px);
}

/* ── Cart icon button (header) ── */
.cart-icon-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cart-icon-btn:hover { background: rgba(255, 255, 255, 0.22); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #7cb342;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(44, 62, 45, 0.95);
}

/* ── Cart overlay ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ── Cart panel ── */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2600;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.cart-panel.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0ec;
  flex-shrink: 0;
  background: #2c3e2d;
}
.cart-title {
  color: #fff;
  font-size: 1.1rem;
  font-family: Georgia, serif;
}
.cart-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cart-close:hover { background: rgba(255,255,255,0.3); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Cart items ── */
.cart-items-list { display: flex; flex-direction: column; gap: 10px; }

.cart-empty {
  color: #aaa;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  padding: 24px 0;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  background: #fafaf8;
  border-radius: 8px;
  border: 1px solid #f0f0ec;
}
.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart-item-name {
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2c3e2d;
  line-height: 1.4;
}
.cart-item-name em { color: #888; font-style: italic; }
.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #7cb342;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}
.cart-item-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  background: #eee;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
}
.qty-btn:hover { background: #ddd; }
.qty-num {
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-width: 20px;
  text-align: center;
}
.qty-remove {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.1rem;
  cursor: pointer;
  margin-left: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.1s;
}
.qty-remove:hover { color: #e53;  }

/* ── Shipping note ── */
.cart-ship-note {
  font-size: 0.78rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #888;
  text-align: center;
}
.cart-ship-free { color: #7cb342; font-weight: 600; }

/* ── Summary ── */
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #f0f0ec;
  padding-top: 14px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #556;
}
.summary-check-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: #556;
}
.summary-check-label small { color: #aaa; }
.summary-check-label input[type="checkbox"] { accent-color: #7cb342; width: 15px; height: 15px; }
.summary-total {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e2d;
  border-top: 1px solid #f0f0ec;
  padding-top: 10px;
  margin-top: 4px;
}
.summary-total span:last-child { color: #7cb342; }

/* ── Cart textarea + button ── */
.cart-field-label {
  display: block;
  font-size: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #555;
  margin: 12px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cart-comments {
  width: 100%;
  min-height: 80px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #445;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}
.cart-comments:focus { border-color: #7cb342; }

.cart-addr-field {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #445;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 8px;
  box-sizing: border-box;
  background: #fff;
}
.cart-addr-field:focus { border-color: #7cb342; }
.cart-addr-row {
  display: flex;
  gap: 8px;
}
.cart-addr-row .cart-addr-field { margin-bottom: 0; }
.cart-addr-state { flex: 0 0 72px; }
.cart-addr-zip   { flex: 0 0 90px; }
.cart-addr-row input[placeholder="City"] { flex: 1; }

.payment-methods {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #444;
  cursor: pointer;
  background: #f4f8f0;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 7px 14px;
  transition: border-color 0.15s, background 0.15s;
}
.payment-option:has(input:checked) {
  border-color: #7cb342;
  background: #eaf4d8;
  color: #2c3e2d;
  font-weight: 600;
}
.payment-option input { display: none; }
.payment-instructions {
  margin-top: 10px;
  background: #f4f8f0;
  border-left: 3px solid #7cb342;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #444;
  line-height: 1.6;
}

.cart-payment-note {
  font-size: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #aaa;
  text-align: center;
  line-height: 1.5;
}

.cart-email-btn {
  width: 100%;
  background: #7cb342;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.cart-email-btn:hover { background: #5a8f2a; transform: translateY(-1px); }

/* ── Modal cart row ── */
.modal-cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.modal-size-select {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2c3e2d;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
.modal-size-select:focus { border-color: #7cb342; }
.modal-add-cart-btn {
  background: #7cb342;
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.modal-add-cart-btn:hover { background: #5a8f2a; }

.modal-action-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 32px 24px;
  color: #999;
  font-size: 0.8rem;
  border-top: 1px solid rgba(44, 62, 45, 0.1);
  margin-top: 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: rgba(44, 62, 45, 0.03);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .site-header { padding: 14px 16px; }
  .site-nav { gap: 4px; }
  .nav-link { font-size: 0.75rem; padding: 6px 8px; }
  main { padding: 0 16px 60px; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
}

@media (max-width: 500px) {
  .site-header .logo img { display: none; }
  .site-header .logo { font-size: 1rem; white-space: nowrap; }
  .hamburger-btn { display: flex; }
  .cart-icon-btn { flex-shrink: 0; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(44, 62, 45, 0.98);
    padding: 8px 0;
    z-index: 999;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }
  .site-nav.nav-open { display: flex; }
  .nav-link {
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 48px 20px 36px; }
  .contact-links { flex-direction: column; }
  .contact-link { justify-content: center; }
}
