:root {
  /* -- CONFIGURE: Brand Colors ---------- */
  --mp-primary: #1A3E2F;
  --mp-primary-hover: #122b21;
  --mp-secondary: #2C4A3E;
  --mp-accent: #f5f5f5;

  /* -- CONFIGURE: Backgrounds ---------- */
  --mp-bg: #ffffff;
  --mp-bg-light: #f5f6f8;
  --mp-text: #2C3531;
  --mp-text-light: #5B635E;
  --mp-white: #ffffff;

  /* -- CONFIGURE: Images --------------- */
  --mp-hero-image: url('/SiteSpecific/CustomContent/myTrekitt/placeholder.webp');

  /* -- Component Tokens ---------------- */
  --mp-radius: 0px;
  --mp-radius-lg: calc(var(--mp-radius) * 1.5);
  --mp-radius-md: var(--mp-radius);
  --mp-radius-button: calc(var(--mp-radius) * 0.8);
  --mp-border-thin: 1px solid rgba(44, 53, 49, 0.1);
  --mp-border-white: 1px solid rgba(255, 255, 255, 0.3);
  --mp-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   SCOPE & BASE
========================================= */

.memberPage {
  background: linear-gradient(var(--mp-secondary), var(--mp-primary));
}

#trekitt-app {

  color: var(--mp-text);

  min-height: 400px;

  padding: 0;

  position: relative;

  background: linear-gradient(var(--mp-primary-hover), var(--mp-primary));
}

[v-cloak] {
  display: none;
}

/* =========================================
   DEV CONTROLS
========================================= */

.dev-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px;
  border-radius: var(--mp-radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dev-controls h4 {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.dev-controls button {
  padding: 8px 12px;
  border: none;
  background: var(--mp-primary);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: var(--mp-transition);
}

.dev-controls button:hover {
  background: var(--mp-primary-hover);
}

/* =========================================
   LOADING STATE
========================================= */

.mp-LoadingHero {
  justify-content: center;
  text-align: center;
}

.mp-LoadingHero-Inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadePulse 2s infinite ease-in-out;
}

.mp-Spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--mp-white);
  border-radius: 50%;
  animation: spinner 1s linear infinite;
}

.mp-LoadingHero-Text {

  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mp-white);
  margin: 0;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadePulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}


/* =========================================
   EDITORIAL SUPER HERO (The Fixed Top Section)
========================================= */

.mp-EditorialHero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-color: var(--mp-primary);
  background-image: var(--mp-hero-image);
  background-size: cover;
  background-position: center;
  color: var(--mp-white);
  padding: 3rem 2rem;
  overflow: hidden;
}

.mp-EditorialHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.mp-EditorialHero-Layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.mp-EditorialHero-Left {
  flex: 1;
  max-width: 700px;
}

.mp-EditorialHero-Left h1 {

  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  color: var(--mp-bg);
}

.mp-EditorialHero-Left p {

  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.mp-EditorialHero-Left .btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: var(--mp-border-white);
  border-radius: var(--mp-radius);
  color: var(--mp-white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--mp-transition);
}

.mp-EditorialHero-Left .btn-glass:hover {
  background: rgba(255,255,255,0.15);
  color: var(--mp-white);
}

.mp-EditorialHero-Right {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mp-StatItem {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: var(--mp-border-white);
  border-radius: var(--mp-radius);
  backdrop-filter: blur(5px);
  transition: var(--mp-transition);
}

.mp-StatItem:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mp-StatItem-Label {

  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.mp-StatDivider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0;
}

.mp-StatItem-Value {

  font-size: 2rem;
  font-weight: 400;
  color: var(--mp-white);
}

.mp-StatItem-Sub {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}

/* =========================================
   CMS TEXT BLOCK
========================================= */

.mp-CmsBlock {
  width: 100%;
  padding: 3rem 1rem;
  min-height: fit-content;
  display: flex;
  align-items: center;
}

.mp-CmsBlock-Inner {
  max-width: 1400px;
  margin: 0 auto;
  color: var(--mp-white);
}

/* Classes to be used INSIDE the CMS Editor */
.mp-CmsBlock-Grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.mp-CmsBlock-Title {

  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--mp-white);
  margin: 0;
}

