html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* v43 final flow/layout guardrails */
.glass-player,
[class*="radio-player"],
[class*="audio-player"],
[class*="now-playing"],
.regia-audio-player {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.regia-card-actions a,
.regia-card-actions button,
.regia-dyn-slide a,
.regia-shop-hero a,
.regia-ebook-hero a,
.regia-tv-hero a,
.regia-section-head a,
.regia-card-label,
.regia-category-row a,
.regia-tabs button {
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  border-radius: 8px !important;
}

@media (max-width: 900px) {
  main .regia-products-grid,
  main .regia-ebooks-grid,
  main .regia-products-grid.regia-mobile-two-col,
  main .regia-ebooks-grid.regia-mobile-two-col {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  main .regia-products-grid > *,
  main .regia-ebooks-grid > *,
  main .regia-products-grid.regia-mobile-two-col > *,
  main .regia-ebooks-grid.regia-mobile-two-col > * {
    min-width: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    grid-column: auto !important;
  }

  .regia-horizontal-row .regia-product-card,
  .regia-horizontal-row .regia-ebook-card {
    flex: 0 0 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
  }

  .regia-card-actions a,
  .regia-card-actions button,
  .regia-dyn-slide a {
    min-width: max-content !important;
    max-width: 100% !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe,
canvas,
svg {
  max-width: 100%;
}

main,
section,
article,
div,
header,
footer {
  min-width: 0;
}

body.regia-menu-locked {
  overflow: hidden;
}

body.regia-menu-locked .regia-menu-trigger {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.regia-global-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 5vw, 72px);
  background: rgba(251, 248, 241, 0.88);
  border-bottom: 1px solid rgba(212, 167, 44, 0.28);
  box-shadow: 0 18px 45px rgba(26, 26, 26, 0.09);
  backdrop-filter: blur(18px);
}

body > header:not(.regia-global-header),
main > header,
.site-header:not(.regia-global-header),
nav.glass-nav:not(.regia-global-nav),
body.regia-enhanced .top,
body.regia-enhanced .brand,
body.regia-enhanced main > nav,
body.regia-enhanced main nav.bg-background,
body.regia-enhanced body > nav,
body.regia-enhanced .docked.full-width.top-0.sticky:not(.regia-global-nav) {
  display: none !important;
}

.regia-global-header a {
  text-decoration: none;
}

.regia-global-brand {
  display: inline-flex;
  width: 168px;
  height: 38px;
  white-space: nowrap;
}

.regia-logo-mark {
  display: block;
  width: 100%;
  height: 100%;
}

.regia-mobile-creator-cta {
  display: none;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #a10018;
  color: #fff;
  font: 900 10px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.regia-global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.7vw, 24px);
  min-width: 0;
}

.regia-global-nav a {
  color: #67000f;
  font: 900 12px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.regia-global-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.regia-icon-button,
.regia-menu-trigger {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(103, 0, 15, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #67000f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(103, 0, 15, 0.12);
  cursor: pointer;
}

.regia-menu-trigger {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: 14px;
  z-index: 10000;
}

.regia-menu-trigger svg,
.regia-icon-button svg,
.regia-svg-icon {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.regia-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: stretch end;
  background: rgba(26, 26, 26, 0);
  pointer-events: none;
  transition: background 0.24s ease;
}

.regia-offcanvas.regia-open {
  background: rgba(26, 26, 26, 0.54);
  pointer-events: auto;
}

.regia-offcanvas-panel {
  width: min(86vw, 360px);
  height: 100%;
  padding: 18px 18px 28px;
  background: #fbf8f1;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(104%);
  transition: transform 0.28s ease;
}

.regia-offcanvas.regia-open .regia-offcanvas-panel {
  transform: translateX(0);
}

.regia-offcanvas-panel a {
  color: #67000f;
  border-bottom: 1px solid rgba(103, 0, 15, 0.1);
  padding: 15px 4px;
  text-decoration: none;
  font: 900 14px/1.15 "Manrope", Arial, sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.regia-close-menu {
  align-self: flex-end;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #a10018;
  color: #fff;
}

.regia-close-menu svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.regia-global-footer {
  background: #1a1a1a;
  color: rgba(251, 248, 241, 0.78);
  padding: 48px clamp(18px, 5vw, 72px) 26px;
}

.regia-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(140px, 0.6fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.regia-global-footer h2,
.regia-global-footer h3 {
  color: #f0d278;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
}

.regia-global-footer a {
  display: block;
  color: rgba(251, 248, 241, 0.76);
  text-decoration: none;
  margin: 9px 0;
  font: 800 12px/1.2 "Manrope", Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.regia-footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 210, 120, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(251, 248, 241, 0.48);
  font-size: 12px;
}

.regia-audio-player {
  position: fixed;
  left: max(14px, env(safe-area-inset-left));
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 9980;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(212, 167, 44, 0.32);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(26, 26, 26, 0.22);
  backdrop-filter: blur(18px);
}

.regia-audio-player.regia-visible {
  display: flex;
}

body.regia-enhanced .regia-audio-player,
body.regia-enhanced [class*="radio-player"],
body.regia-enhanced [class*="audio-player"] {
  display: none !important;
  pointer-events: none !important;
}

.regia-audio-meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.regia-audio-meta strong,
.regia-audio-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.regia-audio-meta strong {
  color: #67000f;
  font-size: 13px;
}

.regia-audio-meta span {
  color: #5b403e;
  font-size: 11px;
}

.regia-player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.regia-player-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #67000f;
  color: #fff;
}

.regia-player-controls button:not(.regia-play-toggle) {
  background: #fff4f0;
  color: #67000f;
}

.regia-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
}

.regia-video-modal iframe {
  width: min(1040px, 94vw);
  aspect-ratio: 16 / 9;
  border: 0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.regia-video-modal button {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  background: #f0d278;
  color: #1a1a1a;
  padding: 12px 16px;
  font-weight: 900;
}

.regia-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  z-index: 10030;
  max-width: min(92vw, 420px);
  padding: 13px 16px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  font: 900 13px/1.3 "Manrope", Arial, sans-serif;
  text-align: center;
}

.regia-clickable {
  cursor: pointer;
}

.regia-tab-active {
  background: #a10018 !important;
  color: #fff !important;
  border-color: #a10018 !important;
}

.regia-tab-hidden {
  display: none !important;
}

.regia-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.regia-reveal.regia-in {
  opacity: 1;
  transform: translateY(0);
}

.regia-shipping-panel,
.regia-secure-panel {
  margin: 24px clamp(16px, 5vw, 72px);
  padding: 18px 20px;
  border: 1px solid rgba(212, 167, 44, 0.38);
  background: #fff;
  color: #5b403e;
  box-shadow: 0 16px 50px rgba(103, 0, 15, 0.08);
  font: 700 14px/1.6 "Manrope", Arial, sans-serif;
}

.regia-shipping-panel strong,
.regia-secure-panel strong {
  display: block;
  color: #67000f;
  margin-bottom: 6px;
}

.regia-upload-preview {
  width: 120px;
  max-height: 120px;
  object-fit: contain;
  margin: 14px auto 0;
  display: block;
}

main > section:first-child {
  min-height: min(78vh, 760px) !important;
}

main > section:first-child [class*="min-h-screen"] {
  min-height: min(78vh, 760px) !important;
}

main > section:first-child .hero-slide {
  min-height: min(78vh, 760px) !important;
}

.regia-hero-dot-active {
  background: #f0d278 !important;
  opacity: 1 !important;
}

.regia-hero-copy {
  display: none !important;
}

.regia-final-hero-copy {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(82px, 12vh, 150px);
  z-index: 60;
  max-width: min(720px, calc(100vw - 36px));
  color: #fff;
  pointer-events: auto;
}

.regia-final-hero-copy span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 11px;
  background: #a10018;
  color: #fff;
  font: 900 11px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.regia-final-hero-copy h1 {
  margin: 0 0 18px;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(38px, 10vw, 92px) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.035em;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.72);
}

.regia-final-hero-copy a {
  color: #f0d278;
  border-bottom: 1px solid #f0d278;
  padding-bottom: 6px;
  text-decoration: none;
  font: 900 11px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.regia-clean-player {
  display: none !important;
}

.material-symbols-outlined.regia-iconized {
  font-size: 0 !important;
  line-height: 0 !important;
}

.material-symbols-outlined.regia-iconized svg {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  font-size: initial;
  vertical-align: middle;
}

@media (min-width: 901px) {
  body {
    padding-top: 74px;
  }

  .regia-menu-trigger {
    display: none;
  }

  .regia-audio-trigger {
    display: none;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 62px;
  }

  .regia-global-header {
    min-height: 62px;
    padding: 10px 68px 10px 14px;
  }

  .regia-global-brand {
    width: 112px;
    height: 30px;
  }

  .regia-global-nav,
  .regia-global-actions {
    display: none;
  }

  .regia-mobile-creator-cta {
    display: inline-flex;
    margin-left: auto;
    margin-right: 4px;
  }

  main > section:first-child,
  main > section:first-child [class*="min-h-screen"],
  main > section:first-child .hero-slide {
    min-height: 56vh !important;
    max-height: 620px;
  }

  main h1,
  main > section:first-child h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 0.96 !important;
  }

  main h2 {
    font-size: clamp(28px, 9vw, 38px) !important;
    line-height: 1 !important;
  }

  main p,
  main li,
  main a,
  main button,
  main input,
  main textarea,
  main select {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  main button,
  main a[class*="px-"],
  main [role="button"] {
    min-height: 40px;
    padding: 10px 13px !important;
    white-space: normal;
  }

  main [class*="grid"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  main [class*="w-["],
  main [class*="min-w"],
  main [class*="max-w"] {
    max-width: 100% !important;
  }

  main [class*="overflow-hidden"] {
    min-width: 0;
  }

  .regia-audio-player {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 18px;
  }

  .regia-player-controls button {
    width: 38px;
    height: 38px;
  }

  .regia-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
}

@media (max-width: 430px) {
  .regia-global-brand {
    width: 104px;
    height: 28px;
  }

  main > section:first-child,
  main > section:first-child [class*="min-h-screen"],
  main > section:first-child .hero-slide {
    min-height: 52vh !important;
  }

  main h1,
  main > section:first-child h1 {
    font-size: clamp(30px, 10vw, 40px) !important;
  }

  main h2 {
    font-size: clamp(24px, 8.2vw, 34px) !important;
  }

  .regia-footer-grid {
    grid-template-columns: 1fr;
  }
}

.regia-dynamic-hero,
.regia-shop-hero,
.regia-tv-hero,
.regia-ebook-hero,
.regia-voices-hero {
  position: relative;
  min-height: 64vh;
  overflow: hidden;
  background: #1a1a1a;
  color: #fff;
}

.regia-dyn-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: clamp(38px, 7vw, 86px);
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.regia-dyn-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.regia-dyn-slide div,
.regia-shop-hero div,
.regia-tv-hero div,
.regia-ebook-hero div {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.regia-dyn-slide span,
.regia-shop-hero span,
.regia-tv-hero span,
.regia-ebook-hero span,
.regia-voices-hero span,
.regia-section-head span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 11px;
  background: #a10018;
  color: #fff;
  font: 900 11px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.regia-dyn-slide h1,
.regia-shop-hero h1,
.regia-tv-hero h1,
.regia-ebook-hero h1,
.regia-voices-hero h1,
.regia-profile h1,
.regia-product-info h1,
.regia-ebook-detail h1 {
  margin: 0 0 16px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.regia-dyn-slide p,
.regia-shop-hero p,
.regia-tv-hero p,
.regia-ebook-hero p,
.regia-voices-hero p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
}

.regia-dyn-slide a,
.regia-shop-hero a,
.regia-tv-hero a,
.regia-ebook-hero a,
.regia-section-head a,
.regia-card-actions a,
.regia-card-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #a10018;
  color: #fff;
  text-decoration: none;
  font: 900 12px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.regia-hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.regia-hero-controls > button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  color: #fff;
}

.regia-hero-controls div {
  display: flex;
  gap: 8px;
}

.regia-hero-controls div button {
  width: 26px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
}

.regia-news-ticker {
  display: flex;
  gap: 28px;
  overflow: auto;
  padding: 14px clamp(16px, 5vw, 72px);
  background: #76000f;
  color: #f0d278;
}

.regia-news-ticker a {
  flex: 0 0 auto;
  color: #f0d278;
  text-decoration: none;
  font: 900 12px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.regia-section {
  padding: clamp(34px, 6vw, 82px) clamp(16px, 5vw, 72px);
  background: #fbf8f1;
}

.regia-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.regia-section-head h2 {
  margin: 0;
  color: #67000f;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(34px, 6vw, 72px);
  line-height: .9;
}

.regia-tabs,
.regia-category-row,
.regia-sort-row {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-bottom: 12px;
  margin-bottom: 22px;
}

.regia-tabs button,
.regia-category-row a,
.regia-sort-row select {
  flex: 0 0 auto;
  border: 1px solid rgba(103,0,15,.12);
  border-radius: 999px;
  background: #fff;
  color: #67000f;
  padding: 10px 15px;
  font: 900 12px/1 "Manrope", Arial, sans-serif;
}

.regia-magazine-grid,
.regia-magazine-layout,
.regia-products-grid,
.regia-ebooks-grid,
.regia-creators-grid,
.regia-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.regia-magazine-layout {
  grid-template-columns: 1.2fr repeat(2, minmax(0, .9fr));
}

.regia-horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 300px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.regia-news-card,
.regia-list-card,
.regia-product-card,
.regia-ebook-card,
.regia-creator-card,
.regia-video-card {
  background: #fff;
  border: 1px solid rgba(212,167,44,.26);
  box-shadow: 0 14px 42px rgba(103,0,15,.08);
  overflow: hidden;
}

.regia-news-card a,
.regia-list-card a,
.regia-ebook-card a,
.regia-creator-card a {
  color: inherit;
  text-decoration: none;
}

.regia-news-card img,
.regia-product-card img,
.regia-ebook-card img,
.regia-creator-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.regia-list-card {
  display: grid;
}

.regia-list-card a {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 12px;
  padding: 10px;
}

.regia-list-card img {
  grid-row: span 4;
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.regia-news-card h3,
.regia-list-card h3,
.regia-product-card h3,
.regia-ebook-card h3,
.regia-creator-card h3,
.regia-video-card h3 {
  margin: 12px 12px 8px;
  color: #67000f;
  font: 900 18px/1.12 "Manrope", Arial, sans-serif;
}

.regia-news-card p,
.regia-list-card p,
.regia-product-card p,
.regia-ebook-card p,
.regia-creator-card p {
  margin: 0 12px 14px;
  color: #5b403e;
  font-size: 13px;
  line-height: 1.5;
}

.regia-product-card strong {
  display: block;
  margin: 0 12px 8px;
  color: #a10018;
}

.regia-product-image {
  position: relative;
  display: block;
}

.regia-product-image span,
.regia-news-card span,
.regia-ebook-card span,
.regia-video-card span {
  display: inline-block;
  margin: 12px 12px 0;
  padding: 5px 8px;
  background: #fff4f0;
  color: #a10018;
  font: 900 10px/1 "Manrope", Arial, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.regia-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.regia-card-actions a:nth-child(2) {
  background: #f0d278;
  color: #351500;
}

.regia-card-actions a:nth-child(3) {
  background: #fff;
  color: #67000f;
  border: 1px solid rgba(103,0,15,.16);
}

.regia-ad-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  margin: 18px clamp(16px, 5vw, 72px);
  padding: 18px clamp(18px, 5vw, 48px);
  background: linear-gradient(90deg,#67000f,#a10018);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.regia-ad-banner span {
  color: #f0d278;
  font: 900 11px/1 "Manrope", Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.regia-ad-banner strong {
  font: 900 clamp(20px, 4vw, 38px)/.95 "Bebas Neue", Impact, sans-serif;
  letter-spacing: .04em;
}

.regia-tv-band,
.regia-shop-hero,
.regia-ebook-hero,
.regia-product-detail,
.regia-ebook-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: clamp(36px, 6vw, 82px) clamp(16px, 5vw, 72px);
}

.regia-tv-band iframe,
.regia-tv-hero iframe,
.regia-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.regia-tv-hero {
  display: grid;
  align-items: end;
  padding: clamp(34px, 6vw, 80px) clamp(16px, 5vw, 72px);
}

.regia-tv-hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .52;
}

.regia-shop-hero,
.regia-ebook-hero {
  background: #fbf8f1;
  color: #1a1a1a;
  min-height: auto;
}

.regia-shop-hero img,
.regia-ebook-hero img,
.regia-ebook-detail img,
.regia-product-gallery > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.regia-product-gallery nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 14px;
  color: #67000f;
  font-size: 12px;
}

.regia-product-info > span,
.regia-ebook-detail span {
  color: #a10018;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.regia-option-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.regia-option-group button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(103,0,15,.18);
  border-radius: 999px;
  background: #fff;
  color: #67000f;
  font-weight: 900;
}

.regia-option-group button.regia-option-active {
  outline: 3px solid rgba(161, 0, 24, 0.24);
  border-color: #a10018;
  box-shadow: 0 8px 24px rgba(161,0,24,.16);
}

.regia-inline-customizer {
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed rgba(103,0,15,.32);
  background: #fff;
}

.regia-product-bottom,
.regia-creator-bottom,
.regia-ebook-bottom {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 9970;
  display: flex;
  gap: 6px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
}

.regia-product-bottom a,
.regia-creator-bottom a,
.regia-creator-bottom button,
.regia-ebook-bottom a {
  flex: 1;
  border: 0;
  border-radius: 8px;
  background: #a10018;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 11px 8px;
  font: 900 10px/1 "Manrope", Arial, sans-serif;
}

.regia-profile-cover {
  height: 180px;
  background: linear-gradient(120deg,#67000f,#a10018);
}

.regia-profile-head {
  display: grid;
  grid-template-columns: 160px minmax(0,1fr);
  gap: 22px;
  padding: 0 clamp(16px,5vw,72px) 36px;
  margin-top: -70px;
}

.regia-profile-head img {
  width: 160px;
  height: 160px;
  border: 6px solid #fbf8f1;
  border-radius: 999px;
  object-fit: cover;
}

.regia-creator-stats,
.regia-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.regia-creator-stats span,
.regia-socials a {
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff4f0;
  color: #67000f;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.regia-socials .ig { color: #e1306c; }
.regia-socials .fb { color: #1877f2; }
.regia-socials .tk { color: #000; }
.regia-socials .yt { color: #ff0000; }
.regia-socials .sp { color: #1db954; }

.glass-player,
[class*="radio-player"],
[class*="audio-player"],
[class*="now-playing"],
.regia-audio-player {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.regia-reset-form {
  display: none !important;
}

.regia-reset-form.regia-open {
  display: grid !important;
}

@media (max-width: 900px) {
  .regia-dynamic-hero {
    min-height: 54vh !important;
  }

  .regia-dyn-slide {
    padding: 28px 18px 76px;
  }

  .regia-dyn-slide h1 {
    font-size: 38px !important;
  }

  .regia-hero-controls {
    bottom: 18px;
    gap: 8px;
  }

  .regia-hero-controls > button {
    width: 24px;
    height: 24px;
  }

  .regia-hero-controls > button svg {
    width: 12px;
    height: 12px;
  }

  .regia-hero-controls div {
    gap: 5px;
  }

  .regia-hero-controls div button {
    width: 12px;
    height: 5px;
  }

  .regia-section-head {
    align-items: start;
    flex-direction: column;
  }

  .regia-magazine-grid,
  .regia-magazine-layout,
  .regia-products-grid,
  .regia-ebooks-grid,
  .regia-creators-grid,
  .regia-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .regia-news-card:first-child,
  .regia-magazine-layout .regia-news-card:first-child {
    grid-column: 1 / -1;
  }

  .regia-list-card a {
    grid-template-columns: 70px minmax(0,1fr);
    gap: 8px;
  }

  .regia-list-card img {
    width: 70px;
    height: 70px;
  }

  .regia-news-card h3,
  .regia-list-card h3,
  .regia-product-card h3,
  .regia-ebook-card h3,
  .regia-creator-card h3,
  .regia-video-card h3 {
    font-size: 13px !important;
  }

  .regia-news-card p,
  .regia-list-card p,
  .regia-product-card p,
  .regia-ebook-card p,
  .regia-creator-card p {
    display: none;
  }

  .regia-card-actions a {
    min-height: 32px;
    padding: 0 9px !important;
    font-size: 9px !important;
  }

  .regia-tv-band,
  .regia-shop-hero,
  .regia-ebook-hero,
  .regia-product-detail,
  .regia-ebook-detail {
    grid-template-columns: 1fr;
  }

  .regia-ad-banner {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
  }

  .regia-profile-head {
    grid-template-columns: 1fr;
  }

  .regia-profile-head img {
    width: 112px;
    height: 112px;
  }
}

/* v38 premium visual restoration */
.regia-section {
  position: relative;
}

.regia-section::before {
  content: "";
  position: absolute;
  inset: 14px clamp(12px, 4vw, 52px) auto auto;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(212, 167, 44, .22);
  border-radius: 999px;
  opacity: .6;
  pointer-events: none;
}

.regia-section-head span,
.regia-dyn-slide span,
.regia-shop-hero span,
.regia-tv-hero span,
.regia-ebook-hero span,
.regia-voices-hero span,
.regia-profile-head > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.regia-section-head span svg,
.regia-dyn-slide span svg,
.regia-shop-hero span svg,
.regia-tv-hero span svg,
.regia-ebook-hero span svg,
.regia-voices-hero span svg,
.regia-profile-head > div > span svg,
.regia-card-body small svg,
.regia-card-body strong svg,
.regia-card-actions svg,
.regia-socials svg,
.regia-creator-bottom svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: regiaIconFloat 3.6s ease-in-out infinite;
}

@keyframes regiaIconFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-2px) rotate(-2deg); }
}

.regia-dynamic-hero,
.regia-news-hero {
  min-height: min(620px, 68vh);
  background: #180407;
}

.regia-dyn-slide {
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.regia-dyn-slide.is-active {
  animation: regiaKenBurnsSoft 8s ease-in-out both;
}

@keyframes regiaKenBurnsSoft {
  from { transform: scale(1); filter: saturate(1.02) contrast(1.02); }
  to { transform: scale(1.055); filter: saturate(1.15) contrast(1.08); }
}

.regia-dyn-slide div {
  max-width: 680px;
  padding: 24px;
  border-left: 3px solid #f0d278;
  background: linear-gradient(90deg, rgba(18, 4, 7, .42), rgba(18, 4, 7, .08));
  backdrop-filter: blur(2px);
}

.regia-dyn-slide a,
.regia-shop-hero a,
.regia-tv-hero a,
.regia-ebook-hero a,
.regia-section-head a,
.regia-card-actions a,
.regia-card-actions button {
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(103, 0, 15, .16);
  width: auto;
  min-width: max-content;
  max-width: 100%;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.regia-hero-controls {
  bottom: 18px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(20, 4, 7, .52);
  backdrop-filter: blur(12px);
}

.regia-hero-controls > button {
  width: 28px;
  height: 28px;
}

.regia-hero-controls div button {
  width: 18px;
  height: 5px;
}

.regia-news-ticker {
  align-items: center;
  gap: 12px;
  overflow: hidden;
  background: #67000f;
  border-block: 1px solid rgba(240,210,120,.28);
}

.regia-news-ticker b {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}

.regia-news-ticker b i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f0d278;
  box-shadow: 0 0 0 0 rgba(240,210,120,.65);
  animation: regiaLivePulse 1.1s ease-in-out infinite;
}

@keyframes regiaLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(240,210,120,.65); opacity: 1; }
  70% { box-shadow: 0 0 0 9px rgba(240,210,120,0); opacity: .65; }
  100% { box-shadow: 0 0 0 0 rgba(240,210,120,0); opacity: 1; }
}

.regia-news-ticker div {
  min-width: 0;
  flex: 1 1 auto;
}

.regia-news-ticker marquee {
  display: block;
}

.regia-news-ticker a {
  margin-right: 38px;
}

.regia-news-ticker button {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(240,210,120,.3);
  background: rgba(255,255,255,.08);
  color: #f0d278;
}

.regia-news-card,
.regia-list-card,
.regia-product-card,
.regia-ebook-card,
.regia-creator-card,
.regia-video-card {
  overflow: hidden;
  border: 1px solid rgba(103, 0, 15, .12);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(251,248,241,.96)),
    radial-gradient(circle at 90% 10%, rgba(240,210,120,.2), transparent 30%);
  box-shadow: 0 22px 60px rgba(103, 0, 15, .09);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.regia-news-card:hover,
.regia-list-card:hover,
.regia-product-card:hover,
.regia-ebook-card:hover,
.regia-creator-card:hover,
.regia-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 0, 24, .28);
  box-shadow: 0 30px 78px rgba(103, 0, 15, .16);
}

.regia-card-media,
.regia-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #260308;
}

.regia-card-media::after,
.regia-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.58));
  pointer-events: none;
}

.regia-card-media img,
.regia-product-image img,
.regia-news-card img,
.regia-ebook-card img,
.regia-creator-card img {
  transition: transform .45s ease, filter .45s ease;
}

.regia-news-card:hover img,
.regia-product-card:hover img,
.regia-ebook-card:hover img,
.regia-creator-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.05);
}

