/* ==========================================================================
   Mobile PlayOJO Casino — style.css
   Prefix: mp-
   Region: IE | Locale: en-IE
   ========================================================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1f4f;
  background: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
h1, h2, h3, p, li, blockquote, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ROOT VARIABLES */
:root {
  --mp-purple: #7b2cbf;
  --mp-purple-dark: #3d1484;
  --mp-navy: #1a1f4f;
  --mp-green: #00a651;
  --mp-yellow: #ffd000;
  --mp-white: #ffffff;
  --mp-bg: #f5f5f8;
  --mp-border: #e0e0ee;
  --mp-radius: 12px;
  --mp-shadow: 0 4px 20px rgba(0,0,0,.12);
  --container: 1240px;
}

/* CONTAINER */
.mp-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 760px) { .mp-container { padding-inline: 20px; } }

/* BUTTONS */
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: filter .15s, transform .15s;
  white-space: nowrap;
  max-width: 100%;
}
.mp-btn:hover { filter: brightness(1.08); }
.mp-btn--login {
  background: var(--mp-green);
  color: #fff;
}
.mp-btn--register {
  background: var(--mp-yellow);
  color: var(--mp-navy);
}
.mp-btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}
.mp-btn--outline {
  background: transparent;
  border: 2px solid var(--mp-yellow);
  color: var(--mp-yellow);
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.mp-topbar {
  background: var(--mp-navy);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  padding: 7px 0;
}
.mp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  flex-wrap: wrap;
}
.mp-topbar a { color: rgba(255,255,255,.82); text-decoration: underline; }
.mp-topbar a:hover { color: #fff; }
@media (max-width: 639px) {
  .mp-topbar { font-size: 11px; }
  .mp-topbar__inner { gap: 4px 8px; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.mp-header {
  background: var(--mp-purple);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.mp-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.mp-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.mp-header__logo img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.mp-header__search {
  display: flex;
  flex: 1;
  min-width: 0;
  position: relative;
  max-width: 200px;
}
@media (min-width: 760px) {
  .mp-header__search { max-width: none; }
}
.mp-header__search input {
  width: 100%;
  padding: 8px 12px 8px 34px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px;
  outline: none;
}
@media (min-width: 760px) {
  .mp-header__search input { padding: 9px 16px 9px 38px; font-size: 14px; }
}
.mp-header__search input::placeholder { color: rgba(255,255,255,.6); }
.mp-header__search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.6);
  pointer-events: none;
}
.mp-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.mp-header__actions .mp-btn {
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: .02em;
}
.mp-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 4px 0;
}
.mp-header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
@media (min-width: 760px) {
  .mp-header__logo img { height: 44px; max-width: none; }
  .mp-header__inner { gap: 18px; padding: 14px 0; }
  .mp-header__search { display: flex; }
  .mp-header__search--mobile { display: none !important; }
}
@media (max-width: 759px) {
  .mp-header__search--mobile { display: flex !important; }
  .mp-header__actions { gap: 10px; }
  .mp-header__actions .mp-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
}
@media (max-width: 479px) {
  .mp-header__actions .mp-btn--login { display: none; }
}

/* Mobile search bar — shown below header row on small screens */
.mp-header__search--mobile {
  display: none;
  background: #6a1fa8;
  padding: 8px 16px 10px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mp-header__search--mobile input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 14px;
  outline: none;
}
.mp-header__search--mobile input::placeholder { color: rgba(255,255,255,.6); }
.mp-header__search--mobile-wrap {
  position: relative;
  width: 100%;
}
.mp-header__search--mobile-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.6);
  pointer-events: none;
}


/* ==========================================================================
   SUBNAV
   ========================================================================== */
