/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1f4f; line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; overflow-wrap: anywhere; word-break: break-word; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }
a, code { overflow-wrap: anywhere; }
table { min-width: 0; width: 100%; }

/* ROOT */
:root {
  --pm-bg: #ffffff;
  --pm-bg-raised: #f5f0ff;
  --pm-bg-card: #ffffff;
  --pm-text: #1a1f4f;
  --pm-text-muted: #6b5f8a;
  --pm-accent: #7b2cbf;
  --pm-accent-2: #ffd000;
  --pm-green: #00a651;
  --pm-border: #e0d4f5;
  --pm-radius: 12px;
  --pm-shadow: 0 4px 24px rgba(0,0,0,.45);
  --container: 1240px;
}

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

/* CONTENT IMAGES */
article img, section.pm-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(--pm-radius);
}
.pm-hero img, img.banner {
  max-width: 100%; max-height: 560px; object-fit: cover; width: 100%; height: auto; display: block;
}
header img { max-height: 48px; width: auto; object-fit: contain; }
.pm-author img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
footer img[src*="img_listing_casinos"] { max-height: 28px; width: auto; object-fit: contain; }
@media (max-width: 768px) {
  article img, section.pm-content img, main p img { max-height: 320px; }
  .pm-hero img { max-height: 360px; }
}