.mp-CmsBlock-Text {

  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.mp-CmsBlock-Text p {
  margin-bottom: 1.5rem;
}

.mp-CmsBlock-Text p:last-child {
  margin-bottom: 0;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.4s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

/* =========================================
   mp- SECTION TITLES (Self-contained)
========================================= */

.mp-SectionTitle {
  text-align: center;
  padding: 20px 0 10px;
}

.mp-SectionTitle h2 {
  margin: 0 0 10px;

  color: var(--mp-text);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mp-SectionTitle p {
  margin: 0;

  color: var(--mp-text-light);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* White variant (for dark/green bg sections) */
.mp-SectionTitle.wht h2 {
  color: var(--mp-white);
}

.mp-SectionTitle.wht p {
  color: rgba(255, 255, 255, 0.7);
}



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .mp-EditorialHero-Layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .mp-EditorialHero {
    min-height: auto;
    padding: 6rem 2rem 4rem;
  }

  .mp-EditorialHero-Left h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .mp-EditorialHero-Right {
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .mp-CmsBlock-Grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #Trekitt-app {
    padding: 0;
  }

  .mp-EditorialHero-Right {
    flex-direction: column;
  }
}

/* =========================================
   BANNER COMPONENTS
========================================= */

.mp-HomepageTitles.wht {
  color: #fff;
}

.mp-HomepageTitles.blk {
  color: #252525;
}

.mp-HomepageTitles {
  display: flex !important;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: var(--bannerGap) !important;
  padding: clamp(0.75rem, 1.5vw, 1.25rem) !important;
  text-align: left;
  padding-top: clamp(0.75rem, 1.5vw, 1.25rem) !important;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 2rem;
}

.mp-HomepageTitles h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0;
  margin-bottom: 0;
}

.bannerDesc:empty,
.bannerTitle:empty,
.bannerView:empty {
  display: none !important;
}

/* -----------------------------------------------------
   LUX CARDS
   Full-bleed portrait cards - photo fills card, text
   overlaid at base with gradient fade.
   DOM order: .bannerTxtCtr (first) then .photo (second)
   Both positioned absolute inside the <a> container.
----------------------------------------------------- */

.mp-BannerLuxCards {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem;
}

/* Three-column grid */
.mp-BannerLuxCards > div {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 !important;
}

/* Card - sets the aspect ratio and stacking context */
.mp-BannerLuxCards > div > a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--mp-radius-lg);
  aspect-ratio: 3 / 4;
  text-decoration: none;
}

/* -- Photo layer -- */
.mp-BannerLuxCards > div > a .photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Each responsive image div fills the photo container.
   Override platform's padding-bottom aspect-ratio trick. */
.mp-BannerLuxCards > div > a .photo > div {
  position: absolute !important;
  inset: 0;
  padding-bottom: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mp-BannerLuxCards > div > a .photo > div::after {
  display: none !important;
  padding-bottom: 0 !important;
}

/* Ken Burns zoom on hover */
.mp-BannerLuxCards > div > a:hover .photo > div {
  transform: scale(1.07);
}

/* Gradient overlay - lives inside .photo, above the image */
.mp-BannerLuxCards > div > a .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(8, 24, 16, 0.96) 0%,
    rgba(8, 24, 16, 0.55) 38%,
    rgba(8, 24, 16, 0.12) 65%,
    transparent 100%
  );
  transition: opacity 0.5s ease;
}

.mp-BannerLuxCards > div > a:hover .photo::after {
  opacity: 0.85;
}

/* -- Text layer - sits above .photo gradient -- */
.mp-BannerLuxCards > div > a .bannerTxtCtr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: none !important;
  border-radius: 0;
  height: auto;
  width: auto;
  top: auto;
}

.mp-BannerLuxCards > div > a .bannerTxtCtr span {
  background: none !important;
  padding: 0 !important;
  margin: 0;
  color: var(--mp-white);
  letter-spacing: normal;
  text-transform: none;
}

/* Category label above title */
.mp-BannerLuxCards > div > a .bannerTxtCtr span.bannerDesc {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  order: -1;
  text-align: left;
}

.mp-BannerLuxCards > div > a .bannerTxtCtr span.bannerTitle {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-family: 'citrfontbold';
  line-height: 1.3;
  text-align: left;
}

/* Subtle arrow CTA */
.mp-BannerLuxCards > div > a .bannerTxtCtr span.bannerView {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  color: rgba(255,255,255,0.8) !important;
  border: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  background: transparent !important;
  padding: 0 !important;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(4px);
}