.regia-card-label,
.regia-product-image .regia-card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #a10018;
  color: #fff;
  font: 900 10px/1 "Manrope", Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  max-width: calc(100% - 24px);
}

.regia-card-media i,
.regia-product-image i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(251,248,241,.94);
  color: #67000f;
}

.regia-card-body {
  padding: 14px;
}

.regia-card-body small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
  color: #a10018;
  font: 900 10px/1 "Manrope", Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.regia-card-body h3,
.regia-product-card h3,
.regia-ebook-card h3,
.regia-creator-card h3 {
  margin: 4px 0 8px;
}

.regia-card-body p {
  margin: 0 0 12px;
}

.regia-card-body > strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #67000f;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.regia-list-card {
  display: grid;
}

.regia-list-card a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 112px;
}

.regia-list-card .regia-card-media img {
  height: 100%;
  aspect-ratio: auto;
}

.regia-list-card .regia-card-body {
  align-self: center;
}

.regia-list-card .regia-card-body p {
  display: none;
}

.regia-card-actions {
  margin: 14px;
}

.regia-product-card .regia-card-actions,
.regia-ebook-card .regia-card-actions {
  margin: 12px 0 0;
}

.regia-product-card > .regia-card-body,
.regia-ebook-card > .regia-card-body,
.regia-creator-card .regia-card-body {
  padding: 14px;
}

