/* ===================================================================
   OCNIANS Album App — oc-album.css
   Faithful implementation of OCNIANS.dc.html
   =================================================================== */

/* ---- custom scrollbar — matches .ocnscroll in prototype ---- */
.ocal-scroll::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.ocal-scroll::-webkit-scrollbar-thumb {
  background: #cdb98e;
  border-radius: 8px;
  border: 2px solid #f4ead6;
}
.ocal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

/* ---- page shell ---- */
.oc-main--album {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background: #e7d9bd;
  color: #2f2a24;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
}

/* ---- nav / header ---- */
.ocal-hd {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 22px;
  height: 66px;
  flex-shrink: 0;
  background: #f4ead6;
  border-bottom: 3px solid #d8c6a4;
  box-shadow: 0 2px 10px rgba(60, 40, 20, 0.08);
  z-index: 30;
}

.ocal-hd__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.ocal-hd__wordmark {
  font-family: "DM Serif Display", serif;
  font-size: 25px;
  letter-spacing: 1px;
  color: #c0492f;
}
.ocal-hd__tag {
  font-family: "Caveat", cursive;
  font-size: 15px;
  color: #5a8f4e;
  margin-top: -1px;
}

.ocal-hd__nav {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.ocal-nav-btn {
  background: transparent;
  color: #6b5d46;
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  font-family: "Hanken Grotesk", sans-serif;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.ocal-nav-btn:hover {
  background: rgba(47, 42, 36, 0.08);
}
.ocal-nav-btn.is-active {
  background: #2f2a24;
  color: #f4ead6;
}

.ocal-hd__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ocal-vip-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2f2a24;
  color: #e9c977;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.ocal-vip-joinbtn {
  background: #d99b2b;
  color: #3a2c10;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}

.ocal-cart-btn {
  position: relative;
  background: #fffaf0;
  border: 1.5px solid #d8c6a4;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocal-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #c0492f;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #f4ead6;
  font-family: "Hanken Grotesk", sans-serif;
}

/* ---- main body ---- */
.ocal-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

/* ---- generic screen ---- */
.ocal-screen {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: #e7d9bd;
}
.ocal-screen[hidden] {
  display: none !important;
}

/* ================================================================
   MAP SCREEN
   ================================================================ */
.ocal-screen--map {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.ocal-screen--map[hidden] {
  display: none !important;
}

/* map scroll area */
.ocal-mapwrap {
  order: 1;
  flex: 1;
  position: relative;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: #e3d4b2;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.ocal-mapwrap::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.ocal-mapwrap::-webkit-scrollbar-thumb {
  background: #cdb98e;
  border-radius: 8px;
  border: 2px solid #f4ead6;
}
.ocal-mapwrap::-webkit-scrollbar-track {
  background: transparent;
}

/* aspect-ratio container — matches 912×1172 album map (assets/img/oc-map.png)
   so each track spot's oc_x/oc_y percentage lands on the right location. */
.ocal-mapcont {
  position: relative;
  width: 100%;
  aspect-ratio: 912 / 1172;
}

.ocal-map__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  z-index: 0;
}

/* antique vignette */
.ocal-vign {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  box-shadow: inset 0 0 110px 26px rgba(85, 58, 24, 0.28);
}

/* pins layer */
#ocal-pins {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.ocal-pin {
  position: absolute;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transform: translate(-50%, -100%);
}

.ocal-pin__drop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  border: 2.5px solid #fff;
  transform: rotate(-45deg) scale(1);
  transform-origin: center;
  box-shadow: 0 4px 8px rgba(60, 40, 20, 0.42);
  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s;
}

.ocal-pin__label {
  display: block;
  transform: rotate(45deg);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.3px;
  line-height: 1;
  font-family: "Hanken Grotesk", sans-serif;
}

/* detail card */
.ocal-detail {
  position: absolute;
  width: 300px;
  max-height: calc(100% - 28px);
  background: #fffaf0;
  border: 2px solid #d8c6a4;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(60, 40, 20, 0.34);
  overflow-y: auto;
  z-index: 1000;
}
.ocal-detail::-webkit-scrollbar {
  width: 6px;
}
.ocal-detail::-webkit-scrollbar-thumb {
  background: #cdb98e;
  border-radius: 4px;
}