.mp-BannerLuxCards > div > a .bannerTxtCtr span.bannerView::after {
  content: '\00a0\2192';
}

.mp-BannerLuxCards > div > a:hover .bannerTxtCtr span.bannerView {
  opacity: 1;
  transform: translateY(0);
}

/* Corner index numbers */
.mp-BannerLuxCards > div > a::before {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  z-index: 4;
  font-family: 'citrfontbold';
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.25);
  pointer-events: none;
}

.mp-BannerLuxCards > div > a:nth-child(1)::before { content: '01'; }
.mp-BannerLuxCards > div > a:nth-child(2)::before { content: '02'; }
.mp-BannerLuxCards > div > a:nth-child(3)::before { content: '03'; }

/* Responsive */
@media screen and (max-width: 1024px) {
  .mp-BannerLuxCards > div {
    grid-template-columns: 1fr;
  }

  .mp-BannerLuxCards > div > a {
    aspect-ratio: 16 / 7;
  }

  .mp-BannerLuxCards > div > a .bannerTxtCtr span.bannerView {
    opacity: 0.7;
    transform: none;
  }
}

@media screen and (max-width: 640px) {
  .mp-BannerLuxCards {
    padding: 1.5rem 1.25rem 1rem;
  }

  .mp-BannerLuxCards > div {
    gap: 1rem;
  }

  .mp-BannerLuxCards > div > a {
    aspect-ratio: 4 / 3;
  }
}

/* -----------------------------------------------------
   ALTERNATING BANNERS
   Cinema-wide rows - photo fills entire row, text floats
   as an absolute panel left/right with alternating sides.
   DOM order: .bannerTxtCtr (first) then .photo (second).
----------------------------------------------------- */

.mp-BannerAlternating {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 3rem;
}


.mp-BannerAlternating > div {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 !important;
}

/* Each row - sets the aspect ratio and stacking context */
.mp-BannerAlternating > div > a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--mp-radius-lg);
  aspect-ratio: 21 / 8;
  text-decoration: none;
}

/* -- Photo layer -- */
.mp-BannerAlternating > div > a .photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.mp-BannerAlternating > div > a .photo > div {
  position: absolute !important;
  inset: 0;
  padding-bottom: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mp-BannerAlternating > div > a .photo > div::after {
  display: none !important;
  padding-bottom: 0 !important;
}

.mp-BannerAlternating > div > a:hover .photo > div {
  transform: scale(1.04);
}

/* Directional gradient - left side dark, right open */
.mp-BannerAlternating > div > a .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(8, 24, 16, 0.92) 0%,
    rgba(8, 24, 16, 0.6) 32%,
    rgba(8, 24, 16, 0.15) 58%,
    transparent 80%
  );
}

/* Even rows: gradient from right */
.mp-BannerAlternating > div > a:nth-child(even) .photo::after {
  background: linear-gradient(
    to left,
    rgba(8, 24, 16, 0.92) 0%,
    rgba(8, 24, 16, 0.6) 32%,
    rgba(8, 24, 16, 0.15) 58%,
    transparent 80%
  );
}

/* -- Text panel - absolute, centred vertically, left side -- */
.mp-BannerAlternating > div > a .bannerTxtCtr {
  position: absolute;
  top: 50%;
  left: clamp(2rem, 5vw, 4rem);
  right: auto;
  transform: translateY(-50%);
  z-index: 3;
  max-width: min(460px, 44%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: none !important;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0;
  text-align: left;
}

/* Even rows: text panel anchors to right side */
.mp-BannerAlternating > div > a:nth-child(even) .bannerTxtCtr {
  left: auto;
  right: clamp(2rem, 5vw, 4rem);
  align-items: flex-end;
  text-align: right;
}

.mp-BannerAlternating > div > a .bannerTxtCtr span {
  background: none !important;
  padding: 0 !important;
  margin: 0;
  color: var(--mp-white);
  letter-spacing: normal;
  text-transform: none;
}

/* Eyebrow label */
.mp-BannerAlternating > div > a .bannerTxtCtr span.bannerDesc {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  order: -1;
}

.mp-BannerAlternating > div > a .bannerTxtCtr span.bannerTitle {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-family: 'citrfontbold';
  line-height: 1.3;
}

/* Glass CTA button */
.mp-BannerAlternating > div > a .bannerTxtCtr span.bannerView {
  display: inline-block;
  width: fit-content;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mp-white) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: var(--mp-radius-button) !important;
  padding: 10px 26px !important;
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(10px);
  transition: var(--mp-transition);
  margin-top: .5rem;
}