.mp-subnav {
  background: #fff;
  border-bottom: 1px solid var(--mp-border);
}
.mp-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.mp-subnav__inner::-webkit-scrollbar { display: none; }
.mp-subnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mp-navy);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.mp-subnav a:hover, .mp-subnav a.is-active {
  background: var(--mp-purple);
  color: #fff;
}
.mp-subnav a svg { width: 20px; height: 20px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.mp-hero {
  background: linear-gradient(135deg, var(--mp-purple-dark) 0%, var(--mp-purple) 100%);
  color: #fff;
  padding: 60px 0 70px;
}
.mp-hero__inner {
  max-width: 720px;
  min-width: 0;
  max-width: 100%;
}
.mp-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 16px;
  color: #fff;
}
.mp-hero__lead {
  font-size: 18px;
  opacity: .88;
  margin-bottom: 28px;
  max-width: 600px;
}
.mp-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 639px) {
  .mp-hero { padding: 36px 0 44px; }
  .mp-hero__lead { font-size: 16px; }
  .mp-hero__ctas .mp-btn--lg { padding: 13px 18px; font-size: 13.5px; width: 100%; }
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.mp-breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: #666;
}
.mp-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}
.mp-breadcrumbs li + li::before {
  content: '›';
  margin-right: 4px;
  color: #999;
}
.mp-breadcrumbs a { color: var(--mp-purple); }
.mp-breadcrumbs a:hover { text-decoration: underline; }

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */
.mp-section { padding-block: 40px; }
.mp-section--alt { background: var(--mp-bg); }
.mp-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--mp-navy);
  margin-bottom: 16px;
}
.mp-section p { color: #1a1f4f; margin-bottom: 14px; }
.mp-section ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.mp-section ul li { margin-bottom: 6px; color: #1a1f4f; }

/* CONTENT IMAGES */
article img, section.content img, main p img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 24px auto;
  border-radius: var(--mp-radius);
}
@media (max-width: 768px) {
  article img, section.content img, main p img { max-height: 320px; }
}

/* TABLE */
.mp-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--mp-radius); border: 1px solid var(--mp-border); }
table { width: 100%; min-width: 0; border-collapse: collapse; }
th {
  background: var(--mp-purple);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
td { padding: 11px 16px; font-size: 14px; color: #1a1f4f; border-bottom: 1px solid var(--mp-border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: #f9f9fc; }

/* BLOCKQUOTE */
blockquote {
  margin: 20px 0;
  padding: 16px 20px 16px 24px;
  border-left: 4px solid var(--mp-purple);
  background: #f5f0ff;
  border-radius: 0 var(--mp-radius) var(--mp-radius) 0;
  font-style: italic;
  color: #1a1f4f;
}
blockquote cite { display: block; margin-top: 8px; font-size: 13px; font-style: normal; color: #555; }

/* ==========================================================================
   CASINO LISTING — OFFERS
   ========================================================================== */
.mp-offers { padding: 40px 0; background: var(--mp-bg); }
.mp-offers__heading {
  text-align: center;
  margin-bottom: 28px;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--mp-navy);
}
.mp-offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* CARD BASE */
.mp-offers__card {
  position: relative;
  background: #fff;
  border-radius: var(--mp-radius);
  border: 2px solid var(--mp-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mp-offers__card--top {
  border-color: var(--mp-yellow);
  box-shadow: 0 8px 32px rgba(255,208,0,.3);
  transform: scale(1.02);
  padding-top: 36px;
}

/* OVERLAY LINK */
.mp-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
}

/* ALL CHILDREN ABOVE OVERLAY */
.mp-offers__card > *:not(.mp-offers__overlay-link) {
  position: relative;
  z-index: 2;
}
.mp-offers__card * { pointer-events: none; }
.mp-offers__overlay-link,
.mp-offers__review-link {
  pointer-events: auto !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mp-offers__review-link { position: relative; z-index: 3 !important; }

/* RIBBON */
.mp-offers__ribbon {
  position: absolute !important;
  top: 26px;
  right: -46px;
  width: 170px;
  transform: rotate(45deg);
  z-index: 4;
  background: var(--mp-yellow);
  color: var(--mp-navy);
  text-align: center;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  pointer-events: none;
}

/* CARD TOP ROW */
.mp-offers__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 12px;
}
.mp-offers__logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--mp-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-offers__logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0;
  max-height: none;
  border-radius: 0;
}
.mp-offers__info { flex: 1; min-width: 0; }
.mp-offers__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--mp-navy);
  margin-bottom: 4px;
}
.mp-offers__stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
.mp-offers__rating-num { font-size: 12px; color: #555; margin-left: 4px; }
.mp-offers__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 5px; }
.mp-offers__tag {
  background: #f0ebff;
  color: var(--mp-purple);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
}
.mp-offers__tag--accent { background: var(--mp-yellow); color: var(--mp-navy); }

/* CARD BODY */
.mp-offers__body {
  padding: 14px 18px 18px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mp-offers__bonus-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--mp-purple);
  line-height: 1.2;
}
.mp-offers__usps {
  text-align: left;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mp-offers__usps li {
  font-size: 13px;
  color: #1a1f4f;
  padding-left: 18px;
  position: relative;
}
.mp-offers__usps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mp-green);
  font-weight: 700;
}

