/* ==========================================================
   CSS SECTION MAP
   - Font loading
   - Carousel/swiper controls
   - Text truncation helpers
   - Base reset and shared element defaults
   - Layout container
   - Generated utility classes used across header, hero, product rails, and footer
   - Responsive breakpoint utilities
   ========================================================== */

/* SECTION: Font loading */
@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("https://reebelo.com/fonts/Manrope-Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("https://reebelo.com/fonts/Manrope-Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("https://reebelo.com/fonts/Manrope-SemiBold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("https://reebelo.com/fonts/Manrope-ExtraBold.ttf") format("truetype");
}
/* SECTION: Scroll and carousel helpers */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  position: relative;
  overflow: hidden;
}
.swiper-slide {
  flex-shrink: 0;
  height: auto !important;
}
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  transition-property: transform;
  position: relative;
}
.swiper-wrapper {
  box-sizing: content-box;
  z-index: 1;
  height: 100%;
  display: flex;
  animation: none !important;
}
.swiper-backface-hidden .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-pagination {
  justify-content: start;
  align-items: center;
  margin: 0;
  display: flex;
  position: absolute;
  bottom: 10px;
  width: auto !important;
  left: auto !important;
}
.swiper-pagination-bullet {
  color: #000;
  cursor: pointer;
  opacity: 1;
  text-align: center;
  background: #a5a5a5;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  display: inline-block;
}
.swiper-pagination-bullet-active {
  color: #fff;
  background: #1f2323;
  width: 12px;
  height: 12px;
}
@media screen and (width<=480px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin-right: 6px;
  }
  .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }
}
/* SECTION: Product title truncation helper */
.two-line-ellipsis {
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
/* SECTION: Full product hero carousel */
.hero-swiper .swiper-wrapper {
  transition-timing-function: ease;
}

.hero-swiper .swiper-slide {
  flex: 0 0 100%;
  width: 100% !important;
}

.hero-swiper {
  min-height: 520px;
  height: clamp(520px, calc(100svh - 128px), 760px) !important;
  isolation: isolate;
  background: #f7f4ee;
}

.hero-swiper .swiper-slide > a {
  display: block;
  height: 100%;
}

.mps-product-hero-slide {
  color: #252323;
}

.mps-product-hero__surface {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--hero-background, #f7f4ee);
}

.mps-product-hero--phones {
  --hero-background: #f7f1ed;
  --hero-shadow: rgba(79, 45, 33, 0.22);
}

.mps-product-hero--tablets {
  --hero-background: #ebe1da;
  --hero-shadow: rgba(51, 36, 30, 0.23);
}

.mps-product-hero--watches {
  --hero-background: #ecd6cb;
  --hero-shadow: rgba(74, 40, 30, 0.24);
}

.mps-product-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-top: 52px;
  padding-bottom: clamp(54px, 9vh, 112px);
}

.mps-product-hero__copy {
  width: min(100%, 420px);
}

.mps-product-hero__copy h1 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.85rem) !important;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.mps-product-hero__copy p {
  max-width: 34ch;
  margin: 22px 0 0;
  font-size: clamp(0.98rem, 1.2vw, 1.14rem);
  line-height: 1.5;
}

.mps-product-hero__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.83rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mps-product-hero-slide:hover .mps-product-hero__cta {
  background: #252323;
  color: #fff;
  transform: translateY(-2px);
}

.mps-product-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 40px clamp(32px, 8vw, 132px) 42px clamp(220px, 25vw, 420px);
  pointer-events: none;
}

.mps-product-hero__watermark {
  position: absolute;
  top: 50%;
  left: 53%;
  width: min-content;
  color: #252323;
  font-size: clamp(4.5rem, 13vw, 13.5rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.75;
  opacity: 0.075;
  transform: translate(-50%, -54%);
  white-space: nowrap;
}

.mps-product-hero__image-frame {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(52vw, 660px);
  height: min(60vh, 520px);
  max-height: calc(100% - 32px);
  place-items: center;
}

.mps-product-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 35px var(--hero-shadow));
  transform-origin: center;
}

/* The source artwork uses three different transparent canvases, so each slide
   gets a tuned composition instead of sharing a one-size-fits-all position. */
.mps-product-hero--phones .mps-product-hero__image {
  transform: translateX(12%);
}

.mps-product-hero--tablets .mps-product-hero__image-frame {
  width: min(48vw, 600px);
  height: min(62vh, 480px);
  max-height: calc(100% - 84px);
  transform: translate(11%, -10%);
}

.mps-product-hero--tablets .mps-product-hero__image {
  transform: translateY(-2%);
}

.mps-product-hero--watches .mps-product-hero__image-frame {
  width: min(40vw, 480px);
  height: min(58vh, 460px);
  max-height: calc(100% - 84px);
  transform: translate(22%, -7%);
}

.mps-product-hero--watches .mps-product-hero__image {
  transform: none;
}

.mps-product-hero--watches .mps-product-hero__ground {
  bottom: clamp(92px, 13vh, 136px);
  left: 63%;
}

.mps-product-hero__ground {
  position: absolute;
  bottom: clamp(35px, 8vh, 88px);
  left: 58%;
  width: min(40vw, 540px);
  height: 36px;
  border-radius: 50%;
  background: var(--hero-shadow);
  filter: blur(22px);
  opacity: 0.4;
  transform: translateX(-50%);
}

@media only screen and (width<=767px) {
  .hero-swiper {
    min-height: 500px;
    height: max(500px, calc(100svh - 122px)) !important;
  }

  .mps-product-hero__content {
    align-items: flex-end;
    padding: 32px 24px 54px;
  }

  .mps-product-hero__copy {
    width: min(100%, 300px);
  }

  .mps-product-hero__copy h1 {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    line-height: 0.98;
  }

  .mps-product-hero__copy p {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .mps-product-hero__cta {
    min-height: 38px;
    margin-top: 20px;
  }

  .mps-product-hero__visual {
    align-items: start;
    padding: 28px 18px 180px;
  }

  .mps-product-hero__watermark {
    top: 36%;
    left: 50%;
    font-size: clamp(3.25rem, 19vw, 6.2rem);
  }

  .mps-product-hero__image-frame {
    width: min(96vw, 510px);
    height: min(53vh, 410px);
  }

  .mps-product-hero--phones .mps-product-hero__image {
    transform: translateX(3%);
  }

  .mps-product-hero--tablets .mps-product-hero__image-frame {
    width: min(94vw, 390px);
    height: min(48vh, 350px);
    max-height: none;
    transform: translate(7%, 0);
  }

  .mps-product-hero--tablets .mps-product-hero__image {
    transform: translateY(-2%);
  }

  .mps-product-hero--watches .mps-product-hero__image-frame {
    width: min(82vw, 370px);
    height: min(54vh, 380px);
    max-height: none;
    transform: none;
  }

  .mps-product-hero--watches .mps-product-hero__image {
    transform: none;
  }

  .mps-product-hero--watches .mps-product-hero__ground {
    bottom: 150px;
    left: 54%;
  }

  .mps-product-hero__ground {
    bottom: 168px;
    left: 50%;
    width: 70vw;
  }
}

[data-hero-prev],
[data-hero-next] {
  user-select: none;
}

/* SECTION: Animated brand announcement bar */
.mps-announcement-bar {
  overflow: hidden;
  border-top: 1px solid #e7e1dc;
  border-bottom: 1px solid #e7e1dc;
  background: #fbfaf8;
  color: #1f2323;
}

.mps-announcement-viewport {
  overflow: hidden;
}

.mps-announcement-track,
.mps-announcement-set,
.mps-announcement-item {
  display: flex;
  align-items: center;
}

.mps-announcement-track {
  width: max-content;
  animation: mps-announcement-scroll 30s linear infinite;
}

.mps-announcement-set {
  flex: none;
}

.mps-announcement-item {
  flex: none;
  min-height: 48px;
  gap: 12px;
  padding: 5px clamp(28px, 4vw, 64px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mps-announcement-item::after {
  width: 4px;
  height: 4px;
  margin-left: clamp(28px, 4vw, 64px);
  border-radius: 50%;
  background: #c68a73;
  content: "";
}

.mps-announcement-logo {
  display: block;
  width: 94px;
  height: 38px;
  flex: 0 0 94px;
  overflow: hidden;
}

.mps-announcement-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mps-announcement-logo--iphone img {
  transform: scale(1.3);
}

.mps-announcement-bar:hover .mps-announcement-track,
.mps-announcement-bar:focus-within .mps-announcement-track {
  animation-play-state: paused;
}

@keyframes mps-announcement-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media only screen and (width<=767px) {
  .mps-announcement-item {
    min-height: 44px;
    gap: 10px;
    padding-right: 28px;
    padding-left: 28px;
    font-size: 0.7rem;
  }

  .mps-announcement-item::after {
    margin-left: 28px;
  }

  .mps-announcement-logo {
    width: 78px;
    height: 32px;
    flex-basis: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mps-announcement-track {
    width: 100%;
    animation: none;
  }

  .mps-announcement-set[aria-hidden="true"] {
    display: none;
  }
}

.hero-swiper .swiper-pagination {
  display: none;
}
@media only screen and (width<=1023px) {
  .hero-swiper .swiper-pagination {
    z-index: 50;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    bottom: 15px;
    width: 100% !important;
  }
  .hero-swiper.light .swiper-pagination-bullet {
    background: rgba(37, 35, 35, 0.35) !important;
  }
  .hero-swiper.light .swiper-pagination-bullet-active {
    background: #252323 !important;
  }
}
/* SECTION: Generated design tokens used by utility classes */
*,
:after,
:before {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-gradient-from-position: ;
  --tw-gradient-to-position: ;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}
::-ms-backdrop {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-gradient-from-position: ;
  --tw-gradient-to-position: ;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}
::backdrop {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-gradient-from-position: ;
  --tw-gradient-to-position: ;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}
/* SECTION: Base reset and shared HTML element defaults */
*,
:after,
:before {
  box-sizing: border-box;
  border: 0 solid #f2f2f2;
}
:after,
:before {
  --tw-content: "";
}
html {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: normal;
  -webkit-tap-highlight-color: transparent;
  font-variation-settings: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: "Manrope", Inter, Arial, sans-serif;
  line-height: 1.5;
}
body {
  font-family: "Manrope", Inter, Arial, sans-serif;
  line-height: inherit;
  margin: 0;
}
hr {
  color: inherit;
  border-top-width: 1px;
  height: 0;
}
h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
  top: -0.5em;
}
button,
input {
  font-feature-settings: inherit;
  color: inherit;
  font-variation-settings: inherit;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
button {
  text-transform: none;
  -webkit-appearance: button;
  background-color: #0000;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
h1,
p,
h2,
h3,
h4,
hr,
ul {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
input:-ms-placeholder-shown {
  color: #677279;
  opacity: 1;
}
input::placeholder {
  color: #677279;
  opacity: 1;
}

.mps-search-placeholder-motion::placeholder {
  transition: opacity 180ms ease, color 180ms ease;
}

.mps-search-placeholder-motion.is-changing::placeholder {
  color: #1f2323;
  opacity: 0;
}
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
svg,
img,
video {
  vertical-align: middle;
  display: block;
}
img,
video {
  max-width: 100%;
  height: auto;
}
html {
  -webkit-tap-highlight-color: #0000;
}
/* SECTION: Container and small animation helpers */
.transform-wiggle {
  transition: transform 0.5s cubic-bezier(0.68, -0.56, 0.35, 1.5);
}
.reebelo-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.mps-nav-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
}
.mps-nav-logo {
  display: block;
  width: 112px;
  max-height: 38px;
  object-fit: contain;
}

/* Shared storefront header: keep the two navigation rows clear, compact, and
   consistent on collection, product, and informational pages. */
#header {
  border-bottom: 1px solid rgba(31, 35, 35, 0.12);
  box-shadow: 0 2px 10px rgba(31, 35, 35, 0.08);
}

#header > div:first-child {
  min-height: 54px;
}

#header form {
  border: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

#header form:focus-within {
  border-color: #008f7a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 143, 122, 0.12);
}

#inline-menu {
  border-top: 1px solid rgba(31, 35, 35, 0.07);
}

.mps-inline-nav-list > li > a,
.mps-inline-nav-list > li > button {
  min-height: 32px;
  border-radius: 6px;
  color: #26302f;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
}

.mps-inline-nav-list > li > a:hover,
.mps-inline-nav-list > li > a:focus-visible,
.mps-inline-nav-list > li > button:hover,
.mps-inline-nav-list > li > button:focus-visible {
  background: #e9fbf8;
  color: #007a69;
  outline: none;
}

.mps-inline-nav-list > li > a[aria-current="page"],
.mps-inline-nav-list > li > button[aria-current="page"] {
  background: #e9fbf8;
  color: #007a69;
}

.mps-iphone-card-image {
  overflow: hidden;
  isolation: isolate;
}

.mps-iphone-card-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 150px) !important;
  max-height: 92px !important;
  object-fit: contain;
  object-position: center;
}

/* Collection campaign images replace the old text banner and green Reebelo
   trust panel. The image frame keeps all supplied artwork aligned despite
   their different source dimensions. */
.mps-collection-banner.mps-collection-image-banner {
  display: block !important;
  min-height: 0 !important;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 8px !important;
  background: #111 !important;
  padding: 0 !important;
}

.mps-collection-image-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
}

.mps-collection-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 58px;
}

.mps-collection-image-strip figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f3f3;
}

.mps-collection-image-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .mps-collection-image-banner img {
    aspect-ratio: 16 / 9;
  }

  .mps-collection-image-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .mps-collection-image-strip img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 639px) {
  #header > div:first-child {
    min-height: 50px;
  }

  #inline-menu {
    border-top: 0;
  }
}

