/* =====================================================================
   1413 — Home Page "UK-Held Ready-Made Stock". Configurable module
   (rp_ukstock): left click-to-play video card, right cream rp_hero-style
   panel (eyebrow, headline, CTAs, stat cards, dispatch note).
   Loaded by the catalog controller via addStyle().
   ===================================================================== */
.rp-ukstock {
  --red:#db0f16; --red-dark:#b50c12; --cream:#f5f0e9; --ink:#16130f;
  --muted:#6b6a66; --line:#d8d2c7; --white:#fff;
  font-family:'Outfit',sans-serif; margin:26px 0; color:var(--ink);
  border-radius:14px; overflow:hidden; box-shadow:0 1px 0 rgba(0,0,0,.04);
}
.rp-ukstock * { box-sizing:border-box; }

.rp-ukstock__inner { display:grid; grid-template-columns:52fr 48fr; align-items:stretch; }

/* ---- left: video card ---- */
.rp-ukstock__media { position:relative; min-height:340px; background:#111; }
.rp-ukstock__video {
  position:absolute; inset:0; width:100%; height:100%; display:block;
  padding:0; margin:0; border:0; cursor:pointer; background:#111; overflow:hidden;
}
.rp-ukstock__video--static { cursor:default; }
.rp-ukstock__poster { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.rp-ukstock__video:hover .rp-ukstock__poster { transform:scale(1.03); }

.rp-ukstock__playbar {
  position:absolute; left:26px; bottom:26px; display:inline-flex; align-items:center; gap:16px;
  color:var(--white); text-shadow:0 1px 8px rgba(0,0,0,.45);
}
.rp-ukstock__play { display:inline-flex; width:58px; height:58px; color:var(--white); flex:0 0 auto; }
.rp-ukstock__play svg { width:100%; height:100%; filter:drop-shadow(0 2px 10px rgba(0,0,0,.4)); }
.rp-ukstock__video:hover .rp-ukstock__play { color:#fff; transform:scale(1.06); transition:transform .15s ease; }
.rp-ukstock__playlabel { font-size:18px; font-weight:700; line-height:1.2; max-width:12ch; }

/* the swapped-in iframe — cover-fill the tall block (fills top→bottom, crops the
   overflowing width) so there's no black letterbox (1459). */
.rp-ukstock__frame { position:absolute; inset:0; background:#000; overflow:hidden; }
.rp-ukstock__frame iframe { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  height:100%; width:auto; aspect-ratio:16/9; border:0; display:block; }

/* ---- right: cream panel ---- */
.rp-ukstock__panel { background:var(--cream); padding:48px 50px; display:flex; flex-direction:column; min-width:0; }

.rp-ukstock__eyebrow { font-size:13px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--red); margin:0 0 16px; }
.rp-ukstock__title { margin:0 0 16px; font-size:clamp(30px,3.2vw,44px); font-weight:800; line-height:1.05; letter-spacing:-.02em; }
.rp-ukstock__subtext { margin:0 0 26px; font-size:17px; line-height:1.55; color:var(--muted); max-width:44ch; }

/* actions */
.rp-ukstock__actions { display:flex; flex-wrap:wrap; align-items:center; gap:18px 28px; margin:0 0 30px; }
.rp-ukstock__btn {
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--red); color:var(--white); font-size:15px; font-weight:700; text-decoration:none;
  padding:15px 26px; border-radius:8px; border:2px solid var(--red);
  transition:transform .12s ease, background .15s;
}
.rp-ukstock__btn:hover { background:var(--red-dark); border-color:var(--red-dark); color:var(--white); transform:translateY(-1px); }
.rp-ukstock__textlink { display:inline-flex; align-items:center; gap:9px; color:var(--red); font-size:15px; font-weight:700; text-decoration:none; border-bottom:2px solid var(--red); padding-bottom:2px; }
.rp-ukstock__textlink:hover { color:var(--red-dark); border-color:var(--red-dark); }

/* stat cards */
.rp-ukstock__stats { list-style:none; margin:0 0 24px; padding:0; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.rp-ukstock__stat { border:1px solid var(--line); border-radius:12px; padding:18px 16px; text-align:center; background:rgba(255,255,255,.4); }
.rp-ukstock__stat-value { display:block; font-size:26px; font-weight:800; line-height:1; letter-spacing:-.01em; color:var(--red); }
.rp-ukstock__stat-label { display:block; font-size:13px; color:var(--muted); margin-top:7px; line-height:1.3; }

/* dispatch note */
.rp-ukstock__note { display:flex; align-items:flex-start; gap:12px; margin-top:auto; }
.rp-ukstock__note-icon { flex:0 0 auto; width:30px; height:30px; color:var(--red); }
.rp-ukstock__note-icon svg { width:100%; height:100%; }
.rp-ukstock__note-text { font-size:14px; line-height:1.45; color:var(--muted); }

/* ---- responsive ---- */
@media (max-width:900px){
  .rp-ukstock__inner { grid-template-columns:1fr; }
  .rp-ukstock__media { min-height:0; aspect-ratio:16/10; }
  .rp-ukstock__panel { padding:34px 28px; }
}
@media (max-width:520px){
  .rp-ukstock__stats { grid-template-columns:1fr 1fr; }
  .rp-ukstock__stat:nth-child(3){ grid-column:1 / -1; }
  .rp-ukstock__btn { flex:1 1 auto; }
  .rp-ukstock__title { font-size:28px; }
}