/* SOCIAL PROOF */
.mp-offers__social {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mp-offers__social svg { width: 14px; height: 14px; color: #ff6b35; }

/* TIMER */
.mp-offers__timer {
  background: var(--mp-navy);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  text-align: center;
}
.mp-offers__timer-label { font-size: 11px; opacity: .75; display: block; margin-bottom: 4px; }
.mp-offers__timer-digits {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}

/* CTA ROW */
.mp-offers__cta-row { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mp-offers__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: var(--mp-yellow);
  color: var(--mp-navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mp-offers__card--top .mp-offers__cta {
  background: var(--mp-green);
  color: #fff;
}
.mp-offers__review-link {
  font-size: 12px;
  color: var(--mp-purple);
  text-decoration: underline;
}
.mp-offers__review-link:hover { color: var(--mp-purple-dark); }
.mp-offers__urgency {
  font-size: 11px;
  color: #777;
  text-align: center;
  padding: 0 0 6px;
}

/* AGGREGATE */
.mp-offers__aggregate {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #555;
}
.mp-offers__aggregate strong { color: var(--mp-navy); }

@media (max-width: 900px) {
  .mp-offers__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .mp-offers__card--top { transform: none; order: -1; }
}

/* ==========================================================================
   SLOTS LISTING
   ========================================================================== */
.mp-slots { padding: 40px 0; }
.mp-slots__heading {
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--mp-navy);
}
.mp-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) { .mp-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .mp-slots__grid { grid-template-columns: repeat(6, 1fr); } }

.mp-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--mp-radius);
  overflow: hidden;
  border: 1px solid var(--mp-border);
  background: #111;
}
.mp-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.mp-slots__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  max-height: none;
  border-radius: 0;
}
.mp-slots__top-row,
.mp-slots__meta-row,
.mp-slots__overlay,
.mp-slots__play-icon { pointer-events: none; }

.mp-slots__top-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  z-index: 2;
}
.mp-slots__hot {
  background: #ff3c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}
.mp-slots__rtp-badge {
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
}
.mp-slots__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255,208,0,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity .2s;
}
.mp-slots__play-icon svg { width: 18px; height: 18px; color: var(--mp-navy); margin-left: 3px; }
.mp-slots__grid > div:hover .mp-slots__play-icon { opacity: 1; }

.mp-slots__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
  z-index: 1;
}
.mp-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  z-index: 2;
}
.mp-slots__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-slots__meta {
  display: flex;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,.8);
}
.mp-slots__cta-wrap { text-align: center; margin-top: 20px; }

/* ==========================================================================
   AUTHOR BLOCK
   ========================================================================== */