.ocal-dc__banner {
  position: relative;
  padding: 20px 20px 16px;
}
.ocal-dc__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  color: #2f2a24;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocal-dc__caveat {
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}
.ocal-dc__title {
  font-family: "DM Serif Display", serif;
  font-size: 27px;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.ocal-dc__city {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  margin-top: 4px;
}

.ocal-dc__body {
  padding: 18px 20px;
}
.ocal-dc__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ocal-dc__play-btn {
  flex: 1;
  background: #2f2a24;
  color: #f4ead6;
  border: none;
  padding: 11px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-dc__dir-btn {
  flex: 1;
  text-align: center;
  background: #fff;
  border: 1.5px solid #d8c6a4;
  color: #2f7d8a;
  text-decoration: none;
  padding: 11px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.ocal-dc__reviews-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
}
.ocal-dc__reviews-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #b09a72;
}
.ocal-dc__reviews-count {
  font-size: 12px;
  color: #8a7a5e;
  font-weight: 700;
}
.ocal-dc__reviews {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ocal-review {
  background: #f4ead6;
  border: 1px solid #e3d6bd;
  border-radius: 12px;
  padding: 11px 13px;
}
.ocal-review__hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.ocal-review__user {
  font-size: 13px;
  font-weight: 800;
  color: #2f2a24;
}
.ocal-review__ts {
  font-size: 11px;
  color: #a8966f;
  font-weight: 600;
}
.ocal-review__text {
  font-size: 13px;
  color: #5b4f3c;
  line-height: 1.4;
}
.ocal-review--empty {
  font-size: 13px;
  color: #a8966f;
  font-style: italic;
  padding: 4px 2px;
}

.ocal-review-input {
  margin-top: 14px;
  background: #fff;
  border: 1.5px solid #e3d6bd;
  border-radius: 14px;
  padding: 10px;
}
.ocal-review-input textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-size: 13px;
  color: #2f2a24;
  background: transparent;
  min-height: 46px;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-post-btn {
  background: #5a8f4e;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 4px;
  font-family: "Hanken Grotesk", sans-serif;
}

.ocal-review-gate {
  margin-top: 14px;
  background: #2f2a24;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
}
.ocal-review-gate__title {
  color: #e9c977;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
}
.ocal-review-gate__sub {
  color: #cdbf9f;
  font-size: 12px;
  margin-bottom: 10px;
}
.ocal-review-gate__btn {
  background: #d99b2b;
  color: #3a2c10;
  border: none;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}

/* ================================================================
   HOME MAP — dark detail card (overrides parchment defaults above)
   ================================================================ */
.ocal-home-section .ocal-detail {
  background: #111e16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #f0ede7;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.ocal-home-section .ocal-detail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
}

/* top bar */
.ocal-dc__hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px 10px;
}
.ocal-home-section .ocal-dc__close {
  position: static;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ocal-dc__vibe-tag {
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-family: "Hanken Grotesk", sans-serif;
}

/* Wardr0be's pick row */
.ocal-dc__clip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
  color: #f0ede7;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-dc__clip-ico {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.ocal-dc__clip-toggle {
  margin-left: auto;
  font-size: 20px;
  opacity: 0.6;
}

/* hero: name / location / blurb */
.ocal-dc__hero {
  padding: 14px 16px 10px;
}
.ocal-dc__name {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.05;
}
.ocal-dc__loc {
  font-size: 13px;
  color: #7a9e89;
  font-weight: 600;
  margin: 0 0 8px;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-dc__blurb {
  font-size: 13px;
  font-style: italic;
  color: #b0cabb;
  line-height: 1.5;
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
}

/* track player */
.ocal-dc__track {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 8px 14px 10px;
  background: #081009;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ocal-dc__track-play {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocal-dc__track-ico {
  font-size: 15px;
  flex-shrink: 0;
}
.ocal-dc__track-name {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: #e0ebe5;
  font-family: "Hanken Grotesk", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ocal-dc__track-dur {
  font-size: 12px;
  color: #5a7a68;
  font-weight: 600;
  flex-shrink: 0;
  font-family: "Hanken Grotesk", sans-serif;
}

/* merch */
.ocal-dc__merch {
  margin: 0 14px 10px;
  background: #162218;
  border-radius: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ocal-dc__merch-lbl {
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 800;
  color: #5a7a68;
  margin-bottom: 9px;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-dc__merch-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ocal-dc__merch-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #0f1a12;
  flex-shrink: 0;
}
.ocal-dc__merch-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.ocal-dc__merch-info {
  flex: 1;
  min-width: 0;
}
.ocal-dc__merch-name {
  font-size: 14px;
  font-weight: 700;
  color: #f0ede7;
  margin-bottom: 3px;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-dc__merch-free {
  font-size: 12px;
  color: #7a9e89;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-dc__merch-prices {
  text-align: right;
  flex-shrink: 0;
}
.ocal-dc__merch-price {
  font-size: 16px;
  font-weight: 800;
  color: #f0ede7;
  font-family: "Hanken Grotesk", sans-serif;
  line-height: 1.1;
}
.ocal-dc__merch-vip {
  display: inline-block;
  background: transparent;
  border: 1px solid #d99b2b;
  border-radius: 10px;
  padding: 2px 7px;
  font-size: 12px;
  color: #d99b2b;
  font-weight: 700;
  font-family: "Hanken Grotesk", sans-serif;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  margin-top: 3px;
  line-height: 1.5;
}
.ocal-dc__merch-vip:hover {
  background: #d99b2b;
  color: #1a1000;
  text-decoration: none;
}
.ocal-dc__merch-buy {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 12px;
  background: #edab2e;
  color: #1a1000;
  font-size: 12px;
  font-weight: 800;
  font-family: "Hanken Grotesk", sans-serif;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition:
    background 0.15s,
    transform 0.1s;
}
.ocal-dc__merch-buy:hover {
  background: #f5c042;
  transform: translateY(-1px);
  text-decoration: none;
}

/* directions row */
.ocal-dc__dir {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0ede7;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: "Hanken Grotesk", sans-serif;
  transition: background 0.15s;
}
.ocal-dc__dir:hover {
  background: rgba(255, 255, 255, 0.05);
}
.ocal-dc__dir-arrow {
  font-size: 16px;
  opacity: 0.6;
}

/* community CTA */
.ocal-dc__community {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #162218;
  border-radius: 0 0 14px 14px;
  align-items: flex-start;
}
.ocal-dc__community-qr {
  width: 52px;
  height: 52px;
  background: #d99b2b;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #1a1000;
  line-height: 1;
}
.ocal-dc__community-qr-img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
  display: block;
}
.ocal-dc__community-title {
  font-size: 14px;
  font-weight: 800;
  color: #d99b2b;
  margin-bottom: 4px;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-dc__community-sub {
  font-size: 12px;
  color: #7a9e89;
  line-height: 1.4;
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
}

/* vibe filter chips */
.ocal-sb__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px 10px;
  border-bottom: 1px solid #d8c6a4;
  min-height: 0;
}
.ocal-vibe-chip {
  background: transparent;
  border: 1.5px solid #c8b48e;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #6b5d46;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  white-space: nowrap;
  line-height: 1.4;
}
.ocal-vibe-chip:hover {
  background: rgba(47, 42, 36, 0.08);
  border-color: #a08a62;
}
.ocal-vibe-chip.is-active {
  background: var(--vc, #2f2a24);
  border-color: var(--vc, #2f2a24);
  color: #fff;
}
.ocal-vibe-chip--all.is-active {
  background: #2f2a24;
  border-color: #2f2a24;
  color: #f4ead6;
}

/* sidebar (tracklist) */
.ocal-sidebar {
  order: 2;
  width: 575px;
  flex-shrink: 0;
  background: #f4ead6;
  border-left: 3px solid #d8c6a4;
  overflow-y: auto;
  height: 100%;
  z-index: 10;
}
.ocal-sidebar::-webkit-scrollbar {
  width: 10px;
}
.ocal-sidebar::-webkit-scrollbar-thumb {
  background: #cdb98e;
  border-radius: 8px;
  border: 2px solid #f4ead6;
}
.ocal-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.ocal-sb__head {
  padding: 20px 20px 14px;
  border-bottom: 2px dashed #d8c6a4;
}
.ocal-sb__caveat {
  font-family: "Caveat", cursive;
  font-size: 19px;
  color: #2f7d8a;
  line-height: 1;
}
.ocal-sb__title {
  font-family: "DM Serif Display", serif;
  margin: 2px 0 4px;
  font-size: 30px;
  line-height: 1.02;
  color: #2f2a24;
}
.ocal-sb__sub {
  margin: 0;
  font-size: 12.5px;
  color: #8a7a5e;
  font-weight: 600;
}

.ocal-sb__body {
  padding: 8px 10px 4px;
}
.ocal-sb__section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #b09a72;
  padding: 8px 8px 4px;
}

.ocal-sb-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 8px;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 2px;
  border: 1.5px solid transparent;
  transition:
    background 0.12s,
    border-color 0.12s;
  text-decoration: none;
  color: inherit;
}
.ocal-sb-row:hover {
  background: rgba(255, 250, 240, 0.7);
}
/* spot rows rendered as <a> links */
a.ocal-spot-row .ocal-sb-row__play {
  font-size: 16px;
  color: #2f7d8a;
  flex-shrink: 0;
}

.ocal-sb-row__num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(60, 40, 20, 0.25);
}
.ocal-sb-row__info {
  flex: 1;
  min-width: 0;
}
.ocal-sb-row__title {
  font-size: 14.5px;
  font-weight: 700;
  color: #2f2a24;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ocal-sb-row__meta {
  font-size: 12px;
  color: #8a7a5e;
  font-weight: 600;
}

/* ── nearby restaurant row (dark detail card) ── */
.ocal-dc__restaurant {
  font-size: 12px;
  color: #8aad7a;
  font-weight: 600;
  padding: 8px 14px;
  border-top: 1px solid #1e2e1f;
}

/* ── member reviews (dark detail card) ── */
.ocal-dc__reviews {
  padding: 10px 14px 4px;
  border-top: 1px solid #1e2e1f;
}
.ocal-dc__reviews-hd {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #6a9e5a;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ocal-dc__reviews-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ocal-dc__reviews-loading,
.ocal-dc__reviews-empty {
  font-size: 12px;
  color: #5a6e5b;
  font-style: italic;
}
.ocal-dc__review {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.ocal-dc__review-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: #2f3d30;
}
.ocal-dc__review-body {
  flex: 1;
  min-width: 0;
}
.ocal-dc__review-author {
  font-size: 12px;
  font-weight: 800;
  color: #d4e8c8;
}
.ocal-dc__review-date {
  font-size: 11px;
  color: #5a6e5b;
  margin-left: 6px;
}
.ocal-dc__review-text {
  font-size: 12px;
  color: #a8c4a0;
  line-height: 1.4;
  margin: 2px 0 0;
}

.ocal-dc__reviews-form {
  margin-top: 8px;
}
.ocal-dc__reviews-input {
  width: 100%;
  background: #0d1a0e;
  border: 1px solid #2a3e2b;
  border-radius: 8px;
  padding: 7px 10px;
  color: #d4e8c8;
  font-size: 12px;
  font-family: "Hanken Grotesk", sans-serif;
  resize: none;
  box-sizing: border-box;
}
.ocal-dc__reviews-submit {
  margin-top: 5px;
  background: #4a7d3a;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  transition: background 0.15s;
}
.ocal-dc__reviews-submit:hover {
  background: #5a9e46;
}
.ocal-dc__reviews-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* star picker (form) */
.ocal-dc__star-picker {
  display: flex;
  gap: 3px;
  margin-bottom: 7px;
  cursor: pointer;
  user-select: none;
}
.ocal-dc__star {
  font-size: 20px;
  color: #2a3e2b;
  transition:
    color 0.1s,
    transform 0.1s;
  line-height: 1;
}
.ocal-dc__star.is-on,
.ocal-dc__star.is-hover {
  color: #d99b2b;
  transform: scale(1.15);
}

/* stars on posted reviews */
.ocal-dc__review-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.ocal-dc__review-stars {
  display: flex;
  gap: 1px;
  line-height: 1;
}
.ocal-dc__review-star {
  font-size: 12px;
  color: #2a3e2b;
}
.ocal-dc__review-star.is-filled {
  color: #d99b2b;
}

.ocal-dc__reviews-gate {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #d99b2b;
  text-decoration: none;
  font-weight: 700;
}
.ocal-dc__reviews-gate:hover {
  text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────
   Shareholder Opt-In page  (template-shareholder.php)
   Tokens: bg gradient #173527→#081109, gold #edab2e,
   cream #f3efe2, Syne headings, Space Grotesk body
───────────────────────────────────────────────────────────── */

/* ── wrap ── */
.ocsh-wrap {
  background: radial-gradient(
    120% 90% at 70% -10%,
    #173527 0%,
    #0e2017 46%,
    #081109 100%
  );
  color: #f3efe2;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
}

/* ── container ── */
.ocsh-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ── shared eyebrow ── */
.ocsh-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #edab2e;
  margin-bottom: 16px;
  text-align: center;
}

/* ── shared section heading ── */
.ocsh-section-h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: #f3efe2;
  margin: 0 0 40px;
  text-align: center;
  line-height: 1.1;
}

/* ─── HERO ─── */
.ocsh-hero {
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ocsh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(237, 171, 46, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ocsh-hero__h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: #f3efe2;
  line-height: 1.05;
  margin: 0 0 22px;
}
.ocsh-hero__sub {
  font-size: 16px;
  color: #7a9e8a;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
}
.ocsh-hero__cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #edab2e, #e8821e);
  color: #1a1206;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 48px;
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.ocsh-hero__cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* hero stats row */
.ocsh-hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 20px 36px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.ocsh-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ocsh-stat strong {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #edab2e;
  line-height: 1;
}
.ocsh-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ocsh-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── BENEFITS ─── */
.ocsh-benefits {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ocsh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ocsh-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 22px;
  transition:
    border-color 0.2s,
    transform 0.18s,
    box-shadow 0.2s;
}
.ocsh-card:hover {
  border-color: rgba(237, 171, 46, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.ocsh-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ocsh-card__icon {
  font-size: 24px;
  line-height: 1;
}
.ocsh-card__title {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #f3efe2;
  margin: 0 0 8px;
}
.ocsh-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* ─── FORM SECTION ─── */
.ocsh-form-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ocsh-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  overflow: hidden;
}
.ocsh-form-card__left {
  padding: 48px 44px;
  background: rgba(237, 171, 46, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ocsh-form-card__h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #f3efe2;
  margin: 0 0 16px;
  line-height: 1.1;
}
.ocsh-form-card__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 28px;
}
.ocsh-form-card__checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ocsh-form-card__checks li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ocsh-form-card__checks li::before {
  display: none;
}

.ocsh-form-card__right {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* notice */
.ocsh-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.5;
}
.ocsh-notice__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}
.ocsh-notice--success {
  background: rgba(100, 210, 120, 0.1);
  border: 1px solid rgba(100, 210, 120, 0.25);
  color: #7dd87d;
}
.ocsh-notice--success .ocsh-notice__icon {
  background: rgba(100, 210, 120, 0.2);
  color: #7dd87d;
}
.ocsh-notice--error {
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.25);
  color: #e07070;
}
.ocsh-notice--error .ocsh-notice__icon {
  background: rgba(220, 80, 80, 0.2);
  color: #e07070;
}

/* form */
.ocsh-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ocsh-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ocsh-field__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 171, 46, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ocsh-field__opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 7px;
  border-radius: 999px;
}
.ocsh-field__input {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: #f3efe2;
  font-size: 14px;
  font-family: "Space Grotesk", sans-serif;
  width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ocsh-field__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.ocsh-field__input:focus {
  outline: none;
  border-color: rgba(237, 171, 46, 0.5);
  box-shadow: 0 0 0 3px rgba(237, 171, 46, 0.1);
}
.ocsh-field__textarea {
  resize: vertical;
  min-height: 90px;
}

.ocsh-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #edab2e, #e8821e);
  color: #1a1206;
  border: none;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    opacity 0.15s,
    transform 0.1s;
  align-self: flex-start;
}
.ocsh-form__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.ocsh-form__fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
  line-height: 1.5;
}

/* ─── VIP CTA ─── */
.ocsh-vip {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(237, 171, 46, 0.04);
}
.ocsh-vip__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ocsh-vip__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edab2e, #e8821e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #1a1206;
}
.ocsh-vip__text {
  flex: 1;
  min-width: 0;
}
.ocsh-vip__h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 900;
  color: #f3efe2;
  margin: 0 0 6px;
}
.ocsh-vip__h2 span {
  color: #edab2e;
}
.ocsh-vip__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  margin: 0;
}
.ocsh-vip__btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 28px;
  background: #edab2e;
  color: #1a1206;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.ocsh-vip__btn:hover {
  background: #f5c042;
}