/* SECTION: Header Phones dropdown menu */
.mps-inline-nav-list {
  overflow-y: visible;
}

.mps-inline-nav-list.mps-inline-nav-list-dropdown-open {
  overflow: visible !important;
}

.mps-inline-nav-dropdown {
  isolation: isolate;
}

.mps-inline-nav-dropdown > button {
  color: inherit;
  font: inherit;
}

.mps-inline-nav-dropdown > button::before,
.mps-inline-nav-dropdown > button::after {
  display: none;
  content: none;
}

.mps-inline-nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 270px;
  gap: 4px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mps-inline-nav-menu::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.mps-inline-nav-dropdown:hover .mps-inline-nav-menu,
.mps-inline-nav-dropdown:focus-within .mps-inline-nav-menu,
.mps-inline-nav-dropdown.is-open .mps-inline-nav-menu,
.mps-inline-nav-dropdown > button[aria-expanded="true"] + .mps-inline-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mps-inline-nav-menu a {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 11px 12px;
  border-radius: 8px;
  color: #1f2323;
  text-decoration: none;
}

.mps-inline-nav-menu a:hover,
.mps-inline-nav-menu a:focus {
  background: #f6f6f6;
  outline: none;
}

.mps-inline-nav-menu span {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.mps-inline-nav-menu small {
  color: #566063;
  font-size: 0.74rem;
  line-height: 1.35;
}

@media (width >= 1024px) {
  .mps-inline-nav-list {
    overflow: visible !important;
  }
}
/* SECTION: All Categories sidebar drawer */
.mps-category-sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(31, 35, 35, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.mps-category-sidebar-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mps-category-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: min(390px, 92vw);
  height: 100vh;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  color: #1f2323;
  box-shadow: 24px 0 70px rgba(31, 35, 35, 0.22);
  transform: translateX(-104%);
  transition: transform 220ms ease;
}
.mps-category-sidebar.is-open {
  transform: translateX(0);
}
body.mps-category-sidebar-open {
  overflow: hidden;
}
.mps-category-sidebar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}
.mps-category-sidebar-eyebrow {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #677279;
}
.mps-category-sidebar-header h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}
.mps-category-sidebar-close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dcdf;
  border-radius: 999px;
  background: #fff;
  color: #1f2323;
  font-size: 1.55rem;
  line-height: 1;
}
/* SIDEBAR PART: Promotional hot deals banner */
.mps-category-sidebar-promo {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
  padding: 0 0.75rem;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(123, 53, 53) 0%, rgb(31, 35, 35) 40%, rgb(31, 35, 35) 100%);
  color: #fff;
  text-decoration: none;
}
.mps-category-sidebar-promo-image {
  height: 4rem;
  flex: 1 1 auto;
  min-width: 0;
}
.mps-category-sidebar-promo-image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  border-top-left-radius: 12px;
  object-fit: cover;
  object-position: right;
}
.mps-category-sidebar-promo span {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgb(239, 104, 106);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
}
.mps-category-sidebar-promo:hover span,
.mps-category-sidebar-promo:focus span {
  text-decoration: underline;
}
.mps-category-sidebar-nav {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
}
.mps-category-sidebar-nav a {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
}
.mps-category-sidebar-nav a:hover,
.mps-category-sidebar-nav a:focus {
  border-color: #1f2323;
  background: #fff;
  outline: none;
}
.mps-category-sidebar-nav span {
  font-size: 0.95rem;
  font-weight: 700;
}
.mps-category-sidebar-nav small {
  color: #677279;
  font-size: 0.76rem;
}
.mps-category-sidebar-group {
  padding-top: 4px;
}
.mps-category-sidebar-group h3 {
  margin: 0 0 10px;
  font-size: 0.86rem;
  text-transform: uppercase;
  color: #677279;
}
.mps-category-sidebar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mps-category-sidebar-chips a,
.mps-category-sidebar-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #d7dcdf;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}
.mps-category-sidebar-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
}

/* SECTION: Budget Optimizer & Filter Enhancements */
.mps-preset-pill {
  border: 1px solid #dcdfe1;
  border-radius: 999px;
  background: #f5f7f8;
  color: #333;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 150ms ease;
}

.mps-preset-pill:hover {
  border-color: #008f7a;
  background: #e6f7f5;
  color: #008f7a;
}

.mps-preset-pill.active {
  border-color: #008f7a;
  background: #008f7a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 143, 122, 0.25);
}

@media (max-width: 1023px) {
  .mps-mobile-filter-trigger {
    display: flex !important;
  }

  .mps-filter-panel.mps-mobile-open {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99 !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3) !important;
    animation: mpsSlideUp 250ms ease forwards;
  }
}

@keyframes mpsSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* SECTION: Footer social/contact links */
.mps-footer-social-links {
  flex-wrap: wrap;
}

.mps-footer-social-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

/* SECTION: Mac'sPhoneStore brand footer */
.mps-site-footer {
  margin: 24px clamp(12px, 2vw, 28px) 18px;
  overflow: hidden;
  border: 1px solid #e3d3cb;
  border-radius: 28px;
  background: #f0ece6;
  color: #2b2422;
  box-shadow: 0 16px 38px rgba(62, 41, 32, 0.08);
}

.mps-site-footer > .reebelo-container {
  max-width: 1360px;
  padding-top: clamp(34px, 5vw, 64px);
}

.mps-site-footer > .reebelo-container > div:first-child {
  align-items: start;
  gap: 32px;
  padding-top: 0;
  padding-bottom: 26px;
}

@media (min-width: 640px) {
  .mps-site-footer > .reebelo-container > div:first-child {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.mps-site-footer > .reebelo-container > div:first-child > div {
  min-width: 0;
}

.mps-site-footer h4 {
  color: #6d4336;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mps-site-footer ul {
  gap: 10px;
}

.mps-site-footer ul a {
  color: #514743;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease;
}

.mps-site-footer ul a:hover,
.mps-site-footer ul a:focus-visible {
  color: #a6634d !important;
}

.mps-site-footer #e2e-help-footer > li > a {
  box-sizing: border-box;
  display: flex;
  width: 172px;
  max-width: 100%;
  height: 42px;
  margin: 4px 0 0;
  padding: 0 15px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}

.mps-site-footer #e2e-help-footer {
  align-items: flex-start;
}

.mps-site-footer #e2e-help-footer > li:not(:first-child) > a {
  border: 1px solid #c68a73;
  background: #c68a73;
  color: #fff;
}

.mps-site-footer #e2e-help-footer > li:first-child > a {
  border: 1px solid #c68a73;
  background: #fff;
  color: #6d4336;
  font-weight: 700;
}

.mps-site-footer #e2e-help-footer > li:not(:first-child) > a span {
  color: #fff;
}

.mps-site-footer #e2e-help-footer > li:not(:first-child) > a:hover {
  background: #9f614d;
  color: #fff !important;
}

.mps-site-footer #e2e-help-footer > li:first-child > a:hover {
  background: #f8e5dc;
  color: #6d4336 !important;
}

.mps-site-footer form > div {
  max-width: 360px;
  text-align: left;
  color: #514743;
  font-size: 13px;
  line-height: 1.5;
}

.mps-site-footer form input[type="email"] {
  min-height: 50px;
  margin-top: 12px;
  padding: 0 132px 0 16px;
  border: 1px solid #dfcec6;
  border-radius: 999px;
  background: #fffdfb;
  color: #2b2422;
}

.mps-site-footer form button[type="submit"] {
  min-height: 40px;
  margin: -45px 5px 5px auto !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #2b2422 !important;
  color: #fff !important;
  font-size: 13px !important;
  box-shadow: 0 3px 8px rgba(43, 36, 34, 0.18);
}

.mps-site-footer form button[type="submit"]:hover {
  background: #c68a73 !important;
}

.mps-site-footer form a {
  color: #6d4336;
}

.mps-site-footer hr {
  margin-top: 0;
  border-color: #ded0c9;
}

.mps-site-footer > .reebelo-container > div:nth-child(3) {
  padding-top: 22px;
  padding-bottom: 22px;
  align-items: center;
}

.mps-site-footer > .reebelo-container > div:nth-child(3) > div:first-child {
  border: 1px solid #ded0c9;
  border-radius: 999px;
  background: #faf6f3;
  color: #514743;
}

.mps-site-footer > .reebelo-container > div:nth-child(3) > div:first-child span {
  border-color: #d8c6bd;
}

.mps-site-footer .mps-currency-switcher {
  border: 1px solid #ded0c9;
  background: #faf6f3;
}

.mps-site-footer .mps-currency-switcher button {
  color: #514743;
}

.mps-site-footer .mps-currency-switcher button.is-active {
  background: #c68a73;
  color: #fff;
}

.mps-site-footer .mps-footer-social-links {
  gap: 8px;
  justify-content: flex-start;
}

.mps-site-footer .mps-footer-social-link {
  min-height: 38px;
  gap: 7px;
  border: 1px solid #dcc9c0;
  background: rgba(255, 255, 255, 0.55);
  color: #3c302c;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.mps-site-footer .mps-footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mps-site-footer .mps-footer-social-link__icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #2e6e58;
}

.mps-site-footer .mps-footer-social-link__icon svg {
  width: 14px;
  height: 14px;
}

.mps-site-footer .mps-footer-social-link--whatsapp .mps-footer-social-link__icon svg {
  fill: none;
  stroke: currentColor;
}

.mps-site-footer .mps-footer-social-link--instagram .mps-footer-social-link__icon {
  color: #b65076;
}

.mps-site-footer .mps-footer-social-link--maps .mps-footer-social-link__icon {
  color: #2774b8;
}

.mps-site-footer .mps-footer-social-link:hover .mps-footer-social-link__icon,
.mps-site-footer .mps-footer-social-link:focus-visible .mps-footer-social-link__icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.mps-site-footer .mps-footer-social-link:first-child svg {
  fill: currentColor;
  stroke: none;
}

.mps-site-footer .mps-footer-social-dot {
  fill: currentColor;
  stroke: none;
}

.mps-site-footer .mps-footer-social-link:hover,
.mps-site-footer .mps-footer-social-link:focus-visible {
  border-color: #c68a73;
  background: #c68a73;
  color: #fff;
  transform: translateY(-2px);
}

.mps-site-footer > .bg-white {
  border-top: 1px solid #ded0c9;
  background: rgba(255, 255, 255, 0.55) !important;
}

.mps-site-footer > .bg-white .text-gray-700 {
  color: #625651 !important;
}

.mps-site-footer > .bg-white img {
  max-height: 22px;
  width: auto;
}

.mps-site-footer > .bg-white img[alt="m-pesa"] {
  width: 96px !important;
  max-height: 42px;
  object-fit: contain;
}

.mps-site-footer > .bg-white .reebelo-container {
  align-items: center;
}

.mps-site-footer > .bg-white .reebelo-container > div {
  align-items: center;
}

@media (width < 640px) {
  .mps-site-footer {
    margin: 14px 10px;
    border-radius: 20px;
  }

  .mps-site-footer > .reebelo-container {
    padding-top: 32px;
  }

  .mps-site-footer > .reebelo-container > div:first-child {
    gap: 26px;
  }

  .mps-site-footer > .reebelo-container > div:nth-child(3) {
    align-items: center;
  }

  .mps-site-footer .mps-footer-social-links {
    justify-content: center;
  }

  .mps-site-footer form > div {
    max-width: none;
  }

  .mps-site-footer > .reebelo-container > div:nth-child(3) {
    align-items: stretch;
  }

  .mps-site-footer .mps-footer-social-links {
    justify-content: flex-start;
  }
}