.mp-author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #f5f0ff;
  border-radius: var(--mp-radius);
  margin: 32px 0;
  border: 1px solid #ddd0f7;
}
.mp-author img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0;
  max-height: none;
  border: 3px solid var(--mp-purple);
}
.mp-author__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--mp-navy);
  margin-bottom: 2px;
}
.mp-author__role { font-size: 13px; color: var(--mp-purple); margin-bottom: 8px; }
.mp-author__bio { font-size: 14px; color: #1a1f4f; line-height: 1.6; }
.mp-author__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.mp-author__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0;
  font-size: 13px;
  color: #0a66c2;
  font-weight: 600;
  pointer-events: auto !important;
}
.mp-author__linkedin:hover { text-decoration: underline; }
.mp-author__linkedin svg { width: 16px; height: 16px; }
.mp-author__badge {
  margin-top: 0;
  display: inline-block;
  background: var(--mp-navy);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .mp-author { flex-direction: column; align-items: center; text-align: center; }
  .mp-author__linkedin { justify-content: center; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.mp-faq { padding-block: 40px; }
.mp-faq h2 { font-size: clamp(20px, 3vw, 26px); color: var(--mp-navy); margin-bottom: 20px; }
.mp-faq details {
  border: 1px solid var(--mp-border);
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.mp-faq summary {
  padding: 16px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--mp-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.mp-faq summary::-webkit-details-marker { display: none; }
.mp-faq summary::after { content: '+'; font-size: 20px; color: var(--mp-purple); }
.mp-faq details[open] summary::after { content: '−'; }
.mp-faq__answer { padding: 0 20px 16px; font-size: 14px; color: #1a1f4f; line-height: 1.7; }

/* ==========================================================================
   RELATED LINKS
   ========================================================================== */
.mp-related { padding: 24px 0; border-top: 1px solid var(--mp-border); }
.mp-related h3 { font-size: 15px; color: var(--mp-navy); margin-bottom: 12px; }
.mp-related__list { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-related__list a {
  padding: 6px 14px;
  border: 1px solid var(--mp-border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--mp-purple);
  transition: background .15s, color .15s;
}
.mp-related__list a:hover { background: var(--mp-purple); color: #fff; border-color: var(--mp-purple); }

/* ==========================================================================
   MOBILE FAB
   ========================================================================== */
.mp-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  padding: 18px 38px;
  background: var(--mp-yellow);
  color: var(--mp-navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,.45), 0 2px 8px rgba(0,0,0,.5);
  transition: background .15s, transform .15s;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 260px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  text-align: center;
}
.mp-fab::after { content: "▶"; font-size: 11px; }
.mp-fab:hover { transform: translate(-50%, -2px); }
@media (max-width: 1023px) { .mp-fab { display: inline-flex; } }
@media (max-width: 480px) {
  .mp-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; }
}
body.is-cookies-shown .mp-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .mp-fab { bottom: 150px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.mp-footer {
  background: var(--mp-navy);
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
}
.mp-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mp-footer__brand { grid-column: 1 / -1; }
.mp-footer__brand img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin: 0 0 14px 0;
  max-height: none;
}
.mp-footer__brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.65); max-width: 320px; }
.mp-footer__socials { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.mp-footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.mp-footer__socials a:hover { background: var(--mp-purple); color: #fff; }
.mp-footer__socials svg { width: 18px; height: 18px; }
.mp-footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 12px;
}
.mp-footer__col ul { list-style: none; }
.mp-footer__col ul li { margin-bottom: 7px; }
.mp-footer__col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.mp-footer__col ul a:hover { color: var(--mp-yellow); }

@media (min-width: 600px) {
  .mp-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .mp-footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 22px; }
  .mp-footer__brand { grid-column: auto; }
}

/* PAYMENT ICONS */
.mp-footer__pay { padding: 24px 0 0; }
.mp-footer__pay h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.mp-footer__pay-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-footer__pay-grid img {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  margin: 0;
  max-height: none;
}

/* TRUST & RESPONSIBLE */
.mp-footer__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mp-footer__trust-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.mp-footer__rg {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 820px;
}
.mp-footer__rg a { color: rgba(255,255,255,.6); text-decoration: underline; }
.mp-footer__rg a:hover { color: #fff; }
.mp-footer__bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.mp-footer__bottom a { color: rgba(255,255,255,.45); text-decoration: underline; }
.mp-footer__bottom a:hover { color: rgba(255,255,255,.8); }
.mp-footer__legal-links { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 599px) {
  .mp-footer { padding: 28px 0 16px; font-size: 12px; }
  .mp-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .mp-footer__col ul li { margin-bottom: 4px; }
  .mp-footer__col ul a { font-size: 12px; }
  .mp-footer__brand img { height: 70px; max-width: 180px; margin-bottom: 10px; }
  .mp-footer__brand p { font-size: 12px; margin-bottom: 10px; }
  .mp-footer__pay-grid { gap: 6px 8px; }
  .mp-footer__pay-grid img { height: 22px; }
}
@media (max-width: 1023px) {
  .mp-footer { padding-bottom: 84px; }
}

/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */
.mp-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--mp-navy);
  z-index: 200;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.mp-nav-overlay.is-open { display: flex; }
.mp-nav-overlay__close {
  align-self: flex-end;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  margin-bottom: 20px;
}
.mp-nav-overlay nav { display: flex; flex-direction: column; gap: 4px; }
.mp-nav-overlay nav a {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mp-nav-overlay nav a:hover { color: var(--mp-yellow); }
.mp-nav-overlay__ctas { display: flex; gap: 10px; margin-top: 24px; }
.mp-nav-overlay__ctas .mp-btn { flex: 1; justify-content: center; }

/* ==========================================================================
   SITEMAP PAGE
   ========================================================================== */
.mp-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.mp-sitemap-card {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .15s, box-shadow .15s;
}
.mp-sitemap-card:hover { border-color: var(--mp-purple); box-shadow: 0 2px 12px rgba(123,44,191,.12); }
.mp-sitemap-card a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--mp-purple);
  display: block;
  margin-bottom: 4px;
}
.mp-sitemap-card p { font-size: 12px; color: #666; }
.mp-sitemap__group-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mp-purple);
  margin: 28px 0 10px;
}
