/*
Theme Name: MigraCap Landing
Description: Direct Response Single Product Landing Page — Mobile First
Version: 1.0
Author: TrustMine
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  background: #FFFFFF;
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
}
h1 { font-size: clamp(1.75rem, 6vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }
p { color: #333333; line-height: 1.7; }

/* ===== COLORS ===== */
:root {
  --red: #E8230A;
  --red-dark: #C41E08;
  --black: #111111;
  --gray-light: #F7F7F7;
  --gray-mid: #E5E5E5;
  --gray-text: #555555;
  --green: #1A8A3C;
  --white: #FFFFFF;
  --gold: #F5A623;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.announcement-bar span { color: var(--gold); }

/* ===== STICKY HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--black);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 40px;
  z-index: 999;
}
.site-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--red); }
.header-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--red-dark); color: var(--white); }

/* ===== CTA BUTTON (PRIMARY) ===== */
.btn-primary {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 18px 24px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(232,35,10,0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); color: var(--white); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--black);
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

/* ===== SECTIONS ===== */
section { padding: 48px 20px; }
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 20px; }
.section-title em { font-style: normal; color: var(--red); }

/* ===== HERO ===== */
#hero {
  padding: 32px 20px 40px;
  background: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF3F2;
  border: 1px solid #FFD0CC;
  color: var(--red);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-headline { margin-bottom: 14px; }
.hero-subheadline {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 24px;
}

/* ===== PRODUCT IMAGE GALLERY ===== */
.gallery-main {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-light);
  display: block;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr); gap: 5px;
  gap: 8px;
  margin-top: 10px;
}
.gallery-thumb {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
  background: var(--gray-light);
  width: 100%;
}
.gallery-thumb.active { border-color: var(--red); }
.gallery-thumb:hover { border-color: var(--black); }

/* ===== PRICE BLOCK ===== */
.price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-current {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}
.price-original {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}
.price-badge {
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===== SCARCITY ===== */
.scarcity-bar {
  background: #FFF8E7;
  border: 1px solid #FFD580;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8B5E00;
}
.scarcity-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== TIMER ===== */
.timer-wrapper {
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.timer-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ccc;
}
.timer-digits {
  display: flex;
  gap: 6px;
  align-items: center;
}
.timer-unit {
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.timer-sep { font-weight: 800; font-size: 1.3rem; color: var(--gold); }

/* ===== TRUST ICONS ===== */
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-text);
  font-weight: 500;
}
.trust-item .icon { color: var(--green); font-size: 1rem; }

/* ===== SOCIAL PROOF BAR ===== */
#social-proof-bar {
  background: var(--black);
  padding: 20px;
}
.proof-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proof-stat {
  text-align: center;
  color: var(--white);
}
.proof-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.proof-stat-label {
  font-size: 0.8rem;
  color: #aaa;
}
.proof-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }

/* ===== PROBLEM SECTION ===== */
#problem { background: var(--gray-light); }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.pain-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  border-left: 4px solid var(--red);
}
.pain-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pain-text { font-size: 0.95rem; color: #333; }
.pain-text strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: 2px; color: var(--black); }

/* ===== IMAGE GALLERY SECTION ===== */
#photo-gallery { padding: 48px 20px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.gallery-grid-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  background: var(--gray-light);
}
.gallery-grid-img.featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* ===== UGC VIDEO SECTION ===== */
#ugc-videos { background: var(--gray-light); }
.video-scroll-wrapper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.video-scroll-wrapper::-webkit-scrollbar { display: none; }
.video-card {
  flex-shrink: 0;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--black);
  position: relative;
}
.video-card iframe, .video-card video {
  width: 200px;
  height: 355px;
  border: none;
  display: block;
}
.video-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  font-size: 0.75rem;
  padding: 24px 10px 10px;
  font-weight: 600;
}
.video-placeholder {
  width: 200px;
  height: 355px;
  background: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.8rem;
  gap: 8px;
}
.video-placeholder span { font-size: 2rem; }

