/* =====================================================================
   WOW 777.shopping — HOME page only styles
   Matches the approved concept: wow-home-concept-v10.html
   (Sourceful-style pastel look). Loaded ONLY by index.html AFTER
   style.css, so inner pages (about/services/…) are untouched.
   ===================================================================== */

:root {
  --soft: #F6F8FB;   /* warm band wash */
  --muted: #4F5768;  /* secondary text */
}

mark {
  background: var(--yellow);
  color: inherit;
  padding: 0 0.14em;
  border-radius: 0.18em;
  font-weight: inherit;
}

.gtxt {
  background: linear-gradient(135deg, #5B2EC8, #0038FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------- section shells ---------------- */
.wrap { padding: 84px 0; }
.band-white { background: #fff; }
.band-warm { background: var(--soft); }

/* ---------------- section heading block ---------------- */
.head { margin-bottom: 46px; }
.head h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 14px 0 0;
  color: var(--ink);
}
.head .lead {
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.6;
  max-width: 720px;
  margin-top: 16px;
}
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.center .head h2 { font-size: 46px; }

/* Eyebrow — small diamond prefix (Sourceful style, home page only) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--violet);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--violet);
  transform: rotate(45deg);
  flex: none;
}
.center .eyebrow { justify-content: center; }

/* ============ 2. Your idea. Our supply chain. ============ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.c3 {
  background: #fff;
  border: 1px solid #E7E8EE;
  border-radius: 20px;
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.c3:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(91, 46, 200, 0.10);
  border-color: #E9DDFF;
}
.c3 .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.c3 .ico svg { width: 24px; height: 24px; }
.c3.a .ico { background: #EFE2FF; }
.c3.a .ico svg { stroke: var(--violet); }
.c3.b .ico { background: #DCE6FF; }
.c3.b .ico svg { stroke: #2358FF; }
.c3.c .ico { background: #DAF6EC; }
.c3.c .ico svg { stroke: var(--green-d); }
.c3 h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.c3 p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 10px;
}
.position-panel {
  margin-top: 26px;
  background: var(--g-soft);
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 30px 34px;
  text-align: center;
}
.position-panel b {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}
.position-panel p { color: #4A5570; font-size: 14.5px; margin-top: 8px; }

/* ============ 5. Products made around your brand ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  background: #fff;
  border: 1px solid #E7E8EE;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(91, 46, 200, 0.10);
}
.cat-card .ph {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F4F3EF;
}
.cat-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cat-card:hover .ph img { transform: scale(1.05); }
.cat-card .bd { padding: 18px 20px 20px; }
.cat-card h3 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cat-card .ex {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.55;
  font-weight: 500;
}
a.cat-cta {
  background: var(--violet);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 26px;
  min-height: 100%;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
a.cat-cta:hover {
  background: var(--violet-d);
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(91, 46, 200, 0.22);
}
.cat-cta h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}
.cat-cta p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  line-height: 1.55;
}
.cat-cta .mini-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--violet);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
}
.find-line { text-align: center; margin-top: 40px; }
.find-line p {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.find-line a {
  display: inline-block;
  margin-top: 6px;
  color: var(--violet);
  font-weight: 800;
  font-size: 15px;
  border-bottom: 2px solid #FFEAA5;
  padding-bottom: 2px;
  text-decoration: none;
}
.find-line a:hover { color: var(--violet-d); }

/* ============ 6. How it works — 4 steps (big numbers + tags) ============ */
#how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: none;
  position: relative;
}
#how-it-works .step {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0 22px;
  box-shadow: none;
  transform: none;
}
#how-it-works .step::before { content: none; }
#how-it-works .step:hover { box-shadow: none; transform: none; }
#how-it-works .step+.step::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #EFE2FF;
}
#how-it-works .step .n {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--violet);
}
#how-it-works .step h3 {
  font-size: 17.5px;
  font-weight: 900;
  margin: 14px 0 0;
  color: var(--ink);
}
#how-it-works .step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 9px;
}
#how-it-works .step .lbl {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
  background: #EFE2FF;
  color: var(--violet-d);
  padding: 4px 10px;
  border-radius: 999px;
}
#how-it-works .step:nth-child(2) .lbl { background: #DCE6FF; color: #2358FF; }
#how-it-works .step:nth-child(3) .lbl { background: #DAF6EC; color: var(--green-d); }
#how-it-works .step:nth-child(4) .lbl { background: #FFF3D6; color: #B7791F; }