/* ─── responsive ─── */

/* tablet — 768px (iPad portrait): 2-col benefits, form still side-by-side but tighter */
@media (max-width: 860px) {
  .ocsh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ocsh-form-card {
    grid-template-columns: 1fr;
  }
  .ocsh-form-card__left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 36px 28px;
  }
  .ocsh-form-card__right {
    padding: 36px 28px;
  }
}

/* small mobile — 560px */
@media (max-width: 560px) {
  .ocsh-hero {
    padding: 56px 0 48px;
  }
  .ocsh-grid {
    grid-template-columns: 1fr;
  }
  .ocsh-hero__stats {
    padding: 16px 20px;
    gap: 16px;
  }
  .ocsh-stat-div {
    display: none;
  }
  .ocsh-vip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* phone — 480px: reduce padding, full-width CTA, tighter form */
@media (max-width: 480px) {
  .ocsh-container {
    padding: 0 16px;
  }
  .ocsh-hero {
    padding: 44px 0 32px;
  }
  .ocsh-hero__sub {
    font-size: 14px;
  }
  .ocsh-hero__cta {
    display: block;
    text-align: center;
  }
  .ocsh-benefits {
    padding: 48px 0;
  }
  .ocsh-form-section {
    padding: 48px 0;
  }
  .ocsh-form-card__left,
  .ocsh-form-card__right {
    padding: 24px 20px;
  }
  .ocsh-form__btn {
    width: 100%;
    justify-content: center;
  }
  .ocsh-vip__btn {
    width: 100%;
    text-align: center;
  }
}

/* very small phones — 360px */
@media (max-width: 380px) {
  .ocsh-hero__h1 {
    font-size: 28px;
  }
  .ocsh-hero__stats {
    padding: 12px 14px;
    gap: 12px;
  }
  .ocsh-stat strong {
    font-size: 22px;
  }
  .ocsh-stat span {
    font-size: 10px;
    white-space: normal;
    text-align: center;
  }
}

.ocal-sb-row__play {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.12s,
    color 0.12s;
}

/* ================================================================
   VINYL SCREEN
   ================================================================ */
.ocal-vinyl-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px 32px 60px;
}