/* ===== HOW IT WORKS ===== */
#how-it-works { background: var(--white); }
.steps-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-number {
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text h4 { font-size: 1rem; margin-bottom: 4px; }
.step-text p { font-size: 0.9rem; color: var(--gray-text); }

/* ===== BEFORE/AFTER ===== */
#before-after { background: var(--gray-light); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.ba-col {
  border-radius: 12px;
  padding: 20px 16px;
}
.ba-col.before { background: #F0F0F0; }
.ba-col.after { background: #E8F5E9; }
.ba-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}
.ba-col.before .ba-label { color: #888; }
.ba-col.after .ba-label { color: var(--green); }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ba-list li { font-size: 0.88rem; display: flex; gap: 8px; align-items: flex-start; }
.ba-list .x { color: #CC0000; font-weight: 700; }
.ba-list .check { color: var(--green); font-weight: 700; }

/* ===== COMPARISON TABLE ===== */
#comparison { background: var(--white); }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 0.88rem; }
.compare-table th {
  padding: 12px 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  text-align: center;
  border-bottom: 2px solid var(--black);
}
.compare-table th.highlight {
  background: var(--red);
  color: var(--white);
  border-radius: 8px 8px 0 0;
}
.compare-table td {
  padding: 11px 8px;
  text-align: center;
  border-bottom: 1px solid var(--gray-mid);
  vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 600; font-size: 0.82rem; }
.compare-table td.highlight { background: #FFF5F5; }
.check-yes { color: var(--green); font-weight: 800; font-size: 1.1rem; }
.check-no { color: #CC0000; font-weight: 800; }
.check-maybe { color: #888; }

/* ===== BENEFITS ===== */
#benefits { background: var(--gray-light); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 14px;
  border: 1px solid var(--gray-mid);
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.benefit-desc { font-size: 0.82rem; color: var(--gray-text); line-height: 1.5; }

/* ===== REVIEWS ===== */
#reviews { background: var(--white); }
.reviews-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.review-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--gold);
}
.review-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem;
  color: #222;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; }
.review-meta { font-size: 0.78rem; color: var(--gray-text); }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

/* ===== PACKAGES ===== */
#packages { background: var(--gray-light); }
.packages-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.package-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 18px;
  border: 2px solid var(--gray-mid);
  position: relative;
  transition: border-color 0.2s;
}
.package-card.popular {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(232,35,10,0.12);
}
.package-card.best {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245,166,35,0.15);
}
.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.package-badge.popular { background: var(--red); color: var(--white); }
.package-badge.best { background: var(--gold); color: var(--black); }
.package-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.package-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
}
.package-qty {
  font-size: 0.82rem;
  color: var(--gray-text);
  font-weight: 500;
}
.package-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 6px;
}
.package-price-current {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
}
.package-price-old {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}
.package-savings {
  display: inline-block;
  background: #E8F5E9;
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.package-per-unit {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin-bottom: 10px;
}
.package-review-quote {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-style: italic;
  color: #444;
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
}
.package-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.package-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}
.package-features li .check-icon { color: var(--green); font-weight: 700; }
.package-features li .x-icon { color: #ccc; }
.delivery-note {
  font-size: 0.78rem;
  text-align: center;
  color: var(--gray-text);
  margin-top: 10px;
}

/* ===== GUARANTEE ===== */
#guarantee { background: var(--white); }
.guarantee-box {
  border: 2px solid var(--black);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  margin-top: 24px;
}
.guarantee-icon { font-size: 3rem; margin-bottom: 12px; display: block; }
.guarantee-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.guarantee-text { font-size: 0.92rem; color: var(--gray-text); line-height: 1.6; }

/* ===== WHATS IN BOX ===== */
#whats-in-box { background: var(--gray-light); }
.box-contents { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.box-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
}
.box-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.box-item-text h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.box-item-text p { font-size: 0.82rem; color: var(--gray-text); }

/* ===== SPEC TABLE ===== */
.spec-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.88rem; }
.spec-table tr:nth-child(even) { background: var(--gray-light); }
.spec-table td { padding: 11px 12px; border-bottom: 1px solid var(--gray-mid); }
.spec-table td:first-child { font-weight: 600; color: var(--black); width: 50%; }
.spec-table td:last-child { color: var(--gray-text); }

/* ===== FAQ ===== */
#faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; border-top: 1px solid var(--gray-mid); }
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  gap: 12px;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }

/* ===== FINAL CTA ===== */
#final-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 52px 20px;
}
#final-cta h2 { color: var(--white); margin-bottom: 10px; }
#final-cta p { color: #aaa; margin-bottom: 28px; }
.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #888;
}
.payment-icon-badge {
  background: #222;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 0.78rem;
  color: #ccc;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0A0A0A;
  color: #666;
  text-align: center;
  padding: 24px 20px;
  font-size: 0.78rem;
}
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; flex-wrap: wrap; }
.footer-links a { color: #666; text-decoration: none; }
.footer-links a:hover { color: #ccc; }

/* ===== STICKY BOTTOM BAR (MOBILE) ===== */
.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--black);
  padding: 12px 16px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-bottom-price {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.sticky-price-main { font-size: 1.1rem; font-weight: 800; color: var(--red); display: block; }
.sticky-price-old { font-size: 0.78rem; color: #999; text-decoration: line-through; display: block; }
.sticky-bottom .btn-primary { margin: 0; font-size: 0.9rem; padding: 14px 16px; }


/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  section { padding: 64px 40px; }
  #hero { padding: 40px 40px 56px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  section { padding: 80px 80px; max-width: 900px; margin: 0 auto; }
  #hero { padding: 56px 80px; max-width: 100%; }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: 1100px; margin: 0 auto; }
  .sticky-bottom { display: none; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.color-red { color: var(--red); }
.color-green { color: var(--green); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

}


/* ===== HERO MOBILE-FIRST ===== */

/* Domyślnie (mobile): galeria-mobile widoczna, galeria-desktop ukryta */
.hero-gallery-mobile {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
.hero-gallery-desktop {
  display: none;
}
.scarcity-desktop { display: none; }
.scarcity-under-gallery { display: flex; margin-top: 10px; }

/* Zdjęcie główne mobile — full width */
.hero-gallery-mobile .gallery-main {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: #f8f8f8;
}

/* Miniatury mobile — 6 w rzędzie */
.hero-gallery-mobile .gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  margin-top: 8px;
}
.hero-gallery-mobile .gallery-thumb {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  width: 100%;
}
.hero-gallery-mobile .gallery-thumb.active,
.hero-gallery-mobile .gallery-thumb:hover {
  border-color: var(--red);
}

/* Desktop (>=1024px): galeria-mobile ukryta, galeria-desktop widoczna */
@media (min-width: 1024px) {
  #hero { padding: 56px 80px; max-width: 100%; }
  .hero-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
  }
  /* Na desktop hero-copy zawiera galerię po prawej */
  .hero-gallery-mobile { display: none; }
  .hero-gallery-desktop {
    display: block;
    order: 1;
  }
  .hero-gallery-desktop .gallery-main {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }
  .hero-gallery-desktop .gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 10px;
  }
  .hero-gallery-desktop .gallery-thumb {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    width: 100%;
  }
  .hero-gallery-desktop .gallery-thumb.active,
  .hero-gallery-desktop .gallery-thumb:hover { border-color: var(--red); }
  /* Scarcity: desktop pokazuje w copy, pod galerią chowamy */
  .scarcity-desktop { display: flex; }
  .scarcity-under-gallery { display: none; }
}

/* ===== SELEKTOR KOLORÓW ===== */
.color-selector {
  margin: 16px 0;
}
.color-label {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.color-label strong {
  color: #111;
}
.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 3px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.1s;
  background: #f5f5f5;
}
.color-btn:hover {
  transform: scale(1.03);
}
.color-btn.active {
  border-color: #e63c2f !important;
  box-shadow: 0 0 0 2px rgba(230,60,47,0.15);
}

/* ===== SELEKTOR KOLORÓW W PAKIETACH ===== */
.pkg-colors {
  margin: 14px 0 16px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px 14px;
}
.pkg-color-hd {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pkg-opts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pkg-color-opt {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.pkg-color-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
}
.pkg-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  background: #fff;
}
.pkg-pill.pink  { border-color: #f4a7b9; background: #fff5f7; }
.pkg-pill.blue  { border-color: #a8c8e8; background: #f0f7ff; }
.pkg-pill.mixed { border-color: #d0d0d0; background: #fafafa; }

.pkg-color-opt input:checked + .pkg-pill {
  border-color: #e63c2f !important;
  background: #fff8f7 !important;
  box-shadow: 0 0 0 2px rgba(230,60,47,0.12);
}