/* ============ 7. Who we serve ============ */
.rows { border-top: 1px solid #E7E8EE; }
.row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 10px;
  border-bottom: 1px solid #E7E8EE;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.row:hover { background: #FAF7FF; }
.row .rn {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--violet);
}
.row .rt b {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
}
.row .rt p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.55;
}
.row .go {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1px solid #E7E8EE;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.row .go svg { width: 16px; height: 16px; stroke: var(--ink); }
.row:hover .go { background: var(--violet); border-color: transparent; }
.row:hover .go svg { stroke: #fff; }
.more-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.more-chips .chip {
  font-size: 13px;
  font-weight: 600;
  color: #4A5163;
  border: 1px solid #E7E8EE;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
}
.more-chips .chip:hover { border-color: var(--violet); color: var(--violet); }
.see-all { margin-top: 30px; text-align: center; }

/* ============ 8. Big statement ============ */
.statement {
  background: #fff;
  text-align: center;
  padding: 110px 24px;
}
.statement h2 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
}
.statement p {
  color: var(--muted);
  font-size: 17px;
  margin: 20px auto 0;
  max-width: 640px;
  line-height: 1.6;
}

/* ============ 10. FAQ ============ */
.faq-sec { background: #fff; border-top: 1px solid #E7E8EE; }
.faq-in {
  display: grid;
  grid-template-columns: 0.92fr 1.35fr;
  gap: 64px;
  padding: 96px 0 100px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left h2 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 18px 0 0;
  color: var(--ink);
}
.faq-left .lead {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 400px;
}
.faq-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-cta .row-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  width: fit-content;
}
.faq-cta .row-cta svg { width: 18px; height: 18px; flex: none; }
.faq-cta .wa-c { color: #0F9D58; }
.faq-cta .mail-c { color: var(--violet); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
details.faq-item {
  background: #fff;
  border: 1px solid #E7E8EE;
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
details.faq-item[open] {
  border-color: #DCC7F7;
  box-shadow: 0 14px 40px rgba(91, 46, 200, 0.10);
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .q { flex: 1; }
details.faq-item summary .ic {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--violet-l);
  color: var(--violet-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.2s;
}
details.faq-item[open] summary .ic {
  transform: rotate(45deg);
  background: var(--violet);
  color: #fff;
}
.faq-ans {
  padding: 2px 24px 24px 70px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-ans b { color: var(--ink); font-weight: 700; }

/* ============ 11. Final CTA ============ */
.final { background: var(--g-pastel); position: relative; overflow: hidden; }
.final-in {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 104px 0 90px;
}
.final h2 {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
  color: var(--ink);
}
.final h2 mark { background: var(--yellow); color: var(--ink); }
.final p {
  color: #3F4655;
  font-size: 17.5px;
  margin: 22px auto 0;
  max-width: 620px;
  line-height: 1.6;
}
.final .btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 38px 0 0;
  flex-wrap: wrap;
}

/* ============ WhatsApp float ============ */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 80;
}
.wa svg { width: 28px; height: 28px; fill: #fff; }
.wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-ping 2s ease-out infinite;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------------- responsive ---------------- */
@media (max-width: 1020px) {
  .cards-3 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  #how-it-works .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .faq-in { grid-template-columns: 1fr; gap: 36px; padding: 64px 0 72px; }
  .faq-left { position: static; }
  .head h2 { font-size: 34px; }
  .center .head h2 { font-size: 34px; }
  .statement h2 { font-size: 40px; }
  .statement { padding: 84px 24px; }
  .final h2 { font-size: 44px; }
  .final-in { padding: 80px 0 70px; }
}
@media (max-width: 620px) {
  .cat-grid { grid-template-columns: 1fr; }
  #how-it-works .steps { grid-template-columns: 1fr; gap: 26px; }
  .row { grid-template-columns: 1fr; gap: 10px; }
  .faq-ans { padding: 2px 22px 24px; }
  details.faq-item summary { padding: 18px; }
  .faq-left h2 { font-size: 38px; }
  .head h2 { font-size: 30px; }
  .center .head h2 { font-size: 30px; }
  .position-panel { padding: 24px 20px; }
  .statement h2 { font-size: 34px; }
  .final h2 { font-size: 36px; }
}