.ocal-vinyl-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.ocal-vinyl-art {
  position: relative;
}
.ocal-vinyl-art__tag {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #5a8f4e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 7px 13px;
  border-radius: 6px;
  transform: rotate(-4deg);
  box-shadow: 0 4px 10px rgba(60, 40, 20, 0.25);
  z-index: 2;
}
.ocal-vinyl-art__frame {
  position: relative;
  aspect-ratio: 1;
  background: #2f2a24;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(60, 40, 20, 0.32);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocal-vinyl-art__placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-style: italic;
}
.ocal-vinyl-art__caption {
  margin-top: 14px;
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: #8a7a5e;
  text-align: center;
}

.ocal-caveat {
  font-family: "Caveat", cursive;
  font-size: 20px;
}
.ocal-vinyl-title {
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  line-height: 0.98;
  margin: 2px 0 6px;
  color: #c0492f;
}
.ocal-vinyl-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ocal-tag {
  background: #fffaf0;
  border: 1.5px solid #d8c6a4;
  border-radius: 18px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #5b4f3c;
}
.ocal-vinyl-copy {
  font-size: 15px;
  line-height: 1.55;
  color: #5b4f3c;
  margin: 0 0 18px;
  max-width: 42ch;
}

.ocal-vinyl-price-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 18px;
}
.ocal-vinyl-price {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  color: #2f2a24;
  line-height: 1;
}
.ocal-vinyl-vip-note {
  font-size: 13px;
  color: #5a8f4e;
  font-weight: 800;
  margin-top: 2px;
}
.ocal-vinyl-btn {
  background: #c0492f;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(192, 73, 47, 0.35);
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-vinyl-perks {
  font-size: 12.5px;
  color: #8a7a5e;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ocal-tracklist-section {
  margin-top: 46px;
}
.ocal-tracklist-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 2px dashed #d8c6a4;
  padding-bottom: 8px;
  margin-bottom: 6px;
}
.ocal-tracklist-head h2 {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  margin: 0;
  color: #2f2a24;
}