.mp-BannerAlternating > div > a:hover .bannerTxtCtr span.bannerView {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.65) !important;
}

/* Responsive - collapse to bottom-anchored text overlay */
@media screen and (max-width: 1024px) {
  .mp-BannerAlternating > div > a {
    aspect-ratio: 16 / 7;
  }

  .mp-BannerAlternating > div > a .bannerTxtCtr,
  .mp-BannerAlternating > div > a:nth-child(even) .bannerTxtCtr {
    left: clamp(1.5rem, 4vw, 2.5rem);
    right: clamp(1.5rem, 4vw, 2.5rem);
    top: auto;
    bottom: clamp(1.5rem, 3vw, 2rem);
    transform: none;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .mp-BannerAlternating > div > a .photo::after,
  .mp-BannerAlternating > div > a:nth-child(even) .photo::after {
    background: linear-gradient(
      to top,
      rgba(8, 24, 16, 0.92) 0%,
      rgba(8, 24, 16, 0.45) 45%,
      transparent 75%
    );
  }
}

@media screen and (max-width: 640px) {
  .mp-BannerAlternating {
    padding: 1rem 1.25rem 2rem;
  }

  .mp-BannerAlternating > div {
    gap: 1rem;
  }

  .mp-BannerAlternating > div > a {
    aspect-ratio: 4 / 3;
  }

  .mp-BannerAlternating > div > a .bannerTxtCtr span.bannerTitle {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }
}

/* -- SALESFIRE PRODUCTS ------------------------------- */

.mp-SalesfireProducts {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

@media screen and (max-width: 640px) {
  .mp-SalesfireProducts {
    padding: 1rem;
  }
}

/* =========================================
   TAB BAR
========================================= */

.mp-TabBar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 43, 33, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mp-TabBar-Inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: .5rem 2rem;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.mp-TabBar-Inner::-webkit-scrollbar {
  display: none;
}

.mp-TabBar-Item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.mp-TabBar-Item:hover {
  color: rgba(255, 255, 255, 0.75);
}

.mp-TabBar-Item.active {
  color: var(--mp-white);
  border-bottom-color: var(--mp-white);
}

/* Amber dot - indicates ending-soon offers on Star Buys tab */
.mp-TabBar-Dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: liveDotPulse 1.5s ease-in-out infinite;
}

/* =========================================
   TAB PANELS
========================================= */

.mp-TabPanel {
  min-height: 50vh;
  scroll-margin-top: 52px;
}

.mp-TabPanel--flush {
  padding: 0;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ensure GSAP-animated elements don't flash layout before JS runs */
.mp-BenefitCard,
.mp-FaqItem,
.mp-AccountStat,
.mp-AccountProfile,
.mp-LoyaltyCard,
.mp-CollectionCard,
.mp-OfferCard,
.mp-StarBuys-Block,
.mp-CmsBlock,
.mp-BannerLuxCards,
.mp-BannerAlternating,
.mp-SalesfireProducts,
.mp-FaqLayout-Image {
  will-change: transform, opacity;
}

/* =========================================
   COLLECTIONS
========================================= */

.mp-Collections {
  padding: 5rem 2rem;
}

.mp-Collections-Inner {
  max-width: 1400px;
  margin: 0 auto;
}

.mp-Collections-Loading {
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}

.mp-Collections-Empty p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  font-weight: 300;
  text-align: center;
  padding: 3rem 0;
}

.mp-CollectionGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mp-CollectionCard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--mp-white);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--mp-transition);
  overflow: hidden;
}

.mp-CollectionCard:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mp-CollectionCard-Image {
  overflow: hidden;
}

.mp-CollectionCard-Image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mp-CollectionCard:hover .mp-CollectionCard-Image img {
  transform: scale(1.04);
}

.mp-CollectionCard-Body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(1.25rem, 2vw, 2rem);
  flex: 1;
}

.mp-CollectionCard-Title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.mp-CollectionCard-Desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  flex: 1;
}

.mp-CollectionCard-Cta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-CollectionCard:hover .mp-CollectionCard-Cta {
  color: var(--mp-white);
}

.mp-Collections-More {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.mp-Collections-More .btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: var(--mp-border-white);
  color: var(--mp-white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--mp-transition);
}