.regia-split-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 118px clamp(16px,5vw,72px) 58px;
  background:
    radial-gradient(circle at 75% 10%, rgba(240,210,120,.2), transparent 28%),
    linear-gradient(135deg, #67000f, #1b0307 62%, #fbf8f1 62%);
  color: #fff;
}

.regia-hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.regia-hero-mosaic a {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
}

.regia-hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.regia-hero-mosaic span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
}

.regia-hero-mosaic a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72));
}

.regia-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid currentColor;
  background: #fff;
  font-size: 0;
}

.regia-socials svg {
  width: 19px;
  height: 19px;
}

.regia-product-detail,
.regia-ebook-detail {
  align-items: start;
  background:
    radial-gradient(circle at 86% 14%, rgba(240,210,120,.18), transparent 26%),
    #fbf8f1;
}

.regia-product-detail,
.regia-ebook-detail,
.regia-profile + .regia-section {
  margin-bottom: 96px;
}

.regia-product-gallery,
.regia-product-info,
.regia-inline-customizer {
  min-width: 0;
}

.regia-product-gallery > img {
  border: 1px solid rgba(103,0,15,.12);
  box-shadow: 0 24px 64px rgba(103,0,15,.12);
}

.regia-product-info {
  padding: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(103,0,15,.12);
  box-shadow: 0 22px 60px rgba(103,0,15,.08);
}