.ocal-tracklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}
.ocal-tl-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 4px;
  border-bottom: 1px solid #ddcca8;
  cursor: pointer;
}
.ocal-tl-row:hover {
  background: rgba(255, 250, 240, 0.6);
}
.ocal-tl-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocal-tl-info {
  flex: 1;
  min-width: 0;
}
.ocal-tl-title {
  font-size: 14px;
  font-weight: 700;
  color: #2f2a24;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ocal-tl-city {
  font-size: 11.5px;
  color: #8a7a5e;
  font-weight: 600;
}
.ocal-tl-time {
  font-size: 12px;
  color: #a8966f;
  font-weight: 700;
  flex-shrink: 0;
}
.ocal-tl-play {
  font-size: 15px;
  color: #c0492f;
  flex-shrink: 0;
}

/* ================================================================
   STORE SCREEN
   ================================================================ */
.ocal-store-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 32px 60px;
}
.ocal-store-title {
  font-family: "DM Serif Display", serif;
  font-size: 42px;
  margin: 0 0 4px;
  color: #c0492f;
}
.ocal-store-vip-badge {
  display: inline-block;
  background: #2f2a24;
  color: #e9c977;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 15px;
  border-radius: 20px;
  margin-top: 6px;
  margin-bottom: 4px;
}
.ocal-store-vip-hint {
  font-size: 14px;
  color: #8a7a5e;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 4px;
}
.ocal-store-vip-link {
  background: none;
  border: none;
  color: #c0492f;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  font-family: inherit;
}

.ocal-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.ocal-merch-card {
  background: #fffaf0;
  border: 1.5px solid #e3d6bd;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(60, 40, 20, 0.08);
  display: flex;
  flex-direction: column;
}
.ocal-merch-img {
  width: 100%;
  aspect-ratio: 1;
  background: #efe2c6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocal-merch-img span {
  font-size: 12px;
  color: #b09a72;
  font-style: italic;
}
.ocal-merch-body {
  padding: 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.ocal-merch-name {
  font-size: 15px;
  font-weight: 800;
  color: #2f2a24;
}
.ocal-merch-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ocal-merch-price {
  font-size: 17px;
  font-weight: 800;
  color: #2f2a24;
}
.ocal-merch-price--was {
  font-size: 14px;
  font-weight: 800;
  color: #a8966f;
  text-decoration: line-through;
}
.ocal-merch-price--member {
  font-size: 16px;
  font-weight: 800;
  color: #5a8f4e;
}
.ocal-merch-btn {
  margin-top: auto;
  background: #2f7d8a;
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 22px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}

/* ================================================================
   VIP SCREEN
   ================================================================ */
.ocal-screen--vip {
  background: #2f2a24;
  color: #f4ead6;
}
.ocal-vip-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 32px 64px;
}
.ocal-vip-hero {
  text-align: center;
}
.ocal-vip-headline {
  font-family: "DM Serif Display", serif;
  font-size: 58px;
  margin: 2px 0 4px;
  color: #fff;
  line-height: 1;
}
.ocal-vip-sub {
  font-size: 17px;
  color: #cdbf9f;
  font-weight: 600;
}

.ocal-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.ocal-perk {
  background: #3a342b;
  border: 1px solid #4a4338;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ocal-perk__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.ocal-perk__title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.ocal-perk__body {
  font-size: 13px;
  color: #cdbf9f;
  line-height: 1.4;
}

.ocal-vip-cta-box {
  margin-top: 30px;
  background: #f4ead6;
  color: #2f2a24;
  border-radius: 20px;
  padding: 26px;
  text-align: center;
}

.ocal-vip-join__title {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: #c0492f;
  margin-bottom: 4px;
}
.ocal-vip-join__sub {
  font-size: 14px;
  color: #8a7a5e;
  font-weight: 600;
  margin-bottom: 16px;
}
.ocal-vip-join__btn {
  background: #c0492f;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(192, 73, 47, 0.35);
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-vip-join__fine {
  font-size: 12px;
  color: #a8966f;
  margin-top: 10px;
}

.ocal-vip-already__title {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: #2f2a24;
  margin-bottom: 4px;
}
.ocal-vip-already__sub {
  font-size: 14px;
  color: #8a7a5e;
  font-weight: 600;
  margin-bottom: 16px;
}
.ocal-vip-leave {
  background: transparent;
  color: #8a7a5e;
  border: 1.5px solid #cdb98e;
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}

/* ================================================================
   PLAYER BAR
   ================================================================ */
.ocal-player {
  height: 80px;
  flex-shrink: 0;
  background: #2f2a24;
  color: #f4ead6;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  z-index: 40;
  box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.18);
}
.ocal-player[hidden] {
  display: none !important;
}

.ocal-player__np {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 300px;
  min-width: 0;
}
.ocal-player__art {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  color: #fff;
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.ocal-player__text {
  min-width: 0;
}
.ocal-player__track {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ocal-player__city {
  font-size: 12px;
  color: #cdbf9f;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ocal-player__ctrls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ocal-player__ctrl {
  background: transparent;
  border: none;
  color: #cdbf9f;
  font-size: 20px;
  cursor: pointer;
}
.ocal-player__play {
  background: #f4ead6;
  border: none;
  color: #2f2a24;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocal-player__seek {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.ocal-player__time {
  font-size: 12px;
  color: #cdbf9f;
  font-variant-numeric: tabular-nums;
  width: 38px;
  flex-shrink: 0;
}
.ocal-player__time:first-child {
  text-align: right;
}

.ocal-seek {
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 5px;
  cursor: pointer;
  flex: 1;
  background: #5a4d3a;
}
.ocal-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c0492f;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.ocal-player__vol {
  width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ocal-player__vol-icon {
  font-size: 15px;
  color: #cdbf9f;
}
#ocal-vol {
  width: 90px;
  flex: none;
}

.ocal-player__hide-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: #8c7f68;
  font-size: 17px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    color 0.15s;
}
.ocal-player__hide-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f4ead6;
}

/* floating show-player button */
.ocal-show-player {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: #2f2a24;
  color: #f4ead6;
  border: none;
  border-radius: 24px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Hanken Grotesk", sans-serif;
  transition: background 0.15s;
}
.ocal-show-player:hover {
  background: #1f1b16;
}
.ocal-show-player[hidden] {
  display: none !important;
}

/* ================================================================
   CART DRAWER
   ================================================================ */
.ocal-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
}
.ocal-cart-drawer[hidden] {
  display: none !important;
}