/* TOPBAR */
.pm-topbar {
  background: #2d1f4a; color: #fff; font-size: 11px; font-weight: 500;
  padding: 6px 0;
}
.pm-topbar__inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 4px 10px;
}
.pm-topbar__left { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pm-topbar__center { flex: 1; text-align: center; font-size: 11px; color: #fff; white-space: nowrap; }
.pm-topbar__right { display: flex; align-items: center; }
.pm-topbar__badge {
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
  background: rgba(255,255,255,.08); border-radius: 4px; padding: 2px 7px; font-size: 11px;
}
.pm-topbar__badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.pm-topbar__badge18 {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15); border-radius: 4px; padding: 2px 7px;
  font-size: 11px; font-weight: 700; color: #fff;
}
@media (max-width: 639px) {
  .pm-topbar__inner { justify-content: center; }
  .pm-topbar__left { justify-content: center; }
  .pm-topbar__right { display: none; }
}

/* HEADER */
.pm-header { background: #7b2cbf; position: sticky; top: 0; z-index: 50; }
.pm-header__inner {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  flex-wrap: nowrap; min-width: 0;
}
.pm-header__logo { flex-shrink: 0; display: flex; align-items: center; min-width: 0; }
.pm-header__logo img { height: 48px; width: auto; max-width: 160px; object-fit: contain; }
@media (min-width: 760px) { .pm-header__logo img { height: 48px; max-width: none; } }

.pm-header__search {
  display: flex; flex: 1; min-width: 0;
  align-items: center; position: relative;
}
.pm-header__search svg {
  position: absolute; left: 12px; width: 16px; height: 16px; color: #9b93be; pointer-events: none;
}
.pm-header__search input {
  width: 100%; background: #fff; border: none;
  border-radius: 8px; padding: 10px 14px 10px 36px; font-size: 13px; color: #333;
  font-family: 'Inter', sans-serif; outline: none;
}
.pm-header__search input::placeholder { color: #888; }
.pm-header__search input:focus { box-shadow: 0 0 0 2px rgba(255,255,255,.5); }

.pm-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.pm-btn { display: inline-flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; border-radius: 8px; cursor: pointer; transition: opacity .15s, transform .1s; text-decoration: none; white-space: nowrap; max-width: 100%; border: none; }
.pm-btn:hover { opacity: .88; }
.pm-btn--login { background: #00a651; border: 2px solid #00a651; color: #fff; padding: 10px 16px; font-size: 13px; }
.pm-btn--register { background: #ffd000; color: #1a1f4f; padding: 10px 20px; font-size: 14px; font-weight: 800; border-radius: 8px; }
.pm-btn--green { background: var(--pm-green); color: #fff; }
.pm-btn--yellow { background: var(--pm-accent-2); color: #1a1f4f; }
.pm-btn--lg { padding: 14px 28px; font-size: 15px; }
@media (min-width: 760px) {
  .pm-header__actions { gap: 10px; }
}
@media (max-width: 479px) { .pm-header__actions .pm-btn--login { display: none; } }

.pm-header__burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.pm-header__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
@media (max-width: 1023px) { .pm-header__burger { display: flex; } }

/* SUBNAV */
.pm-subnav { background: #fff; border-bottom: 1px solid #e4ddf7; overflow-x: auto; scrollbar-width: none; }
.pm-subnav::-webkit-scrollbar { display: none; }
.pm-subnav__list { display: flex; align-items: center; justify-content: center; gap: 0; min-width: max-content; padding: 0 8px; }
.pm-subnav__list a {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 13px; font-size: 12px;
  font-weight: 700; color: #3a2d6e; white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s; text-transform: uppercase; font-style: italic;
  letter-spacing: .03em;
}
.pm-subnav__list a svg { width: 20px; height: 20px; color: #7b2cbf; flex-shrink: 0; }
.pm-subnav__list a:hover, .pm-subnav__list a.active { color: #7b2cbf; border-bottom-color: #7b2cbf; }
.pm-subnav__list a:hover svg, .pm-subnav__list a.active svg { color: #7b2cbf; }

/* HERO CAROUSEL */
.pm-hero { position: relative; overflow: hidden; min-height: 500px; }
.pm-hero__slides { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); height: 100%; }
.pm-hero__slide {
  min-width: 100%; position: relative; display: flex; align-items: center;
  min-height: 500px; padding-block: 60px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.pm-hero__slide--1 { background-image: linear-gradient(to left, rgba(30,8,80,.72) 45%, rgba(30,8,80,.2)), url('/img/banner1.jpg'); }
.pm-hero__slide--2 { background-image: linear-gradient(to left, rgba(20,5,60,.75) 45%, rgba(20,5,60,.2)), url('/img/banner2.jpg'); }
.pm-hero__slide--3 { background-image: linear-gradient(to left, rgba(50,10,100,.72) 45%, rgba(50,10,100,.2)), url('/img/banner3.jpg'); }

.pm-hero__inner { margin-left: auto; min-width: 0; max-width: 520px; text-align: right; }
.pm-hero h2 { font-size: clamp(32px, 5.5vw, 58px); font-weight: 900; color: #fff; margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.6); font-style: italic; }
.pm-hero__lead { font-size: clamp(16px, 2.5vw, 22px); color: rgba(255,255,255,.92); margin-bottom: 28px; font-style: italic; }
.pm-hero__ctas { display: flex; justify-content: flex-end; }
.pm-hero__ctas .pm-btn--yellow { border-radius: 8px; padding: 14px 32px; font-size: 15px; }
@media (max-width: 639px) {
  .pm-hero__inner { text-align: center; max-width: 100%; margin: 0; padding: 36px 0 44px; }
  .pm-hero__ctas { justify-content: center; }
  .pm-hero__ctas .pm-btn--lg { padding: 13px 18px; font-size: 13.5px; }
}

.pm-hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.18);
  border: none; border-radius: 50%; width: 44px; height: 44px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; color: #fff; transition: background .15s; z-index: 3;
}
.pm-hero__arrow:hover { background: rgba(255,255,255,.32); }
.pm-hero__arrow--prev { left: 14px; }
.pm-hero__arrow--next { right: 14px; }
.pm-hero__arrow svg { width: 18px; height: 18px; }

.pm-hero__dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.pm-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s, transform .2s; padding: 0; }
.pm-hero__dot.active { background: #fff; transform: scale(1.3); }

/* BREADCRUMBS */
.pm-breadcrumbs { padding-block: 12px; }
.pm-breadcrumbs__list { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--pm-text-muted); flex-wrap: wrap; }
.pm-breadcrumbs__list a { color: var(--pm-accent-2); }
.pm-breadcrumbs__list a:hover { text-decoration: underline; }
.pm-breadcrumbs__sep { opacity: .5; }

/* SECTION HEADERS */
.pm-section-head { text-align: center; margin-bottom: 32px; }
.pm-section-head h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.pm-section-head p { color: var(--pm-text-muted); font-size: 15px; }

/* ===== OFFERS LISTING ===== */
.pm-offers { padding-block: 48px 56px; }
.pm-offers__grid {
  display: flex; gap: 20px; align-items: stretch; justify-content: center; flex-wrap: wrap;
}
.pm-offers__card {
  background: var(--pm-bg-card); border-radius: var(--pm-radius); border: 1px solid var(--pm-border);
  padding: 24px 20px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative; overflow: hidden; flex: 1 1 300px; max-width: 360px; text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.pm-offers__card:hover { border-color: var(--pm-accent); box-shadow: var(--pm-shadow); }
.pm-offers__card--top {
  border-color: var(--pm-accent-2); transform: scale(1.02); padding-top: 36px;
  box-shadow: 0 8px 32px rgba(123,44,191,.35);
}
@media (max-width: 759px) { .pm-offers__card--top { transform: none; order: -1; } }

.pm-offers__overlay-link {
  position: absolute; inset: 0; font-size: 0; color: transparent; z-index: 1;
}
.pm-offers__card > *:not(.pm-offers__overlay-link) { position: relative; z-index: 2; }
.pm-offers__card * { pointer-events: none; }
.pm-offers__overlay-link, .pm-offers__review-link { pointer-events: auto !important; cursor: pointer; }
.pm-offers__review-link { position: relative; z-index: 3; }

.pm-offers__ribbon {
  position: absolute !important; top: 30px; right: -44px; width: 175px;
  transform: rotate(45deg); background: var(--pm-accent-2); color: #1a1f4f;
  font-size: 12px; font-weight: 900; padding: 7px 0; z-index: 4; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2); pointer-events: none !important;
}

.pm-offers__logo { width: 80px; height: 80px; border-radius: 12px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pm-offers__logo img { width: 72px; height: 72px; object-fit: contain; }
.pm-offers__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; color: #1a1f4f; }
.pm-offers__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pm-offers__tag { background: rgba(123,44,191,.25); color: #7b2cbf; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }
.pm-offers__tag--hot { background: rgba(255,208,0,.2); color: var(--pm-accent-2); }
.pm-offers__rating { display: flex; align-items: center; gap: 6px; color: var(--pm-accent-2); font-weight: 700; font-size: 14px; }
.pm-offers__stars { display: flex; gap: 2px; }
.pm-offers__stars span { font-size: 14px; }
.pm-offers__bonus-text { font-size: 15px; font-weight: 800; color: var(--pm-accent-2); font-family: 'Plus Jakarta Sans', sans-serif; }
.pm-offers__usps { text-align: left; width: 100%; }
.pm-offers__usps li { font-size: 13px; color: var(--pm-text-muted); padding: 3px 0; display: flex; align-items: flex-start; gap: 7px; }
.pm-offers__usps li::before { content: '✓'; color: var(--pm-green); font-weight: 700; flex-shrink: 0; }

.pm-offers__social-proof { font-size: 13px; color: #7b2cbf; display: flex; align-items: center; gap: 5px; justify-content: center; }
.pm-offers__timer { font-size: 12px; color: var(--pm-text-muted); text-align: center; }
.pm-offers__timer strong { font-family: monospace; font-size: 15px; color: var(--pm-accent-2); }

.pm-offers__cta-row { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.pm-offers__cta { display: block; width: 100%; padding: 13px; border-radius: 999px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 14px; text-align: center; text-transform: uppercase; letter-spacing: .04em; }
.pm-offers__card--left .pm-offers__cta, .pm-offers__card--right .pm-offers__cta { background: var(--pm-green); color: #fff; }
.pm-offers__card--top .pm-offers__cta { background: var(--pm-accent-2); color: #1a1f4f; }

.pm-offers__review-link { font-size: 13px; color: var(--pm-text-muted); text-decoration: underline; text-underline-offset: 3px; }
.pm-offers__urgency { font-size: 11px; color: var(--pm-text-muted); }
.pm-offers__aggregate { text-align: center; margin-top: 20px; font-size: 14px; color: var(--pm-text-muted); }
.pm-offers__aggregate strong { color: var(--pm-accent-2); }

/* ===== CONTENT ===== */
.pm-content { padding-block: 40px; }
.pm-content h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.pm-content h3 { font-size: 18px; font-weight: 700; color: #7b2cbf; margin: 24px 0 10px; }
.pm-content p { color: var(--pm-text-muted); line-height: 1.75; margin-bottom: 14px; }
.pm-content ul { margin: 12px 0 18px 4px; }
.pm-content ul li { color: var(--pm-text-muted); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.pm-content ul li::before { content: '→'; color: var(--pm-accent-2); flex-shrink: 0; }
.pm-content blockquote { border-left: 3px solid var(--pm-accent); padding: 14px 18px; background: var(--pm-bg-raised); border-radius: 0 var(--pm-radius) var(--pm-radius) 0; color: #7b2cbf; font-style: italic; margin: 20px 0; font-size: 15px; }
.pm-table-wrap { overflow-x: auto; margin: 20px 0; }
.pm-content table { border-collapse: collapse; width: 100%; min-width: 480px; }
.pm-content th { background: var(--pm-bg-raised); color: var(--pm-accent-2); font-size: 13px; font-weight: 700; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--pm-border); }
.pm-content td { padding: 10px 14px; font-size: 13px; color: var(--pm-text-muted); border-bottom: 1px solid rgba(46,37,88,.5); }
.pm-content tr:hover td { background: rgba(123,44,191,.06); }

/* ===== SLOTS LISTING ===== */
.pm-slots { padding-block: 48px; }
.pm-slots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .pm-slots__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 960px) { .pm-slots__grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }

.pm-slots__grid > div {
  position: relative; aspect-ratio: 3/4; border-radius: var(--pm-radius);
  overflow: hidden; border: 1px solid var(--pm-border);
}
.pm-slots__grid > div:hover { border-color: var(--pm-accent); }
.pm-slots__tile {
  position: absolute; inset: 0; display: block; width: 100%; height: 100%;
  border: 0; background: transparent; aspect-ratio: auto; border-radius: 0;
}
.pm-slots__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-slots__top-row {
  position: absolute; top: 8px; left: 8px; right: 8px; display: flex;
  justify-content: space-between; align-items: flex-start; pointer-events: none;
}
.pm-slots__meta-row {
  position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,5,30,.92) 60%, transparent);
  padding: 28px 8px 8px; pointer-events: none;
}
.pm-slots__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 12px; color: #fff; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-slots__badges { display: flex; gap: 4px; flex-wrap: wrap; }
.pm-slots__badge { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.pm-slots__badge--rtp { background: rgba(0,166,81,.8); color: #fff; }
.pm-slots__badge--vol { background: rgba(123,44,191,.8); color: #fff; }
.pm-slots__badge--hot { background: #ff4444; color: #fff; }
.pm-slots__badge--win { background: rgba(255,208,0,.8); color: #1a1f4f; }
.pm-slots__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; background: rgba(255,208,0,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; pointer-events: none; }
.pm-slots__play svg { width: 16px; height: 16px; color: #1a1f4f; }
.pm-slots__grid > div:hover .pm-slots__play { opacity: 1; }
.pm-slots__top-row, .pm-slots__meta-row, .pm-slots__overlay, .pm-slots__play-icon { pointer-events: none; }

/* ===== AUTHOR ===== */
.pm-author { padding-block: 40px; }
.pm-author__card { background: var(--pm-bg-raised); border-radius: var(--pm-radius); border: 1px solid var(--pm-border); padding: 28px; display: flex; gap: 24px; align-items: flex-start; }
@media (max-width: 640px) { .pm-author__card { flex-direction: column; align-items: center; text-align: center; } }
.pm-author__photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--pm-accent); }
.pm-author__name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.pm-author__role { font-size: 13px; color: var(--pm-text-muted); margin-bottom: 10px; }
.pm-author__bio { font-size: 14px; color: var(--pm-text-muted); line-height: 1.7; }
.pm-author__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 13px; color: var(--pm-accent-2); text-decoration: underline; pointer-events: auto; }
.pm-author__badge { display: inline-block; margin-top: 10px; background: rgba(0,166,81,.15); color: var(--pm-green); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(0,166,81,.3); }

/* ===== FAQ ===== */
.pm-faq { padding-block: 40px 56px; }
.pm-faq__list { display: flex; flex-direction: column; gap: 12px; }
.pm-faq__item { background: var(--pm-bg-raised); border: 1px solid var(--pm-border); border-radius: var(--pm-radius); overflow: hidden; }
.pm-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px; color: #1a1f4f; list-style: none; user-select: none;
}
.pm-faq__q::-webkit-details-marker { display: none; }
.pm-faq__q::after { content: '+'; font-size: 20px; color: var(--pm-accent-2); flex-shrink: 0; transition: transform .2s; }
details[open] .pm-faq__q::after { transform: rotate(45deg); }
.pm-faq__a { padding: 0 20px 18px; font-size: 14px; color: var(--pm-text-muted); line-height: 1.7; }

/* ===== PAYMENTS ===== */
.pm-payments { padding-block: 32px; background: #1a1f4f; }
.pm-payments__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.pm-payments__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-payments__label { background: #fff; border-radius: 6px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: #1a1f4f; white-space: nowrap; }

/* ===== RELATED ===== */
.pm-related { padding-block: 32px; }
.pm-related h3 { font-size: 16px; font-weight: 700; color: #7b2cbf; margin-bottom: 14px; }
.pm-related__list { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-related__list a { font-size: 13px; color: var(--pm-accent-2); border: 1px solid var(--pm-border); border-radius: 999px; padding: 5px 14px; transition: background .15s; }
.pm-related__list a:hover { background: rgba(123,44,191,.2); }

/* ===== MOBILE MENU OVERLAY ===== */
.pm-overlay {
  display: none; position: fixed; inset: 0; background: rgba(10,5,30,.97); z-index: 100;
  flex-direction: column; overflow-y: auto; padding: 20px 24px 40px;
}
.pm-overlay.is-open { display: flex; }
.pm-overlay__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.pm-overlay__logo { height: 44px; width: auto; object-fit: contain; display: block; margin: 0 auto; }
.pm-overlay__close { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; padding: 4px; }
.pm-overlay__nav { display: flex; flex-direction: column; gap: 4px; }
.pm-overlay__nav a { padding: 14px 4px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17px; color: #1a1f4f; border-bottom: 1px solid var(--pm-border); display: block; }
.pm-overlay__nav a:hover { color: var(--pm-accent-2); }
.pm-overlay__actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.pm-overlay__actions .pm-btn { width: 100%; padding: 14px; font-size: 15px; text-align: center; justify-content: center; }

/* ===== FOOTER ===== */
.pm-footer { background: #1a1f4f; padding: 48px 0 24px; }
.pm-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--pm-border);
}
.pm-footer__brand { grid-column: 1 / -1; }
.pm-footer__brand-logo { height: 80px; width: auto; object-fit: contain; margin-bottom: 14px; display: block; }
.pm-footer__brand-desc { font-size: 13px; color: var(--pm-text-muted); line-height: 1.7; margin-bottom: 14px; max-width: 340px; }
.pm-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.pm-footer__social { width: 36px; height: 36px; background: var(--pm-bg-raised); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--pm-text-muted); border: 1px solid var(--pm-border); transition: color .15s, border-color .15s; }
.pm-footer__social:hover { color: var(--pm-accent-2); border-color: var(--pm-accent-2); }
.pm-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

.pm-footer__col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 800; color: var(--pm-accent-2); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.pm-footer__col ul li { margin-bottom: 7px; }
.pm-footer__col ul li a { font-size: 13px; color: var(--pm-text-muted); transition: color .15s; }
.pm-footer__col ul li a:hover { color: #e8e2f5; }

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

.pm-footer__bottom { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-start; justify-content: space-between; }
.pm-footer__pay { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pm-footer__rg { font-size: 12px; color: var(--pm-text-muted); max-width: 600px; line-height: 1.6; }
.pm-footer__copy { font-size: 12px; color: rgba(155,147,190,.5); margin-top: 14px; text-align: center; width: 100%; }
.pm-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 14px; justify-content: center; }
.pm-footer__legal a { font-size: 12px; color: rgba(155,147,190,.6); }
.pm-footer__legal a:hover { color: var(--pm-text-muted); }
.pm-footer__legal-sep { color: rgba(155,147,190,.3); font-size: 12px; }

@media (max-width: 599px) {
  .pm-footer { padding: 28px 0 16px; font-size: 12px; }
  .pm-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .pm-footer__col ul li { margin-bottom: 4px; }
  .pm-footer__col ul li a { font-size: 12px; }
  .pm-footer__brand-logo { max-height: 80px; margin-bottom: 10px; }
  .pm-footer__brand-desc { font-size: 12px; margin-bottom: 10px; }
  .pm-footer__pay { gap: 8px 12px; }
  .pm-footer__pay .pm-payments__label { font-size: 10px; padding: 3px 8px; }
}

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

/* SITEMAP PAGE */
.pm-sitemap { padding-block: 48px; }
.pm-sitemap h2 { font-size: 22px; font-weight: 800; color: var(--pm-accent-2); margin: 32px 0 16px; }
.pm-sitemap__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.pm-sitemap__card { background: var(--pm-bg-raised); border: 1px solid var(--pm-border); border-radius: var(--pm-radius); padding: 16px 18px; }
.pm-sitemap__card a { font-weight: 700; color: var(--pm-accent-2); font-size: 14px; }
.pm-sitemap__card a:hover { text-decoration: underline; }
.pm-sitemap__card p { font-size: 12px; color: var(--pm-text-muted); margin-top: 4px; }