.regia-product-info h1 {
  overflow-wrap: normal;
}

.regia-inline-customizer {
  border-style: solid;
  border-radius: 0;
  background: linear-gradient(135deg,#fff,#fbf8f1);
}

@media (max-width: 900px) {
  .regia-dynamic-hero,
  .regia-news-hero {
    min-height: 430px !important;
  }

  .regia-dyn-slide {
    padding: 24px 14px 70px;
  }

  .regia-dyn-slide div {
    padding: 14px;
    max-width: calc(100vw - 28px);
  }

  .regia-dyn-slide h1 {
    font-size: 30px !important;
    line-height: 32px !important;
  }

  .regia-dyn-slide p {
    font-size: 12.5px !important;
    line-height: 18px !important;
    max-width: 86%;
  }

  .regia-dyn-slide a,
  .regia-card-actions a,
  .regia-card-actions button,
  .regia-section-head a,
  .regia-shop-hero a,
  .regia-tv-hero a,
  .regia-ebook-hero a {
    min-height: 28px !important;
    padding: 0 11px !important;
    font-size: 9px !important;
    letter-spacing: .08em !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .regia-hero-controls {
    bottom: 12px;
    gap: 5px;
    padding: 5px;
  }

  .regia-hero-controls > button {
    width: 18px !important;
    height: 18px !important;
  }

  .regia-hero-controls > button svg {
    width: 9px !important;
    height: 9px !important;
  }

  .regia-hero-controls div button {
    width: 8px !important;
    height: 3px !important;
  }

  .regia-news-ticker {
    padding: 9px 12px;
  }

  .regia-news-ticker b {
    font-size: 9px;
  }

  .regia-news-ticker button {
    width: 22px;
    height: 22px;
  }

  .regia-magazine-layout,
  .regia-products-grid,
  .regia-ebooks-grid,
  .regia-creators-grid,
  .regia-video-grid {
    gap: 10px !important;
  }

  .regia-products-grid,
  .regia-ebooks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .regia-horizontal-row .regia-product-card,
  .regia-horizontal-row .regia-ebook-card {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }

  a,
  button,
  .regia-card-label,
  .regia-section-head span,
  .regia-product-info h1,
  .regia-card-body h3 {
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .regia-news-card h3,
  .regia-list-card h3,
  .regia-product-card h3,
  .regia-ebook-card h3,
  .regia-creator-card h3 {
    font-size: 12.5px !important;
    line-height: 16px !important;
  }

  .regia-card-body {
    padding: 10px;
  }

  .regia-card-body small,
  .regia-card-label {
    font-size: 8px !important;
  }

  .regia-card-media i,
  .regia-product-image i {
    width: 26px;
    height: 26px;
  }

  .regia-list-card a {
    grid-template-columns: 82px minmax(0,1fr);
    min-height: 88px;
  }

  .regia-split-hero {
    grid-template-columns: 1fr;
    padding: 86px 14px 34px;
    background: linear-gradient(145deg, #67000f, #240308 70%, #fbf8f1 70%);
  }

  .regia-hero-mosaic {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
  }

  .regia-hero-mosaic a {
    min-height: 112px;
  }

  .regia-product-info {
    padding: 16px;
  }

  .regia-product-gallery nav {
    font-size: 10px;
  }
}

/* v43 EOF guardrails: keep functional fixes from being overridden */
.glass-player,
[class*="radio-player"],
[class*="audio-player"],
[class*="now-playing"],
.regia-audio-player {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.regia-card-actions a,
.regia-card-actions button,
.regia-dyn-slide a,
.regia-shop-hero a,
.regia-ebook-hero a,
.regia-tv-hero a,
.regia-section-head a,
.regia-card-label,
.regia-category-row a,
.regia-tabs button {
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  border-radius: 8px !important;
}

@media (max-width: 900px) {
  .regia-products-grid,
  .regia-ebooks-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .regia-products-grid > *,
  .regia-ebooks-grid > * {
    min-width: 0 !important;
    width: auto !important;
    grid-column: auto !important;
  }

  .regia-horizontal-row .regia-product-card,
  .regia-horizontal-row .regia-ebook-card {
    flex: 0 0 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
  }

  .regia-card-actions a,
  .regia-card-actions button,
  .regia-dyn-slide a {
    min-width: max-content !important;
    max-width: 100% !important;
  }
}