.mp-Collections-More .btn-glass:hover {
  background: rgba(255,255,255,0.15);
  color: var(--mp-white);
}

@media screen and (max-width: 1024px) {
  .mp-CollectionGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .mp-CollectionGrid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================
   MY ACCOUNT TAB
========================================= */

.mp-Account {
  padding: 5rem 2rem;
}

.mp-Account-Inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Profile header */
.mp-AccountProfile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: var(--mp-border-white);
}

.mp-AccountProfile-Left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mp-AccountProfile-Name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--mp-white);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mp-AccountVip {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.5);
  padding: 0.3em 0.75em;
  border-radius: 2em;
}

.mp-AccountProfile-Meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.mp-AccountProfile-Sep {
  opacity: 0.4;
}

/* Stats grid */
.mp-AccountStats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mp-radius);
  overflow: hidden;
}

.mp-AccountStat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--mp-transition);
}

.mp-AccountStat:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mp-AccountStat-Label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.mp-AccountStat-Value {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--mp-white);
  line-height: 1;
}

.mp-AccountStat-Value--sm {
  font-size: 1.4rem;
}

.mp-AccountStat-Unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mp-AccountStat-Equiv {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Loyalty card */
.mp-LoyaltyCard {
  max-width: 480px;
}

.mp-LoyaltyCard-Inner {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--mp-radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.mp-LoyaltyCard-Inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.mp-LoyaltyCard-Brand {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.mp-LoyaltyCard-Number {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--mp-white);
  letter-spacing: 0.15em;
  font-family: var(--font-sans);
}

.mp-LoyaltyCard-Footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mp-LoyaltyCard-Name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mp-LoyaltyCard-Vip {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.25em 0.6em;
  border-radius: 2em;
}

@media (max-width: 1024px) {
  .mp-AccountStats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mp-AccountProfile {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .mp-AccountStats {
    grid-template-columns: 1fr 1fr;
  }

  .mp-Account {
    padding: 3rem 1.25rem;
  }
}

/* =========================================
   OVERVIEW - BENEFITS
========================================= */

.mp-Benefits {
  padding: 5rem 2rem 6rem;
  overflow: hidden;
}

.mp-Benefits-Inner {
  max-width: 1400px;
  margin: 0 auto;
}


.mp-Benefits-Grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mp-BenefitCard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.75rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: background 0.35s ease;
}

.mp-BenefitCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0);
  transition: background 0.35s ease;
}

.mp-BenefitCard:hover {
  background: rgba(255, 255, 255, 0.04);
}

.mp-BenefitCard:hover::before {
  background: rgba(255, 255, 255, 0.6);
}

.mp-BenefitCard-Num {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  font-variant-numeric: tabular-nums;
}

.mp-BenefitCard-Icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
  flex-shrink: 0;
  transition: color 0.35s ease;
}

.mp-BenefitCard:hover .mp-BenefitCard-Icon {
  color: var(--mp-white);
}

.mp-BenefitCard-Icon svg {
  width: 100%;
  height: 100%;
}

.mp-BenefitCard-Title {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mp-white);
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.mp-BenefitCard-Desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .mp-Benefits-Grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .mp-Benefits-Grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 440px) {
  .mp-Benefits-Grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FAQ ACCORDION
========================================= */

.mp-FaqSection {
  padding: 5rem 2rem;
}

.mp-FaqSection-Inner {
  max-width: 1400px;
  margin: 0 auto;
}

.mp-FaqLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mp-FaqLayout-Image {
  position: sticky;
  top: 80px;
}

.mp-FaqLayout-Image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.mp-FaqList {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-FaqItem {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-FaqItem summary {
  list-style: none;
}

.mp-FaqItem summary::-webkit-details-marker {
  display: none;
}

.mp-FaqItem-Q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--mp-white);
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  user-select: none;
}

.mp-FaqItem-Q:hover {
  color: rgba(255, 255, 255, 0.75);
}

.mp-FaqItem-Icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.mp-FaqItem-Icon::before,
.mp-FaqItem-Icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mp-FaqItem-Icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mp-FaqItem-Icon::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mp-FaqItem[open] .mp-FaqItem-Icon {
  color: var(--mp-white);
}

.mp-FaqItem[open] .mp-FaqItem-Icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.mp-FaqItem-A {
  padding-bottom: 1.5rem;
}

.mp-FaqItem-A p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

@media (max-width: 900px) {
  .mp-FaqLayout {
    grid-template-columns: 1fr;
  }

  .mp-FaqLayout-Image {
    position: static;
  }

  .mp-FaqLayout-Image img {
    aspect-ratio: 16 / 9;
  }
}

/* =========================================
   FAQ PRIVACY NOTICE
========================================= */

.mp-FaqPrivacy {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mp-FaqPrivacy-Body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  max-width: 700px;
}

.mp-FaqPrivacy-Links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.mp-FaqPrivacy-Link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mp-FaqPrivacy-Link:hover {
  color: var(--mp-white);
}

.mp-FaqPrivacy-Sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

/* =========================================
   STAR BUYS / OFFERS
========================================= */

.mp-StarBuys {
  padding: 5rem 2rem;
}

.mp-StarBuys-Inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* -- Section blocks --------------------- */
.mp-StarBuys-Block {
  margin-top: 3.5rem;
}

.mp-StarBuys-BlockHeading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}

