/* ORDiDOC Retail Promo — poster system
   Strictly for in-store, vitrine, PLV. Never mix with brand-core site styles. */
@import url('../../colors_and_type.css');

* { box-sizing: border-box; }
body { margin: 0; background: #DFE3EA; font-family: var(--font-body); padding: 40px 20px; }

/* Posters are designed at A4 print scale (210x297mm → 794x1123px @ 96dpi).
   We scale down to 560px wide for screen preview. */
.poster-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.poster-wrap { text-align: center; }
.poster-wrap .cap { font-family: var(--font-mono); font-size: 11px; color: #4B5563; margin-top: 10px; letter-spacing: 0.04em; }

.poster {
  width: 400px; height: 566px; /* A4 ratio */
  margin: 0 auto;
  border-radius: 6px; overflow: hidden; position: relative;
  box-shadow: 0 24px 60px rgba(22,58,105,0.25), 0 4px 12px rgba(0,0,0,0.08);
}

/* ---------- Shared poster atoms ---------- */
.p-header {
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.p-logo img { height: 28px; display: block; }
.p-price {
  font-family: var(--font-retail-display);
  font-weight: 400; line-height: 0.9; letter-spacing: -0.02em;
  color: var(--retail-yellow-500);
  -webkit-text-stroke: 3px var(--blue-700);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 rgba(22,58,105,0.2);
  margin: 0;
}
.p-specs { display: flex; flex-direction: column; gap: 6px; }
.p-spec {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
}
.p-spec .ic { width: 22px; height: 22px; flex: 0 0 auto; }
.p-sticker {
  position: absolute; width: 100px; height: 100px; border-radius: 50%;
  background: var(--retail-orange-500); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; text-align: center; line-height: 1;
  box-shadow: 0 6px 16px rgba(234,88,12,0.4);
  transform: rotate(-8deg);
}
.p-sticker strong { font-family: var(--font-retail-display); font-size: 36px; line-height: 0.9; margin-bottom: 2px; }
.p-sticker span { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.95; }

/* ---------- Poster 1 — Classic price drop (yellow field) ---------- */
.p1 {
  background:
    radial-gradient(circle at 80% 90%, rgba(234,88,12,0.15), transparent 55%),
    var(--retail-yellow-500);
  color: var(--blue-700);
}
.p1 .p-header { background: var(--blue-700); color: #fff; }
.p1 .p-header .tag { background: var(--retail-orange-500); padding: 4px 10px; border-radius: 3px; font-size: 10px; }
.p1 .visual {
  position: absolute; top: 70px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 180px; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.p1 .visual .device {
  width: 160px; height: 110px; background: linear-gradient(145deg,#2a2a30,#18181c);
  border-radius: 8px; position: relative; display: flex; align-items: center; justify-content: center;
}
.p1 .visual .device::after {
  content: ""; position: absolute; bottom: -12px; left: 20%; right: 20%; height: 12px;
  background: linear-gradient(180deg,#3a3a42,#1a1a1f); border-radius: 0 0 4px 4px;
}
.p1 .visual .device .scr { width: 80%; height: 72%; background: linear-gradient(135deg,#1F4E8C,#7AC043); border-radius: 3px; }
.p1 .model {
  position: absolute; top: 270px; left: 0; right: 0; text-align: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: -0.01em;
}
.p1 .model small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12px; opacity: 0.7; margin-top: 2px; letter-spacing: 0; text-transform: none; }
.p1 .price-block { position: absolute; left: 24px; bottom: 100px; }
.p1 .price-block .was { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #D64545; text-decoration: line-through; margin-bottom: 2px; }
.p1 .price-block .now { font-size: 92px; }
.p1 .price-block .now sup { font-size: 36px; vertical-align: top; -webkit-text-stroke: 2px var(--blue-700); margin-left: -4px; }
.p1 .specs-bar {
  position: absolute; left: 24px; right: 24px; bottom: 36px;
  background: var(--blue-700); color: #fff; border-radius: 4px;
  padding: 10px 14px; display: flex; justify-content: space-around; font-family: var(--font-heading); font-weight: 600; font-size: 11px;
}
.p1 .sticker-pos { top: 100px; right: 20px; }

/* ---------- Poster 2 — Service / Fibre (blue field, cleaner) ---------- */
.p2 { background: linear-gradient(180deg, var(--blue-700) 0%, #0e2951 100%); color: #fff; padding: 0; }
.p2 .p-header { background: transparent; color: #fff; }
.p2 .p-header .tag { color: var(--retail-yellow-500); font-size: 10px; }
/* p2 uses mono-white asset directly — no filter needed */
.p2 .hero {
  position: absolute; top: 70px; left: 24px; right: 24px;
}
.p2 .hero h1 {
  font-family: var(--font-heading); font-weight: 700; font-size: 44px; line-height: 0.95; letter-spacing: -0.02em;
  margin: 0; text-transform: uppercase; color: #fff;
}
.p2 .hero h1 em { font-style: normal; color: var(--retail-yellow-500); }
.p2 .hero .sub { font-family: var(--font-body); font-size: 14px; margin-top: 10px; opacity: 0.9; max-width: 280px; line-height: 1.4; color: #fff; }
.p2 .offer-ring {
  position: absolute; right: 20px; bottom: 220px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--retail-orange-500); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(234,88,12,0.4);
  transform: rotate(-4deg);
  font-family: var(--font-heading);
}
.p2 .offer-ring .lbl { font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.95; }
.p2 .offer-ring .num { font-family: var(--font-retail-display); font-size: 60px; line-height: 0.9; margin: 4px 0; }
.p2 .offer-ring .num sup { font-size: 22px; vertical-align: top; }
.p2 .offer-ring .per { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.p2 .includes {
  position: absolute; left: 24px; bottom: 110px; right: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
}
.p2 .includes .it { display: flex; gap: 8px; align-items: center; font-family: var(--font-heading); font-weight: 600; font-size: 12px; }
.p2 .includes .it::before {
  content: "✓"; color: var(--retail-yellow-500); font-weight: 700;
}
.p2 .foot-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--retail-yellow-500); color: var(--blue-700);
  padding: 14px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px; letter-spacing: 0.04em;
}
.p2 .foot-bar strong { font-size: 14px; }

/* ---------- Poster 3 — Service (neutral, subtle retail) ---------- */
.p3 { background: #F5F7FA; color: var(--blue-700); }
.p3 .p-header { background: var(--blue-700); color: #fff; }
.p3 .p-header .tag { background: var(--retail-yellow-500); color: var(--blue-700); padding: 3px 10px; border-radius: 3px; font-size: 10px; }
.p3 .mascot {
  position: absolute; top: 68px; left: 50%; transform: translateX(-50%);
  width: 230px; height: 230px; border-radius: 50%; overflow: hidden;
  background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
  .p3 .mascot img { width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 8px; }
.p3 .hook {
  position: absolute; top: 310px; left: 24px; right: 24px; text-align: center;
}
.p3 .hook h1 {
  font-family: var(--font-heading); font-weight: 700; font-size: 34px; line-height: 1; letter-spacing: -0.02em;
  margin: 0; text-transform: uppercase;
}
.p3 .hook h1 em { font-style: normal; color: var(--retail-orange-500); }
.p3 .hook .lede { font-family: var(--font-body); font-size: 14px; line-height: 1.4; color: #4B5563; margin-top: 10px; max-width: 300px; margin-left: auto; margin-right: auto; }
.p3 .price-row {
  position: absolute; left: 24px; right: 24px; bottom: 80px;
  background: #fff; border-radius: 8px; padding: 18px; display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 6px 18px rgba(22,58,105,0.08);
}
.p3 .price-row .label { font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.p3 .price-row .label small { display: block; font-size: 11px; font-weight: 500; color: #4B5563; letter-spacing: 0; text-transform: none; margin-top: 2px; }
.p3 .price-row .amt { font-family: var(--font-retail-display); font-size: 48px; line-height: 1; color: var(--retail-orange-500); -webkit-text-stroke: 2px var(--blue-700); paint-order: stroke fill; }
.p3 .price-row .amt sup { font-size: 20px; vertical-align: top; }
.p3 .cta-bar {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  background: var(--blue-700); color: #fff; border-radius: 6px;
  padding: 12px 16px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 0.04em;
}

/* ---------- Docs strip ---------- */
.doc-strip {
  max-width: 1300px; margin: 56px auto 0; background: #fff; border-radius: 16px; padding: 28px 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.doc-strip h2 { font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin: 0 0 6px; color: var(--blue-700); }
.doc-strip p { font-family: var(--font-body); font-size: 14px; color: #4B5563; line-height: 1.6; margin: 0; }
.doc-strip .rules { margin-top: 18px; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.doc-strip .rule { background: #F5F7FA; padding: 14px; border-radius: 10px; font-family: var(--font-body); font-size: 12.5px; line-height: 1.5; color: #1F2937; border-left: 3px solid var(--retail-orange-500); }
.doc-strip .rule b { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--blue-700); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

.kit-header { max-width: 1300px; margin: 0 auto 40px; color: var(--blue-700); }
.kit-header .tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; background: var(--retail-orange-500); color: #fff; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.kit-header h1 { font-family: var(--font-heading); font-weight: 700; font-size: 36px; margin: 0 0 8px; letter-spacing: -0.01em; }
.kit-header p { font-family: var(--font-body); font-size: 15px; color: #4B5563; max-width: 640px; margin: 0; line-height: 1.55; }