.ocal-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 42, 36, 0.5);
}
.ocal-cart__panel {
  position: relative;
  width: 400px;
  max-width: 90vw;
  background: #f4ead6;
  height: 100%;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ocal-cart__hd {
  padding: 20px 22px;
  border-bottom: 2px dashed #d8c6a4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.ocal-cart__title {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  margin: 0;
  color: #2f2a24;
}
.ocal-cart__close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #8a7a5e;
}
.ocal-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px;
}
.ocal-cart__body::-webkit-scrollbar {
  width: 6px;
}
.ocal-cart__body::-webkit-scrollbar-thumb {
  background: #cdb98e;
  border-radius: 4px;
}

.ocal-cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fffaf0;
  border: 1px solid #e3d6bd;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}
.ocal-cart-item__info {
  flex: 1;
}
.ocal-cart-item__name {
  font-size: 14px;
  font-weight: 800;
  color: #2f2a24;
}
.ocal-cart-item__qty {
  font-size: 12.5px;
  color: #8a7a5e;
  font-weight: 600;
}
.ocal-cart-item__rm {
  background: none;
  border: none;
  color: #c0492f;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}

.ocal-cart__empty {
  text-align: center;
  padding: 50px 20px;
  color: #a8966f;
  font-size: 14px;
  font-weight: 700;
}
.ocal-cart__foot {
  padding: 18px 22px;
  border-top: 2px dashed #d8c6a4;
  background: #faf3e3;
  flex-shrink: 0;
}
.ocal-cart__line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: #5b4f3c;
  margin-bottom: 5px;
}
.ocal-cart__discount {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: #5a8f4e;
  font-weight: 800;
  margin-bottom: 5px;
}
.ocal-cart__total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  color: #2f2a24;
  margin: 8px 0 12px;
}
.ocal-cart__checkout {
  width: 100%;
  background: #c0492f;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}

/* ================================================================
   TOAST
   ================================================================ */
.ocal-toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  background: #2f2a24;
  color: #f4ead6;
  padding: 12px 22px;
  border-radius: 26px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 300;
  white-space: nowrap;
  font-family: "Hanken Grotesk", sans-serif;
}
.ocal-toast[hidden] {
  display: none !important;
}

/* ─────────────────────────────────────────────────────────────
   Restaurant detail styles (pin popup)
───────────────────────────────────────────────────────────── */
.ocal-dc__restaurant-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ocal-dc__restaurant-link:hover .ocal-dc__restaurant-name {
  text-decoration: underline;
}
.ocal-dc__restaurant-name {
  color: #8aad7a;
  font-weight: 700;
}
.ocal-dc__restaurant-cuisine {
  color: #3a5a3a;
  font-size: 11px;
}

/* ─────────────────────────────────────────────────────────────
   Locations & Restaurants directory  (template-restaurants.php)
   Design tokens: bg gradient #173527→#081109, gold #edab2e,
   cream #f3efe2, fonts Syne + Space Grotesk, max-width 1080px
───────────────────────────────────────────────────────────── */

/* ── page wrapper ── */
.ocrl-wrap {
  background: radial-gradient(
    120% 90% at 70% -10%,
    #173527 0%,
    #0e2017 46%,
    #081109 100%
  );
  color: #f3efe2;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
}

/* ── centered container ── */
.ocrl-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ── hero ── */
.ocrl-hero {
  padding: 80px 0 52px;
  text-align: center;
}
.ocrl-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #edab2e;
  margin-bottom: 16px;
}
.ocrl-hero__h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: #f3efe2;
  margin: 0 0 18px;
  line-height: 1.05;
}
.ocrl-hero__sub {
  font-size: 15px;
  color: #7a9e8a;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 24px;
}
.ocrl-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ocrl-hero__stat {
  font-size: 12px;
  font-weight: 700;
  color: rgba(237, 171, 46, 0.6);
  letter-spacing: 0.06em;
}
.ocrl-hero__dot {
  color: rgba(255, 255, 255, 0.15);
}

/* ── filter bar ── */
.ocrl-filter-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 22, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}
.ocrl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.ocrl-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s,
    box-shadow 0.15s;
  white-space: nowrap;
}
.ocrl-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f3efe2;
}
.ocrl-chip.is-on,
.ocrl-chip--all.is-on {
  background: rgba(237, 171, 46, 0.15);
  border-color: rgba(237, 171, 46, 0.5);
  color: #edab2e;
  box-shadow: 0 0 14px rgba(237, 171, 46, 0.2);
}
.ocrl-chip[style*="--vc"].is-on {
  background: color-mix(in srgb, var(--vc) 15%, transparent);
  border-color: color-mix(in srgb, var(--vc) 50%, transparent);
  color: var(--vc);
}

/* ── section ── */
.ocrl-section {
  padding: 36px 0 72px;
}

/* ── grid — 3 col desktop, 2 col tablet, 1 col mobile ── */
.ocrl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* ── bonus separator ── */
.ocrl-bonus-sep {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 4px;
}
.ocrl-bonus-sep::before,
.ocrl-bonus-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 171, 46, 0.3),
    transparent
  );
}
.ocrl-bonus-sep span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 171, 46, 0.55);
  white-space: nowrap;
}

/* ── card ── */
.ocrl-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease,
    border-color 0.18s,
    box-shadow 0.18s;
}
.ocrl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 171, 46, 0.3);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(237, 171, 46, 0.12);
}

/* top accent strip */
.ocrl-card__strip {
  height: 3px;
  flex-shrink: 0;
}

/* image area */
.ocrl-card__head {
  position: relative;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
}
.ocrl-card__img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.ocrl-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ocrl-card__img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.ocrl-card__img-ph {
  width: 100%;
  height: 100%;
}

/* overlaid number + vibe badge */
.ocrl-card__head-over {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 12px;
}
.ocrl-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.ocrl-card__vibe-badge {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

/* card body */
.ocrl-card__body {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.ocrl-card__title {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #f3efe2;
  margin: 0;
  line-height: 1.2;
}
.ocrl-card__area {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  margin: -4px 0 0;
}
.ocrl-card__blurb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* restaurant info */
.ocrl-card__rest {
  background: rgba(237, 171, 46, 0.07);
  border: 1px solid rgba(237, 171, 46, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
}
.ocrl-card__rest-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 171, 46, 0.45);
  display: block;
  margin-bottom: 5px;
}
.ocrl-card__rest-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ocrl-card__rest-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ocrl-card__rest-name {
  font-size: 13px;
  font-weight: 700;
  color: #edc97a;
  text-decoration: none;
  display: block;
  line-height: 1.3;
}
a.ocrl-card__rest-name:hover {
  color: #edab2e;
  text-decoration: underline;
}
.ocrl-card__cuisine {
  font-size: 11px;
  color: rgba(237, 171, 46, 0.4);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* card footer */
.ocrl-card__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 16px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ocrl-card__dir-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #edab2e;
  color: #1a1206;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.1s;
}
.ocrl-card__dir-btn:hover {
  background: #f5c042;
  transform: scale(1.03);
}
.ocrl-card__map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  flex-shrink: 0;
}
.ocrl-card__map-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #f3efe2;
}

