/* =========================================================
   NILKANTH FABRICS — photo-first portfolio (Instagram-style)
   Brand: coral red + charcoal on ivory
   ========================================================= */
:root {
  --bg: #ffffff;
  --bg-2: #faf7f3;
  --ink: #2b2b2d;
  --ink-soft: #5f5f62;
  --muted: #9a948d;
  --brand: #f0392b;        /* logo coral red */
  --brand-deep: #d62b1f;
  --line: #ededed;
  --maxw: 1100px;
  --gap: 3px;              /* IG-tight grid gap */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; text-rendering: optimizeLegibility; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-body); font-weight: 400;
  line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--brand); font-weight: 500; }

/* ---------- Swatch / image ---------- */
.ph { position: relative; overflow: hidden; background: var(--bg-2); }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.6,.2,1); }
.ph .weave { position: absolute; inset: 0; opacity: .45; mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 2px, transparent 2px 6px),
                    repeating-linear-gradient(-45deg, rgba(0,0,0,.1) 0 2px, transparent 2px 6px); }
.r-square { aspect-ratio: 1/1; } .r-portrait { aspect-ratio: 4/5; } .r-tall { aspect-ratio: 3/4; }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.hdr .wrap { display: flex; align-items: center; justify-content: center; height: 56px; position: relative; }
.brand-logo img { height: 30px; width: auto; display: block; }
.hdr .back, .hdr .ico { position: absolute; top: 50%; transform: translateY(-50%); color: var(--ink); display: flex; }
.hdr .back { left: 16px; font-size: 22px; line-height: 1; }
.hdr .ico { right: 16px; }