/* SECTION: MACs Best Sellers carousel image fallback */
.mps-best-seller-image.is-empty {
  border-radius: 8px;
  background: linear-gradient(135deg, #f5f5f5, #e5e7eb);
}

/* SECTION: Product carousel controls for Customer Favorites and Best Sellers */
[data-carousel="customer-smartphones"] [data-carousel-track],
[data-carousel="customer-tablets"] [data-carousel-track],
[data-carousel="customer-smartwatches"] [data-carousel-track],
[data-carousel="phones-section"] [data-carousel-track],
[data-carousel="top-deals-section"] [data-carousel-track],
[data-carousel="gaming-section"] [data-carousel-track],
[data-carousel="best-sellers"] [data-carousel-track] {
  transition: transform 300ms ease;
}

[data-carousel="customer-smartphones"] [data-carousel-prev],
[data-carousel="customer-smartphones"] [data-carousel-next],
[data-carousel="customer-tablets"] [data-carousel-prev],
[data-carousel="customer-tablets"] [data-carousel-next],
[data-carousel="customer-smartwatches"] [data-carousel-prev],
[data-carousel="customer-smartwatches"] [data-carousel-next],
[data-carousel="phones-section"] [data-carousel-prev],
[data-carousel="phones-section"] [data-carousel-next],
[data-carousel="top-deals-section"] [data-carousel-prev],
[data-carousel="top-deals-section"] [data-carousel-next],
[data-carousel="gaming-section"] [data-carousel-prev],
[data-carousel="gaming-section"] [data-carousel-next],
[data-carousel="best-sellers"] [data-carousel-prev],
[data-carousel="best-sellers"] [data-carousel-next] {
  cursor: pointer;
}

[data-carousel="phones-section"] [data-carousel-prev],
[data-carousel="phones-section"] [data-carousel-next],
[data-carousel="top-deals-section"] [data-carousel-prev],
[data-carousel="top-deals-section"] [data-carousel-next],
[data-carousel="gaming-section"] [data-carousel-prev],
[data-carousel="gaming-section"] [data-carousel-next] {
  display: flex !important;
}

[data-carousel="customer-smartphones"] .swiper-button-disabled,
[data-carousel="customer-tablets"] .swiper-button-disabled,
[data-carousel="customer-smartwatches"] .swiper-button-disabled,
[data-carousel="phones-section"] .swiper-button-disabled,
[data-carousel="top-deals-section"] .swiper-button-disabled,
[data-carousel="gaming-section"] .swiper-button-disabled,
[data-carousel="best-sellers"] .swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.mps-home-product-card {
  position: relative;
  border-color: #f0f0f0;
}

/* SECTION: Homepage product-card hierarchy
   Shared treatment keeps the major product carousels consistent while letting
   each product's own sale and category details remain intact. */
.mps-home-product-card,
[data-carousel="phones-section"] .swiper-slide > a,
[data-carousel="top-deals-section"] .swiper-slide > a,
[data-carousel="gaming-section"] .swiper-slide > a,
[data-carousel="best-sellers"] .swiper-slide > a {
  position: relative;
  overflow: hidden;
  border: 1px solid #e4ebeb !important;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(22, 36, 36, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mps-home-product-card:hover,
[data-carousel="phones-section"] .swiper-slide > a:hover,
[data-carousel="top-deals-section"] .swiper-slide > a:hover,
[data-carousel="gaming-section"] .swiper-slide > a:hover,
[data-carousel="best-sellers"] .swiper-slide > a:hover {
  border-color: #c8d7d7 !important;
  box-shadow: 0 12px 26px rgba(22, 36, 36, 0.1);
  transform: translateY(-3px);
}

.mps-home-product-main h3,
[data-carousel="phones-section"] h3,
[data-carousel="top-deals-section"] h3,
[data-carousel="gaming-section"] h3,
[data-carousel="best-sellers"] h3 {
  color: #172323;
  font-weight: 700 !important;
  letter-spacing: -0.012em;
  line-height: 1.35 !important;
}

.mps-card-certification {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 12;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 10px rgba(15, 45, 45, 0.14);
}

.mps-card-certification img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mps-card-rating {
  display: flex;
  min-height: 20px;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: #536262;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.mps-card-rating img {
  display: block;
  width: 72px;
  height: auto;
  opacity: 0.72;
}

/* SECTION: Today's Top Deals card refinement */
[data-carousel="top-deals-section"] {
  background: linear-gradient(135deg, #fbf7f5 0%, #f5ebe6 100%);
}

[data-carousel="top-deals-section"] .swiper {
  padding: 12px 8px 14px 12px !important;
}

[data-carousel="top-deals-section"] .mps-home-product-card {
  min-height: 330px !important;
  padding: 16px !important;
  border-color: #ead9d2 !important;
}

[data-carousel="top-deals-section"] .mps-home-card-image {
  margin-top: 18px;
  margin-bottom: 14px;
}

[data-carousel="top-deals-section"] .mps-home-product-main > div:last-child {
  margin-top: 14px !important;
}

[data-carousel="top-deals-section"] .mps-home-product-main p {
  margin-bottom: 6px !important;
  color: #786963;
  font-size: 10px !important;
  line-height: 1.35;
}

[data-carousel="top-deals-section"] .mps-home-product-main .text-base {
  color: #332722;
  font-size: 15px;
  line-height: 1.25;
}

[data-carousel="top-deals-section"] .mps-card-whatsapp {
  margin-top: 12px;
  border-radius: 8px;
  background: #3a2b26;
}

[data-carousel="top-deals-section"] .mps-card-whatsapp:hover {
  background: #a6634d;
}

[data-carousel="top-deals-section"] .mps-home-product-main > div:first-child {
  background: #f9e8e1 !important;
  color: #a24e3c !important;
}

.mps-top-deals-promo {
  min-height: 392px;
  background: linear-gradient(145deg, #332521 0%, #654437 58%, #b96f55 130%) !important;
  color: #fff;
}

.mps-top-deals-promo::before {
  position: absolute;
  top: -92px;
  right: -108px;
  width: 265px;
  height: 265px;
  border: 38px solid rgba(255, 231, 219, 0.12);
  border-radius: 50%;
  content: "";
}

.mps-top-deals-promo__copy {
  position: relative;
  z-index: 2;
  max-width: 230px;
  padding: 26px 22px;
}

.mps-top-deals-promo__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #f4cbbb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mps-top-deals-promo h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.mps-top-deals-promo p {
  margin: 10px 0 16px;
  color: rgba(255, 245, 240, 0.8);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.mps-top-deals-promo__timer {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.mps-top-deals-promo__timer div {
  display: grid;
  min-width: 31px;
  text-align: center;
}

.mps-top-deals-promo__timer strong {
  color: #fff;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.mps-top-deals-promo__timer span {
  margin-top: 4px;
  color: #f5cfc1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mps-top-deals-promo__timer i {
  padding-top: 1px;
  color: #efc1b1;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
}

.mps-top-deals-promo__cta {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  margin-top: 18px;
  padding: 0 13px;
  border-radius: 8px;
  background: #fff;
  color: #4b342b;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.mps-top-deals-promo__cta:hover,
.mps-top-deals-promo__cta:focus-visible {
  background: #f2c5b5;
  color: #422c24;
  outline: none;
  transform: translateY(-1px);
}

.mps-top-deals-promo__visual img {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.mps-top-deals-promo__tablet {
  right: -30px;
  bottom: -18px;
  width: 94%;
  opacity: 0.72;
  transform: rotate(-10deg);
}

.mps-top-deals-promo__phone {
  right: -16px;
  bottom: -10px;
  width: 74%;
  filter: drop-shadow(0 14px 16px rgba(18, 10, 7, 0.34));
  transform: rotate(7deg);
}

@media (width < 1024px) {
  .mps-top-deals-promo {
    min-height: 270px;
  }

  .mps-top-deals-promo__copy {
    max-width: 300px;
    padding: 25px 28px;
  }

  .mps-top-deals-promo__tablet {
    right: 2%;
    width: 46%;
  }

  .mps-top-deals-promo__phone {
    right: 8%;
    width: 34%;
  }
}

@media (width < 560px) {
  .mps-top-deals-promo {
    min-height: 250px;
  }

  .mps-top-deals-promo__copy {
    max-width: 205px;
    padding: 22px 18px;
  }

  .mps-top-deals-promo h3 {
    font-size: 1.35rem;
  }

  .mps-top-deals-promo p {
    font-size: 11px;
  }

  .mps-top-deals-promo__tablet {
    right: -15%;
    width: 78%;
  }

  .mps-top-deals-promo__phone {
    right: -3%;
    width: 58%;
  }
}

@media (max-width: 480px) {
  .mps-home-product-card,
  [data-carousel="phones-section"] .swiper-slide > a,
  [data-carousel="top-deals-section"] .swiper-slide > a,
  [data-carousel="gaming-section"] .swiper-slide > a,
  [data-carousel="best-sellers"] .swiper-slide > a {
    border-radius: 11px;
  }

  .mps-card-certification {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
}

.mps-home-product-main {
  color: inherit;
  text-decoration: none;
}

.mps-home-card-image {
  aspect-ratio: 1 / 0.82;
  height: 112px;
  max-height: 112px;
  overflow: hidden;
}

.mps-home-card-image img,
.mps-best-seller-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 118px;
  max-height: 108px;
  object-fit: contain;
  margin: 0 auto;
}

.mps-home-card-image > div {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.mps-card-whatsapp {
  display: inline-flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 6px;
  background: #171d1d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.mps-card-whatsapp:hover {
  background: #008f7a;
  color: #fff;
  transform: translateY(-1px);
}

.mps-recent-product-card {
  min-height: 285px;
}

.mps-recent-empty {
  border: 1px dashed #d7dddd;
  border-radius: 8px;
  background: #f8fbfb;
  color: #566060;
  padding: 18px;
  font-size: 13px;
}

/* SECTION: Cart page */
.mps-cart-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e6eeee;
  background: rgba(255, 255, 255, 0.96);
  padding: 0 28px;
  backdrop-filter: blur(16px);
}

.mps-cart-brand,
.mps-cart-nav {
  display: inline-flex;
  align-items: center;
}

.mps-cart-brand {
  gap: 10px;
  color: #151515;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.mps-cart-brand img {
  border-radius: 8px;
  object-fit: contain;
}

.mps-cart-nav {
  gap: 18px;
  color: #2f3838;
  font-size: 13px;
  font-weight: 700;
}

.mps-cart-nav a {
  color: inherit;
  text-decoration: none;
}

.mps-cart-page {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.mps-cart-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.mps-cart-hero p {
  margin: 0 0 8px;
  color: #55706e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mps-cart-hero h1 {
  margin: 0;
  color: #111;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.mps-cart-hero ol {
  display: inline-flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mps-cart-hero li {
  border: 1px solid #dce6e5;
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  color: #667171;
  font-size: 12px;
  font-weight: 700;
}

.mps-cart-hero li.is-active {
  border-color: #151515;
  background: #151515;
  color: #fff;
}

.mps-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 20px;
  align-items: start;
}

.mps-cart-panel,
.mps-cart-summary {
  border: 1px solid #e5eceb;
  border-radius: 8px;
  background: #fff;
}

.mps-cart-panel {
  min-height: 420px;
}

.mps-cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #edf1f1;
  padding: 20px;
}

.mps-cart-panel-head h2,
.mps-cart-summary h2,
.mps-cart-empty h2 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 700;
}

.mps-cart-panel-head p,
.mps-cart-empty p {
  margin: 6px 0 0;
  color: #63706f;
  font-size: 13px;
}

.mps-cart-clear {
  border: 1px solid #dbe4e3;
  border-radius: 999px;
  background: #fff;
  padding: 9px 13px;
  color: #293333;
  font-size: 12px;
  font-weight: 700;
}

.mps-cart-items {
  display: grid;
}

.mps-cart-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid #edf1f1;
  padding: 20px;
}

.mps-cart-item-image {
  display: grid;
  height: 112px;
  place-items: center;
  border-radius: 8px;
  background: #f6f8f8;
}

.mps-cart-item-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.mps-cart-item-body {
  display: grid;
  gap: 20px;
}

.mps-cart-item-title,
.mps-cart-item-actions,
.mps-cart-summary-line,
.mps-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mps-cart-item-title p {
  margin: 0 0 5px;
  color: #6c7776;
  font-size: 12px;
  font-weight: 700;
}

.mps-cart-item-title h3 {
  margin: 0;
  color: #151515;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.mps-cart-item-title strong,
.mps-cart-item-actions span {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.mps-cart-qty {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid #dce5e4;
  border-radius: 999px;
  background: #fff;
}

.mps-cart-qty button,
.mps-cart-qty span {
  display: grid;
  place-items: center;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.mps-cart-qty button {
  background: transparent;
}

.mps-cart-item-actions > button {
  color: #6b7473;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.mps-cart-summary {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 16px;
  padding: 20px;
}

.mps-cart-summary-line,
.mps-cart-total {
  border-top: 1px solid #edf1f1;
  padding-top: 16px;
  color: #394443;
  font-size: 14px;
}

.mps-cart-total {
  color: #111;
  font-size: 17px;
  font-weight: 700;
}

.mps-cart-checkout,
.mps-cart-continue,
.mps-cart-empty a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mps-cart-checkout {
  background: #171d1d;
  color: #fff;
}

.mps-cart-continue,
.mps-cart-empty a {
  border: 1px solid #dce5e4;
  background: #fff;
  color: #171d1d;
}

.mps-cart-trust {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 14px 0 0;
  color: #5d6c6b;
  font-size: 12px;
  line-height: 1.35;
  list-style: none;
}

.mps-cart-trust li::before {
  content: "\2713";
  margin-right: 8px;
  color: #008f7a;
  font-weight: 700;
}

.mps-cart-empty {
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 28px;
  text-align: center;
}

.mps-cart-empty[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .mps-cart-header,
  .mps-cart-hero,
  .mps-cart-item-title,
  .mps-cart-item-actions {
    display: grid;
  }

  .mps-cart-nav {
    display: none;
  }

  .mps-cart-layout {
    grid-template-columns: 1fr;
  }

  .mps-cart-summary {
    position: static;
  }

  .mps-cart-item {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .mps-cart-item-image {
    height: 90px;
  }
}

/* SECTION: Reebelo-style cart checkout */
.mps-reebelo-cart-body {
  min-height: 100vh;
  margin: 0;
  background: #f6f7f7;
  color: #111615;
  font-family: "Manrope", Inter, Arial, sans-serif;
  letter-spacing: 0;
}

.mps-reebelo-cart-body * {
  font-family: inherit;
}

.mps-reebelo-cart-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  height: 68px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 22, 21, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(17, 22, 21, 0.07);
  backdrop-filter: blur(18px);
}

.mps-reebelo-cart-header-inner {
  display: grid;
  width: min(100% - 32px, 1180px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
}

.mps-reebelo-cart-logo {
  display: flex;
  width: fit-content;
  align-items: center;
  text-decoration: none;
}

.mps-reebelo-cart-logo img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.mps-reebelo-cart-header-status {
  margin: 0;
  color: #52615d;
  font-size: 12px;
  font-weight: 800;
}

.mps-reebelo-cart-header-status::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: #008f7a;
  content: "";
}

.mps-reebelo-cart-continue {
  justify-self: end;
  color: #007a69;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mps-reebelo-cart-continue:hover,
.mps-reebelo-cart-continue:focus-visible {
  color: #005d51;
  outline: none;
  text-decoration: underline;
}

.mps-reebelo-cart-main {
  position: relative;
  min-height: calc(100vh - 68px);
  background: #f6f7f7;
  padding: 30px 0 78px;
}

.mps-reebelo-cart-grid {
  display: grid;
  width: min(100% - 48px, 1240px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 0;
  overflow: hidden;
  border: 1px solid #e1e8e5;
  border-radius: 14px;
  background: linear-gradient(90deg, #fff 0, #fff calc(100% - 420px), #eef3f1 calc(100% - 420px), #eef3f1 100%);
  box-shadow: 0 22px 60px rgba(17, 22, 21, 0.08);
  margin: 0 auto;
}

.mps-reebelo-cart-summary-wrap {
  order: 2;
  padding: 32px;
  background: #eef3f1;
}

.mps-reebelo-cart-summary-wrap > * {
  position: relative;
}

.mps-reebelo-cart-items-wrap {
  order: 1;
  min-width: 0;
  border-right: 1px solid #dfe7e3;
  padding: 0 34px 48px;
  background: #fff;
}

.mps-reebelo-cart-saved {
  margin: 0 0 14px;
  color: #8b9391;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.mps-reebelo-cart-summary,
.mps-reebelo-cart-trust,
.mps-reebelo-cart-items-card,
.mps-reebelo-cart-rec {
  border: 1px solid #e1e8e5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 22, 21, 0.06);
}

.mps-reebelo-cart-summary-toggle {
  display: none;
}

.mps-reebelo-cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #edf0ef;
  padding: 26px 24px 24px;
}

.mps-reebelo-cart-summary-total h2 {
  margin: 0;
  color: #111615;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
}

.mps-reebelo-cart-summary-total p,
.mps-reebelo-cart-note,
.mps-reebelo-cart-trust p {
  margin: 4px 0 0;
  color: #66706d;
  font-size: 14px;
  font-weight: 500;
}

.mps-reebelo-cart-summary-total strong {
  color: #111615;
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}

.mps-reebelo-cart-summary-actions {
  display: grid;
  gap: 11px;
  padding: 24px;
}

.mps-reebelo-cart-checkout,
.mps-reebelo-cart-secondary,
.mps-reebelo-cart-empty a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.mps-reebelo-cart-checkout {
  background: #111615;
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 22, 21, 0.18);
}

.mps-reebelo-cart-checkout:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(17, 22, 21, 0.24);
}

.mps-reebelo-cart-secondary,
.mps-reebelo-cart-empty a {
  border: 1px solid #d7dedb;
  background: #fff;
  color: #111615;
}

.mps-reebelo-cart-secondary:hover,
.mps-reebelo-cart-empty a:hover {
  border-color: #111615;
  color: #111615;
  transform: translateY(-1px);
}

.mps-reebelo-cart-note {
  border-top: 1px solid #f0f0f0;
  padding: 17px 24px;
  color: #8b9391;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.mps-reebelo-cart-summary-items {
  padding: 0;
}

.mps-reebelo-cart-trust {
  margin-top: 22px;
  overflow: hidden;
}

.mps-reebelo-cart-trust h3 {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 20px;
  color: #111615;
  font-size: 17px;
  font-weight: 700;
}

.mps-reebelo-cart-trust ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 20px;
  color: #303835;
  font-size: 15px;
  font-weight: 500;
  list-style: none;
}

.mps-reebelo-cart-trust p {
  padding: 16px 18px;
}

.mps-reebelo-cart-trust li::before {
  content: "\2713";
  margin-right: 9px;
  color: #008f7a;
  font-weight: 700;
}

.mps-reebelo-cart-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  color: rgba(17, 22, 21, 0.44);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mps-reebelo-cart-steps span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mps-reebelo-cart-steps span:not(:last-child)::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(17, 22, 21, 0.18);
}

.mps-reebelo-cart-steps .is-active {
  color: #111615;
}

.mps-reebelo-cart-steps-mobile {
  display: none;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.mps-reebelo-cart-recs {
  margin: 28px 0 34px;
}

.mps-reebelo-cart-recs h2,
.mps-reebelo-cart-items-head h2 {
  margin: 0 0 12px;
  color: #111615;
  font-size: 21px;
  font-weight: 700;
}

.mps-reebelo-cart-recs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mps-reebelo-cart-rec {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  border: 1px solid #e7ecea;
  padding: 16px;
  color: #111615;
  font-size: 14px;
  text-decoration: none;
  box-shadow: none;
}

.mps-reebelo-cart-rec img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.mps-reebelo-cart-rec a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: inherit;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.mps-reebelo-cart-rec strong {
  color: #111615;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.mps-reebelo-cart-rec button {
  grid-column: 3;
  min-width: 64px;
  border: 1px solid #111615;
  border-radius: 8px;
  padding: 9px 14px;
  color: #111615;
  font-size: 15px;
  font-weight: 700;
}

.mps-reebelo-cart-showcase {
  margin-top: 36px;
}

.mps-reebelo-cart-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #dfe7e3;
  margin-bottom: 0;
  padding-bottom: 18px;
}

.mps-reebelo-cart-section-head h2 {
  margin: 0;
  color: #111615;
  font-size: 23px;
  font-weight: 700;
}

.mps-reebelo-cart-section-head button {
  color: #47524f;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

.mps-reebelo-cart-best-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #e7ecea;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #fff;
}

.mps-reebelo-cart-best {
  position: relative;
  display: grid;
  min-height: 286px;
  align-content: start;
  gap: 12px;
  border-right: 1px solid #e7ecea;
  background: #fff;
  padding: 18px;
  color: #111615;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.mps-reebelo-cart-best:hover {
  background: #fbfcfc;
  color: #111615;
}

.mps-reebelo-cart-best span {
  width: max-content;
  border-radius: 999px;
  background: #fff0f4;
  padding: 5px 10px;
  color: #ff2d67;
  font-size: 12px;
  font-weight: 700;
}

.mps-reebelo-cart-best img {
  width: 100%;
  height: 126px;
  object-fit: contain;
}

.mps-reebelo-cart-best h3 {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.mps-reebelo-cart-best p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.mps-reebelo-cart-intro {
  display: grid;
  gap: 6px;
  margin: 0 0 28px;
}

.mps-reebelo-cart-intro p {
  margin: 0;
  color: #65716d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mps-reebelo-cart-intro h1 {
  margin: 0;
  color: #111615;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.mps-reebelo-cart-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mps-reebelo-cart-intro-points span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid #cbe7e0;
  border-radius: 999px;
  background: #f2fffb;
  padding: 0 10px;
  color: #17675a;
  font-size: 11px;
  font-weight: 750;
}

.mps-reebelo-cart-page > .bg-gray-700 {
  background-color: #000;
}

.mps-reebelo-cart-page .font-black {
  font-weight: 700;
}

.mps-reebelo-cart-items-card {
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 22, 21, 0.045);
}

.mps-reebelo-cart-items-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 20px;
}

.mps-reebelo-cart-items-head span {
  display: block;
  margin-bottom: 2px;
  color: #74807d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.mps-reebelo-cart-items-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.mps-reebelo-cart-items-head button,
.mps-reebelo-cart-line-price > button {
  color: #1f2323;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
}

.mps-reebelo-cart-line {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(150px, auto);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #edf0ef;
  padding: 18px 20px;
}

.mps-reebelo-cart-line:last-child {
  border-bottom: 0;
}

.mps-reebelo-cart-line-image {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid #edf0ef;
  border-radius: 8px;
  background: #fafbfb;
}

.mps-reebelo-cart-line-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mps-reebelo-cart-line-info h2 {
  margin: 0 0 5px;
  color: #111615;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
}

.mps-reebelo-cart-line-info h2 a {
  color: inherit;
  text-decoration: none;
}

.mps-reebelo-cart-line-info h2 a:hover {
  text-decoration: underline;
}

.mps-reebelo-cart-line-info p {
  margin: 0 0 8px;
  color: #66706d;
  font-size: 14px;
  line-height: 1.35;
}

.mps-reebelo-cart-line-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mps-reebelo-cart-line-tags span {
  border: 1px solid #e1e8e5;
  border-radius: 999px;
  padding: 5px 9px;
  color: #4f5a57;
  font-size: 13px;
  font-weight: 500;
}

.mps-reebelo-cart-line-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 9px 12px;
  color: #111615;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.mps-reebelo-cart-line-price strong {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}

.mps-reebelo-cart-line-price > span {
  color: #69736f;
  font-weight: 500;
}

.mps-reebelo-cart-qty {
  display: inline-grid;
  grid-template-columns: 32px 36px 32px;
  overflow: hidden;
  border: 1px solid #cfd9d5;
  border-radius: 8px;
  background: #fff;
}

.mps-reebelo-cart-qty button,
.mps-reebelo-cart-qty span {
  display: grid;
  min-height: 32px;
  place-items: center;
  color: #111615;
  font-size: 15px;
  font-weight: 700;
}

.mps-reebelo-cart-empty {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 34px 22px 38px;
  text-align: center;
}

.mps-reebelo-cart-empty[hidden] {
  display: none;
}

.mps-reebelo-cart-empty h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.mps-reebelo-cart-empty p {
  margin: 0 0 18px;
  color: #5b6666;
}

.mps-reebelo-cart-mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e5e5e5;
  background: #fff;
  padding: 14px 18px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.mps-reebelo-cart-mobile-bar span {
  display: block;
  color: #5b6666;
  font-size: 12px;
  font-weight: 600;
}

.mps-reebelo-cart-mobile-bar strong {
  color: #1f2323;
  font-size: 17px;
  font-weight: 700;
}

.mps-reebelo-cart-mobile-bar a {
  display: inline-flex;
  min-height: 42px;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #1f2323;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .mps-reebelo-cart-main {
    background: #f6f7f7;
    padding-bottom: 106px;
  }

  .mps-reebelo-cart-grid {
    width: min(100% - 28px, 900px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mps-reebelo-cart-summary-wrap,
  .mps-reebelo-cart-items-wrap {
    order: initial;
    padding: 0 0 34px;
    border-right: 0;
    background: transparent;
  }

  .mps-reebelo-cart-summary-wrap {
    order: 1;
  }

  .mps-reebelo-cart-items-wrap {
    order: 2;
  }

  .mps-reebelo-cart-steps {
    display: none;
  }

  .mps-reebelo-cart-steps-mobile {
    display: flex;
  }

  .mps-reebelo-cart-saved {
    display: none;
  }

  .mps-reebelo-cart-summary-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 20px;
    color: #1f2323;
    font-size: 14px;
    font-weight: 700;
  }

  .mps-reebelo-cart-summary {
    margin: 18px 0;
  }

  .mps-reebelo-cart-summary:not(.is-open) .mps-reebelo-cart-summary-total,
  .mps-reebelo-cart-summary:not(.is-open) .mps-reebelo-cart-summary-actions,
  .mps-reebelo-cart-summary:not(.is-open) .mps-reebelo-cart-note {
    display: none;
  }

  .mps-reebelo-cart-trust {
    display: none;
  }

  .mps-reebelo-cart-items-card {
    padding: 0;
    box-shadow: 0 8px 20px rgba(31, 35, 35, 0.08);
  }

  .mps-reebelo-cart-intro {
    margin-top: 8px;
  }

  .mps-reebelo-cart-intro h1 {
    font-size: clamp(2.4rem, 10vw, 4.5rem);
  }

  .mps-reebelo-cart-best-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .mps-reebelo-cart-header {
    height: 58px;
  }

  .mps-reebelo-cart-header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .mps-reebelo-cart-header-status {
    display: none;
  }

  .mps-reebelo-cart-logo img {
    height: 36px;
  }

  .mps-reebelo-cart-logo {
    justify-content: center;
  }

  .mps-reebelo-cart-logo img {
    height: 38px;
  }

  .mps-reebelo-cart-steps-mobile {
    width: min(100% - 24px, 900px);
  }

  .mps-reebelo-cart-grid {
    width: min(100% - 20px, 900px);
    gap: 12px;
  }

  .mps-reebelo-cart-summary-total {
    padding: 20px 18px;
  }

  .mps-reebelo-cart-summary-total h2 {
    font-size: 23px;
  }

  .mps-reebelo-cart-summary-total strong {
    font-size: 22px;
  }

  .mps-reebelo-cart-summary-actions {
    padding: 18px;
  }

  .mps-reebelo-cart-checkout,
  .mps-reebelo-cart-secondary,
  .mps-reebelo-cart-empty a {
    min-height: 48px;
    font-size: 15px;
  }

  .mps-reebelo-cart-intro {
    margin: 4px 0 22px;
  }

  .mps-reebelo-cart-intro p {
    font-size: 13px;
  }

  .mps-reebelo-cart-intro h1 {
    font-size: clamp(2.15rem, 13vw, 3.6rem);
    line-height: 0.92;
  }

  .mps-reebelo-cart-recs-grid {
    grid-template-columns: 1fr;
  }

  .mps-reebelo-cart-rec {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 104px;
    padding: 14px;
  }

  .mps-reebelo-cart-rec img {
    width: 58px;
    height: 58px;
  }

  .mps-reebelo-cart-section-head {
    align-items: flex-end;
  }

  .mps-reebelo-cart-section-head h2 {
    font-size: 24px;
  }

  .mps-reebelo-cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 15px 16px;
  }

  .mps-reebelo-cart-line-price {
    grid-column: 2;
    justify-content: flex-start;
    text-align: left;
  }

  .mps-reebelo-cart-line-image {
    width: 60px;
    height: 60px;
  }

  .mps-reebelo-cart-mobile-bar {
    display: flex;
  }

  .mps-reebelo-cart-best-grid {
    grid-template-columns: 1fr;
  }

  .mps-reebelo-cart-best {
    min-height: 250px;
  }
}

/* SECTION: Shared cart, cookie, and skeleton UI */
.mps-cart-link-with-badge {
  position: relative;
}

.mps-cart-badge {
  position: absolute;
  top: -10px;
  right: -12px;
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.mps-cart-toast {
  position: fixed;
  right: 22px;
  top: 92px;
  z-index: 95;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(430px, calc(100vw - 32px));
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mps-cart-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mps-cart-toast-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #e8fff4;
  color: #047857;
  font-weight: 900;
}

.mps-cart-toast strong {
  display: block;
  color: #111;
  font-size: 14px;
  line-height: 1.25;
}

.mps-cart-toast p {
  margin: 3px 0 0;
  color: #667;
  font-size: 12px;
}

.mps-cart-toast a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.mps-cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(8, 12, 12, 0.38));
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  transition: opacity 180ms ease;
}

.mps-cookie-card {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 97;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  width: min(520px, calc(100vw - 32px));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(7, 8, 8, 0.94);
  color: #fff;
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mps-cookie-card.is-dismissed {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96) !important;
}

.mps-cookie-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #f0b572, #9b5a22 72%);
  box-shadow: inset -3px -4px 6px rgba(0, 0, 0, 0.28), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.mps-cookie-icon span {
  position: absolute;
  border-radius: 999px;
  background: #2d1607;
}

.mps-cookie-icon span:nth-child(1) { top: 12px; left: 13px; width: 8px; height: 8px; }
.mps-cookie-icon span:nth-child(2) { top: 16px; right: 12px; width: 7px; height: 7px; }
.mps-cookie-icon span:nth-child(3) { bottom: 11px; left: 18px; width: 8px; height: 8px; }
.mps-cookie-icon span:nth-child(4) { bottom: 16px; right: 17px; width: 5px; height: 5px; }

.mps-cookie-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.mps-cookie-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.mps-cookie-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.mps-cookie-actions a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mps-cookie-actions button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
}

.mps-cookie-actions button[data-cookie-accept] {
  border: 0;
  background: #87f1ef;
  color: #071111;
  padding: 11px 18px;
}

.mps-image-loading {
  background: linear-gradient(90deg, #f2f4f4 25%, #fafafa 37%, #f2f4f4 63%);
  background-size: 400% 100%;
  animation: mpsImageSkeleton 1.25s ease infinite;
}

@keyframes mpsImageSkeleton {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

@media (max-width: 640px) {
  .mps-cart-toast {
    top: 82px;
    right: 12px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .mps-cart-toast a {
    grid-column: 2;
    width: fit-content;
  }

  .mps-cookie-card {
    width: calc(100vw - 24px);
    padding: 13px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .mps-cookie-icon {
    width: 40px;
    height: 40px;
  }
}

/* SECTION: Mac'sPhoneStore catalog assistant */
.macs-ai-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.macs-ai-toggle:hover {
  background: #222;
  transform: translateY(-2px);
}

.macs-ai-window {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 90;
  display: none;
  width: 410px;
  max-width: calc(100vw - 28px);
  height: 610px;
  max-height: calc(100vh - 120px);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.macs-ai-window.is-open {
  display: flex;
  flex-direction: column;
}

.macs-ai-header {
  padding: 18px;
  background: linear-gradient(135deg, #8ff2ee, #98f0c6);
  color: #111;
}

.macs-ai-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.macs-ai-header h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.macs-ai-header p {
  margin: 6px 0 0;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.4;
}

.macs-ai-close {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #111;
  font-size: 20px;
  line-height: 1;
}

.macs-ai-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.macs-ai-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
}

.macs-ai-messages {
  flex: 1;
  overflow-y: auto;
  background: #fafafa;
  padding: 16px;
}

.macs-ai-message {
  max-width: 88%;
  margin-bottom: 11px;
  border-radius: 17px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.45;
  word-wrap: break-word;
}

.macs-ai-message.is-bot {
  border: 1px solid #eee;
  border-top-left-radius: 6px;
  background: #fff;
  color: #111;
}

.macs-ai-message.is-user {
  margin-left: auto;
  border-top-right-radius: 6px;
  background: #111;
  color: #fff;
}

.macs-ai-message strong {
  display: block;
  margin-bottom: 3px;
  color: inherit;
  font-size: 12px;
  opacity: 0.75;
}

.macs-ai-product-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  margin-top: 10px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
  padding: 10px;
}

.macs-ai-product-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.macs-ai-product-card h3 {
  margin: 0 0 4px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.macs-ai-product-card p {
  margin: 3px 0;
  color: #374151;
  font-size: 13px;
}

.macs-ai-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
}

.macs-ai-product-actions a,
.macs-ai-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.macs-ai-product-actions a.macs-ai-whatsapp,
.macs-ai-whatsapp {
  background: #25d366;
  color: #062b14;
}

.macs-ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  padding: 12px 14px;
}

.macs-ai-chips button {
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 700;
}

.macs-ai-chips button:hover {
  background: #f5f5f5;
}

.macs-ai-form {
  display: flex;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  padding: 14px;
}

.macs-ai-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.macs-ai-form input:focus {
  border-color: #111;
}

.macs-ai-form button {
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 0 16px;
  font-weight: 700;
}

@media (max-width: 520px) {
  .macs-ai-window {
    right: 14px;
    bottom: 88px;
    height: 72vh;
  }

  .macs-ai-toggle {
    right: 16px;
    bottom: 16px;
  }
}

.mps-recent-clear {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

[data-carousel="recently-viewed"] .swiper {
  overflow-x: auto;
  scrollbar-width: none;
}

[data-carousel="recently-viewed"] .swiper::-webkit-scrollbar {
  display: none;
}

.mps-currency-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
}

.mps-currency-switcher button {
  min-width: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
}

.mps-currency-switcher button.is-active {
  background: #92f7fa;
  color: #1f2323;
}

.mps-phone-image-fallback {
  position: relative;
  display: flex;
  width: 86px;
  min-height: 112px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #1f2323;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #e9fbfb, #f7f7f7 52%, #d9dde2);
  box-shadow: inset 0 0 0 5px #fff, 0 12px 24px rgba(31, 35, 35, 0.12);
  color: #1f2323;
  text-align: center;
}

.mps-phone-image-fallback::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: #1f2323;
  content: "";
  transform: translateX(-50%);
}

.mps-phone-image-fallback span {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  max-width: 68px;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.18;
}

/* SECTION: MACs Featured Product, Collection Showcase, and Buying Guide */
.mps-section-kicker {
  margin: 0 0 4px;
  color: #ef686a;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.mps-featured-product-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mps-section-icon-button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dcdf;
  border-radius: 999px;
  background: #fff;
  color: #1f2323;
  cursor: pointer;
}

.mps-section-icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mps-featured-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.55fr);
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.mps-featured-product-media,
.mps-featured-product-card,
.mps-collection-showcase-card,
.mps-buying-guide-copy,
.mps-buying-guide-image {
  border: 1px solid #d7dcdf;
  border-radius: 8px;
  background: #fff;
}

.mps-featured-product-media {
  min-height: 320px;
  overflow: hidden;
}

.mps-featured-product-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.mps-featured-product-card {
  display: flex;
  width: min(100%, 255px);
  min-height: 0;
  align-self: center;
  justify-self: end;
  flex-direction: column;
  padding: 14px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.mps-featured-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.mps-featured-product-category,
.mps-featured-product-rating {
  margin: 0;
  color: #697174;
  font-size: 0.8rem;
  font-weight: 700;
}

.mps-featured-product-card h3 {
  margin: 8px 0 12px;
  color: #1f2323;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.04;
}

.mps-featured-product-thumb {
  display: flex;
  min-height: 76px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.mps-featured-product-thumb img {
  max-width: 128px;
  max-height: 105px;
  object-fit: contain;
}

.mps-featured-product-price {
  margin: 0 0 14px;
  color: #1f2323;
  font-size: 0.9rem;
  font-weight: 700;
}

.mps-featured-product-link,
.mps-buying-guide-copy a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1f2323;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.mps-featured-product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.mps-featured-product-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfd6d9;
  cursor: pointer;
}

.mps-featured-product-dots button.is-active {
  width: 26px;
  background: #1f2323;
}

.mps-collection-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.mps-collection-showcase-card {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  color: #000;
  text-decoration: none;
}

.mps-collection-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mps-collection-showcase-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #000;
}

.mps-collection-showcase-card h3 {
  margin: 0 0 8px;
  color: #000;
  font-size: 1.3rem;
  line-height: 1.2;
}

.mps-collection-showcase-card p {
  margin: 0;
  color: #000;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* SECTION: Four-card category discovery grid */
.mps-category-discovery {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.mps-category-discovery-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.mps-category-discovery-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid #dce5e5;
  border-radius: 999px;
  color: #526060;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mps-category-discovery-heading h2 {
  max-width: 680px;
  margin: 0 auto;
  color: #111b1b;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.mps-category-discovery-heading > p:not(.mps-category-discovery-kicker) {
  max-width: 550px;
  margin: 16px auto 20px;
  color: #667273;
  font-size: 15px;
  line-height: 1.55;
}

.mps-category-discovery-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border-radius: 999px;
  background: #172323;
  box-shadow: 0 7px 14px rgba(23, 35, 35, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.mps-category-discovery-cta:hover {
  background: #008f7a;
  color: #fff;
  transform: translateY(-2px);
}

.mps-category-discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mps-category-discovery-card {
  position: relative;
  display: flex;
  min-height: clamp(235px, 27vw, 355px);
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid #e1e8e8;
  border-radius: 18px;
  background: #f4f7f7;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(22, 36, 36, 0.04);
}

.mps-category-discovery-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(8, 17, 17, 0) 33%, rgba(8, 17, 17, 0.12) 48%, rgba(8, 17, 17, 0.9) 100%);
}

.mps-category-discovery-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 450ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.mps-category-discovery-card:nth-child(4) img {
  object-fit: contain;
  padding: 8%;
  background: radial-gradient(circle at 50% 35%, #52676a, #172323 74%);
}

.mps-category-discovery-card:hover img {
  transform: scale(1.055);
}

.mps-category-discovery-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px;
}

.mps-category-discovery-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mps-category-discovery-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.mps-category-discovery-card b {
  display: inline-flex;
  margin-top: 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.86;
  transition: gap 180ms ease, opacity 180ms ease;
}

.mps-category-discovery-card:hover b {
  opacity: 1;
}

.mps-category-discovery-card b span {
  display: inline;
  margin: 0 0 0 6px;
  color: inherit;
  font: inherit;
}

/* SECTION: Circular economy Instagram reel gallery */
.mps-circular-reels {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.mps-circular-reels__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.mps-circular-reels__eyebrow {
  margin: 0 0 7px;
  color: #008f7a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mps-circular-reels__header h2 {
  margin: 0;
  color: #152222;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.mps-circular-reels__header p:not(.mps-circular-reels__eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: #667273;
  font-size: 14px;
  line-height: 1.55;
}

.mps-circular-reels__header > a {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 1px solid #cfdede;
  border-radius: 999px;
  color: #172323;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mps-circular-reels__header > a:hover {
  border-color: #008f7a;
  background: #008f7a;
  color: #fff;
}

.mps-circular-reels__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.mps-circular-reel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dae4e4;
  border-radius: 16px;
  background: #182727;
  aspect-ratio: 9 / 16;
  box-shadow: 0 3px 10px rgba(20, 35, 35, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.mps-circular-reel:hover {
  border-color: #9ebdbb;
  box-shadow: 0 14px 28px rgba(20, 35, 35, 0.17);
  transform: translateY(-4px);
}

.mps-circular-reel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #182727;
  pointer-events: none;
}

.mps-circular-reel > a {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  background: linear-gradient(180deg, rgba(8, 18, 18, 0.18), transparent 42%, rgba(8, 18, 18, 0.76));
  color: #fff;
  text-decoration: none;
}

.mps-circular-reel__play {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 12px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.mps-circular-reel:hover .mps-circular-reel__play {
  background: #fff;
  color: #172323;
  transform: scale(1.08);
}

.mps-circular-reel__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

.mps-circular-reel__caption b {
  font-size: 15px;
}

/* SECTION: Circular economy hover preview refinement
   Uses the original vertical carousel card design while previewing each video
   in place; selecting a card opens its matching Instagram reel. */
.mps-circular-preview-carousel .swiper-slide {
  overflow: visible;
}

.mps-circular-preview-card {
  overflow: hidden;
  border: 1px solid #dbe5e5;
  border-radius: 14px;
  background: #172323;
  box-shadow: 0 3px 10px rgba(21, 34, 34, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.mps-circular-preview-card:hover,
.mps-circular-preview-card:focus-visible {
  border-color: #8cb8b5;
  box-shadow: 0 14px 28px rgba(21, 34, 34, 0.16);
  transform: translateY(-4px);
}

.mps-circular-preview-card video {
  display: block;
  background: #172323;
}

.mps-circular-preview-card iframe {
  display: block;
  width: 124%;
  height: 124%;
  margin: -12%;
  border: 0;
  background: #172323;
  pointer-events: none;
}

.mps-circular-preview-card::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.mps-circular-preview-card:hover::after,
.mps-circular-preview-card:focus-visible::after {
  opacity: 1;
}

.mps-circular-preview-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 32;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(20, 35, 35, 0.62);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 15px;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mps-circular-preview-card:hover .mps-circular-preview-card__play,
.mps-circular-preview-card:focus-visible .mps-circular-preview-card__play,
.mps-circular-preview-card.is-previewing .mps-circular-preview-card__play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
}

.mps-buying-guide-copy p {
  margin: 0;
  color: #566063;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mps-buying-guide-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.mps-buying-guide-copy {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.mps-buying-guide-copy h2 {
  margin: 0 0 12px;
  color: #1f2323;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.mps-buying-guide-copy a {
  width: fit-content;
  margin-top: 18px;
  padding: 0 18px;
}

.mps-buying-guide-image {
  min-height: 320px;
  overflow: hidden;
}

.mps-buying-guide-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* SECTION: Devices, trade-ins, and repairs feature block */
.mps-trust-devices-section {
  color: #050505;
}

.mps-trust-devices-kicker {
  margin: 0 0 26px;
  color: #151515;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.mps-trust-devices-section > h2 {
  max-width: 1120px;
  margin: 0;
  color: #000;
  font-size: clamp(3.1rem, 6.1vw, 5.9rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.mps-trust-devices-divider {
  height: 1px;
  margin: 72px 0 48px;
  background: #e4e4e4;
}

.mps-trust-devices-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}

.mps-trust-devices-points article p {
  margin: 0 0 12px;
  color: #30343a;
  font-size: 1rem;
  line-height: 1.25;
}

.mps-trust-devices-points article h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.18;
}

.mps-trust-devices-points article span {
  display: block;
  color: #24272c;
  font-size: 1.05rem;
  line-height: 1.45;
}

.mps-trust-devices-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 62px;
}

.mps-trust-devices-media-card {
  position: relative;
  min-height: 585px;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  color: #000;
}

.mps-trust-devices-media-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mps-trust-devices-media-card div {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  z-index: 1;
}

.mps-trust-devices-media-card h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
}

.mps-trust-devices-media-card p {
  max-width: 500px;
  margin: 0;
  color: #000;
  font-size: 1.02rem;
  line-height: 1.45;
}

.mps-trust-devices-upgrade-panel {
  position: relative;
  min-height: 660px;
  margin-top: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: #dcdcdc;
  color: #000;
}

.mps-trust-devices-upgrade-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mps-trust-devices-upgrade-panel div {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  z-index: 1;
}

.mps-trust-devices-upgrade-panel h3 {
  max-width: 650px;
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.mps-trust-devices-upgrade-panel p {
  max-width: 520px;
  margin: 0;
  color: #000;
  font-size: 1.03rem;
  line-height: 1.45;
}

/* SECTION: Mac'sPhoneStore FAQ under Circular Economy */
.mps-faq-section {
  color: #1f2323;
}

.mps-faq-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.mps-faq-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.mps-faq-heading p:last-child {
  margin: 0;
  color: #566063;
  font-size: 1rem;
  line-height: 1.55;
}

.mps-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(280px, 0.9fr);
  gap: 24px;
}

.mps-faq-group {
  margin-bottom: -1px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.mps-faq-group-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: #1f2323;
  text-align: left;
  transition: background-color 180ms ease;
}

.mps-faq-group-button:hover {
  background: #f8f8f8;
}

.mps-faq-group-button > span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.mps-faq-group-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mps-faq-plus {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #eaeaea;
  color: #1f2323;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.mps-faq-group.is-open .mps-faq-plus {
  background: #1f2323;
  color: #fff;
}

.mps-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 220ms ease, opacity 220ms ease;
}

.mps-faq-group.is-open .mps-faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.mps-faq-inner {
  overflow: hidden;
  padding: 0 20px;
}

.mps-faq-group.is-open .mps-faq-inner {
  padding-bottom: 20px;
}

.mps-faq-inner h3 {
  margin: 18px 0 8px;
  color: #1f2323;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.mps-faq-inner p {
  margin: 0 0 10px;
  color: #3c4447;
  font-size: 0.95rem;
  line-height: 1.6;
}

.mps-faq-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mps-faq-trust-card,
.mps-faq-help-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.mps-faq-trust-card {
  display: flex;
  min-height: 300px;
  align-items: flex-start;
  padding: 28px;
  background: radial-gradient(118.2% 123.12% at 14.13% 8.86%, #fffaf8 33.07%, #f1d2c5 100%);
}

.mps-faq-trust-card h3 {
  max-width: 240px;
  margin: 0;
  color: #1f2323;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.mps-faq-help-card {
  padding: 24px;
  background: #f8f8f8;
}

.mps-faq-help-card h3 {
  margin: 0 0 12px;
  color: #1f2323;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.mps-faq-help-card p {
  margin: 0 0 12px;
  color: #3c4447;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mps-faq-help-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border-radius: 999px;
  background: #1f2323;
  padding: 0 16px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

/* SECTION: Help Center visual refresh */
.mps-faq-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.mps-faq-heading {
  max-width: 690px;
  margin: 0 auto 34px;
  text-align: center;
}

.mps-faq-heading .mps-section-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 13px;
  padding: 0 12px;
  border: 1px solid #e8cbc0;
  border-radius: 999px;
  background: #fff;
  color: #a6634d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.mps-faq-heading h2 {
  margin-bottom: 13px;
  color: #2b2422;
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.mps-faq-heading p:last-child {
  max-width: 610px;
  margin-right: auto;
  margin-left: auto;
  color: #6e625e;
  font-size: 15px;
}

.mps-faq-layout {
  align-items: start;
  gap: 28px;
}

.mps-faq-list {
  display: grid;
  gap: 10px;
}

.mps-faq-group {
  margin: 0;
  border: 1px solid #ead9d3;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(57, 39, 33, 0.025);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mps-faq-group:hover,
.mps-faq-group.is-open {
  border-color: #d9aa98;
  box-shadow: 0 9px 22px rgba(69, 42, 33, 0.09);
}

.mps-faq-group-button {
  min-height: 72px;
  padding: 18px 20px;
  border-radius: 13px;
  font-size: 15px;
}

.mps-faq-group-button:hover,
.mps-faq-group.is-open .mps-faq-group-button {
  background: #fdf8f6;
}

.mps-faq-group-button > span:first-child {
  gap: 14px;
  font-weight: 800;
}

.mps-faq-group-button svg {
  width: 21px;
  height: 21px;
  color: #c68a73;
}

.mps-faq-plus {
  width: 32px;
  height: 32px;
  border: 1px solid #e7d0c7;
  border-radius: 50%;
  background: #fff;
  color: #9b624e;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mps-faq-group.is-open .mps-faq-plus {
  background: #c68a73;
  color: #fff;
  transform: rotate(45deg);
}

.mps-faq-inner {
  padding-right: 22px;
  padding-left: 55px;
}

.mps-faq-group.is-open .mps-faq-inner {
  padding-bottom: 23px;
}

.mps-faq-inner h3 {
  margin-top: 13px;
  color: #332722;
  font-size: 14px;
  font-weight: 800;
}

.mps-faq-inner p {
  color: #6c625f;
  font-size: 14px;
  line-height: 1.65;
}

.mps-faq-aside {
  gap: 14px;
}

.mps-faq-trust-card,
.mps-faq-help-card {
  border: 1px solid #ead9d3;
  border-radius: 16px;
}

.mps-faq-trust-card {
  position: relative;
  min-height: 245px;
  align-items: flex-end;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(145deg, #382722 0%, #754a3c 60%, #c68a73 130%);
}

.mps-faq-trust-card::before {
  position: absolute;
  top: -96px;
  right: -72px;
  width: 230px;
  height: 230px;
  border: 36px solid rgba(255, 235, 226, 0.2);
  border-radius: 50%;
  content: "";
}

.mps-faq-trust-card::after {
  position: absolute;
  top: 25px;
  left: 26px;
  content: "MAC'S SUPPORT";
  color: #f2d1c2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mps-faq-trust-card h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.mps-faq-help-card {
  padding: 24px;
  background: #fcf7f5;
}

.mps-faq-help-card h3 {
  color: #2b2422;
  font-weight: 800;
}

.mps-faq-help-card p {
  color: #6c625f;
}

.mps-faq-help-card a {
  width: 100%;
  border-radius: 9px;
  background: #172323;
  transition: background-color 180ms ease, transform 180ms ease;
}

.mps-faq-help-card a:hover {
  background: #c68a73;
  color: #fff;
  transform: translateY(-1px);
}

@media (width < 900px) {
  .mps-featured-product-shell,
  .mps-buying-guide-section {
    grid-template-columns: 1fr;
  }

  .mps-featured-product-card {
    width: 100%;
    justify-self: stretch;
  }

  .mps-collection-showcase-grid {
    grid-template-columns: 1fr;
  }

  .mps-collection-showcase-card {
    min-height: 390px;
  }

  .mps-collection-showcase-card img {
    height: 100%;
  }

  .mps-featured-product-media,
  .mps-featured-product-media img,
  .mps-buying-guide-image,
  .mps-buying-guide-image img {
    min-height: 240px;
  }

  .mps-trust-devices-section > h2 {
    font-size: clamp(2.5rem, 12vw, 4.3rem);
  }

  .mps-trust-devices-divider {
    margin: 42px 0 32px;
  }

  .mps-trust-devices-points,
  .mps-trust-devices-media-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mps-trust-devices-media-grid {
    margin-top: 44px;
  }

  .mps-trust-devices-media-card {
    min-height: 420px;
  }

  .mps-trust-devices-media-card div,
  .mps-trust-devices-upgrade-panel div {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .mps-trust-devices-upgrade-panel {
    min-height: 500px;
  }

  .mps-faq-layout {
    grid-template-columns: 1fr;
  }

  .mps-faq-aside {
    flex-direction: column;
  }
}
@media (width>=1400px) {
  .reebelo-container {
    width: 100%;
  }
  @media (width>=350px) {
    .reebelo-container {
      max-width: 350px;
    }
  }
  @media (width>=376px) {
    .reebelo-container {
      max-width: 376px;
    }
  }
  @media (width>=480px) {
    .reebelo-container {
      max-width: 480px;
    }
  }
  @media (width>=640px) {
    .reebelo-container {
      max-width: 640px;
    }
  }
  @media (width>=768px) {
    .reebelo-container {
      max-width: 768px;
    }
  }
  @media (width>=1024px) {
    .reebelo-container {
      max-width: 1024px;
    }
  }
  @media (width>=1280px) {
    .reebelo-container {
      max-width: 1280px;
    }
  }
  @media (width>=1400px) {
    .reebelo-container {
      max-width: 1400px;
    }
  }
  @media (width>=1536px) {
    .reebelo-container {
      max-width: 1536px;
    }
  }
}
@media (width>=640px) {
  .reebelo-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .mps-nav-logo-link {
    min-width: 132px;
  }
  .mps-nav-logo {
    width: 132px;
    max-height: 42px;
  }
}
@media (width>=1024px) {
  .mps-nav-logo-link {
    min-width: 150px;
  }
  .mps-nav-logo {
    width: 150px;
    max-height: 48px;
  }
}
/* SECTION: Generated layout, spacing, sizing, color, and typography utilities */
.pointer-events-none {
  pointer-events: none;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.inset-0 {
  inset: 0;
}
.inset-y-0 {
  top: 0;
  bottom: 0;
}
.-left-6 {
  left: -1.5rem;
}
.-right-3 {
  right: -0.75rem;
}
.-right-6 {
  right: -1.5rem;
}
.-top-6 {
  top: -1.5rem;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.left-1\/2 {
  left: 50%;
}
.left-3 {
  left: 0.75rem;
}
.right-0 {
  right: 0;
}
.right-3 {
  right: 0.75rem;
}
.right-\[-30px\] {
  right: -30px;
}
.right-\[-70px\] {
  right: -70px;
}
.right-\[-75px\] {
  right: -75px;
}
.top-0 {
  top: 0;
}
.top-1\/2,
.top-2\/4 {
  top: 50%;
}
.top-3 {
  top: 0.75rem;
}
.top-\[-15px\] {
  top: -15px;
}
.top-\[-20px\] {
  top: -20px;
}
.top-\[-7px\] {
  top: -7px;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[11\] {
  z-index: 11;
}
.col-span-12 {
  grid-column: span 12 / span 12;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.\!my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.-mt-px {
  margin-top: -1px;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.mr-1\.5 {
  margin-right: 0.375rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-\[9\/16\] {
  aspect-ratio: 9/16;
}
.h-0 {
  height: 0;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[100px\] {
  height: 100px;
}
.h-\[110px\] {
  height: 110px;
}
.h-\[130px\] {
  height: 130px;
}
.h-\[16px\] {
  height: 16px;
}
.h-\[18px\] {
  height: 18px;
}
.h-\[200px\] {
  height: 200px;
}
.h-\[22px\] {
  height: 22px;
}
.h-\[280px\] {
  height: 280px;
}
.h-fit {
  height: fit-content;
}
.h-full {
  height: 100%;
}
.max-h-20 {
  max-height: 5rem;
}
.max-h-\[50vh\] {
  max-height: 50vh;
}
.min-h-\[265px\] {
  min-height: 265px;
}
.min-h-\[80px\] {
  min-height: 80px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0 {
  width: 0;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-\[18px\] {
  width: 18px;
}
.w-\[22px\] {
  width: 22px;
}
.w-\[25px\] {
  width: 25px;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-\[130px\] {
  min-width: 130px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.max-w-\[130px\] {
  max-width: 130px;
}
.max-w-\[140px\] {
  max-width: 140px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-\[50\%\] {
  max-width: 50%;
}
.max-w-\[50px\] {
  max-width: 50px;
}
.flex-1 {
  flex: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow-0 {
  flex-grow: 0;
}
.-translate-x-1\/2 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
    skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -50%;
}
.-translate-y-1\/2,
.translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
}
.-translate-y-1\/2,
.translate-y-\[-50\%\],
.rotate-\[20deg\] {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
    skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[20deg\] {
  --tw-rotate: 20deg;
}
.scale-90 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
    skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-scale-x: 0.9;
  --tw-scale-y: 0.9;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-text {
  cursor: text;
}
.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.gap-x-3 {
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.gap-x-5 {
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-y-8 {
  row-gap: 2rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
  margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
}
.self-center {
  align-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.\!rounded-t-\[0px\] {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.rounded-b-2xl {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.rounded-b-\[0px\] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.rounded-t-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.rounded-bl-2xl {
  border-bottom-left-radius: 1rem;
}
.rounded-tl-2xl {
  border-top-left-radius: 1rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l-2 {
  border-left-width: 2px;
}
.\!border-\[\#F9F9F9\],
.\!border-\[\#f9f9f9\] {
  --tw-border-opacity: 1 !important;
  border-color: rgb(249 249 249 / var(--tw-border-opacity, 1)) !important;
}
.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(234 234 234 / var(--tw-border-opacity, 1));
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(31 35 35 / var(--tw-border-opacity, 1));
}
.border-white\/20 {
  border-color: #fff3;
}
.\!bg-gray-700 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(31 35 35 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-teal-500 {
  background-color: rgb(146 247 250 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-teal-500,
.\!bg-white {
  --tw-bg-opacity: 1 !important;
}
.\!bg-white {
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}
.bg-\[\#F9F9F9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FEF0F1\] {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 241 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f4f4f4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f9f9f9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity, 1));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}
.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 35 35 / var(--tw-bg-opacity, 1));
}
.bg-teal-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(146 247 250 / var(--tw-bg-opacity, 1));
}
.bg-teal-500\/40 {
  background-color: #92f7fa66;
}
.bg-transparent {
  background-color: #0000;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: #ffffff1a;
}
.bg-\[linear-gradient\(253deg\,_\#92F7FA_-5\.63\%\,_\#92F7FA_62\.21\%\,_\#92FAD5_88\.08\%\)\] {
  background-image: linear-gradient(253deg, #92f7fa -5.63% 62.21%, #92fad5 88.08%);
}
.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.from-gray-700\/10 {
  --tw-gradient-from: #1f23231a var(--tw-gradient-from-position);
  --tw-gradient-to: #1f232300 var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.fill-\[\#E20A45\] {
  fill: #e20a45;
}
.object-contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.object-fill {
  -o-object-fit: fill;
  object-fit: fill;
}
.object-right {
  -o-object-position: right;
  object-position: right;
}
.p-0 {
  padding: 0;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.\!py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.\!pr-0 {
  padding-right: 0 !important;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.align-sub {
  vertical-align: sub;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-xxs {
  font-size: 0.625rem;
}
.font-black {
  font-weight: 700;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.\!leading-none {
  line-height: 1 !important;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.text-\[\#747777\] {
  --tw-text-opacity: 1;
  color: rgb(116 119 119 / var(--tw-text-opacity, 1));
}
.text-\[\#E20A45\] {
  --tw-text-opacity: 1;
  color: rgb(226 10 69 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(31 35 35 / var(--tw-text-opacity, 1));
}
.text-gray-700\/50 {
  color: #1f232380;
}
.text-gray-700\/60 {
  color: #1f232399;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.line-through {
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}
.opacity-100 {
  opacity: 1;
}
.opacity-50 {
  opacity: 0.5;
}
.shadow-\[0_0_40px_rgba\(0\,0\,0\,0\.08\)\] {
  --tw-shadow: 0 0 40px #00000014;
}
.shadow-\[0_0_40px_rgba\(0\,0\,0\,0\.08\)\],
.shadow-lg {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}
.outline-none {
  outline-offset: 2px;
  outline: 2px solid #0000;
}
.drop-shadow-sm {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert)
    var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  --tw-drop-shadow: drop-shadow(0 1px 1px #0000000d);
}
.backdrop-blur-xl {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  --tw-backdrop-blur: blur(24px);
}
.transition {
  transition-property:
    color,
    background-color,
    border-color,
    -webkit-text-decoration-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    -webkit-backdrop-filter,
    backdrop-filter;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-all {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-opacity {
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-100 {
  transition-duration: 0.1s;
}
.duration-150 {
  transition-duration: 0.15s;
}
.duration-200 {
  transition-duration: 0.2s;
}
.duration-300 {
  transition-duration: 0.3s;
}
.duration-500 {
  transition-duration: 0.5s;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
/* SECTION: Site font application */
body {
  font-family: "Manrope", Inter, Arial, sans-serif;
}
/* SECTION: Large-screen container and responsive utility classes */
@media (width>=1024px) {
  .lg\:reebelo-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  @media (width>=1400px) {
    .lg\:reebelo-container {
      width: 100%;
    }
    @media (width>=350px) {
      .lg\:reebelo-container {
        max-width: 350px;
      }
    }
    @media (width>=376px) {
      .lg\:reebelo-container {
        max-width: 376px;
      }
    }
    @media (width>=480px) {
      .lg\:reebelo-container {
        max-width: 480px;
      }
    }
    @media (width>=640px) {
      .lg\:reebelo-container {
        max-width: 640px;
      }
    }
    @media (width>=768px) {
      .lg\:reebelo-container {
        max-width: 768px;
      }
    }
    @media (width>=1024px) {
      .lg\:reebelo-container {
        max-width: 1024px;
      }
    }
    @media (width>=1280px) {
      .lg\:reebelo-container {
        max-width: 1280px;
      }
    }
    @media (width>=1400px) {
      .lg\:reebelo-container {
        max-width: 1400px;
      }
    }
    @media (width>=1536px) {
      .lg\:reebelo-container {
        max-width: 1536px;
      }
    }
  }
  @media (width>=640px) {
    .lg\:reebelo-container {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
}
.after\:absolute:after {
  content: var(--tw-content);
  position: absolute;
}
.after\:-bottom-0\.5:after {
  content: var(--tw-content);
  bottom: -0.125rem;
}
.after\:left-0:after {
  content: var(--tw-content);
  left: 0;
}
.after\:h-px:after {
  content: var(--tw-content);
  height: 1px;
}
.after\:w-full:after {
  content: var(--tw-content);
  width: 100%;
}
.after\:origin-left:after {
  content: var(--tw-content);
  transform-origin: 0;
}
.after\:scale-x-0:after {
  --tw-scale-x: 0;
  content: var(--tw-content);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
    skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.after\:bg-\[currentColor\]:after {
  content: var(--tw-content);
  background-color: currentColor;
}
.after\:transition-transform:after {
  content: var(--tw-content);
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.after\:duration-300:after {
  content: var(--tw-content);
  transition-duration: 0.3s;
}
.after\:ease-in-out:after {
  content: var(--tw-content);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.after\:content-\[\'\'\]:after {
  --tw-content: "";
  content: var(--tw-content);
}
.last\:mb-0:last-child {
  margin-bottom: 0;
}
.last\:border-none:last-child {
  border-style: none;
}
/* SECTION: Hover and interactive states */
@media (hover: hover) and (pointer: fine) {
  .hover\:rotate-90:hover {
    --tw-rotate: 90deg;
  }
  .hover\:scale-105:hover,
  .hover\:rotate-90:hover {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
      skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }
  .hover\:border-gray-700:hover {
    --tw-border-opacity: 1;
    border-color: rgb(31 35 35 / var(--tw-border-opacity, 1));
  }
  .hover\:bg-gray-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(31 35 35 / var(--tw-bg-opacity, 1));
  }
  .hover\:fill-white:hover {
    fill: #fff;
  }
  .hover\:text-teal-500:hover {
    --tw-text-opacity: 1;
    color: rgb(146 247 250 / var(--tw-text-opacity, 1));
  }
  .hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  .hover\:underline:hover {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
  }
  .hover\:opacity-90:hover {
    opacity: 0.9;
  }
  .hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .hover\:\[text-shadow\:0\.5px_0px_0px_\#000\]:hover {
    text-shadow: 0.5px 0 #000;
  }
  .hover\:after\:scale-x-100:hover:after {
    --tw-scale-x: 1;
    content: var(--tw-content);
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
      skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.focus\:rotate-90:focus {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
    skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.focus\:outline-none:focus {
  outline-offset: 2px;
  outline: 2px solid #0000;
}
.active\:rotate-90:active {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
    skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.disabled\:opacity-70:disabled {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  .group:hover .group-hover\:hidden {
    display: none;
  }
  .group:hover .group-hover\:h-5 {
    height: 1.25rem;
  }
  .group:hover .group-hover\:w-5 {
    width: 1.25rem;
  }
  .group:hover .group-hover\:scale-105 {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
      skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }
  .group:hover .group-hover\:opacity-0 {
    opacity: 0;
  }
}
@media (width>=376px) {
  .xxs\:right-0 {
    right: 0;
  }
  .xxs\:right-\[-30px\] {
    right: -30px;
  }
  .xxs\:mt-6 {
    margin-top: 1.5rem;
  }
  .xxs\:inline {
    display: inline;
  }
  .xxs\:flex {
    display: flex;
  }
  .xxs\:hidden {
    display: none;
  }
  .xxs\:h-auto {
    height: auto;
  }
  .xxs\:max-w-\[150px\] {
    max-width: 150px;
  }
  .xxs\:max-w-\[200px\] {
    max-width: 200px;
  }
  .xxs\:max-w-full {
    max-width: 100%;
  }
  .xxs\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xxs\:gap-3 {
    gap: 0.75rem;
  }
  .xxs\:space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
    margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  }
  .xxs\:p-3 {
    padding: 0.75rem;
  }
  .xxs\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .xxs\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .xxs\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .xxs\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .xxs\:font-semibold {
    font-weight: 600;
  }
}
@media (width>=480px) {
  .xs\:right-0 {
    right: 0;
  }
  .xs\:flex {
    display: flex;
  }
  .xs\:h-8 {
    height: 2rem;
  }
  .xs\:h-\[150px\] {
    height: 150px;
  }
  .xs\:w-\[250px\] {
    width: 250px;
  }
  .xs\:max-w-\[250px\] {
    max-width: 250px;
  }
  .xs\:gap-1 {
    gap: 0.25rem;
  }
  .xs\:gap-x-4 {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
  .xs\:gap-y-8 {
    row-gap: 2rem;
  }
  .xs\:p-4 {
    padding: 1rem;
  }
  .xs\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .xs\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (width>=640px) {
  .sm\:mb-0 {
    margin-bottom: 0;
  }
  .sm\:mt-5 {
    margin-top: 1.25rem;
  }
  .sm\:block {
    display: block;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:grid {
    display: grid;
  }
  .sm\:hidden {
    display: none;
  }
  .sm\:h-14 {
    height: 3.5rem;
  }
  .sm\:h-5 {
    height: 1.25rem;
  }
  .sm\:h-\[120px\] {
    height: 120px;
  }
  .sm\:h-\[150px\] {
    height: 150px;
  }
  .sm\:w-14 {
    width: 3.5rem;
  }
  .sm\:w-5 {
    width: 1.25rem;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:max-w-\[320px\] {
    max-width: 320px;
  }
  .sm\:max-w-\[400px\] {
    max-width: 400px;
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:gap-4 {
    gap: 1rem;
  }
  .sm\:gap-8 {
    gap: 2rem;
  }
  .sm\:p-8 {
    padding: 2rem;
  }
  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sm\:pt-0 {
    padding-top: 0;
  }
  .sm\:pt-16 {
    padding-top: 4rem;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (width>=768px) {
  .md\:-right-7 {
    right: -1.75rem;
  }
  .md\:-top-7 {
    top: -1.75rem;
  }
  .md\:left-\[-140px\] {
    left: -140px;
  }
  .md\:right-\[-320px\] {
    right: -320px;
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:grid {
    display: grid;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-12 {
    height: 3rem;
  }
  .md\:h-14 {
    height: 3.5rem;
  }
  .md\:w-14 {
    width: 3.5rem;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:max-w-\[350px\] {
    max-width: 350px;
  }
  .md\:max-w-\[500px\] {
    max-width: 500px;
  }
  .md\:max-w-\[95\%\] {
    max-width: 95%;
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:gap-10 {
    gap: 2.5rem;
  }
  .md\:bg-\[linear-gradient\(88deg\,_\#92F7FA_0\%\,_\#92F7FA_72\.4\%\,_\#92FAD5_100\%\)\] {
    background-image: linear-gradient(88deg, #92f7fa, #92f7fa 72.4%, #92fad5);
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .md\:pl-8 {
    padding-left: 2rem;
  }
  .md\:pt-5 {
    padding-top: 1.25rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (width>=1024px) {
  .lg\:absolute {
    position: absolute;
  }
  .lg\:-right-8 {
    right: -2rem;
  }
  .lg\:-top-8 {
    top: -2rem;
  }
  .lg\:left-\[-130px\] {
    left: -130px;
  }
  .lg\:left-\[-30px\] {
    left: -30px;
  }
  .lg\:right-\[-185px\] {
    right: -185px;
  }
  .lg\:right-auto {
    right: auto;
  }
  .lg\:top-\[-30px\] {
    top: -30px;
  }
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }
  .lg\:ml-3 {
    margin-left: 0.75rem;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:mt-4 {
    margin-top: 1rem;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:h-10 {
    height: 2.5rem;
  }
  .lg\:h-14 {
    height: 3.5rem;
  }
  .lg\:h-16 {
    height: 4rem;
  }
  .lg\:h-24 {
    height: 6rem;
  }
  .lg\:h-5 {
    height: 1.25rem;
  }
  .lg\:h-\[100px\] {
    height: 100px;
  }
  .lg\:h-\[130px\] {
    height: 130px;
  }
  .lg\:h-\[250px\] {
    height: 250px;
  }
  .lg\:min-h-\[80px\] {
    min-height: 80px;
  }
  .lg\:w-14 {
    width: 3.5rem;
  }
  .lg\:w-16 {
    width: 4rem;
  }
  .lg\:w-20 {
    width: 5rem;
  }
  .lg\:w-24 {
    width: 6rem;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:max-w-\[400px\] {
    max-width: 400px;
  }
  .lg\:max-w-\[90\%\] {
    max-width: 90%;
  }
  .lg\:flex-auto {
    flex: auto;
  }
  .lg\:rotate-\[20deg\] {
    --tw-rotate: 20deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
      skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:justify-end {
    justify-content: flex-end;
  }
  .lg\:justify-center {
    justify-content: center;
  }
  .lg\:gap-10 {
    gap: 2.5rem;
  }
  .lg\:gap-12 {
    gap: 3rem;
  }
  .lg\:gap-6 {
    gap: 1.5rem;
  }
  .lg\:rounded-l-2xl {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
  .lg\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .lg\:rounded-r-2xl {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
  .lg\:rounded-tr-none {
    border-top-right-radius: 0;
  }
  .lg\:border {
    border-width: 1px;
  }
  .lg\:border-b {
    border-bottom-width: 1px;
  }
  .lg\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(31 35 35 / var(--tw-border-opacity, 1));
  }
  .lg\:bg-transparent {
    background-color: #0000;
  }
  .lg\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
  .lg\:p-0 {
    padding: 0;
  }
  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .lg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .lg\:\!pl-0 {
    padding-left: 0 !important;
  }
  .lg\:\!pr-2 {
    padding-right: 0.5rem !important;
  }
  .lg\:pl-3 {
    padding-left: 0.75rem;
  }
  .lg\:pr-0 {
    padding-right: 0;
  }
  .lg\:text-left {
    text-align: left;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .lg\:drop-shadow-md {
    --tw-drop-shadow: drop-shadow(0 4px 3px #00000012) drop-shadow(0 2px 2px #0000000f);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert)
      var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  }
}
@media (width>=1280px) {
  .xl\:left-\[-40px\] {
    left: -40px;
  }
  .xl\:right-\[-55px\] {
    right: -55px;
  }
  .xl\:col-span-10 {
    grid-column: span 10 / span 10;
  }
  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .xl\:h-28 {
    height: 7rem;
  }
  .xl\:min-h-\[90px\] {
    min-height: 90px;
  }
  .xl\:w-28 {
    width: 7rem;
  }
  .xl\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

/* SECTION: Hero carousel controls
   Keep the controls in the edge gutter so they never cover hero copy. */
@media (width>=1024px) {
  [data-hero-prev],
  [data-hero-next] {
    top: 50%;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
  }

  [data-hero-prev] {
    left: 0;
  }

  [data-hero-next] {
    right: 0;
  }
}

@media (width < 900px) {
  .mps-category-discovery {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mps-category-discovery-heading {
    margin-bottom: 24px;
  }

  .mps-category-discovery-grid {
    gap: 12px;
  }

  .mps-category-discovery-card {
    min-height: 250px;
    border-radius: 14px;
  }

  .mps-category-discovery-card div {
    padding: 16px;
  }
}

@media (width < 480px) {
  .mps-category-discovery-heading > p:not(.mps-category-discovery-kicker) {
    font-size: 13px;
  }

  .mps-category-discovery-card {
    min-height: 205px;
  }

  .mps-category-discovery-card span {
    font-size: 9px;
  }

  .mps-category-discovery-card h3 {
    font-size: 1.3rem;
  }

  .mps-category-discovery-card b {
    margin-top: 7px;
    font-size: 10px;
  }

  .mps-circular-reels {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mps-circular-reels__header {
    display: block;
    margin-bottom: 18px;
  }

  .mps-circular-reels__header > a {
    margin-top: 16px;
  }

  .mps-circular-reels__grid {
    grid-auto-columns: minmax(164px, 48vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 11px;
    overflow-x: auto;
    padding: 2px 1px 10px;
    scroll-snap-type: x mandatory;
  }

  .mps-circular-reel {
    scroll-snap-align: start;
  }
}

/* SECTION: Native swipe access for card carousels on touch screens */
@media (max-width: 767px) {
  .mps-mobile-search-dropdown {
    position: fixed !important;
    top: var(--mps-mobile-search-top, 164px) !important;
    right: 10px !important;
    left: 10px !important;
    max-height: calc(100dvh - var(--mps-mobile-search-top, 164px) - 12px) !important;
    z-index: 1000 !important;
  }

  .mps-mobile-swipe-carousel {
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .mps-mobile-swipe-carousel::-webkit-scrollbar {
    display: none;
  }

  .mps-mobile-swipe-carousel > .swiper-wrapper {
    width: max-content !important;
    min-width: 100%;
    transform: none !important;
    transition: none !important;
  }

  .mps-mobile-swipe-carousel > .swiper-wrapper > .swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .mps-circular-video-carousel > .swiper-wrapper > .swiper-slide {
    width: min(72vw, 270px) !important;
  }

  .mps-circular-video-carousel button.is-playing > div > img[aria-hidden="true"] {
    opacity: 0 !important;
  }
}

/* SECTION: Circular economy press links */
.mps-press-strip__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
}

.mps-press-strip__link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 160ms ease;
}

.mps-press-strip__link:hover,
.mps-press-strip__link:focus-visible {
  outline: none;
  opacity: 0.66;
}

.mps-press-strip__link img {
  display: block;
  width: min(100%, 188px);
  max-height: 44px;
  object-fit: contain;
}

.mps-press-strip__link:nth-child(3) img {
  visibility: hidden;
}

.mps-press-strip__link:nth-child(3)::before {
  display: block;
  width: min(100%, 188px);
  height: 44px;
  content: "";
  background-image: url("/articles/TechMoran.svg");
  background-position: 24% 49%;
  background-repeat: no-repeat;
  background-size: 353%;
}

@media (width < 640px) {
  .mps-press-strip__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .mps-press-strip__link {
    min-height: 40px;
  }

  .mps-press-strip__link img {
    max-height: 34px;
  }

  .mps-press-strip__link:nth-child(3) img {
    display: none;
  }

  .mps-press-strip__link:nth-child(3)::before {
    height: 34px;
  }
}

/* SECTION: Footer alignment refinement */
@media (width >= 1024px) {
  .mps-site-footer > .reebelo-container > div:first-child {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(300px, 1.25fr) !important;
    column-gap: clamp(28px, 4vw, 64px);
    row-gap: 28px;
  }

  .mps-site-footer > .reebelo-container > div:nth-child(3) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }

  .mps-site-footer .mps-currency-switcher {
    justify-self: center;
  }

  .mps-site-footer .mps-footer-social-links {
    justify-self: end;
  }

  .mps-site-footer > .bg-white > .reebelo-container {
    align-items: center;
  }
}

@media (width < 640px) {
  .mps-site-footer > .reebelo-container > div:first-child {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .mps-site-footer > .reebelo-container > div:nth-child(3) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 14px;
  }

  .mps-site-footer > .reebelo-container > div:nth-child(3) > div:first-child,
  .mps-site-footer .mps-currency-switcher,
  .mps-site-footer .mps-footer-social-links {
    justify-self: stretch;
  }

  .mps-site-footer .mps-currency-switcher,
  .mps-site-footer .mps-footer-social-links {
    justify-content: center;
  }

  .mps-site-footer > .bg-white > .reebelo-container {
    align-items: center;
    text-align: center;
  }

  .mps-site-footer > .bg-white p {
    text-align: center !important;
  }
}

/* SECTION: All Items navigation drawer refinement */
.mps-category-sidebar-overlay {
  background: rgba(31, 24, 22, 0.52);
  backdrop-filter: blur(3px);
}

.mps-category-sidebar {
  width: min(430px, 94vw);
  padding: 0;
  gap: 0;
  overflow: hidden;
  background: #fffaf8;
  box-shadow: 28px 0 72px rgba(42, 29, 24, 0.26);
  transition: transform 280ms cubic-bezier(0.22, 0.75, 0.2, 1);
}

.mps-category-sidebar-header {
  align-items: center;
  padding: 25px 24px 23px;
  border: 0;
  background: linear-gradient(135deg, #342621, #6f4639);
  color: #fff;
}

.mps-category-sidebar-eyebrow {
  margin-bottom: 6px;
  color: #f3cfc1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mps-category-sidebar-header h2 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mps-category-sidebar-close {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.7rem;
  transition: background-color 160ms ease, transform 160ms ease;
}

.mps-category-sidebar-close:hover,
.mps-category-sidebar-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  transform: rotate(90deg);
}

.mps-category-sidebar-promotions {
  flex: 0 0 auto;
  padding: 15px 20px 4px;
  background: #fffaf8;
}

.mps-category-sidebar-promotions__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #806f69;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mps-category-sidebar-promotions__heading a {
  color: #a6634d;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.mps-category-sidebar-promotions__heading a:hover,
.mps-category-sidebar-promotions__heading a:focus-visible {
  color: #6d4336;
  outline: none;
  text-decoration: underline;
}

.mps-category-sidebar-promotions__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mps-category-sidebar-promo-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 82px;
  align-items: end;
  overflow: hidden;
  border-radius: 11px;
  background: #e9e4e0;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.mps-category-sidebar-promo-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(21, 17, 15, 0.03), rgba(21, 17, 15, 0.7));
}

.mps-category-sidebar-promo-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.mps-category-sidebar-promo-card:first-child img {
  object-position: 50% 43%;
}

.mps-category-sidebar-promo-card:nth-child(2) img {
  object-position: 50% 42%;
}

.mps-category-sidebar-promo-card span {
  position: relative;
  z-index: 1;
  padding: 0 8px 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.mps-category-sidebar-promo-card:hover img,
.mps-category-sidebar-promo-card:focus-visible img {
  transform: scale(1.07);
}

.mps-category-sidebar-promo-card:focus-visible {
  outline: 2px solid #c68a73;
  outline-offset: 2px;
}

.mps-category-sidebar-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1 1 auto;
  min-height: 0;
  gap: 10px;
  padding: 20px 20px 16px;
  overflow-y: auto;
}

.mps-category-sidebar-nav a {
  position: relative;
  min-height: 92px;
  align-content: center;
  gap: 5px;
  padding: 16px 15px;
  overflow: hidden;
  border-color: #eadbd5;
  border-radius: 14px;
  background: #fff;
  color: #2f2522;
  box-shadow: 0 2px 5px rgba(63, 40, 31, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mps-category-sidebar-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #bd7862;
  content: "→";
  font-size: 15px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mps-category-sidebar-nav a:hover,
.mps-category-sidebar-nav a:focus-visible {
  border-color: #c68a73;
  background: #fffdfc;
  box-shadow: 0 10px 20px rgba(72, 44, 34, 0.11);
  outline: none;
  transform: translateY(-2px);
}

.mps-category-sidebar-nav a:hover::after,
.mps-category-sidebar-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.mps-category-sidebar-nav span {
  color: #2f2522;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.mps-category-sidebar-nav strong {
  max-width: 118px;
  color: #806f69;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.mps-category-sidebar-group {
  padding: 0 20px 16px;
}

.mps-category-sidebar-group h3 {
  margin-bottom: 9px;
  color: #806f69;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mps-category-sidebar-chips {
  gap: 7px;
}

.mps-category-sidebar-chips a,
.mps-category-sidebar-footer a {
  min-height: 34px;
  border-color: #e4cec4;
  background: #fff;
  color: #563d33;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mps-category-sidebar-chips a:hover,
.mps-category-sidebar-chips a:focus-visible {
  border-color: #c68a73;
  background: #f9e6de;
  outline: none;
}

.mps-category-sidebar-footer {
  margin-top: 0;
  padding: 15px 20px 20px;
  gap: 10px;
  border-top-color: #eadbd5;
}

.mps-category-sidebar-footer a:first-child {
  border-color: #c68a73;
  background: #c68a73;
  color: #fff;
}

.mps-category-sidebar-footer a:first-child:hover,
.mps-category-sidebar-footer a:first-child:focus-visible {
  border-color: #9f614d;
  background: #9f614d;
  outline: none;
}

@media (width < 430px) {
  .mps-category-sidebar-header {
    padding: 21px 18px;
  }

  .mps-category-sidebar-promotions {
    padding: 13px 14px 3px;
  }

  .mps-category-sidebar-promo-card {
    height: 72px;
  }

  .mps-category-sidebar-nav {
    gap: 8px;
    padding: 15px 14px 12px;
  }

  .mps-category-sidebar-nav a {
    min-height: 82px;
    padding: 13px 12px;
  }

  .mps-category-sidebar-group,
  .mps-category-sidebar-footer {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* SECTION: Shared brand CTA treatment */
.mps-card-whatsapp,
.macs-ai-whatsapp {
  border: 1px solid #c68a73;
  background: #c68a73;
  box-shadow: 0 5px 12px rgba(132, 77, 59, 0.16);
}

.mps-card-whatsapp:hover,
.mps-card-whatsapp:focus-visible,
.macs-ai-whatsapp:hover,
.macs-ai-whatsapp:focus-visible {
  border-color: #9f614d;
  background: #9f614d;
  color: #fff;
  outline: none;
}

.mps-product-hero__cta,
.mps-category-discovery-cta {
  border-color: #c68a73;
  background: #c68a73;
  box-shadow: 0 7px 14px rgba(132, 77, 59, 0.18);
  color: #fff;
}

.mps-product-hero-slide:hover .mps-product-hero__cta,
.mps-product-hero__cta:focus-visible,
.mps-category-discovery-cta:hover,
.mps-category-discovery-cta:focus-visible {
  background: #9f614d;
  color: #fff;
  outline: none;
}

.mps-faq-help-card a {
  background: #c68a73;
}

.mps-faq-help-card a:hover,
.mps-faq-help-card a:focus-visible {
  background: #9f614d;
}