/* ── CTA bar ── */
.ocrl-cta-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
  padding: 52px 0;
}
.ocrl-cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ocrl-cta-bar__title {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #f3efe2;
  display: block;
  margin-bottom: 6px;
}
.ocrl-cta-bar__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  line-height: 1.5;
}
.ocrl-cta-bar__btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #edab2e 0%, #e8821e 100%);
  color: #1a1206;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.ocrl-cta-bar__btn:hover {
  opacity: 0.88;
}

/* ── responsive ── */
@media (max-width: 900px) {
  .ocrl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  /* hero meta strip — hide dots, stack on wrap */
  .ocrl-hero__dot {
    display: none;
  }
  .ocrl-hero__meta {
    gap: 8px;
  }
  /* filter bar: single scrollable row, no multi-line wrapping */
  .ocrl-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .ocrl-chip {
    flex-shrink: 0;
  }
  /* card image — shorter on medium screens */
  .ocrl-card__head {
    height: 110px;
  }
}
@media (max-width: 600px) {
  .ocrl-hero {
    padding: 52px 0 36px;
  }
  .ocrl-hero__h1 {
    font-size: 30px;
  }
  .ocrl-hero__sub {
    font-size: 14px;
  }
  .ocrl-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ocrl-card__head {
    height: 140px;
  } /* taller on single-col for visual balance */
  .ocrl-cta-bar {
    padding: 36px 0;
  }
  .ocrl-cta-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .ocrl-cta-bar__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .ocrl-filter-bar {
    position: relative;
  } /* un-stick on mobile to avoid double-stuck header */
}
@media (max-width: 480px) {
  .ocrl-container {
    padding: 0 16px;
  }
  .ocrl-hero {
    padding: 40px 0 28px;
  }
  .ocrl-hero__h1 {
    font-size: 26px;
  }
  .ocrl-hero__meta {
    flex-direction: column;
    gap: 4px;
  }
  .ocrl-section {
    padding: 24px 0 48px;
  }
  .ocrl-chip {
    padding: 6px 12px;
    font-size: 11px;
  }
  .ocrl-card__body {
    padding: 12px 14px 0;
  }
  .ocrl-card__foot {
    padding: 10px 14px 14px;
  }
  .ocrl-card__title {
    font-size: 15px;
  }
}

/* ─────────────────────────────────────────────────────────────
   Digital Music Store page (template-digital-store.php)
───────────────────────────────────────────────────────────── */
.ocdl-page {
  background: #080e09;
  color: #d4e8c8;
  font-family: "Hanken Grotesk", sans-serif;
  min-height: 100vh;
}

/* hero */
.ocdl-hero {
  padding: 60px 20px;
}
.ocdl-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ocdl-hero__cover {
  flex-shrink: 0;
  position: relative;
}
.ocdl-hero__cover-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.ocdl-hero__cover-ph {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #0f2010, #1a3a1a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.ocdl-hero__cover-lbl {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #d99b2b;
  letter-spacing: 4px;
}
.ocdl-hero__badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d99b2b;
  color: #1a1000;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.ocdl-hero__info {
  flex: 1;
  min-width: 260px;
}
.ocdl-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: #6a9e5a;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}
.ocdl-hero__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1;
}
.ocdl-hero__desc {
  font-size: 14px;
  color: #6a9e5a;
  line-height: 1.6;
  margin-bottom: 24px;
}
.ocdl-hero__pricing {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.ocdl-price {
  display: flex;
  flex-direction: column;
}
.ocdl-price__amt {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  font-family: "Syne", sans-serif;
}
.ocdl-price__note {
  font-size: 11px;
  color: #6a9e5a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ocdl-price--vip .ocdl-price__amt {
  color: #d99b2b;
  font-size: 22px;
}
.ocdl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.ocdl-btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 26px;
  font-size: 14px;
  font-weight: 800;
  font-family: "Hanken Grotesk", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s;
  border: none;
}
.ocdl-btn--primary {
  background: #4a7d3a;
  color: #fff;
}
.ocdl-btn--primary:hover {
  background: #5a9e46;
  transform: translateY(-1px);
}
.ocdl-btn--vip {
  background: transparent;
  color: #d99b2b;
  border: 1.5px solid #d99b2b;
}
.ocdl-btn--vip:hover {
  background: #d99b2b;
  color: #1a1000;
}
.ocdl-btn--disabled {
  background: #1a2e1a;
  color: #3a5a3a;
  border-radius: 26px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 800;
}
.ocdl-hero__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ocdl-hero__perks li {
  font-size: 13px;
  color: #4a6e4a;
  font-weight: 600;
}

/* track listing */
.ocdl-tracks {
  padding: 40px 20px 60px;
}
.ocdl-tracks__inner {
  max-width: 720px;
  margin: 0 auto;
}
.ocdl-tracks__title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Syne", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ocdl-tracklist {
  display: flex;
  flex-direction: column;
}
.ocdl-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid #0f1e10;
  border-radius: 8px;
  transition: background 0.15s;
}
.ocdl-track:hover {
  background: #0d1a0e;
}
.ocdl-track__num {
  width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #3a5a3a;
  flex-shrink: 0;
}
.ocdl-track--bonus .ocdl-track__num {
  color: #d99b2b;
}
.ocdl-track__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ocdl-track__name {
  font-size: 14px;
  font-weight: 700;
  color: #d4e8c8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ocdl-track__sub {
  font-size: 12px;
  color: #4a6e4a;
}
.ocdl-track__area {
  font-size: 11px;
  color: #2a4a2a;
  font-weight: 600;
}
.ocdl-track__dur {
  font-size: 12px;
  color: #3a5a3a;
  font-weight: 700;
  flex-shrink: 0;
  font-family: monospace;
}
.ocdl-track__play {
  background: transparent;
  border: 1px solid #1e3020;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #6a9e5a;
  font-size: 10px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    color 0.15s;
}
.ocdl-track__play:hover {
  background: #4a7d3a;
  color: #fff;
  border-color: #4a7d3a;
}
.ocdl-track-sep {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #d99b2b;
  text-transform: uppercase;
  padding: 16px 14px 6px;
}