/* ---------- Profile-style intro (category / home) ---------- */
.bio { text-align: center; padding: 14px 16px 2px; }
.bio .avatar { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 14px; overflow: hidden;
  padding: 3px; background: conic-gradient(from 200deg, var(--brand), #f7b733, #8e44ad, var(--brand)); }
.bio .avatar .ph { width: 100%; height: 100%; border-radius: 50%; border: 3px solid #fff; }
.bio h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 7vw, 40px); line-height: 1.05; }
.bio .handle { color: var(--muted); font-size: 13px; letter-spacing: .04em; margin-top: 2px; }
.bio .tag { color: var(--ink-soft); font-size: 14px; margin-top: 10px; max-width: 38ch; margin-inline: auto; }
.bio .stats { display: flex; justify-content: center; gap: 30px; margin: 18px 0 6px; }
.bio .stats div { text-align: center; }
.bio .stats b { font-family: var(--font-display); font-size: 20px; font-weight: 600; display: block; line-height: 1; }
.bio .stats span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.bio .cta-row { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }

/* ---------- Story highlights (category quick-nav) ---------- */
.stories { display: flex; gap: 18px; overflow-x: auto; padding: 18px 16px 22px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; }
.stories::-webkit-scrollbar { display: none; }
.story { flex: 0 0 auto; width: 72px; text-align: center; }
.story .ring { width: 68px; height: 68px; border-radius: 50%; padding: 2.5px; margin: 0 auto 7px;
  background: conic-gradient(from 200deg, var(--brand), #f7b733, #8e44ad, var(--brand)); }
.story .ring .ph { width: 100%; height: 100%; border-radius: 50%; border: 2.5px solid #fff; }
.story span { font-size: 11px; color: var(--ink-soft); display: block; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Section label ---------- */
.tabs { display: flex; justify-content: center; gap: 28px; border-top: 1px solid var(--line);
  margin-top: 6px; }
.tabs .t { padding: 13px 0; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); border-top: 1px solid transparent; margin-top: -1px; }
.tabs .t.on { color: var(--ink); border-top-color: var(--ink); }

/* ---------- IG grid ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.cell { position: relative; display: block; }
.cell .ph { aspect-ratio: 1/1; }
.cell .badge { position: absolute; top: 7px; right: 7px; color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.5)); z-index: 2; }
.cell .ov { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
  gap: 18px; color: #fff; font-weight: 500; background: rgba(0,0,0,.28); opacity: 0; transition: .25s; font-size: 14px; }
.cell .ov b { font-weight: 500; }
@media (hover: hover) { .cell:hover .ov { opacity: 1; } .cell:hover .ph img { transform: scale(1.05); } }

/* Category tiles (home) — 3-per-row Instagram grid */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.cat-tile { position: relative; display: block; }
.cat-tile .ph { aspect-ratio: 1/1; }
.cat-tile .ph::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(15,12,10,.78), rgba(15,12,10,0) 60%); }
.cat-tile .label { position: absolute; left: 8px; right: 8px; bottom: 7px; z-index: 2; color: #fff; }
.cat-tile .label h3 { font-family: var(--font-display); font-weight: 600; font-size: 14px; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-tile .label small { font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

/* ---------- Product gallery (IG post) ---------- */
.post { max-width: 560px; margin: 0 auto; }
.gallery { position: relative; background: #000; }
.slides { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.slides::-webkit-scrollbar { display: none; }
.slides .ph { flex: 0 0 100%; scroll-snap-align: center; aspect-ratio: 4/5; }
.counter { position: absolute; top: 12px; right: 12px; z-index: 3; background: rgba(0,0,0,.6); color: #fff;
  font-size: 12px; padding: 4px 10px; border-radius: 999px; letter-spacing: .05em; }
.dots { display: flex; justify-content: center; gap: 6px; padding: 12px 0 4px; }
.dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line); transition: .3s; }
.dots i.on { background: var(--brand); width: 18px; border-radius: 4px; }

.post .info { padding: 10px 16px 0; }
.post .info .code { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.post .info h1 { font-family: var(--font-display); font-weight: 600; font-size: 28px; line-height: 1.1; margin: 4px 0 8px; }
.post .info .crumbs { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.post .info .crumbs a:hover { color: var(--brand-deep); }
.post .desc { color: var(--ink-soft); font-size: 14.5px; margin: 6px 0 4px; }
.specs { width: 100%; border-collapse: collapse; margin: 16px 0 6px; }
.specs td { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.specs td:first-child { color: var(--muted); width: 42%; letter-spacing: .03em; }

.more { padding: 26px 0 0; }
.more h4 { text-align: center; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--brand);
  color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 400; letter-spacing: .02em;
  padding: 11px 20px; border-radius: 10px; border: none; cursor: pointer; white-space: nowrap; transition: transform .15s, background .25s; }
.btn:active { transform: scale(.97); } .btn.deep { background: var(--brand-deep); }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn.block { width: 100%; padding: 13px; }
.btn.sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Sticky enquire (mobile) ---------- */
.enquire { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; align-items: center; }
.enquire .p { flex: 1; min-width: 0; }
.enquire .p .n { font-family: var(--font-display); font-size: 18px; line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.enquire .p .c { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
body.has-enquire { padding-bottom: 76px; }

/* ---------- CTA + footer ---------- */
.cta { text-align: center; padding: 54px 18px 60px; margin-top: 30px; background: var(--bg-2); border-top: 1px solid var(--line); }
.cta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 7vw, 38px); line-height: 1.08; }
.cta p { color: var(--muted); margin: 8px 0 18px; font-size: 14px; }
.ftr { background: #1c1c1e; color: rgba(255,255,255,.6); padding: 36px 0; font-size: 13px; text-align: center; }
.ftr .name { color: #fff; font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.ftr a:hover { color: #fff; } .ftr .legal { margin-top: 16px; font-size: 11.5px; color: rgba(255,255,255,.4); }
.ftr .legal b { color: rgba(255,255,255,.7); font-weight: 400; }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.94); display: none; flex-direction: column; }
.lb.on { display: flex; }
.lb .close { position: absolute; top: 12px; right: 16px; color: #fff; font-size: 30px; z-index: 2; line-height: 1; }
.lb .lb-slides { flex: 1; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.lb .lb-slides::-webkit-scrollbar { display: none; }
.lb .lb-slides .ph { flex: 0 0 100%; scroll-snap-align: center; height: 100%; background: #000; }
.lb .lb-slides .ph img { object-fit: contain; }
.lb .counter { top: 14px; left: 16px; right: auto; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Desktop ---------- */
@media (min-width: 700px) {
  :root { --gap: 6px; }
  .cat-grid { grid-template-columns: repeat(5, 1fr); }
  .cat-tile .ph { aspect-ratio: 1/1; }
  .cat-tile .label h3 { font-size: 16px; }
  .ig-grid { grid-template-columns: repeat(5, 1fr); }
  .post { max-width: 920px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; padding-top: 18px; }
  .gallery { border-radius: 8px; overflow: hidden; position: sticky; top: 74px; }
  .slides .ph { aspect-ratio: 4/5; }
  .post .info { padding-top: 0; }
  .enquire { display: none; } body.has-enquire { padding-bottom: 0; }
  .more { grid-column: 1 / -1; }
}

/* ---------- Server-rendered additions ---------- */
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: .02em; }
.hdr .ico { color: var(--ink); }
.price { font-family: var(--font-display); font-size: 23px; line-height: 1.25; color: var(--brand-deep); font-weight: 600; margin: 2px 0 10px; }
.bio .avatar .ph .weave, .story .ring .ph .weave { display: none; }

/* ---------- Sticky footer (short pages) ---------- */
body { display: flex; flex-direction: column; min-height: 100vh; }
.page-content { flex: 1 0 auto; }
.ftr { flex-shrink: 0; }

/* ---------- Stories aligned to content + horizontal scroll ---------- */
.stories { max-width: var(--maxw); margin: 0 auto; }

/* ---------- In-page product modal ---------- */
.pmodal { position: fixed; inset: 0; z-index: 200; display: none; }
.pmodal.on { display: block; }
.pm-scrim { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.pm-card { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(560px, 96vw);
  max-height: 92vh; background: #fff; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,.4); animation: pmPop .18s ease; }
@keyframes pmPop { from { opacity: 0; transform: translate(-50%,-46%); } to { opacity: 1; transform: translate(-50%,-50%); } }
.pm-head { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.pm-head-main { flex: 1; min-width: 0; }
.pm-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.15; }
.pm-headdesc { color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin: 5px 0 0; white-space: pre-line; }
.pm-headdesc:empty { display: none; }
.pm-close { background: none; border: none; font-size: 26px; line-height: 1; color: var(--ink-soft); cursor: pointer; padding: 0 4px; }
.pm-body { padding: 14px 16px; overflow-y: auto; flex: 1; -webkit-overflow-scrolling: touch; }
.pm-sel-bar { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.pm-all { background: none; border: none; color: var(--brand); font-weight: 600; font-size: 13px; cursor: pointer; }
.pm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.pm-cell { position: relative; padding: 0; border: none; background: var(--bg-2); border-radius: 10px; overflow: hidden; aspect-ratio: 4/5; cursor: pointer; }
.pm-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-check { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: 2px solid #fff; display: grid; place-items: center; color: transparent; transition: .15s; }
.pm-check svg { width: 15px; height: 15px; }
.pm-cell.sel { outline: 3px solid var(--brand); outline-offset: -3px; }
.pm-cell.sel .pm-check { background: var(--brand); color: #fff; }
.pm-cell.sel img { filter: brightness(.92); }
.pm-price { font-family: var(--font-display); font-size: 21px; color: var(--brand-deep); font-weight: 600; margin: 14px 0 2px; }
.pm-desc { color: var(--ink-soft); font-size: 14.5px; margin: 10px 0 0; white-space: pre-line; }
.pm-foot { padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.pm-loading { padding: 46px; text-align: center; color: var(--muted); }
@media (min-width: 700px) { .pm-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Modal refinements: fit-content, zoom, WhatsApp button ---------- */
.pm-body { min-height: 0; flex: 1 1 auto; }
.pm-cell img { cursor: zoom-in; }
.pm-check { cursor: pointer; z-index: 2; padding: 0; }
.btn.wa-btn { background: #25D366; color: #fff; }
.btn.wa-btn:hover { filter: brightness(.96); }
.btn.wa-btn svg { flex-shrink: 0; }

/* fullscreen zoom viewer (inside the modal) */
.pm-zoom { position: absolute; inset: 0; z-index: 5; background: rgba(0,0,0,.96); display: none; flex-direction: column; }
.pm-zoom.on { display: flex; }
.pm-zoom-close { position: absolute; top: 8px; right: 16px; z-index: 3; background: none; border: none; color: #fff; font-size: 32px; line-height: 1; cursor: pointer; }
.pm-zoom-counter { position: absolute; top: 16px; left: 16px; z-index: 3; color: #fff; font-size: 13px; background: rgba(0,0,0,.5); padding: 4px 11px; border-radius: 999px; }
.pm-zoom-slides { flex: 1; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; touch-action: pan-x; }
.pm-zoom-slides::-webkit-scrollbar { display: none; }
.pm-zoom-slide { flex: 0 0 100%; scroll-snap-align: center; display: grid; place-items: center; padding: 30px 8px; overflow: hidden; }
.pm-zoom-slide img { max-width: 100%; max-height: 100%; object-fit: contain; transform-origin: center center; will-change: transform; }

/* ---------- Modal meta (price + description) ---------- */
.pm-meta { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
.pm-meta .pm-price-wrap + .pm-desc-wrap { margin-top: 14px; }
.pm-label { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.pm-meta .pm-price { font-family: var(--font-display); font-size: 22px; color: var(--brand-deep); font-weight: 600; margin: 0; }
.pm-meta .pm-desc { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; white-space: pre-line; margin: 0; }

/* ---------- Zoom viewer top bar + select ---------- */
.pm-zoom-top { position: absolute; top: 0; left: 0; right: 0; z-index: 4; display: flex; align-items: center;
  justify-content: space-between; gap: 10px; padding: 10px 14px; background: linear-gradient(rgba(0,0,0,.45), transparent); }
.pm-zoom-top .pm-zoom-close { position: static; font-size: 30px; line-height: 1; }
.pm-zoom-top .pm-zoom-counter { position: static; top: auto; left: auto; }
.pm-zoom-sel { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.16); color: #fff;
  border: 1px solid rgba(255,255,255,.55); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 500; cursor: pointer; }
.pm-zoom-sel svg { width: 15px; height: 15px; }
.pm-zoom-sel.on { background: var(--brand); border-color: var(--brand); }
.pm-zoom-slide { padding-top: 58px; }

/* ---------- Category page header (Instagram profile style) ---------- */
.cat-head { display: flex; align-items: center; gap: 18px; max-width: var(--maxw); margin: 0 auto;
  padding: 20px 16px 14px; }
.ch-avatar { width: 86px; height: 86px; flex-shrink: 0; border-radius: 50%; overflow: hidden; padding: 3px;
  background: conic-gradient(from 200deg, var(--brand), #f7b733, #8e44ad, var(--brand)); }
.ch-avatar .ph { width: 100%; height: 100%; border-radius: 50%; border: 3px solid #fff; }
.ch-avatar .ph .weave { display: none; }
.ch-info { flex: 1; min-width: 0; }
.ch-info h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 6vw, 30px); line-height: 1.1; }
.ch-stats { display: flex; gap: 24px; margin: 8px 0 12px; }
.ch-stats div { font-size: 13px; color: var(--muted); }
.ch-stats b { font-family: var(--font-display); font-size: 18px; color: var(--ink); font-weight: 600; margin-right: 5px; }
.ch-info .btn { padding: 7px 18px; }
@media (min-width: 640px) { .cat-head { padding: 28px 16px 18px; gap: 26px; } .ch-avatar { width: 110px; height: 110px; } }

/* ---------- Spacing before footer ---------- */
.cat-grid, .ig-grid { margin-bottom: 26px; }
.cat-head { align-items: center; }

/* ---------- Zoom prev/next arrows (desktop + mobile) ---------- */
.pm-zoom-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 44px; height: 44px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.16); color: #fff; cursor: pointer; display: grid; place-items: center; }
.pm-zoom-nav:hover { background: rgba(255,255,255,.3); }
.pm-zoom-nav.prev { left: 12px; }
.pm-zoom-nav.next { right: 12px; }
.pm-zoom-nav svg { width: 22px; height: 22px; }
.pm-zoom-nav[hidden] { display: none; }

/* ---------- Compact, centered category header ---------- */
.cat-head { padding: 12px 16px 6px; align-items: center; }
.ch-avatar { width: 74px; height: 74px; }
.ch-stats { margin: 7px 0 0; }
.ch-info .btn { margin-top: 10px; }
@media (min-width: 640px) { .cat-head { padding: 20px 16px 12px; } .ch-avatar { width: 100px; height: 100px; } }

/* ---------- Tighter category header (avatar sized to text, less bottom space) ---------- */
.cat-head { align-items: center; padding: 10px 16px 2px; }
.ch-avatar { width: 60px; height: 60px; }
.ch-info h1 { font-size: clamp(19px, 5.4vw, 26px); }
.ch-stats { margin: 5px 0 0; }
.ch-info .btn { margin-top: 8px; }
.tabs .t { padding: 11px 0; }
@media (min-width: 640px) { .cat-head { padding: 16px 16px 6px; } .ch-avatar { width: 86px; height: 86px; } }

/* ---------- Center the zoom counter regardless of side button widths ---------- */
.pm-zoom-top .pm-zoom-counter { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }

/* ---------- Bigger, crisper header logo ---------- */
.hdr .wrap { height: 62px; }
.brand-logo img { height: 42px; image-rendering: -webkit-optimize-contrast; }

/* SEO: visually-hidden heading (kept for crawlers & screen readers) */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ---------- Product modal: video cells + zoom player ---------- */
.pm-cell.is-video .pm-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%; background: rgba(0,0,0,.5); pointer-events: none;
  display: grid; place-items: center; }
.pm-cell.is-video .pm-play::after { content: ''; width: 0; height: 0; margin-left: 3px;
  border-left: 13px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
.pm-zoom-slide.is-video { position: relative; }   /* contain the play button to THIS slide, not the whole viewer */
.pm-zoom-slide.is-video video { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; background: #000; border-radius: 4px; }
.pm-zoom-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 66px; height: 66px; border-radius: 50%; border: none; background: rgba(0,0,0,.55); cursor: pointer;
  display: grid; place-items: center; }
.pm-zoom-play::after { content: ''; width: 0; height: 0; margin-left: 5px;
  border-left: 20px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent; }
.pm-zoom-slide.playing .pm-zoom-play { display: none; }