.mp-StarBuys-BlockHeading--urgent {
  border-bottom-color: rgba(245, 158, 11, 0.25);
}

.mp-StarBuys-BlockTitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mp-white);
  font-weight: 400;
}

.mp-StarBuys-BlockHeading--urgent .mp-StarBuys-BlockTitle {
  color: #f59e0b;
}

.mp-StarBuys-BlockCount {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
}

/* Animated live dot */
.mp-StarBuys-LiveDot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: liveDotPulse 1.5s ease-in-out infinite;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* -- Grids ------------------------------ */
.mp-StarBuys-Grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Urgent grid - 2-col, more room for countdown */
.mp-StarBuys-Grid--urgent {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.15);
}

.mp-OfferCard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mp-white);
  text-decoration: none;
  transition: var(--mp-transition);
  min-height: 220px;
  min-width: 0;
  overflow: hidden;
}

.mp-OfferCard:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* Ending Soon - amber left accent + subtle pulse */
.mp-OfferCard--ending {
  background: rgba(245, 158, 11, 0.04);
  border-left: 2px solid #f59e0b !important;
  animation: endingSoonPulse 3s ease-in-out infinite;
}

.mp-OfferCard--ending:hover {
  background: rgba(245, 158, 11, 0.09);
}

@keyframes endingSoonPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(245, 158, 11, 0); }
  50% { box-shadow: inset 0 0 50px 0 rgba(245, 158, 11, 0.05); }
}

/* -- Card Header ------------------------ */
.mp-OfferCard-Header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 1.6rem;
  gap: 0.5rem;
}

.mp-OfferCard-Badge {
  display: inline-block;
  flex-shrink: 0;
  padding: 3px 10px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--mp-radius-button);
}

/* -- Countdown -------------------------- */
.mp-OfferCard-Countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
}

.mp-OfferCard-Countdown-Value {
  font-size: 1rem;
  font-weight: 400;
  color: #f59e0b;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.mp-OfferCard-Countdown-Label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 158, 11, 0.5);
}

/* -- Promo headline --------------------- */
.mp-OfferCard-Text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--mp-white);
  margin: 0;
  flex: 1;
}

/* -- Buy / Get detail rows -------------- */
.mp-OfferCard-Details {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mp-OfferCard-Detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
}

.mp-OfferCard-DetailLabel {
  flex-shrink: 0;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 2.75rem;
  text-align: center;
}

.mp-OfferCard-DetailValue {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -- Footer ----------------------------- */
.mp-OfferCard-Footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  margin-top: auto;
}

.mp-OfferCard-Expiry {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.mp-OfferCard-Cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.mp-OfferCard:hover .mp-OfferCard-Cta {
  color: var(--mp-white);
}

.mp-StarBuys-Loading {
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}

.mp-StarBuys-More {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.mp-StarBuys-More .btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: var(--mp-border-white);
  border-radius: var(--mp-radius);
  color: var(--mp-white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--mp-transition);
}

.mp-StarBuys-More .btn-glass:hover {
  background: rgba(255,255,255,0.15);
  color: var(--mp-white);
}

@media screen and (max-width: 1024px) {
  .mp-StarBuys-Grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mp-StarBuys-Grid--urgent {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .mp-StarBuys-Grid,
  .mp-StarBuys-Grid--urgent {
    grid-template-columns: minmax(0, 1fr);
  }

  .mp-StarBuys {
    padding: 3rem 1.25rem;
  }
}