/* also available */
.ocdl-also {
  padding: 40px 20px 60px;
  border-top: 1px solid #0f1e10;
}
.ocdl-also__inner {
  max-width: 720px;
  margin: 0 auto;
}
.ocdl-also__title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Syne", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ocdl-also__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.ocdl-also-card {
  background: #0d1a0e;
  border: 1px solid #1e3020;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ocdl-also-card__icon {
  font-size: 28px;
}
.ocdl-also-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #d4e8c8;
  margin: 0;
}
.ocdl-also-card p {
  font-size: 13px;
  color: #4a6e4a;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.ocdl-also-card__price {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  font-family: "Syne", sans-serif;
}
.ocdl-also-card__btn {
  display: inline-block;
  margin-top: 6px;
  padding: 9px 18px;
  background: #1e3020;
  color: #6a9e5a;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s;
  align-self: flex-start;
}
.ocdl-also-card__btn:hover {
  background: #4a7d3a;
  color: #fff;
}

@media (max-width: 600px) {
  .ocdl-hero__inner {
    flex-direction: column;
  }
  .ocdl-hero__cover-img,
  .ocdl-hero__cover-ph {
    width: 100%;
    height: 220px;
  }
}

/* ================================================================
   RESPONSIVE — matches design breakpoints exactly
   ================================================================ */
@media (max-width: 860px) {
  .ocal-hd {
    gap: 12px;
    padding: 0 14px;
  }
  .ocal-hd__tag {
    display: none;
  }
  .ocal-vip-joinbtn {
    display: none;
  }
  .ocal-screen--map {
    flex-direction: column;
  }
  .ocal-mapwrap {
    flex: 0 0 38vh;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ocal-sidebar {
    order: 2;
    width: 100%;
    height: 0;
    flex: 1 1 0;
    min-height: 0;
    max-height: 100%;
    border-left: none;
    border-top: 3px solid #d8c6a4;
    z-index: auto;
    overflow: hidden;
  }
  .ocal-detail {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 72vh !important;
    transform: none !important;
    border-radius: 18px 18px 0 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 2px solid #d8c6a4 !important;
    z-index: 1600 !important;
  }
  .ocal-vinyl-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ocal-tracklist-grid {
    grid-template-columns: 1fr;
  }
  .ocal-store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ocal-perks-grid {
    grid-template-columns: 1fr;
  }
  .ocal-player__vol {
    display: none;
  }
  .ocal-player__np {
    width: auto;
    flex: 0 1 auto;
  }
}

@media (max-width: 560px) {
  .ocal-player {
    gap: 10px;
    padding: 0 12px;
  }
  .ocal-player__text {
    display: none;
  }
  .ocal-nav-btn {
    padding: 8px 11px;
    font-size: 13px;
  }
  .ocal-hd__wordmark {
    font-size: 20px;
  }
  .ocal-store-grid {
    grid-template-columns: 1fr;
  }
  .ocal-vinyl-inner,
  .ocal-store-inner,
  .ocal-vip-inner {
    padding: 24px 16px 40px;
  }
  .ocal-vip-headline {
    font-size: 40px;
  }
}

/* ══════════════════════════════════════════════════════════════
   Leaflet home map — pan/zoom illustrated image map (responsive)
   ══════════════════════════════════════════════════════════════ */
.ocal-home-section .ocal-body,
.ocal-home-section .ocal-screen--map {
  height: 100%;
  min-height: 0;
}

.ocal-mapcont--leaflet {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.ocal-leaflet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* decorative banner pinned to the top-center of the map (non-interactive) */
.ocal-map-banner {
  position: absolute;
  top: clamp(8px, 2.5%, 22px);
  left: 50%;
  transform: translateX(-50%);
  width: var(--oc-banner-w, 60%);
  max-width: 96%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
@media (max-width: 640px) {
  .ocal-map-banner {
    top: 8px;
  }
}

.ocal-mapcont--leaflet .leaflet-container {
  background: #cfe0ea;
  font: inherit;
}
.ocal-mapcont--leaflet .leaflet-control-zoom a {
  color: #0f3d2c;
  font-weight: 700;
}

/* markers (divIcon teardrop) */
.ocal-lpin {
  background: none;
  border: 0;
}
.ocal-lpin__drop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff8ec;
  box-shadow: 0 4px 8px rgba(60, 40, 20, 0.42);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  cursor: pointer;
}
.ocal-lpin__label {
  transform: rotate(45deg);
  font-size: 14px;
  line-height: 1;
}
.ocal-lpin__drop.is-active {
  transform: rotate(-45deg) scale(1.4);
  box-shadow:
    0 0 0 4px rgba(237, 171, 46, 0.6),
    0 10px 16px rgba(60, 40, 20, 0.5);
}

/* DESKTOP: map fills the section; detail card docked top-right */
@media (min-width: 861px) {
  .ocal-home-section .ocal-mapwrap {
    flex: 1;
    height: 100%;
    overflow: hidden;
  }
  /* keep the map dominant — the rail flexes between 340px and 575px instead of
     being a fixed 575px that out-sizes the map on ~1024px screens */
  .ocal-home-section .ocal-sidebar--acc {
    width: clamp(340px, 40%, 575px);
  }
  .ocal-mapcont--leaflet .ocal-detail {
    top: 14px;
    right: 14px;
    left: auto;
    bottom: auto;
    width: 320px;
    max-width: calc(100% - 28px);
    max-height: calc(100% - 28px);
  }
}

/* MOBILE: shorter map so the sidebar gets more height; detail card uses the
   existing full-width bottom sheet */
@media (max-width: 860px) {
  .ocal-home-section {
    height: 92vh !important;
  }
  .ocal-home-section .ocal-mapwrap {
    flex: 0 0 44vh !important;
    height: 44vh !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .ocal-home-section .ocal-sidebar {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 46vh !important;
    max-height: none !important;
    overflow-y: auto !important;
  }
  .ocal-mapcont--leaflet {
    height: 100%;
  }
  .leaflet-control-zoom {
    margin: 10px !important;
  }
  .leaflet-control-zoom a {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    font-size: 18px !important;
  }
}
