/** Shopify CDN: Minification failed

Line 8661:0 Unexpected "}"

**/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@400;500;700&family=Nunito+Sans:wght@400;600;700&display=swap');

/* Global Design System & Variables */

:root {
  --color-primary: #000000;
  --color-background: #FBF9F8;
  --color-accent-pink: #f8c8d8;
  --color-accent-nude: #e6c5b9;
  --color-text-main: #111111;
  --color-text-light: #555555;
  --color-border: #eeeeee;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,

h2,

h3,

h4,

h5,

h6 {
  font-family: var(--font-heading);
}

p,

span,

a,

li {
  font-family: var(--font-body);
}

/* Remove Shopify default spacing on main content wrapper */

#MainContent,

main[role='main'] {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Remove Shopify automatic spacing on section wrappers */

.shopify-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* Specifically for first section after header — remove any gap */

#MainContent>.shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

ul {
  list-style: none;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  /* Pill-shaped */
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-background);
}

.btn-primary:hover {
  background-color: var(--color-accent-pink);
  color: var(--color-primary);
}

/* --- Section 1: Announcement Bar --- */

.announcement-bar {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 38px;
  z-index: 101;
}

.announcement-slider {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease-in-out;
}

.announcement-slide.active {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════

   MORAZE HEADER — Premium Black Theme

   ═══════════════════════════════════════════════════════ */

/* ── Base header shell ── */

.mz-header {
  background: #ffffff;
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eaeaea;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle lift on scroll — stays white */

.mz-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* Force solid on non-hero pages (collection, PDP, cart, etc.) */

.mz-header--solid {
  background: #000 !important;
}

/* ── Inner flex row ── */

.mz-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px 32px;
  min-height: 68px;
  height: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  /* Remove overflow: hidden so search dropdown can escape */
}

/* ── Hamburger (mobile only) ── */

.mz-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.mz-header.search-active .mz-hamburger {
  opacity: 0;
  pointer-events: none;
}

.mz-hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Logo ── */

.mz-logo {
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

/* Hide logo when search is active */

.mz-header.search-active .mz-logo {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  transform: translateX(-12px);
}

.mz-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mz-logo__text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mz-logo img {
  display: block;
  object-fit: contain;
  /* Filter removed to show logo in its original dark color on white background */
}

/* ── Desktop Center Nav ── */

.mz-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mz-nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mz-nav__item {
  position: static;
}

.mz-nav__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s ease;
}

.mz-nav__link:hover {
  color: #000;
}

/* ── Mega Menu ── */

.mz-header__inner {
  overflow: visible;
  /* re-allow for mega menu */
}

.mz-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 32px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 300;
  border-top: 3px solid #000;
}

.mz-nav__item.has-mega:hover .mz-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mz-mega-menu__grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.mz-mega-item {
  text-align: center;
  text-decoration: none;
  color: inherit;
  width: 110px;
  transition: transform 0.2s ease;
}

.mz-mega-item:hover {
  transform: translateY(-4px);
}

.mz-mega-item__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 10px;
}

.mz-mega-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mz-mega-item__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* ── Right icon group ── */

.mz-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}

/* ── Shared icon button ── */

.mz-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.85);
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}

.mz-icon-btn:hover {
  color: #000;
  transform: translateY(-2px);
}

/* ── Cart count badge ── */

.mz-cart-count {
  position: absolute;
  top: -5px;
  right: -7px;
  background: var(--color-accent-pink);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ════════════════════════════════════════════

   SEARCH — RTL Slide Animation

   ════════════════════════════════════════════ */

.mz-search {
  display: flex;
  align-items: center;
  position: relative;
}

/* The sliding input bar — sits to the left of the trigger icon */

.mz-search__bar {
  display: flex;
  align-items: center;
  width: 0;
  /* collapsed by default */
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  opacity: 0;
  background: #f4f4f4;
  border-radius: 30px;
  padding: 0;
}

/* When header has search-active class, expand the bar */

.mz-header.search-active .mz-search__bar {
  /* The bar grows to fill remaining header space */
  width: 400px;
  max-width: 100%;
  opacity: 1;
  padding: 4px 16px;
  margin-right: 12px;
}

@media (max-width: 768px) {
  .mz-header.search-active .mz-search__bar {
    width: 250px;
    max-width: calc(100vw - 160px);
    flex-shrink: 1;
  }

}

/* Hide Logo & Menu dynamically during search */

.mz-header.search-active .mz-logo,

.mz-header.search-active .mz-nav {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mz-search__input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 6px 12px 6px 0;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}

.mz-search__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.mz-search__input:focus {
  border-bottom-color: var(--color-accent-pink);
}

.mz-search__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.mz-search__close:hover {
  color: #000;
}

/* ════════════════════════════════════════════

   SEARCH DROPDOWN

   ════════════════════════════════════════════ */

.mz-search-dropdown {
  position: fixed;
  top: 68px;
  /* same as header height */
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  z-index: 190;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mz-search-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mz-search-dropdown__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px 32px;
}

.mz-search-dropdown__section {
  margin-bottom: 28px;
}

.mz-search-dropdown__section:last-child {
  margin-bottom: 0;
}

.mz-search-dropdown__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 14px;
}

/* ── Trending pill tags ── */

.mz-trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mz-tag {
  background: #f4f4f4;
  color: #111;
  border: 1.5px solid #e8e8e8;
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mz-tag:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ── Category story rings ── */

.mz-category-rings {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.mz-category-rings::-webkit-scrollbar {
  display: none;
}

.mz-category-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mz-category-ring:hover {
  transform: translateY(-4px);
}

.mz-category-ring__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #000;
  padding: 2px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mz-category-ring:hover .mz-category-ring__circle {
  border-color: var(--color-accent-pink);
  box-shadow: 0 4px 20px rgba(248, 200, 216, 0.5);
}

.mz-category-ring__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.mz-category-ring__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  white-space: nowrap;
}

/* ════════════════════════════════════════════

   OVERLAY BACKDROP

   ════════════════════════════════════════════ */

.mz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
}

.mz-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ════════════════════════════════════════════

   MOBILE NAV PANEL

   ════════════════════════════════════════════ */

.mz-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #111;
  z-index: 250;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mz-mobile-nav.is-open {
  transform: translateX(0);
}

.mz-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mz-mobile-nav__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.mz-mobile-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.mz-mobile-nav__close:hover {
  color: #fff;
}

.mz-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mz-mobile-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mz-mobile-nav__accordion,

.mz-mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.mz-mobile-nav__accordion:hover,

.mz-mobile-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.mz-mobile-nav__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mz-mobile-nav__thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.mz-mobile-nav__thumb--placeholder {
  background: rgba(255, 255, 255, 0.08);
}

.mz-accordion-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.5;
}

.mz-mobile-nav__item.is-expanded .mz-accordion-chevron {
  transform: rotate(180deg);
}

.mz-mobile-nav__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: rgba(255, 255, 255, 0.03);
}

.mz-mobile-nav__item.is-expanded .mz-mobile-nav__sub {
  display: block;
}

.mz-mobile-nav__sub li a {
  display: block;
  padding: 11px 20px 11px 72px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease;
}

.mz-mobile-nav__sub li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.mz-mobile-nav__sub li:last-child a {
  border-bottom: none;
}

/* ════════════════════════════════════════════

   RESPONSIVE BREAKPOINTS

   ════════════════════════════════════════════ */

/* ── Tablet: hide desktop nav ── */

@media (max-width: 1024px) {
  .mz-nav {
    display: none;
  }

}

/* ── Mobile: show hamburger, center logo, right icons ── */

@media (max-width: 768px) {
  .mz-header__inner {
    padding: 6px 16px;
    min-height: 60px;
    height: auto;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 0;
  }

  /* Fix dropdown top to match mobile header height */

  .mz-search-dropdown {
    top: 60px;
  }

  .mz-hamburger {
    display: flex;
    justify-self: start;
    align-self: center;
  }

  .mz-logo {
    justify-self: center;
    align-self: center;
  }

  .mz-nav {
    display: none;
  }

  .mz-header__right {
    margin-left: 0;
    justify-self: end;
    align-self: center;
    gap: 8px;
  }

  .mz-icon-btn svg {
    width: 20px;
    height: 20px;
  }

  /* On mobile search-active: bar overlays full width */

  .mz-header.search-active .mz-search__bar {
    width: calc(100vw - 48px);
  }

  /* Account icon visible on mobile */

  #mzAccountIcon {
    display: flex;
  }

  /* Dropdown inner padding reduced */

  .mz-search-dropdown__inner {
    padding: 20px 16px 24px;
  }

  /* Smaller category rings on mobile */

  .mz-category-ring__circle {
    width: 60px;
    height: 60px;
  }

}

@media (max-width: 480px) {
  .mz-header__inner {
    grid-template-columns: 40px 1fr auto;
  }

  .mz-logo__text {
    font-size: 1.25rem;
  }

  .mz-tag {
    padding: 6px 14px;
    font-size: 0.78rem;
  }

}

@media (max-width: 375px) {
  .mz-icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .mz-header__right {
    gap: 6px;
  }

  .mz-coins-badge-text {
    display: none !important;
  }

  .mz-coins-header-badge {
    padding: 4px !important;
    margin-right: 0 !important;
  }

  .mz-coins-header-badge svg {
    margin-right: 0 !important;
  }
}

/* ─── Legacy header class support (keep other sections working) ─── */

.mega-header {
  display: none;
}

.header-container {
  display: none;
}

.mobile-nav-panel {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}

/* --- Hero Slideshow --- */

.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5;
  /* Same proportions as a wide banner image */
  max-height: 580px;
  /* Cap on large screens */
  overflow: hidden;
  background-color: #000;
  margin-bottom: 0;
  /* No gap after banner */
}

.hero-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual slide */

.hero-slide {
  position: absolute;
  inset: 0;
  /* top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

/* Full-cover image */

.hero-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

/* Optional text overlay (shown only when schema toggle is ON) */

.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  /* Semi-dark overlay so text is readable */
  background: rgba(0, 0, 0, 0.3);
}

.hero-slide__heading {
  color: #ffffff;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-slide__subtitle {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-slide__btn {
  margin-top: 8px;
}

/* Navigation dots */

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.is-active,

.hero-dot:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.2);
}

/* ---- Legacy class support (index.html static version) ---- */

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

.slide::before {
  display: none;
}

.slide-content {
  display: none;
}

.slider-dots {
  display: none;
}

/* --- Global Utilities & Typography --- */

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 30px 0 20px;
  letter-spacing: -0.5px;
}

/* --- Worth the Hype Section --- */

.worth-hype-section {
  max-width: 1400px;
  margin: 0 auto 24px;
  padding: 0 20px;
}

.worth-hype-container {
  display: flex;
  gap: 30px;
}

.best-sellers-hero {
  flex: 0 0 38%;
  /* about 38% of width */
  background-color: #eeaebd;
  /* soft pink */
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.best-sellers-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f2e3fc;
  /* very soft lilac/pink like in the image */
}

.best-sellers-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.best-sellers-content {
  padding: 24px 12px 12px;
}

.best-sellers-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.best-sellers-content .btn-white {
  background-color: #fff;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  color: #eeaebd;
  display: inline-block;
  transition: all 0.3s ease;
}

.best-sellers-content .btn-white:hover {
  color: #000;
  transform: translateY(-2px);
}

.worth-hype-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  /* allows flex children to shrink */
}

.worth-hype-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #c93b58;
  /* deep pink */
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.worth-hype-products {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 16px;
  /* Hide scrollbar */
  scrollbar-width: none;
}

.worth-hype-products::-webkit-scrollbar {
  display: none;
}

.wth-product {
  flex: 0 0 calc(22% - 12px);
  min-width: 200px;
  max-width: 240px;
  border: none;
}

.wth-product .product-image-wrapper {
  background-color: transparent;
  border: none;
  aspect-ratio: 1;
  margin-bottom: 8px;
}

.wth-product .product-image-wrapper img {
  mix-blend-mode: normal;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wth-btn {
  background-color: #f4dce0;
  color: #c93b58;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px;
  border-radius: 8px;
}

.wth-btn:hover {
  background-color: #c93b58;
  color: #ffffff;
}

/* Swatch updates for WTH */

.wth-product .product-swatches {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
  min-height: 20px;
  align-items: center;
}

.wth-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e5e7eb;
  cursor: pointer;
}

.wth-swatch.active {
  box-shadow: 0 0 0 1px #000;
}

/* Visibility Utilities */

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: flex !important;
}

/* Slider Dots styles */

.mobile-dots {
  display: none;
  text-align: center;
  margin-top: 16px;
  width: 100%;
}

.desktop-mobile-dots {
  display: block;
  text-align: center;
  margin-top: 24px;
  width: 100%;
}

.slider-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #d1d5db;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #4b5563;
  width: 24px;
  border-radius: 4px;
}

/* --- Curate Your Look --- */

.curate-section {
  max-width: 1400px;
  margin: 24px auto;
  padding: 0 20px;
}

.curate-section .section-heading {
  font-family: 'Playfair Display', 'Inter', 'Roboto', serif !important;
}

.curate-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  cursor: grab;
}

.curate-grid::-webkit-scrollbar {
  display: none;
}

.curate-grid.active-drag {
  cursor: grabbing;
  scroll-behavior: auto;
}

.curate-card {
  flex: 0 0 calc(25% - 22.5px);
  min-width: 250px;
  display: block;
  position: relative;
  border-radius: 20px;
  border: 8px solid;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.curate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.curate-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.curate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.curate-card:hover .curate-image img {
  transform: scale(1.05);
}

.curate-label {
  font-size: 1.5rem;
  font-weight: 800;
  padding: 12px 0;
  color: #000;
  text-transform: capitalize;
}

.face-card {
  border-color: #ffe499;
}

.face-card .curate-label {
  background-color: #ffe499;
  color: #b8860b;
}

.lips-card {
  border-color: #ffb6c1;
}

.lips-card .curate-label {
  background-color: #ffb6c1;
  color: #d1476d;
}

.eyes-card {
  border-color: #b3d4ff;
}

.eyes-card .curate-label {
  background-color: #b3d4ff;
  color: #4a7ab5;
}

.tools-card {
  border-color: #dda0dd;
}

.tools-card .curate-label {
  background-color: #dda0dd;
  color: #8e4a8e;
}

/* --- Section 3 & 4: Collections --- */

.collection-section {
  width: 100%;
  margin-bottom: 32px;
}

.collection-banner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  height: auto;
  position: relative;
}

/* Twilight banner specifically - matches the reference screenshot */

.twilight-banner {
  cursor: pointer;
}

/* Harry Potter banner */

.hp-banner {
  cursor: pointer;
}

.banner-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  position: relative !important;
}

/* ---- Hover Slide Panel ---- */

.banner-hover-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  /* Panel slides in from the right */
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: linear-gradient(135deg, rgba(0, 43, 54, 0.92) 0%, rgba(1, 20, 30, 0.96) 100%);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 20px 20px 0;
  z-index: 5;
}

/* Trigger on hover over the banner */

.twilight-banner:hover .banner-hover-panel,

.hp-banner:hover .banner-hover-panel {
  transform: translateX(0);
}

/* Harry Potter panel - warm golden theme */

.hp-panel {
  background: linear-gradient(135deg, rgba(30, 20, 5, 0.92) 0%, rgba(80, 50, 5, 0.96) 100%) !important;
}

.hp-panel .bhp-tag {
  color: #ffd700 !important;
}

.hp-panel .bhp-title span {
  color: #ffd700 !important;
  font-style: normal;
}

.hp-panel .bhp-btn:hover {
  color: #3d2b00 !important;
}

.bhp-inner {
  padding: 40px 48px;
  text-align: right;
  color: #fff;
}

.bhp-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #80deea;
  margin-bottom: 16px;
}

.bhp-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #ffffff;
}

.bhp-title span {
  color: #80deea;
  font-style: italic;
}

.bhp-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-weight: 400;
}

.bhp-btn {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.bhp-btn:hover {
  background-color: #fff;
  color: #002b36;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.product-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  background-color: #fcfcfc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

.product-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-rating {
  color: #ffd700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.product-price {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.85rem;
  margin-left: 8px;
  font-weight: 500;
}

.product-swatches {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
  min-height: 20px;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.btn-add-to-cart {
  width: 100%;
  max-width: 240px;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  margin-top: auto;
}

.hp-btn {
  background-color: #fca5a5;
  /* Pastel Coral/Pink */
}

.hp-btn:hover {
  background-color: #f87171;
}

.twilight-btn {
  background-color: #93c5fd;
  /* Pastel Teal/Blue */
}

.twilight-btn:hover {
  background-color: #60a5fa;
}

/* --- Section: More to Love --- */

.more-to-love-section {
  max-width: 100%;
  margin: 24px 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
}

.mtl-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.mtl-track-container {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

.mtl-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
  /* initial transform will be set by JS */
}

.mtl-card {
  flex: 0 0 calc(20% - 30px);
  /* Adjust based on visible cards, assuming 5 visible */
  min-width: 200px;
  margin: 0 15px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.6;
  transform: scale(0.85);
  text-align: center;
  cursor: pointer;
}

/* The active (center) card gets bigger and full opacity */

.mtl-card.active {
  opacity: 1;
  transform: scale(1.15);
  z-index: 2;
}

.mtl-card .mtl-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  background-color: #fcfcfc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mtl-card.active .mtl-image-wrapper {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mtl-card .mtl-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specific background colors to match image vibe (using n-th child for demo) */

.mtl-card:nth-child(5n+1) .mtl-image-wrapper {
  background-color: #d1f2eb;
}

.mtl-card:nth-child(5n+2) .mtl-image-wrapper {
  background-color: #f5eef8;
}

.mtl-card:nth-child(5n+3) .mtl-image-wrapper {
  background-color: #e8daef;
}

.mtl-card:nth-child(5n+4) .mtl-image-wrapper {
  background-color: #fdedec;
}

.mtl-card:nth-child(5n+5) .mtl-image-wrapper {
  background-color: #ebdef0;
}

.mtl-nav-btn {
  position: absolute;
  top: 40%;
  /* slightly above center due to text below */
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.3s;
}

.mtl-carousel-prev {
  left: 10px;
}

.mtl-carousel-next {
  right: 10px;
}

.mtl-nav-btn:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.mtl-card .product-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.mtl-card .product-rating {
  font-size: 0.8rem;
  color: #ffd700;
  margin-bottom: 6px;
}

.mtl-card .product-price {
  font-size: 0.9rem;
  font-weight: 800;
}

/* --- Section 5: Your Hot Takes (Reviews Bento Grid) --- */

.reviews-section {
  max-width: 1400px;
  margin: 32px auto;
  padding: 0 20px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-item {
  border-radius: 40px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 400px;
}

.image-item {
  padding: 0;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-item {
  background-color: #f5f5f5;
}

.white-bg {
  background-color: #fdfdfd;
  border: 1px solid #eee;
}

.hot-pink-bg {
  background-color: #ff1493;
  color: white;
}

.light-pink-bg {
  background-color: #f8c8d8;
}

.wide-item {
  grid-column: span 2;
}

.review-date {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  margin-bottom: 24px;
  display: inline-block;
  font-weight: 600;
}

.review-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
}

.review-rating {
  margin-bottom: 30px;
  font-size: 1.25rem;
}

.white-bg .review-rating {
  color: #ccc;
}

.hot-pink-bg .review-rating {
  color: #fff;
}

.light-pink-bg .review-rating {
  color: #fff;
}

.btn-black {
  background-color: #000;
  color: #fff;
}

.btn-black:hover {
  background-color: #333;
}

.btn-white {
  background-color: #fff;
  color: #000;
}

.btn-white:hover {
  background-color: #eee;
}

.review-item .btn-shop {
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.review-item .btn-shop:hover {
  transform: scale(1.05);
}

/* --- Section 6: PureGlam No Gimmicks --- */

.values-section {
  margin: 32px 0;
}

.pureglam-banner {
  background-color: #ff6b6b;
  padding: 50px 20px;
  overflow: hidden;
  position: relative;
}

.pureglam-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pureglam-image {
  width: 600px;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pureglam-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pureglam-text {
  font-size: 7vw;
  font-weight: 800;
  color: #fff;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
}

.left-text {
  right: 50%;
  padding-right: 15%;
}

.right-text {
  left: 50%;
  padding-left: 15%;
}

.sub-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 32px 0 24px;
}

.core-values-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.core-values-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 40px;
  padding: 0 20px;
  scrollbar-width: none;
  /* Firefox */
}

.core-values-grid::-webkit-scrollbar {
  display: none;
}

.value-item {
  flex: 0 0 calc(25% - 30px);
  scroll-snap-align: start;
  text-align: center;
  padding: 20px;
}

.value-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.value-item h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.value-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
}

/* --- Section 7: Press-Worthy Glam --- */

.press-section {
  max-width: 1400px;
  margin: 32px auto 40px;
  padding: 0 20px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.press-card {
  border: 1px solid #eaeaea;
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.press-logo {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.glamour {
  font-family: serif;
  letter-spacing: 2px;
}

.www {
  letter-spacing: 4px;
}

.press-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  flex-grow: 1;
}

.press-author {
  font-size: 0.9rem;
  color: #999;
}

/* --- Section 8: Footer --- */

.mega-footer {
  background-color: #000;
  color: #fff;
  padding: 80px 40px 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.newsletter-col p {
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: #ccc;
}

.newsletter-form {
  display: flex;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px 16px;
  background-color: #222;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px 0 0 8px;
  outline: none;
  font-family: inherit;
}

.newsletter-form button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 0 24px;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.disclaimer {
  font-size: 0.65rem !important;
  color: #666 !important;
  line-height: 1.4;
}

.links-col ul li {
  margin-bottom: 16px;
}

.links-col ul a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.links-col ul a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #333;
  padding-top: 40px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-accent-pink);
}

.footer-bottom-middle {
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #888;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.payment-icon {
  background-color: #fff;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
}

.country-selector {
  display: flex;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
}

/* ============================================

   PRODUCT SLIDER (pslider) - HP & Twilight

   ============================================ */

.pslider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.pslider-track-container {
  overflow: hidden;
  width: 100%;
}

.pslider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  scroll-behavior: smooth;
  padding-bottom: 16px;
  /* Space for shadow */
  cursor: grab;
}

.pslider-track::-webkit-scrollbar {
  display: none;
}

.pslider-track.active-drag {
  cursor: grabbing;
  scroll-behavior: auto;
  /* Disable smooth scroll while dragging */
}

/* Desktop: show 4 cards */

.pslider-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  pointer-events: auto;
  /* Allow clicks */
}

/* Curate Your Look Grid / Slider classes */

.curate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  cursor: grab;
}

.curate-grid.active-drag {
  cursor: grabbing;
}

/* Worth the Hype Slider classes */

.worth-hype-products {
  cursor: grab;
}

.worth-hype-products.active-drag {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* ============================================

   MOBILE HAMBURGER MENU

   ============================================ */

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #000;
  padding: 4px;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 201;
  padding: 60px 32px 32px;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

.mobile-nav-panel.open {
  transform: translateX(0);
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-panel ul li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-panel ul li a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-panel ul li a:hover {
  color: #f8c8d8;
}

/* ============================================

   RESPONSIVE: 1024px (Tablet)

   ============================================ */

@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .logo {
    text-align: left;
    margin-left: 12px;
  }

  .slide-content h2 {
    font-size: 3.5rem;
  }

  .curate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* pslider: 3 cards on tablet */

  .pslider-card {
    flex: 0 0 calc(33.33% - 16px);
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-item {
    grid-column: span 1;
  }

  .pureglam-image {
    width: 400px;
    height: 300px;
  }

  .value-item {
    flex: 0 0 calc(33.33% - 26px);
  }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }

  /* banner hover panel full width on tablet */

  .banner-hover-panel {
    width: 55%;
  }

  .bhp-title {
    font-size: 2rem;
  }

  .collection-banner {
    height: auto;
  }

}

/* ============================================

   RESPONSIVE: 768px (Mobile)

   ============================================ */

@media (max-width: 768px) {
  /* --- Header --- */
  .header-container {
    height: 64px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger-btn {
    display: flex;
    order: -1;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    text-align: center;
  }

  .logo a {
    font-size: 1.6rem;
  }

  .header-icons {
    gap: 16px;
    margin-left: auto;
  }

  /* --- Hero --- */

  .hero-slideshow {
    aspect-ratio: auto;
    height: 75vh;
    min-height: 450px;
  }

  .slide-content h2 {
    font-size: 2.2rem;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .slide-content {
    padding: 0 16px;
  }

  /* --- Utilities --- */

  .mobile-only {
    display: flex !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-dots {
    display: block;
  }

  /* --- Worth the Hype --- */

  .worth-the-hype,

  .worth-the-hype-section,

  .worth-hype-section {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .worth-hype-container {
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .best-sellers-hero {
    display: none;
  }

  /* Hide on mobile like the image */

  .worth-hype-content {
    flex: 1;
    width: 100% !important;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .worth-hype-title {
    font-size: 2rem;
    color: #000;
    text-align: center;
    margin-bottom: 24px;
  }

  .worth-hype-products {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-bottom: 8px;
  }

  .worth-hype-products::-webkit-scrollbar {
    display: none;
  }

  .mobile-wth-banner {
    display: flex !important;
    flex: 0 0 100% !important;
    scroll-snap-align: center;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .wth-banner-img {
    width: 100% !important;
    aspect-ratio: 1.1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  .wth-banner-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .wth-banner-text {
    padding: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    flex: 1 !important;
  }

  .wth-banner-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .wth-banner-text p {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 20px;
  }

  .wth-banner-btn {
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
  }

  .wth-dots {
    margin-top: -30px;
    z-index: 10;
    position: relative;
  }

  .wth-dots .slider-dot {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .wth-dots .slider-dot.active {
    background-color: #fff;
  }

  /* --- Curate Your Look --- */

  .curate-section {
    margin: 32px auto;
  }

  .curate-grid {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 12px;
  }

  .curate-grid::-webkit-scrollbar {
    display: none;
  }

  .curate-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 160px;
  }

  .curate-label {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.8rem;
    margin: 40px 0 24px;
  }

  /* --- Collection Banners --- */

  .collection-banner {
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
  }

  .hp-banner {
    background-color: #8c1c13;
  }

  .twilight-banner {
    background-color: #1a1a2e;
  }

  .collection-banner .banner-img {
    height: 300px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .banner-hover-panel {
    position: static;
    width: 100%;
    transform: none !important;
    background: transparent !important;
    padding: 24px;
  }

  .bhp-inner {
    padding: 0;
    text-align: left;
  }

  .bhp-tag {
    display: none;
  }

  .bhp-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .bhp-desc {
    display: block;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .bhp-btn {
    background-color: #fff;
    color: #000;
    padding: 12px 28px;
  }

  /* --- Product Slider (pslider) --- */

  .pslider-wrapper {
    padding: 0 8px 32px;
  }

  .pslider-card {
    flex: 0 0 calc(50% - 12px);
  }

  /* 2 cards on mobile */

  .pslider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .pslider-prev {
    margin-right: 6px;
  }

  .pslider-next {
    margin-left: 6px;
  }

  /* --- More to Love --- */

  .mtl-track {
    margin-left: -4%;
    /* Shift track to perfectly center the second card (index 1) for 36% width */
  }

  .mtl-card {
    flex: 0 0 calc(36% - 30px);
    min-width: 0;
    /* Changed from 140px to ensure precise calc() width */
  }

  .mtl-carousel-prev {
    left: 4px;
  }

  .mtl-carousel-next {
    right: 4px;
  }

  /* --- Reviews --- */

  .reviews-slider-wrapper {
    position: relative;
  }

  .bento-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .bento-grid::-webkit-scrollbar {
    display: none;
  }

  .bento-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    min-height: 300px;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .review-item .btn {
    margin-top: auto;
  }

  .wide-item {
    grid-column: auto;
  }

  .review-text {
    font-size: 0.95rem;
  }

  /* --- PureGlam --- */

  .pureglam-image {
    width: 260px;
    height: 200px;
  }

  .pureglam-text {
    font-size: 11vw;
  }

  .left-text {
    right: auto;
    padding-right: 0;
    top: 8%;
  }

  .right-text {
    left: auto;
    padding-left: 0;
    bottom: 8%;
  }

  /* --- Core Values --- */

  .value-item {
    flex: 0 0 calc(100% - 40px);
    margin: 0 20px;
    padding: 24px 0;
  }

  /* --- Press --- */

  .press-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .press-card {
    border-radius: 24px;
    padding: 40px 28px;
  }

  .press-logo {
    font-size: 1.8rem;
  }

  /* --- Footer --- */

  .mega-footer {
    padding: 48px 20px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input {
    border-radius: 8px;
  }

  .newsletter-form button {
    border-radius: 8px;
    padding: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .country-selector {
    margin-left: 0;
    justify-content: center;
    margin-top: 12px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

}

/* ============================================

   RESPONSIVE: 480px (Small phones)

   ============================================ */

@media (max-width: 480px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }

  .logo a {
    font-size: 1.3rem;
  }

  .wth-product {
    flex: 0 0 calc(70% - 8px);
  }

  .pslider-card {
    flex: 0 0 calc(70% - 12px);
  }

  .mtl-card {
    flex: 0 0 calc(70% - 30px);
  }

  .collection-banner {
    height: 180px;
  }

  .bhp-title {
    font-size: 1rem;
  }

  .curate-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .curate-label {
    font-size: 0.95rem;
  }

}

/* ============================================

   NEW SECTIONS & SPACING UPDATES

   ============================================ */

/* Hero Banner Update */

.hero-slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slideshow .slide img,

.hero-slide__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-slideshow .slide-content h2 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-slideshow .slide-content .btn-primary {
  background-color: #FF4D85;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-transform: uppercase;
}

.hero-slideshow .slide-content .btn-primary:hover {
  background-color: #E63E70;
}

/* Review Slider Scrollbar Hide */

.reviews-slider-track::-webkit-scrollbar {
  display: none;
}

/* Mobile Spacing for Sections */

@media (max-width: 768px) {
  /* Set consistent 24px margin between sections */
  .hero-slideshow,
  .worth-the-hype-section,
  .curate-section,
  .collection-banner,
  .more-to-love-section,
  .reviews-section,
  .values-section,
  .press-section,
  .join-party-section,
  .moraze-story-section {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Hero adjustments - Uniform Mobile Banner Height and Auto-Scaling */

  .hero-slideshow {
    height: 320px !important; /* Uniform height for all slides on mobile */
    max-height: 320px !important;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  .hero-slider-container {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 100% !important;
  }

  .hero-slide {
    position: relative !important;
    grid-area: 1 / 1 / 2 / 2;
    height: 100% !important;
    min-height: unset !important;
    overflow: hidden;
  }

  .hero-slideshow .slide img,

  .hero-slide__img {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important; /* Scales and fills container seamlessly without gaps */
    background-color: transparent !important;
    display: block;
  }

  .hero-slideshow .slide-content h2,

  .hero-slide__heading {
    font-size: 2.5rem;
  }

  /* Review cards 20px padding */

  .reviews-slider-track .review-item {
    padding: 20px !important;
    flex: 0 0 85% !important;
    /* Make it fit nicely on mobile */
  }

  /* Join Party mobile */

  .join-party-section {
    padding: 30px 15px !important;
  }

  .join-party-section .section-heading {
    font-size: 2rem !important;
  }

  .newsletter-form {
    flex-direction: column;
    border: none !important;
    border-radius: 0 !important;
  }

  .newsletter-form input {
    border-radius: 50px !important;
    border: 1px solid #ccc !important;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 50px !important;
  }

  /* Moraze Story mobile */

  .moraze-story-section {
    padding: 40px 15px !important;
    border-radius: 20px !important;
  }

  .moraze-story-section .section-heading {
    font-size: 2rem !important;
  }

  .moraze-story-section .story-content {
    font-size: 1rem !important;
  }

}

/* Category Bubble Border Colors */

.face-card .curate-bubble {
  border-color: #ffda73 !important;
}

.lips-card .curate-bubble {
  border-color: #FF4D85 !important;
}

.eyes-card .curate-bubble {
  border-color: #93c5fd !important;
}

.tools-card .curate-bubble {
  border-color: #d8b4e2 !important;
}

.curate-bubble-link:hover .curate-bubble {
  transform: scale(1.05);
}

/* Global Button Pill Shape */

.btn {
  border-radius: 50px !important;
}

/* Header tweaks */

.mega-header {
  background-color: transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.mega-header.scrolled {
  background-color: #ffffff !important;
  border-bottom: 1px solid #eaeaea;
}

/* Tight Global Spacing */

.hero-slideshow,

.worth-hype-section,

.curate-section,

.collection-banner,

.more-to-love-section,

.reviews-section,

.values-section,

.press-section,

.join-party-section,

.moraze-story-section {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

/* Mobile Stacking for Split Layouts */

@media (max-width: 768px) {
  .join-party-container,
  .moraze-story-container {
    flex-direction: column !important;
  }

  .logo a {
    font-size: 1.3rem;
  }

  .wth-product {
    flex: 0 0 calc(70% - 8px);
  }

  .pslider-card {
    flex: 0 0 calc(70% - 12px);
  }

  .mtl-card {
    flex: 0 0 calc(70% - 30px);
  }

  .collection-banner {
    height: 180px;
  }

  .bhp-title {
    font-size: 1rem;
  }

  .curate-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .curate-label {
    font-size: 0.95rem;
  }

}

/* ============================================

   NEW SECTIONS & SPACING UPDATES

   ============================================ */

/* Hero Banner Update */

.hero-slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slideshow .slide img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.hero-slideshow .slide-content h2 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-slideshow .slide-content .btn-primary {
  background-color: #FF4D85;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-transform: uppercase;
}

.hero-slideshow .slide-content .btn-primary:hover {
  background-color: #E63E70;
}

/* Review Slider Scrollbar Hide */

.reviews-slider-track::-webkit-scrollbar {
  display: none;
}

/* Mobile Spacing for Sections */

@media (max-width: 768px) {
  /* Set consistent 24px margin between sections */
  .hero-slideshow,
  .worth-the-hype-section,
  .curate-section,
  .collection-banner,
  .more-to-love-section,
  .reviews-section,
  .values-section,
  .press-section,
  .join-party-section,
  .moraze-story-section {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Hero adjustments */

  .hero-slideshow .slide img,

  .hero-slide__img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .hero-slideshow .slide-content h2,

  .hero-slide__heading {
    font-size: 2.5rem;
  }

  /* Review cards 20px padding */

  .reviews-slider-track .review-item {
    padding: 20px !important;
    flex: 0 0 85% !important;
    /* Make it fit nicely on mobile */
  }

  /* Join Party mobile */

  .join-party-section {
    padding: 30px 15px !important;
  }

  .join-party-section .section-heading {
    font-size: 2rem !important;
  }

  .newsletter-form {
    flex-direction: column;
    border: none !important;
    border-radius: 0 !important;
  }

  .newsletter-form input {
    border-radius: 50px !important;
    border: 1px solid #ccc !important;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 50px !important;
  }

  /* Moraze Story mobile */

  .moraze-story-section {
    padding: 40px 15px !important;
    border-radius: 20px !important;
  }

  .moraze-story-section .section-heading {
    font-size: 2rem !important;
  }

  .moraze-story-section .story-content {
    font-size: 1rem !important;
  }

}

/* Category Bubble Border Colors */

.face-card .curate-bubble {
  border-color: #ffda73 !important;
}

.lips-card .curate-bubble {
  border-color: #FF4D85 !important;
}

.eyes-card .curate-bubble {
  border-color: #93c5fd !important;
}

.tools-card .curate-bubble {
  border-color: #d8b4e2 !important;
}

.curate-bubble-link:hover .curate-bubble {
  transform: scale(1.05);
}

/* Global Button Pill Shape */

.btn {
  border-radius: 50px !important;
}

/* Header tweaks */

.mega-header {
  background-color: transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.mega-header.scrolled {
  background-color: #ffffff !important;
  border-bottom: 1px solid #eaeaea;
}

/* Tight Global Spacing */

.hero-slideshow,

.worth-hype-section,

.curate-section,

.collection-banner,

.more-to-love-section,

.reviews-section,

.values-section,

.press-section,

.join-party-section,

.moraze-story-section {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

/* Mobile Stacking for Split Layouts */

@media (max-width: 768px) {
  .join-party-container,
  .moraze-story-container {
    flex-direction: column !important;
  }

  .join-party-image,

  .join-party-content,

  .story-image,

  .story-content-wrapper {
    flex: 1 1 100% !important;
  }

  .join-party-content,

  .story-content-wrapper {
    padding: 40px 20px !important;
  }

}

/* ============================================

   NEW WORTH THE HYPE STYLES

   ============================================ */

.worth-hype-container-new {
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
  /* Reduced from 16px to make the card wider on screen */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.worth-hype-title-new {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 24px;
  text-align: center;
}

.worth-hype-slider-wrapper {
  position: relative;
  width: 100%;
}

.worth-hype-products {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 12px;
  scrollbar-width: none;
  width: 100%;
}

.worth-hype-products::-webkit-scrollbar {
  display: none;
}

.wth-card-new {
  flex: 0 0 100%;
  min-width: unset;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wth-card-img {
  width: 100%;
  padding: 12px 12px 0;
  /* Reduced from 16px to make the image slightly wider inside the box */
}

.wth-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  /* Give the inner image rounded corners too */
}

.wth-card-text {
  padding: 16px 20px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wth-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2px;
}

.wth-card-desc {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.wth-card-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wth-card-btn {
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

/* Dots positioned inside the yellow card at the bottom right */

.wth-slider-dots {
  position: absolute;
  bottom: 32px;
  right: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 10;
}

.wth-slider-dots .slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wth-slider-dots .slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: #000;
}

/* ============================================

   GLOBAL PRODUCT CARD THEME OVERHAUL

   ============================================ */

.product-card {
  background-color: #fff !important;
  border: 1.5px solid #F92982 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.card-badge-new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #82C91E;
  /* Lime green */
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.product-card .product-image-wrapper {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 !important;
  background-color: #fff !important;
  padding: 24px 16px 16px !important;
  /* Space for the New badge */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

.product-card .product-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
  border-radius: 0 !important;
}

.card-badge-shades {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #F92982;
  border: 1px solid #F92982;
  background-color: #fff;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 5;
}

.card-feature-bar {
  background-color: #FACC15;
  /* Yellow */
  color: #000;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 0;
  width: 100%;
}

.product-card .product-details {
  padding: 12px !important;
  text-align: center !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.product-card .product-title {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: #000 !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
  height: auto !important;
}

.product-card .product-rating {
  font-size: 0.75rem !important;
  color: #666 !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
}

.product-card .rating-star {
  color: #F92982;
  font-size: 14px;
}

.product-card .rating-check {
  color: #2E7D32;
  font-weight: bold;
  font-size: 14px;
}

.product-card .product-price {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #000 !important;
  margin-bottom: 8px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}

.product-coupon {
  background-color: #DCFCE7;
  color: #065F46;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.product-card .card-form {
  width: 100% !important;
  margin: 0 !important;
}

.product-card .btn-add-to-cart {
  width: 100% !important;
  max-width: 100% !important;
  background-color: #F92982 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin: 0 !important;
}

.product-card .btn-add-to-cart:hover {
  background-color: #e61570 !important;
}

/* ============================================

   CART DRAWER STYLES

   ============================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cart-drawer__content {
  position: absolute;
  top: 0;
  right: -400px;
  /* Hidden initially */
  width: 400px;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open .cart-drawer__content {
  right: 0;
}

@media (max-width: 480px) {
  .cart-drawer__content {
    width: 100%;
    right: -100%;
  }

}

/* Header */

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
}

.cart-drawer__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/* Promo Banner */

.cd-promo-banner {
  background-color: #F92982;
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 20px;
  letter-spacing: 0.01em;
}

/* Progress Section */

.cd-progress-section {
  background: #fff;
  padding: 16px 20px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.cd-progress-bar-wrap {
  position: relative;
  margin-bottom: 10px;
}

.cd-progress-track {
  position: absolute;
  top: 20px;
  left: calc(12.5%);
  width: calc(75%);
  height: 2.5px;
  background: #eee;
  z-index: 1;
  border-radius: 2px;
}

.cd-progress-fill {
  height: 100%;
  background: #F92982;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.cd-progress-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-bottom: 4px;
}

.cd-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.cd-node-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #ddd;
  color: #aaa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
  transition: all 0.3s;
}

.cd-node-circle i {
  font-size: 1.2rem;
}

.cd-node-circle--active {
  border-color: #F92982;
  color: #F92982;
  background: #fff;
  box-shadow: 0 0 0 3px #fce7f3;
}

.cd-node span {
  font-size: 0.62rem;
  color: #aaa;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.cd-node-label--active {
  color: #F92982 !important;
}

.cd-progress-msg {
  font-size: 0.78rem;
  color: #555;
  text-align: center;
  font-weight: 500;
  margin: 0;
  padding-top: 4px;
}

.cd-progress-msg--success {
  color: #2E7D32;
  font-weight: 700;
}

/* Scroll Area */

.cd-scroll-area {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #f0c0d8 transparent;
}

.cd-scroll-area::-webkit-scrollbar {
  width: 3px;
}

.cd-scroll-area::-webkit-scrollbar-thumb {
  background: #f0c0d8;
  border-radius: 3px;
}

/* Cart Details Header */

.cd-details-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 10px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid #f5f5f5;
}

.cd-details-header i {
  font-size: 1.1rem;
  color: #333;
}

.cd-dot {
  color: #aaa;
}

.cd-item-count {
  color: #555;
  font-weight: 500;
}

/* Items List */

.cd-items-list {
  background: #fff;
  padding: 0 20px;
}

.cd-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: opacity 0.3s;
}

.cd-item__img-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 4px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cd-item__body {
  flex: 1;
  min-width: 0;
}

.cd-item__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.cd-item__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 3px;
  line-height: 1.25;
  flex: 1;
}

.cd-item__remove {
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s;
}

.cd-item__remove:hover {
  color: #e53935;
}

.cd-item__variant {
  font-size: 0.73rem;
  color: #888;
  margin: 0 0 8px;
}

.cd-item__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cd-item__prices {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cd-item__price-now {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
}

.cd-item__price-was {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: line-through;
}

/* Qty Control */

.cd-item__qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.cd-qty-btn {
  background: #fff;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  transition: background 0.15s;
}

.cd-qty-btn:hover {
  background: #fce7f3;
  color: #F92982;
}

.cd-qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  line-height: 32px;
}

/* Empty Cart */

.cd-empty-state {
  text-align: center;
  padding: 48px 24px;
}

.cd-empty-icon {
  font-size: 4rem;
  color: #e0e0e0;
  margin-bottom: 12px;
  line-height: 1;
}

.cd-empty-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 6px;
}

.cd-empty-sub {
  font-size: 0.85rem;
  color: #888;
  margin: 0 0 24px;
}

.cd-continue-btn {
  background: #F92982;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.cd-continue-btn:hover {
  background: #e61570;
}

/* Exclusive Deals */

.cd-exclusive-deals {
  background: #FDF2F8;
  padding: 16px 20px;
  margin-top: 8px;
}

.cd-exclusive-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 12px;
}

/* ── Compact ag-product-card inside Exclusive Deals + You May Also Like (Worth the Hype Mobile style) ── */

.cd-exclusive-deals .ag-product-card,
#cdRecs .ag-product-card {
  font-size: 0.75rem !important;
  border-radius: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Override inline wrapper styles in cart drawer to match Worth the Hype Mobile width */
.cd-deals-slider > div,
.mz-recs__track > div {
  flex: 0 0 150px !important;
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
  scroll-snap-align: start;
}

.cd-exclusive-deals .ag-img-wrap,
#cdRecs .ag-img-wrap {
  height: 180px !important;
  max-height: 180px !important;
  aspect-ratio: auto !important;
}


.cd-exclusive-deals .ag-card-body,
#cdRecs .ag-card-body {
  padding: 8px 8px 4px !important;
  gap: 2px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex: 1 !important;
  text-align: left !important;
}

.cd-exclusive-deals .ag-product-title,
#cdRecs .ag-product-title {
  font-size: 12px !important;
  margin-bottom: 2px !important;
  -webkit-line-clamp: 2 !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.cd-exclusive-deals .ag-price,
#cdRecs .ag-price {
  font-size: 13px !important;
  font-weight: 800 !important;
}

/* Hide rating, coupon, compare price, and discount just like Worth the Hype Mobile cards */
.cd-exclusive-deals .ag-rating-row,
#cdRecs .ag-rating-row,
.cd-exclusive-deals .ag-coupon-block,
#cdRecs .ag-coupon-block,
.cd-exclusive-deals .ag-compare,
#cdRecs .ag-compare,
.cd-exclusive-deals .ag-discount,
#cdRecs .ag-discount {
  display: none !important;
}

.cd-exclusive-deals .ag-atc-wrapper,
#cdRecs .ag-atc-wrapper {
  padding: 0 8px 8px !important;
  margin-top: 4px !important;
}

.cd-exclusive-deals .ag-atc-btn,
.cd-exclusive-deals .ag-atc-btn-link,
#cdRecs .ag-atc-btn,
#cdRecs .ag-atc-btn-link {
  height: 34px !important;
  min-height: unset !important;
  font-size: 11px !important;
  border-radius: 6px !important;
  padding: 0 8px !important;
  letter-spacing: 0 !important;
}

.cd-exclusive-deals .ag-swatch-bar,
#cdRecs .ag-swatch-bar {
  padding: 2px 3px !important;
  gap: 2px !important;
  justify-content: flex-start !important;
}

.cd-exclusive-deals .ag-swatch-dot,
#cdRecs .ag-swatch-dot {
  width: 9px !important;
  height: 9px !important;
}

.cd-exclusive-deals .ag-badges-container,
#cdRecs .ag-badges-container {
  top: 5px !important;
  left: 5px !important;
}

.cd-exclusive-deals .ag-badge,
#cdRecs .ag-badge {
  font-size: 0.5rem !important;
  padding: 2px 4px !important;
}

/* Hide swatch-more text at this small size */
.cd-exclusive-deals .ag-swatch-more,
#cdRecs .ag-swatch-more {
  display: none !important;
}

.cd-deals-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.cd-deals-slider::-webkit-scrollbar {
  display: none;
}

.cd-deal-card {
  flex-shrink: 0;
  width: 160px;
  background: #fff;
  border: 1px solid #f0c0d8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  align-items: stretch;
}

.cd-deal-img {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #f0f0f0;
}

.cd-deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-deal-info {
  flex: 1;
  min-width: 0;
}

.cd-deal-info h4 {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 3px;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cd-deal-rating {
  font-size: 0.65rem;
  color: #666;
  margin-bottom: 2px;
}

.cd-star {
  color: #f59e0b;
}

.cd-verified {
  color: #16a34a;
  font-weight: 700;
}

.cd-deal-shade {
  font-size: 0.65rem;
  color: #888;
  margin: 0 0 4px;
}

.cd-deal-price {
  font-size: 0.78rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.cd-deal-price strong {
  color: #111;
  font-size: 0.88rem;
}

.cd-deal-price del {
  color: #aaa;
  font-size: 0.72rem;
}

.cd-deal-off {
  color: #16a34a;
  font-size: 0.7rem;
  font-weight: 700;
}

.cd-deal-btn {
  background: #F92982;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 0;
  font-size: 0.7rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}

.cd-deal-btn:hover {
  background: #e61570;
}

/* Price Summary */

.cd-price-summary {
  background: #fff;
  padding: 16px 20px 24px;
  margin-top: 8px;
  border-top: 6px solid #f9f9f9;
}

.cd-ps-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cd-ps-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.cd-ps-row--discount span:last-child {
  color: #16a34a;
  font-weight: 700;
}

.cd-free {
  color: #16a34a;
  font-weight: 800;
}

.cd-ps-divider {
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-top: 4px;
  font-size: 0.9rem;
}

/* STICKY FOOTER */

.cd-footer {
  border-top: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.cd-footer__savings-bar {
  background: #DCFCE7;
  color: #166534;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.cd-savings-badge {
  background: #16a34a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.72rem;
}

.cd-footer__checkout-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 12px;
}

.cd-footer__total {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cd-footer__total strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: #111;
}

.cd-footer__total del {
  font-size: 0.78rem;
  color: #aaa;
}

.cd-view-details {
  font-size: 0.72rem;
  color: #F92982;
  font-weight: 700;
  text-decoration: none;
}

.cd-checkout-btn {
  background: #F92982;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.cd-checkout-btn:hover {
  background: #e61570;
  color: #fff;
}

/* Keep old classes for backward compat */

.cart-drawer__empty {
  text-align: center;
  padding: 40px 20px;
}

.btn-checkout {
  background: #F92982;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Progress Bar Overhaul */

.cart-drawer__progress {
  background: #fff;
  padding: 16px 20px 12px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}

.progress-bar-container {
  position: relative;
  padding-top: 10px;
  margin-bottom: 12px;
}

.progress-track {
  position: absolute;
  top: 24px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #eee;
  z-index: 1;
}

.progress-fill {
  height: 100%;
  background-color: #F92982;
  transition: width 0.3s ease;
}

.progress-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.progress-nodes .node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.progress-nodes .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
}

.progress-nodes .circle small {
  font-size: 0.4rem;
}

.progress-nodes .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  border: 1.5px solid #F92982;
  color: #F92982;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.progress-nodes .node.active span {
  color: #F92982;
}

.progress-nodes span {
  font-size: 0.65rem;
  color: #999;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}

.progress-message {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
}

/* Scrollable Wrapper */

.cart-drawer__items-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-drawer__count-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 8px;
}

.cart-drawer__count-header h3 {
  font-size: 0.9rem;
  margin: 0;
}

.cart-drawer__count-header .item-count {
  color: #666;
  font-size: 0.85rem;
}

/* Items List */

.cart-drawer__items {
  padding: 0 20px 16px;
  background: #fff;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
}

.cart-item__image {
  width: 80px;
  height: 80px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 4px;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__details {
  flex: 1;
}

.cart-item__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}

.cart-item__remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-item__variant {
  font-size: 0.75rem;
  color: #666;
  margin: 0 0 8px;
}

.cart-item__price-qty {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cart-item__price {
  font-weight: 800;
  font-size: 1rem;
  display: block;
}

.cart-item__coupon {
  background-color: #DCFCE7;
  color: #065F46;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background: #fff;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.qty-input {
  width: 30px;
  text-align: center;
  border: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 4px 0;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,

.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Empty Cart */

.cart-drawer__empty {
  text-align: center;
  padding: 40px 20px;
}

/* Exclusive Deals */

.cart-drawer__cross-sell {
  background: #FDF2F8;
  /* Light pink background */
  padding: 16px 20px;
  margin-top: 8px;
}

.cross-sell__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cross-sell__slider {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.cross-sell__slider::-webkit-scrollbar {
  display: none;
}

.cross-sell__item {
  background: #fff;
  border-radius: 8px;
  min-width: 200px;
  display: flex;
  padding: 8px;
  gap: 8px;
  border: 1px solid #F92982;
}

.cross-sell__item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.cs-details h4 {
  font-size: 0.75rem;
  margin: 0 0 4px;
}

.cs-rating {
  font-size: 0.65rem;
  color: #666;
  margin-bottom: 2px;
}

.cs-shade {
  font-size: 0.65rem;
  color: #999;
  margin: 0 0 4px;
}

.cs-price {
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.cs-original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.7rem;
  margin: 0 4px;
}

.cs-discount {
  color: #2E7D32;
  font-size: 0.7rem;
  font-weight: bold;
}

.cs-btn {
  padding: 4px 0;
  font-size: 0.7rem;
  background: #F92982;
  width: 100%;
  border-radius: 4px;
}

/* Price Summary (Hidden usually, but kept for fallback) */

.cart-drawer__summary {
  background: #fff;
  padding: 16px 20px;
  margin-top: 8px;
  padding-bottom: 30px;
}

.summary-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #333;
}

.summary-row.discount {
  color: #2E7D32;
}

.summary-row.shipping span:last-child {
  color: #2E7D32;
  font-weight: bold;
}

.summary-row.shipping del {
  color: #999;
  font-weight: normal;
  margin-right: 4px;
}

.summary-row.prepaid {
  color: #2E7D32;
}

.summary-row.total {
  font-size: 1rem;
  font-weight: 800;
  border-top: 1px solid #eaeaea;
  padding-top: 12px;
  margin-top: 4px;
}

/* Footer Area with Savings Banner */

.cart-drawer__footer-area {
  background: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.footer-savings-banner {
  background-color: #DCFCE7;
  /* Light green */
  color: #065F46;
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-savings-banner .badge {
  background-color: #2E7D32;
  color: #fff;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 700;
  margin: 0 2px;
}

/* Footer Checkout */

.cart-drawer__footer {
  background: #fff;
  padding: 16px 20px;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.footer-price strong {
  font-size: 1.2rem;
  display: block;
}

.footer-price del {
  font-size: 0.8rem;
  color: #999;
}

.footer-price .view-details {
  display: block;
  font-size: 0.7rem;
  color: #F92982;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2px;
}

.btn-checkout {
  background: #F92982;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================

   PDP (PRODUCT DETAIL PAGE) STYLES

   ============================================ */

.pdp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.pdp-breadcrumbs {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 24px;
}

.pdp-breadcrumbs a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

/* PDP Media Gallery */

.pdp-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-main-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f7f7f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdp-main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pdp-thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
}

.thumbnail-item.active {
  border-color: #F92982;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PDP Info Right Side */

.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-tags {
  display: flex;
  gap: 8px;
}

.pdp-tag {
  background: #f0f0f0;
  color: #333;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.pdp-sales-badge {
  color: #E53935;
  font-weight: 700;
  font-size: 0.85rem;
}

.pdp-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 4px 0;
  color: #111;
}

.pdp-reviews {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-reviews .rating-star {
  color: #F92982;
  font-size: 1rem;
}

.pdp-reviews .rating-check {
  color: #2E7D32;
  font-weight: bold;
  font-size: 1rem;
}

.pdp-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.pdp-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000;
}

.pdp-compare-price {
  font-size: 1.2rem;
  color: #999;
}

.pdp-discount {
  color: #2E7D32;
  font-size: 1rem;
  font-weight: 800;
}

.pdp-tax-info {
  font-size: 0.75rem;
  color: #666;
  margin: 0 0 16px;
}

/* Mock Coupons Block */

.pdp-coupons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.coupon-card {
  background: #FDF2F8;
  /* Light Pink */
  border: 1px dashed #F92982;
  border-radius: 8px;
  padding: 12px 16px;
}

.coupon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.coupon-header strong {
  color: #F92982;
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-copy {
  background: none;
  border: none;
  color: #F92982;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
}

.coupon-card p {
  font-size: 0.8rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* Variant Selector (Swatches) */

.pdp-option-selector {
  margin-bottom: 20px;
}

.pdp-option-selector label {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.pdp-option-selector .selected-value {
  color: #666;
  font-weight: 500;
}

.pdp-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch-item {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
}

.swatch-item.active {
  border-color: #F92982;
  background: #FDF2F8;
  color: #F92982;
  font-weight: 700;
}

/* Pincode */

.pdp-pincode {
  margin-bottom: 24px;
}

.pdp-pincode label {
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.pincode-input-group {
  display: flex;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.pincode-input-group input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  outline: none;
  font-size: 0.95rem;
}

.pincode-input-group button {
  background: #fff;
  border: none;
  border-left: 1px solid #ccc;
  padding: 0 20px;
  font-weight: 700;
  color: #F92982;
  cursor: pointer;
}

/* Action Group */

.pdp-action-group {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .pdp-action-group {
    flex-direction: column;
    align-items: stretch;
  }

}

.pdp-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  height: 48px;
  overflow: hidden;
  width: fit-content;
}

.pdp-qty-selector .qty-btn {
  background: #fff;
  border: none;
  width: 40px;
  height: 100%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-qty-selector input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.1rem;
  font-weight: 700;
  height: 100%;
  -moz-appearance: textfield;
}

.pdp-qty-selector input::-webkit-outer-spin-button,

.pdp-qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-buttons {
  display: flex;
  gap: 12px;
  flex: 1;
}

.pdp-add-to-cart {
  flex: 1;
  background: #F92982;
  color: #fff;
  border: none;
  height: 48px;
  border-radius: 8px !important;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pdp-buy-now {
  flex: 1;
  background: #000;
  color: #fff;
  border: none;
  height: 48px;
  border-radius: 8px !important;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

/* Accordions */

.pdp-bottom-details {
  max-width: 800px;
  margin: 40px auto;
  border-top: 1px solid #eaeaea;
}

.accordion {
  border-bottom: 1px solid #eaeaea;
}

.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000;
}

.accordion-content {
  display: none;
  padding-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.accordion-content ul {
  padding-left: 20px;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 8px;
}

/* ============================================

   SWISS BEAUTY STYLE PRODUCT CARDS

   ============================================ */

.sb-product-card {
  background: #fff;
  border: 1.5px solid #F92982;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.sb-product-card:hover {
  box-shadow: 0 6px 24px rgba(249, 41, 130, 0.15);
}

/* NEW badge - top left green */

.sb-badge-new {
  position: absolute;
  top: 0;
  left: 0;
  background: #82C91E;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-bottom-right-radius: 10px;
  z-index: 10;
  text-transform: uppercase;
}

/* Image area */

.sb-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #fafafa;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shades badge - bottom right of image */

.sb-shades-badge {
  position: absolute;
  bottom: 0;
  right: 12px;
  color: #ff4d85;
  border: 1px solid #ff4d85;
  background: #ffffff;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  line-height: 1;
  transform: translateY(50%);
}

/* Yellow feature bar */

.sb-feature-bar {
  background: #FACC15;
  color: #111;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 8px;
  letter-spacing: 0.01em;
}

/* Card body text */

.sb-card-body {
  padding: 12px 12px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sb-title-link {
  text-decoration: none;
  color: inherit;
}

.sb-product-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.3;
}

/* Rating row */

.sb-rating {
  font-size: 0.72rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.sb-star {
  color: #F92982;
  font-size: 0.9rem;
}

.sb-sep {
  color: #ccc;
}

.sb-check {
  color: #16a34a;
  font-weight: 800;
}

/* Price row */

.sb-pricing {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.sb-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: #111;
}

.sb-compare {
  font-size: 0.78rem;
  color: #aaa;
  text-decoration: line-through;
}

.sb-off-badge {
  background: #F9F0DC;
  color: #B45309;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Coupon row */

.sb-coupon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #DCFCE7;
  color: #166534;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 4px;
}

/* Form wrapper */

.sb-form {
  margin: 0;
  width: 100%;
}

/* ADD TO CART button - full width pink */

.sb-atc-btn {
  width: 100%;
  background: #F92982;
  color: #fff;
  border: none;
  padding: 13px 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  border-radius: 0 0 10px 10px;
}

.sb-atc-btn:hover {
  background: #e61570;
}

/* NOTIFY ME button */

.sb-notify-btn {
  width: 100%;
  background: #fff;
  color: #F92982;
  border: 1.5px solid #F92982;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  border-radius: 0 0 10px 10px;
  line-height: 1.4;
}

.sb-notify-btn small {
  font-size: 0.65rem;
  font-weight: 500;
  display: block;
  text-transform: none;
  color: #888;
}

.sb-notify-btn:hover {
  background: #FDF2F8;
}

/* ============================================

   FLOATING STICKY CART BAR (Swiss Beauty Style)

   ============================================ */

#floating-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F92982;
  color: #fff;
  display: none;
  /* shown via JS when cart has items */
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  z-index: 8888;
  box-shadow: 0 -4px 20px rgba(249, 41, 130, 0.3);
  cursor: pointer;
}

#floating-cart-bar.visible {
  display: flex;
}

.fcb-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fcb-icon {
  font-size: 1.4rem;
}

.fcb-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fcb-items {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
}

.fcb-price {
  font-size: 1.1rem;
  font-weight: 900;
}

.fcb-cta {
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

/* Push page content up when bar is visible */

body.has-floating-cart {
  padding-bottom: 70px;
}

/* =============================================

   PRODUCT CARD + ATC BUTTON SEPARATION WRAPPERS

   Button is OUTSIDE the product card box

   ============================================= */

/* Worth the Hype wrapper */

.wth-product-wrapper {
  flex: 0 0 calc(22% - 12px);
  min-width: 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wth-product-wrapper .wth-atc-form,

.wth-product-wrapper .sb-form {
  width: 100%;
}

.wth-product-wrapper .wth-product {
  flex: 1;
  border: none;
  min-width: 0;
}

/* More to Love wrapper */

.mtl-product-wrapper {
  display: flex;
  flex-direction: column;
  flex: 0 0 200px;
  min-width: 160px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.65;
  transform: scale(0.9);
}

.mtl-product-wrapper.active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}

.mtl-product-wrapper .mtl-atc-form,

.mtl-product-wrapper .sb-form {
  width: 100%;
}

.mtl-product-wrapper .mtl-card {
  flex: 1;
  min-width: 0;
}

/* Collection Banner wrapper */

.cb-product-wrapper {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(20% - 16px);
  min-width: 160px;
}

.cb-product-wrapper .cb-atc-form,

.cb-product-wrapper .card-form {
  width: 100%;
}

.cb-product-wrapper .pslider-card {
  flex: 1;
  min-width: 0;
}

/* =============================================

   MORAZE PRODUCT CARD - Swiss Beauty Style

   Matches the reference design exactly

   ============================================= */

/* --- Base Card --- */

.sb-product-card {
  background: #ffffff;
  border: 1.5px solid #f0f0f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sb-product-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* --- Top Badges (BestSeller / Back In Stock) --- */

.sb-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #5b6cf8;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 3;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

.sb-badge-stock {
  position: absolute;
  top: 38px;
  left: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 3;
  letter-spacing: 0.3px;
}

/* --- Image Area --- */

.sb-img-wrap {
  position: relative;
  background: #fafafa;
  width: 100%;
  aspect-ratio: 3 / 3.8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sb-product-card:hover .sb-img-wrap img {
  transform: scale(1.06);
}

/* --- Shades Badge (bottom-right of image) --- */

.sb-shades-badge {
  position: absolute;
  bottom: 0;
  right: 12px;
  background-color: #ffffff;
  border: 1px solid #ff4d85;
  color: #ff4d85;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  backdrop-filter: none;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  line-height: 1;
  transform: translateY(50%);
}

/* --- Feature Bar (Sparkling shine / Highly Pigmented) --- */

.sb-feature-bar {
  background: linear-gradient(90deg, #fceabb 0%, #f8b400 100%);
  color: #7a4f00;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 10px;
  letter-spacing: 0.3px;
}

/* --- Card Body (text info) --- */

.sb-card-body {
  padding: 10px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* --- Product Title --- */

.sb-title-link {
  text-decoration: none;
  color: inherit;
}

.sb-product-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

/* --- Rating Row --- */

.sb-rating {
  font-size: 0.72rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.sb-star {
  color: #f59e0b;
  font-size: 0.8rem;
}

.sb-sep {
  color: #ccc;
  font-size: 0.8rem;
}

.sb-check {
  color: #22c55e;
  font-weight: 700;
}

/* --- Pricing --- */

.sb-pricing {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.sb-price {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
}

.sb-compare {
  font-size: 0.75rem;
  color: #aaa;
  text-decoration: line-through;
}

.sb-off-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: #fff0f3;
  color: #e63946;
  padding: 2px 6px;
  border-radius: 20px;
  border: 1px solid #ffd6dc;
}

/* --- Coupon Row --- */

.sb-coupon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
  width: fit-content;
}

.sb-coupon i {
  font-size: 0.8rem;
}

/* --- ADD TO CART Button --- */

.sb-atc-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #e91e8c 0%, #ff4db8 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 16px;
  border: none;
  border-radius: 0 0 16px 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease;
  margin: 0;
}

.sb-atc-btn:hover {
  background: linear-gradient(90deg, #c2156f 0%, #e91e8c 100%);
  transform: translateY(-1px);
}

.sb-atc-btn:active {
  transform: translateY(0);
}

/* When button is OUTSIDE the card (in wrapper), adjust border-radius */

.wth-atc-form .sb-atc-btn,

.mtl-atc-form .sb-atc-btn,

.cb-atc-form .sb-atc-btn,

.wth-product-wrapper .sb-form .sb-atc-btn,

.mtl-product-wrapper .sb-form .sb-atc-btn {
  border-radius: 0 0 16px 16px;
}

/* --- NOTIFY ME Button --- */

.sb-notify-btn {
  display: block;
  width: 100%;
  background: #f3f4f6;
  color: #555;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 11px 16px;
  border: none;
  border-radius: 0 0 16px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  line-height: 1.3;
}

.sb-notify-btn:hover {
  background: #e5e7eb;
}

/* --- Form wrapper has no extra padding --- */

.sb-form,

.wth-atc-form,

.mtl-atc-form,

.cb-atc-form {
  margin: 0;
  padding: 0;
}

/* =============================================

   FIX: Button is OUTSIDE card (sibling)

   Make card bottom flat + button top flat

   so they look visually connected/attached

   ============================================= */

/* Card: flatten bottom corners so button attaches seamlessly */

.wth-product-wrapper .sb-product-card,

.mtl-product-wrapper .sb-product-card,

.mtl-product-wrapper .mtl-card,

.cb-product-wrapper .sb-product-card {
  border-radius: 18px 18px 0 0;
  border-bottom: none;
}

/* Button/form: flatten top corners to connect with card */

.wth-product-wrapper .sb-form,

.mtl-product-wrapper .sb-form,

.cb-product-wrapper .sb-form {
  margin: 0;
  padding: 0;
}

.wth-product-wrapper .sb-atc-btn,

.mtl-product-wrapper .sb-atc-btn,

.cb-product-wrapper .sb-atc-btn {
  border-radius: 0 0 18px 18px !important;
}

.wth-product-wrapper .sb-notify-btn,

.mtl-product-wrapper .sb-notify-btn,

.cb-product-wrapper .sb-notify-btn {
  border-radius: 0 0 18px 18px !important;
}

/* =============================================

   SWISS BEAUTY STYLE - Card & Button SEPARATE

   Card has full rounded corners

   Button is a separate pill below with gap

   ============================================= */

/* Override the previous "flatten" fix */

.wth-product-wrapper .sb-product-card,

.mtl-product-wrapper .sb-product-card,

.mtl-product-wrapper .mtl-card,

.cb-product-wrapper .sb-product-card {
  border-radius: 18px !important;
  border-bottom: 1.5px solid #f0f0f0 !important;
}

/* Wrapper: flex column with gap between card and button */

.wth-product-wrapper,

.mtl-product-wrapper,

.cb-product-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Button: fully pill shaped, NOT attached to card */

.wth-product-wrapper .sb-atc-btn,

.mtl-product-wrapper .sb-atc-btn,

.cb-product-wrapper .sb-atc-btn {
  border-radius: 50px !important;
  width: 100%;
}

.wth-product-wrapper .sb-notify-btn,

.mtl-product-wrapper .sb-notify-btn,

.cb-product-wrapper .sb-notify-btn {
  border-radius: 50px !important;
  width: 100%;
}

/* =============================================

   FINAL DEFINITIVE FIX - Swiss Beauty Card Style

   ============================================= */

/* --- WRAPPER: flex column --- */

.wth-product-wrapper,

.mtl-product-wrapper,

.cb-product-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  position: relative !important;
}

/* --- CARD: standalone box, clean white, all 4 corners rounded --- */

.wth-product-wrapper .sb-product-card,

.wth-product-wrapper .wth-product,

.mtl-product-wrapper .sb-product-card,

.mtl-product-wrapper .mtl-card,

.cb-product-wrapper .sb-product-card,

.cb-product-wrapper .pslider-card {
  border-radius: 18px !important;
  border: 1.5px solid #f0f0f0 !important;
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  display: flex;
  flex-direction: column;
}

/* --- FORM: Padding to position inside card --- */

.wth-product-wrapper .sb-form,

.mtl-product-wrapper .sb-form,

.cb-product-wrapper .sb-form {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 12px 12px 12px !important;
  position: static !important;
  margin-top: auto !important;
}

/* --- BUTTON: Curved corners (pill style) --- */

.wth-product-wrapper .sb-atc-btn,

.mtl-product-wrapper .sb-atc-btn,

.cb-product-wrapper .sb-atc-btn,

.sb-product-card .sb-atc-btn {
  display: block !important;
  width: 100% !important;
  border-radius: 50px !important;
  background: linear-gradient(90deg, #e91e8c 0%, #ff4db8 100%) !important;
  color: #fff !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 13px 16px !important;
  border: none !important;
  cursor: pointer !important;
  text-align: center !important;
  position: static !important;
  writing-mode: horizontal-tb !important;
}

.wth-product-wrapper .sb-atc-btn:hover,

.mtl-product-wrapper .sb-atc-btn:hover,

.cb-product-wrapper .sb-atc-btn:hover {
  background: linear-gradient(90deg, #c2156f 0%, #e91e8c 100%) !important;
  transform: translateY(-1px) !important;
}

/* --- NOTIFY ME button same pill style --- */

.wth-product-wrapper .sb-notify-btn,

.mtl-product-wrapper .sb-notify-btn,

.cb-product-wrapper .sb-notify-btn {
  display: block !important;
  width: 100% !important;
  border-radius: 50px !important;
  position: static !important;
  writing-mode: horizontal-tb !important;
  background: #f3f4f6 !important;
  color: #555 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 11px 16px !important;
  border: none !important;
  cursor: pointer !important;
}

.wth-product-wrapper .sb-notify-btn:hover,

.mtl-product-wrapper .sb-notify-btn:hover,

.cb-product-wrapper .sb-notify-btn:hover {
  background: #e5e7eb !important;
}

/* ============================================================

   SWISS BEAUTY–STYLE PDP — MORAZE COSMETICS

   ============================================================ */

/* ── Breadcrumb ─── */

.pdp-breadcrumb {
  max-width: 1260px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 0.78rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.pdp-breadcrumb a {
  color: #888;
  transition: color .2s;
}

.pdp-breadcrumb a:hover {
  color: #e91e8c;
}

.pdp-bc-sep {
  opacity: .5;
}

.pdp-bc-current {
  color: #111;
  font-weight: 600;
}

/* ── Layout ─── */

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1260px;
  margin: 20px auto 0;
  padding: 0 24px 48px;
  align-items: start;
}

/* ── Gallery ─── */

.pdp-gallery {
  display: flex;
  gap: 12px;
  position: sticky;
  top: 80px;
}

.pdp-thumb-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 70px;
  flex-shrink: 0;
}

.pdp-thumb {
  border: 2px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  aspect-ratio: 1;
}

.pdp-thumb:hover {
  border-color: #e91e8c;
  transform: scale(1.04);
}

.pdp-thumb.active {
  border-color: #e91e8c;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-main-img-wrap {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f8f4f5;
  height: auto;
  width: 100%;
}

.pdp-main-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}

.pdp-main-img-wrap:hover .pdp-main-img {
  transform: scale(1.04);
}

.pdp-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 2;
  text-transform: uppercase;
}

.pdp-img-badge.sale {
  background: #e91e8c;
  color: #fff;
}

.pdp-img-badge.new {
  background: #111;
  color: #fff;
}

.pdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: background .2s, transform .2s;
  padding: 0;
}

.pdp-arrow:hover {
  background: #e91e8c;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.pdp-arrow-prev {
  left: 10px;
}

.pdp-arrow-next {
  right: 10px;
}

.pdp-mobile-dots {
  display: none;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  gap: 6px;
}

.pdp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.pdp-dot.active {
  background: #fff;
  transform: scale(1.4);
}

/* ── Info Column ─── */

.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-attr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-attr-tag {
  background: #fff0f6;
  color: #e91e8c;
  border: 1px solid #ffc0d9;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.pdp-social-proof {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdp-title {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
  letter-spacing: -.3px;
  margin: 0;
}

.pdp-reviews-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.pdp-stars {
  color: #e91e8c;
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.pdp-rating-num {
  font-weight: 700;
  color: #111;
}

.pdp-rating-sep {
  color: #ddd;
}

.pdp-reviews-link {
  color: #e91e8c;
  text-decoration: underline;
  font-weight: 600;
}

.pdp-verified-badge {
  color: #16a34a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-main-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -.5px;
}

.pdp-mrp {
  font-size: 1.1rem;
  color: #aaa;
}

.pdp-disc-badge {
  background: #e91e8c;
  color: #fff;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pdp-tax-note {
  font-size: 0.72rem;
  color: #888;
  margin-top: -8px;
}

.pdp-best-price-pill {
  background: linear-gradient(135deg, #fff0f6, #fce7f3);
  border: 1px dashed #f9a8d4;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #be185d;
  flex-wrap: wrap;
}

.pdp-coupon-code {
  margin-left: auto;
  background: #fff;
  border: 1.5px dashed #e91e8c;
  color: #e91e8c;
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pdp-coupon-code:hover {
  background: #e91e8c;
  color: #fff;
}

/* ── Options / Swatches ─── */

.pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-option-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pdp-selected-val {
  color: #111;
  font-weight: 800;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.pdp-swatches-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-swatch-item {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  background: #fff;
  color: #333;
}

.pdp-swatch-item:hover {
  border-color: #e91e8c;
  color: #e91e8c;
}

.pdp-swatch-item.active {
  border-color: #e91e8c;
  background: #fff0f6;
  color: #e91e8c;
  font-weight: 800;
}

/* ── Coupons ─── */

.pdp-coupons-wrap {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 14px;
}

.pdp-coupons-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-coupons-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.pdp-coupons-scroll::-webkit-scrollbar {
  display: none;
}

.pdp-coupon-card {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px dashed #fca5a5;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 200px;
  max-width: 220px;
}

.pdp-coupon-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.pdp-coupon-top strong {
  font-size: 0.85rem;
  color: #111;
  letter-spacing: .5px;
}

.pdp-copy-btn {
  background: #e91e8c;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s;
}

.pdp-copy-btn:hover {
  background: #c2156f;
}

.pdp-coupon-card p {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.4;
}

/* ── Pincode ─── */

.pdp-pincode-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  border: 1px solid #efefef;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.pdp-pincode-row i {
  color: #e91e8c;
  font-size: 1rem;
}

.pdp-pincode-row>span {
  color: #555;
  font-weight: 600;
}

.pdp-pincode-row input {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.82rem;
  width: 120px;
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}

.pdp-pincode-row input:focus {
  border-color: #e91e8c;
}

.pdp-pincode-row button {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.pdp-pincode-row button:hover {
  background: #e91e8c;
}

/* ── Action Row ─── */

.pdp-action-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.pdp-qty-wrap {
  display: flex;
  align-items: center;
  border: 2px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.pdp-qty-btn {
  background: #fff;
  border: none;
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
  transition: background .2s, color .2s;
}

.pdp-qty-btn:hover {
  background: #e91e8c;
  color: #fff;
}

.pdp-qty-wrap input {
  width: 46px;
  text-align: center;
  border: none;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  font-family: inherit;
  background: #fff;
  height: 48px;
  -moz-appearance: textfield;
}

.pdp-qty-wrap input::-webkit-outer-spin-button,

.pdp-qty-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.pdp-cta-btns {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.pdp-atc-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #e91e8c, #ff4db8);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(233, 30, 140, .3);
}

.pdp-atc-btn:hover {
  background: linear-gradient(135deg, #c2156f, #e91e8c);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 30, 140, .4);
}

.pdp-buy-now-btn {
  flex: 1;
  min-width: 120px;
  padding: 14px 20px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}

.pdp-buy-now-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.pdp-notify-btn {
  width: 100%;
  padding: 14px;
  background: #f3f4f6;
  color: #555;
  border: none;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

/* ── Perks ─── */

.pdp-perks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 14px 10px;
}

.pdp-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.pdp-perk i {
  font-size: 1.5rem;
  color: #e91e8c;
}

.pdp-perk span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.pdp-perk small {
  font-weight: 400;
  color: #888;
  text-transform: none;
}

/* ── Accordions ─── */

.pdp-accordions-section {
  max-width: 1260px;
  margin: 0 auto 48px;
  padding: 0 24px;
  border-top: 1px solid #f0f0f0;
}

.pdp-accordion {
  border-bottom: 1px solid #f0f0f0;
}

.pdp-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color .2s;
}

.pdp-acc-header span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-acc-header span i {
  color: #e91e8c;
  font-size: 1.1rem;
}

.pdp-acc-header.active {
  color: #e91e8c;
}

.pdp-acc-icon {
  font-size: 0.9rem;
  color: #888;
}

.pdp-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), padding .3s;
  padding: 0 4px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

.pdp-acc-body.open {
  max-height: 800px;
  padding-bottom: 18px;
}

.pdp-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pdp-benefits-list li i {
  color: #e91e8c;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pdp-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.pdp-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pdp-step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #e91e8c, #ff4db8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pdp-patch-note {
  font-size: 0.76rem;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-ingredients-text {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.7;
}

.pdp-ingredients-note {
  font-size: 0.74rem;
  color: #aaa;
  margin-top: 6px;
}

/* ── Reviews ─── */

.pdp-reviews-section {
  max-width: 1260px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.pdp-reviews-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #111;
}

.pdp-reviews-summary {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 24px;
  flex-wrap: wrap;
}

.pdp-reviews-score {
  text-align: center;
}

.pdp-big-rating {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.pdp-big-stars {
  color: #e91e8c;
  font-size: 1.3rem;
  margin: 4px 0;
}

.pdp-reviews-count {
  font-size: 0.78rem;
  color: #888;
}

.pdp-rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 200px;
}

.pdp-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #555;
}

.pdp-rating-bar-row span:first-child {
  width: 28px;
  flex-shrink: 0;
  font-weight: 600;
}

.pdp-rating-bar-row span:last-child {
  width: 30px;
  flex-shrink: 0;
  color: #888;
}

.pdp-bar-track {
  flex: 1;
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.pdp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #e91e8c, #ff4db8);
  border-radius: 10px;
}

.pdp-review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pdp-review-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s;
}

.pdp-review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.pdp-rev-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-rev-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #e91e8c, #ff4db8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.pdp-rev-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #111;
}

.pdp-rev-stars {
  color: #e91e8c;
  font-size: 0.85rem;
}

.pdp-rev-date {
  margin-left: auto;
  font-size: 0.72rem;
  color: #bbb;
  white-space: nowrap;
}

.pdp-rev-text {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.6;
}

.pdp-rev-verified {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Mobile Sticky ─── */

.pdp-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 20px;
  z-index: 200;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
  transform: translateY(100%);
  transition: transform .3s ease;
}

.pdp-mobile-sticky.visible {
  transform: translateY(0);
}

.pdp-sticky-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdp-sticky-main-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
}

.pdp-sticky-price del {
  font-size: 0.78rem;
  color: #aaa;
}

.pdp-sticky-atc {
  flex: 1;
  background: linear-gradient(135deg, #e91e8c, #ff4db8);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pdp-sticky-atc.notify {
  background: #f3f4f6;
  color: #555;
}

/* ── Responsive ─── */

@media (max-width: 1024px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-review-cards {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {
  .pdp-layout {
    padding: 0 16px 80px;
  }

  .pdp-thumb-strip {
    display: none;
  }

  .pdp-mobile-dots {
    display: flex;
  }

  .pdp-main-img-wrap {
    aspect-ratio: auto;
    height: auto;
  }

  .pdp-perks-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdp-title {
    font-size: 1.25rem;
  }

  .pdp-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pdp-cta-btns {
    flex-direction: column;
  }

  .pdp-review-cards {
    grid-template-columns: 1fr;
  }

  .pdp-steps {
    grid-template-columns: 1fr;
  }

  .pdp-mobile-sticky {
    display: flex;
  }

  .pdp-accordions-section,

  .pdp-reviews-section {
    padding: 0 16px;
  }

  .pdp-breadcrumb {
    padding: 10px 16px 0;
  }

}

@media (max-width: 480px) {
  .pdp-main-price {
    font-size: 1.5rem;
  }

}

/* ============================================================

   SHEGLAM-STYLE MORE TO LOVE CAROUSEL

   ============================================================ */

.sheglam-mtl-section {
  max-width: 100%;
  padding: 32px 0 60px;
  overflow: hidden;
  background: #fff;
}

.sheglam-mtl-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ── Wrap: arrows + viewport ── */

.sheglam-mtl-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Viewport (clips overflow) ── */

.sheglam-mtl-viewport {
  flex: 1;
  overflow: hidden;
}

/* ── Track (scrollable, hidden scrollbar) ── */

.sheglam-mtl-track {
  display: flex;
  align-items: flex-end;
  /* Align bottom to make space for the scale-up */
  gap: 20px;
  padding: 40px 10px 20px;
  /* Top padding allows for the active item to scale up without being cut off */
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  scroll-behavior: auto;
  /* Handled by JS */
}

.sheglam-mtl-track::-webkit-scrollbar {
  display: none;
}

/* ── Item ── */

.sheglam-mtl-item {
  flex: 0 0 calc(20% - 16px);
  min-width: 200px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  opacity: 1;
}

.sheglam-mtl-item.is-active {
  opacity: 1;
}

/* ── Image Box (The part that scales and has background) ── */

.sheglam-mtl-image-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: none;
  background-color: #fafafa;
  border: 1.5px solid #f0f0f0;
}

.sheglam-mtl-item.is-active .sheglam-mtl-image-box {
  transform: none;
  box-shadow: none;
  z-index: 10;
}

/* Badge inside image box */

.sheglam-mtl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.sheglam-mtl-badge.sale {
  background: #e91e8c;
}

/* The actual image */

.sheglam-mtl-img-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
  /* Add padding so product doesn't touch the edges */
}

.sheglam-mtl-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.sheglam-mtl-item.is-active .sheglam-mtl-img {
  transform: none;
}

/* ── Info (Text below the image box) ── */

.sheglam-mtl-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 10px;
  transition: transform 0.4s ease;
}

.sheglam-mtl-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  text-decoration: none;
  transition: color 0.2s;
}

.sheglam-mtl-title:hover {
  color: #e91e8c;
}

.sheglam-mtl-rating {
  font-size: 0.8rem;
  color: #ffd700;
}

.sheglam-mtl-rating span {
  color: #888;
  margin-left: 4px;
}

.sheglam-mtl-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}

.sheglam-mtl-price-current {
  font-size: 1.05rem;
  font-weight: 900;
  color: #111;
}

.sheglam-mtl-price-compare {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
}

/* ATC Form */

.sheglam-mtl-form {
  width: 100%;
  margin: 0;
}

.sheglam-mtl-atc {
  width: 100%;
  padding: 12px 20px;
  background: #fdf2f8;
  /* Very light pink background */
  color: #e91e8c;
  /* Pink text */
  border: 1px solid #fbcfe8;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sheglam-mtl-atc:hover {
  background: #e91e8c;
  color: #fff;
  border-color: #e91e8c;
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
  transform: translateY(-2px);
}

.sheglam-mtl-notify {
  width: 100%;
  padding: 12px 20px;
  background: #f3f4f6;
  color: #555;
  border: none;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

/* ── Arrows ── */

.sheglam-mtl-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  transition: all 0.3s ease;
  position: absolute;
  top: 40%;
  /* Position slightly higher to match image box center */
  transform: translateY(-50%);
}

.sheglam-mtl-arrow:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-50%) scale(1.05);
}

.sheglam-mtl-prev {
  left: 16px;
}

.sheglam-mtl-next {
  right: 16px;
}

/* ── Responsive ── */

@media (max-width: 1200px) {
  .sheglam-mtl-item {
    flex: 0 0 calc(25% - 15px);
  }

}

@media (max-width: 900px) {
  .sheglam-mtl-item {
    flex: 0 0 calc(33.33% - 14px);
  }

  .sheglam-mtl-wrap {
    padding: 0 48px;
  }

}

@media (max-width: 768px) {
  .sheglam-mtl-item.is-active .sheglam-mtl-image-box {
    transform: scale(1.15) translateY(-5%);
    /* Slightly less scale on mobile */
  }

}

@media (max-width: 600px) {
  .sheglam-mtl-wrap {
    padding: 0 40px;
  }

  .sheglam-mtl-item {
    flex: 0 0 calc(50% - 10px);
    min-width: 160px;
  }

  .sheglam-mtl-heading {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .sheglam-mtl-arrow {
    width: 40px;
    height: 40px;
  }

  .sheglam-mtl-title {
    font-size: 0.85rem;
  }

  .sheglam-mtl-price-current {
    font-size: 0.95rem;
  }

}

@media (max-width: 480px) {
  .sheglam-mtl-item {
    flex: 0 0 calc(65% - 10px);
  }

  .sheglam-mtl-wrap {
    padding: 0 32px;
  }

}

/* ============================================================

   GLOBAL STRETCHED LINK SYSTEM — Applies on ALL screen sizes

   including desktop. Overrides any conflicting rules.

   ============================================================ */

/* 1. Outer wrapper — must be position: relative at all times */

.product-card-wrapper {
  position: relative !important;
}

/* 2. The PDP anchor — MUST be position: static so its ::after

   escapes to the nearest positioned ancestor (.product-card-wrapper).

   This overrides the conflicting .main-nav a { position: relative } rule. */

.product-pdp-link {
  position: static !important;
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
}

/* Neutralise the .main-nav a::after underline animation if it's

   accidentally targeting product links (extra safety guard). */

.product-pdp-link::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  z-index: 1 !important;
  pointer-events: auto !important;
}

/* 3. ATC form container + button — must sit above the stretched link */

.product-form-container,

.product-atc-form,

.product-atc-button,

.sb-atc-wrapper,

.sb-atc-btn,

.sb-notify-btn {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

/* ===================================================================

   PDP REDESIGN — Gallery horizontal thumbnails + Info hierarchy

   =================================================================== */

/* Gallery: full-width column layout (thumb below image) */

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Main image — full width, bordered container */

.pdp-main-img-wrap {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 15px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  height: auto;
}

.pdp-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 80vh;
  border-radius: 6px;
}

/* Thumbnail strip — HORIZONTAL ROW below main image */

.pdp-thumb-strip {
  display: flex;
  flex-direction: row !important;
  /* Override any vertical layout */
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.pdp-thumb-strip::-webkit-scrollbar {
  height: 4px;
}

.pdp-thumb-strip::-webkit-scrollbar-track {
  background: transparent;
}

.pdp-thumb-strip::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.pdp-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 2px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
  background: #f9f9f9;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumb.active,

.pdp-thumb:hover {
  border-color: #F92982;
}

/* ── Right column info hierarchy ── */

/* Title — prominent at top */

.pdp-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.3;
}

/* Feature tags — pill-shaped, light yellow/grey */

.pdp-attr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.pdp-attr-tag {
  background: #fef9c3;
  color: #78350f;
  border: 1px solid #fde68a;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Reviews row */

.pdp-reviews-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

/* Social proof */

.pdp-social-proof {
  font-size: 0.82rem;
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

/* Price block — inline layout */

.pdp-price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.pdp-main-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #111;
}

.pdp-mrp {
  font-size: 1rem;
  color: #999;
  font-weight: 400;
}

.pdp-disc-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Inline coupon tag — sits right next to price */

.pdp-inline-coupon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff3e0;
  border: 1px dashed #f59e0b;
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.pdp-inline-coupon:hover {
  background: #fef3c7;
}

.pdp-inline-coupon strong {
  text-decoration: underline dotted;
  color: #b45309;
}

/* Square swatch items */

.pdp-swatches-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pdp-swatch-item {
  min-width: 44px;
  height: 44px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  background: #fff;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.pdp-swatch-item:hover {
  border-color: #F92982;
  color: #F92982;
}

.pdp-swatch-item.active {
  border-color: #F92982;
  background: #fff0f7;
  color: #F92982;
  box-shadow: 0 0 0 2px rgba(249, 41, 130, 0.15);
}

/* Mobile adjustments */

@media (max-width: 768px) {
  .pdp-main-img-wrap {
    padding: 10px;
    height: auto;
  }

  .pdp-main-img {
    height: auto;
    max-height: 65vh;
  }

  .pdp-thumb {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .pdp-title {
    font-size: 1.15rem;
  }

  .pdp-main-price {
    font-size: 1.5rem;
  }

  .pdp-inline-coupon {
    font-size: 0.72rem;
  }

}

/* ===================================================================

   PDP — 50/50 SPLIT SCREEN LAYOUT (Swiss Beauty Style) — FIXED

   =================================================================== */

/* ── Page wrapper ── */

.pdp-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px 60px;
}

/* ── Main two-column layout ── */

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  overflow: visible;
  /* allow sticky to work — NOT hidden */
  margin-bottom: 40px;
}

/* ── LEFT COLUMN: Gallery ── */

.pdp-gallery {
  padding: 40px;
  border-right: 1px solid #eaeaea;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px 0 0 16px;
}

/* ── RIGHT COLUMN: Sticky, NO internal scroll ── */

.pdp-info {
  padding: 40px;
  position: sticky;
  top: 100px;
  align-self: start;
  /* NO max-height, NO overflow-y — content flows naturally */
  border-radius: 0 16px 16px 0;
}

/* ── Main image ── */

.pdp-main-img-wrap {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 15px;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  height: auto;
}

.pdp-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 80vh;
  border-radius: 6px;
}

/* ── Horizontal thumbnail strip ── */

.pdp-thumb-strip {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.pdp-thumb-strip::-webkit-scrollbar {
  height: 4px;
}

.pdp-thumb-strip::-webkit-scrollbar-track {
  background: transparent;
}

.pdp-thumb-strip::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.pdp-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 2px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
  background: #f9f9f9;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumb.active,

.pdp-thumb:hover {
  border-color: #F92982;
}

/* ── Info hierarchy ── */

.pdp-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 12px;
  line-height: 1.3;
}

.pdp-attr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.pdp-attr-tag {
  background: #fef9c3;
  color: #78350f;
  border: 1px solid #fde68a;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.pdp-reviews-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.pdp-social-proof {
  font-size: 0.82rem;
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}

/* ── Pricing ── */

.pdp-price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.pdp-main-price {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
}

.pdp-mrp {
  font-size: 1rem;
  color: #999;
}

.pdp-disc-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.pdp-inline-coupon {
  display: inline-flex;
    border-bottom: 1px solid #eaeaea;
    border-radius: 0;
    gap: 10px;
  }

  /* Info: full width, static — NO sticky */

  .pdp-info {
    width: 100%;
    padding: 18px 14px 24px;
    position: static !important;
    top: auto !important;
    border-radius: 0;
  }

  .pdp-main-img {
    max-height: 80vh;
  }

  .pdp-thumb {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
  }

  .pdp-title {
    font-size: 1.1rem;
  }

  .pdp-main-price {
    font-size: 1.45rem;
  }

  .pdp-inline-coupon {
    font-size: 0.7rem;
  }

  /* Swatches: slightly smaller but still 44px touch target */

  .pdp-swatch-item {
    min-width: 44px;
    min-height: 44px;
    font-size: 0.72rem;
    padding: 4px 10px;
  }

}

/* =====================================================

   ANTIGRAVITY PRODUCT CARD - GLOBAL SNIPPET STYLES

   ===================================================== */

/* Strip parent card wrappers of extra borders, padding, background, or shadows if they contain our redesigned ag-product-card */

.product-card-wrapper:has(.ag-product-card),

.sb-product-card:has(.ag-product-card),

.pslider-card:has(.ag-product-card),

.sheglam-mtl-item:has(.ag-product-card),

.wth-product:has(.ag-product-card) {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.ag-product-card {
  background: #ffffff !important;
  border: 1.5px solid #f0f0f0 !important; /* Sleek uniform border */
  border-radius: 16px !important; /* Premium border-radius */
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important; /* Sleek consistent drop shadow */
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ag-product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px) !important;
}

.product-pdp-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-pdp-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.ag-top-badges-row {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  pointer-events: none !important;
  z-index: 10 !important;
}

.ag-badge-left {
  font-size: 10px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 6px 16px 6px 12px !important;
  color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
  pointer-events: auto !important;
  border-top-left-radius: 14px !important;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%) !important;
}

.ag-badge-bestseller {
  background: #2563eb !important;
}

.ag-badge-new {
  background: #000000 !important;
}

.ag-badge-sale {
  background: #f43f5e !important;
}

.ag-badge-right {
  margin-right: 10px !important;
  margin-top: 10px !important;
  background: #fff5f5 !important;
  border: 1px solid #ffe3e3 !important;
  color: #f43f5e !important;
  font-size: 10px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  padding: 4px 10px !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
  pointer-events: auto !important;
}

.ag-coupon-svg {
  width: 12px !important;
  height: 12px !important;
  color: #f43f5e !important;
  flex-shrink: 0 !important;
}

.ag-img-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 5 !important; /* Premium tall aspect ratio */
  background: #f9f9f9 !important;
  overflow: hidden !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .ag-img-wrap {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
  }

}

/* ── Primary & Secondary images with Object-Contain centering ── */

.ag-img-wrap .ag-img-primary {
  position: absolute;
  inset: 12px !important;
  width: calc(100% - 24px) !important;
  height: calc(100% - 24px) !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1;
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 1;
}

.ag-img-wrap .ag-img-secondary {
  position: absolute;
  inset: 12px !important;
  width: calc(100% - 24px) !important;
  height: calc(100% - 24px) !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 2;
  transform: scale(1.03);
}

/* Fallback for single-image cards (no .ag-img-primary class) */

.ag-img-wrap img:not(.ag-img-primary):not(.ag-img-secondary) {
  width: 100%;
  height: 100%;
  padding: 12px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 0.4s ease;
}

/* ── Hover state: crossfade ── */

.ag-product-card:hover .ag-img-wrap .ag-img-primary {
  opacity: 0;
  transform: scale(1.03);
}

.ag-product-card:hover .ag-img-wrap .ag-img-secondary {
  opacity: 1;
  transform: scale(1);
}

/* Legacy single-image scale (no secondary) */

.ag-product-card:hover .ag-img-wrap img:not(.ag-img-primary):not(.ag-img-secondary) {
  transform: scale(1.05);
}

.ag-swatch-bar {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ag-swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ag-swatch-more {
  font-size: 0.65rem;
  color: #111;
  font-weight: 700;
  margin-left: 2px;
}

/* Yellow Feature Bar (Full-Width Bottom Anchor) */

.ag-feature-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 24px !important;
  background: linear-gradient(90deg, #fef3c7, #fde047, #fef3c7) !important; /* Premium gold gradient */
  color: #78350f !important; /* Premium amber-900 contrast */
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
  padding: 0 !important;
  z-index: 4 !important;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05) !important;
  line-height: 24px !important;
  overflow: hidden !important;
}

.ag-feature-scroller {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  animation: ag-feature-scroll-loop 6s steps(1) infinite !important; /* Stepped 6s loop (2s per word for 3 words) */
}

.ag-feature-word {
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  line-height: 24px !important;
}

@keyframes ag-feature-scroll-loop {
  0%, 20% {
    transform: translateY(0);
  }

  25%, 45% {
    transform: translateY(-20%);
  }

  50%, 70% {
    transform: translateY(-40%);
  }

  75%, 95% {
    transform: translateY(-60%);
  }

  100% {
    transform: translateY(-80%);
  }

}

/* If the card has a shades badge, add padding-bottom to the body to make room below the button */
.ag-shades-badge {
  position: absolute !important;
  bottom: 30px !important; /* Sitting right above the 24px feature bar with 6px spacing */
  right: 8px !important;
  background-color: #ffffff !important;
  border: 1.5px solid #f43f5e !important;
  color: #f43f5e !important;
  font-size: 10px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 9999px !important;
  z-index: 10 !important;
  box-shadow: 0 2px 6px rgba(244, 63, 94, 0.15) !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.ag-card-body {
  padding: 8px 12px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1;
  background: #fff;
  border-radius: 0 0 16px 16px !important;
  position: relative;
  top: 0 !important;
}

.ag-product-title {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 8px 0 2px 0 !important;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em !important;
}

.ag-rating-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 0.75rem;
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}

.ag-star {
  color: #ef4444;
  font-size: 0.9rem;
}

.ag-score {
  font-weight: 800;
  color: #111;
}

.ag-sep {
  color: #ddd;
  margin: 0 2px;
}

.ag-verified {
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
}

.ag-pricing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px !important;
  flex-wrap: wrap;
}

.ag-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.ag-compare {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
}

.ag-discount {
  background: #fef2f2;
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.ag-coupon-block {
  background: #ecfdf5;
  border: 1px dashed #34d399;
  padding: 4px 8px !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

.ag-coupon-block i {
  color: #10b981;
  font-size: 1rem;
}

.ag-coupon-block strong {
  color: #059669;
  font-size: 0.85rem;
  font-weight: 800;
}

.ag-coupon-block span {
  color: #064e3b;
  font-size: 0.75rem;
  font-weight: 600;
}

.ag-atc-wrapper {
  padding: 0 !important;
  background: transparent;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  margin-top: 4px !important;
}

.ag-atc-form {
  margin: 0;
  width: 100% !important;
  display: block !important;
}

.ag-atc-btn,

.ag-atc-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
  height: 44px;
  background: #F92982; /* Premium brand-pink */
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(249, 41, 130, 0.3);
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.5px;
}

.ag-atc-btn:active,

.ag-atc-btn-link:active {
  transform: scale(0.98);
}

.ag-atc-btn:hover,

.ag-atc-btn-link:hover {
  background: #E01C70;
}

.ag-atc-btn-link {
  background: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ag-atc-btn-link:hover {
  background: #333;
}

.ag-notify-btn {
  background: #d1d5db;
  color: #6b7280;
  box-shadow: none;
  cursor: not-allowed;
}

.ag-notify-btn:hover {
  background: #d1d5db;
}

/* =========================================

   UI FIXES 

   ========================================= */

/* 2. Container Width Fix (Worth The Hype section) */

.worth-the-hype,

.worth-hype-section {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
  width: 100%;
  box-sizing: border-box;
}

/* 3. PDP Navigation Tabs (Mobile Overflow Issue) */

@media (max-width: 768px) {
  .pdp-tabs-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 5px;
    /* Prevent clipping of active tab borders */
  }

  .pdp-tabs-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .pdp-tabs-container li {
    flex: 0 0 auto;
    white-space: nowrap;
  }

}

/* 4. PDP Detail Box Alignment */

.product-details-box {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.product-details-box> :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ════════════════════════════════════════════════════════

   FEATURE 1 — TRANSPARENT OVERLAY HERO

   Pull the hero slideshow section up behind the

   transparent sticky header on the homepage.

   ════════════════════════════════════════════════════════ */

.shopify-section:has(.hero-slideshow) {
  margin-top: -68px;
  /* header desktop height */
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .shopify-section:has(.hero-slideshow) {
    margin-top: -60px;
    /* header mobile height */
  }

}

/* ════════════════════════════════════════════════════════

   FEATURE 2 — STRICT TYPOGRAPHY SYSTEM

   Targets all product card elements across the theme.

   ════════════════════════════════════════════════════════ */

/* Product Name / Title */

.ag-product-title,

.sheglam-mtl-title,

.wth-product .product-title,

.cd-item__name,

.mz-rec-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.4;
}

/* Reviews / Stars */

.ag-rating-row,

.sheglam-mtl-rating,

.cd-deal-rating,

.mz-rec-rating {
  font-family: 'Nunito Sans', sans-serif !important;
  font-size: 12px !important;
}

/* Product Price */

.ag-price,

.sheglam-mtl-price-current,

.cd-item__price-now,

.cd-deal-price strong,

.mz-rec-price {
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* Coupons / Badges */

.ag-coupon-block strong,

.ag-coupon-block span,

.pdp-attr-tag,

.pdp-inline-coupon,

.mz-tag,

.mz-rec-badge {
  font-family: 'Roboto', sans-serif !important;
  font-size: 12px !important;
}

/* Add to Cart Button */

.ag-atc-btn,

.ag-atc-btn-link,

.sheglam-mtl-atc,

.pdp-atc-btn,

.pdp-buy-now-btn,

.cd-deal-btn,

.mz-rec-atc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* ════════════════════════════════════════════════════════

   FEATURE 4 — PREDICTIVE SEARCH RESULTS GRID

   ════════════════════════════════════════════════════════ */

.mz-predict-wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.mz-predict-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Loading skeleton */

.mz-predict-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.mz-predict-skeleton-card {
  background: #f5f5f5;
  border-radius: 10px;
  height: 200px;
  animation: mzSkeleton 1.2s infinite ease-in-out;
}

@keyframes mzSkeleton {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

}

/* Predictive results grid */

.mz-predict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.mz-predict-card {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.mz-predict-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.mz-predict-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f5f5;
  display: block;
}

.mz-predict-card__body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mz-predict-card__title {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  margin: 0;
}

.mz-predict-card__price {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.mz-predict-empty {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  padding: 24px 0;
}

@media (max-width: 480px) {
  .mz-predict-grid,
  .mz-predict-skeleton {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ════════════════════════════════════════════════════════

   FEATURE 5 — PRODUCT RECOMMENDATIONS

   Shared grid used on both Cart Drawer + PDP

   ════════════════════════════════════════════════════════ */

.mz-recs {
  padding: 32px 0 0;
}

.mz-recs__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mz-recs__heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eeeeee;
}

/* Horizontal scroll on cart drawer, grid on PDP */

.mz-recs__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.mz-recs__track::-webkit-scrollbar {
  display: none;
}

/* PDP uses a CSS grid instead */

.mz-recs--grid .mz-recs__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  overflow-x: visible;
}

.mz-rec-card {
  flex: 0 0 150px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.mz-recs--grid .mz-rec-card {
  flex: unset;
}

.mz-rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mz-rec-img-link {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}

.mz-rec-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.mz-rec-card:hover .mz-rec-img-link img {
  transform: scale(1.05);
}

.mz-rec-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.mz-rec-title {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  margin: 0;
}

.mz-rec-rating {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mz-rec-rating .star {
  color: #f59e0b;
}

.mz-rec-price {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.mz-rec-compare {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
}

.mz-rec-badge {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: #fef2f2;
  color: #dc2626;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.mz-rec-atc {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: auto;
}

.mz-rec-atc:hover {
  background: #333;
}

/* Skeleton for recommendations */

.mz-rec-skeleton {
  flex: 0 0 150px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mzShimmer 1.4s infinite;
  border-radius: 12px;
  height: 220px;
}

@keyframes mzShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }

}

/* PDP recs section wrapper */

.pdp-recs-section {
  max-width: 1400px;
  margin: 48px auto 60px;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .pdp-recs-section {
    padding: 0 16px;
    margin: 32px auto 40px;
  }

  .mz-recs--grid .mz-recs__track {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Cart drawer recs */

.cd-recs {
  padding: 20px 0 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 20px;
}

/* ════════════════════════════════════════════

   PRODUCT CARD STRICT TYPOGRAPHY

   ════════════════════════════════════════════ */

.ag-product-card .ag-product-title {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.ag-product-card .ag-rating-row,

.ag-product-card .ag-star,

.ag-product-card .ag-score,

.ag-product-card .ag-verified {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
}

.ag-product-card .ag-price {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.ag-product-card .ag-badge,

.ag-product-card .ag-coupon-block,

.ag-product-card .ag-discount {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
}

.ag-product-card .ag-coupon-block {
  margin-top: -4px;
}

.ag-product-card .ag-atc-btn,

.ag-product-card .ag-atc-btn-link {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 16px;
  background-color: #F92982 !important;
  color: #ffffff !important;
  border-color: #F92982 !important;
}

.ag-product-card .ag-atc-btn:hover,

.ag-product-card .ag-atc-btn-link:hover {
  background-color: #e01c70 !important;
  border-color: #e01c70 !important;
}

/* ════════════════════════════════════════════

   GLOBAL OVERRIDE: PDP THUMBNAIL STRIP FIX

   ════════════════════════════════════════════ */

/* Fix the parent container to allow proper flow */

.pdp-gallery {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
}

/* Force the thumb strip to break out of any restricted width constraints */

.pdp-thumb-strip {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  /* Overrides the restrictive 70px width */
  max-width: 100% !important;
  overflow-x: auto !important;
  gap: 12px !important;
  justify-content: flex-start !important;
  margin-top: 16px !important;
  scrollbar-width: none !important;
  /* Hide scrollbar Firefox */
}

/* Hide scrollbar WebKit */

.pdp-thumb-strip::-webkit-scrollbar {
  display: none !important;
}

/* Ensure individual thumbnails do not shrink */

.pdp-thumb {
  flex: 0 0 auto !important;
  min-width: 72px !important;
  width: 72px !important;
  height: 72px !important;
  aspect-ratio: 1 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  display: block !important;
}

/* Ensure mobile visibility and structure */

@media (max-width: 768px) {
  .pdp-thumb-strip {
    display: flex !important;
    /* Override any display: none */
    width: 100% !important;
    padding-bottom: 8px !important;
  }

  .pdp-thumb {
    min-width: 64px !important;
    width: 64px !important;
    height: 64px !important;
  }

}

/* ════════════════════════════════════════════

   GLOBAL OVERFLOW FIX

   ════════════════════════════════════════════ */

html,

body {
  overflow-x: hidden !important;
}

/* ════════════════════════════════════════════

   SEARCH OVERLAY — Full-screen Swiss Beauty style

   ════════════════════════════════════════════ */

.mz-search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(520px, 100vw);
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
}

.mz-search-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* ── Top bar ── */

.mz-search-overlay__bar {
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
}

.mz-search-overlay__bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
}

.mz-search-overlay__icon {
  color: #888;
  flex-shrink: 0;
}

.mz-search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: #111;
  background: transparent;
}

.mz-search-overlay__input::placeholder {
  color: #aaa;
}

.mz-search-overlay__clear,

.mz-search-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}

.mz-search-overlay__clear:hover,

.mz-search-overlay__close:hover {
  background: #f4f4f4;
}

/* ── Scrollable body ── */

.mz-search-overlay__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 40px;
}

/* ── Pre-search section labels ── */

.mz-search-pre__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 0;
}

.mz-search-pre__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin: 0 0 14px;
}

/* ── Trending Pills ── */

.mz-trending-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mz-pill {
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  padding: 7px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.mz-pill:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ════════════════════════════════════════════════════════

   SEARCH OVERLAY — SHOP BY CATEGORY RINGS

   Premium story-ring style: gradient border, centered icon,

   smooth hover lift, mobile-responsive sizing.

   ════════════════════════════════════════════════════════ */

.mz-category-rings {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px 12px;
  align-items: flex-start;
}

.mz-category-rings::-webkit-scrollbar {
  display: none;
}

/* ── Each ring item: link wrapper ── */

.mz-cat-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.mz-cat-ring:hover {
  transform: translateY(-5px);
}

/* ── Gradient border ring (Instagram-style) ── */

.mz-cat-ring__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  /* Ring = gradient background + white inset gap via padding */
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 2.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.22s ease;
  /* Inner white container */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Inner white disc that sits inside the ring border */

.mz-cat-ring__circle::before {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}

/* Hover: brand pink gradient ring */

.mz-cat-ring:hover .mz-cat-ring__circle {
  background: linear-gradient(135deg, #F92982 0%, #ff6bb5 50%, #ffb3d9 100%);
  box-shadow: 0 6px 20px rgba(249, 41, 130, 0.28);
}

/* ── Image inside circle ── */

.mz-cat-ring__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
}

/* ── Emoji fallback (when no image) ── */

.mz-cat-ring__emoji {
  font-size: 1.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* ── Label below the ring ── */

.mz-cat-ring__label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  white-space: nowrap;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.mz-cat-ring:hover .mz-cat-ring__label {
  color: #F92982;
}

/* ── Mobile: slightly smaller ── */

@media (max-width: 640px) {
  .mz-category-rings {
    gap: 14px;
  }

  .mz-cat-ring__circle {
    width: 60px;
    height: 60px;
    padding: 2px;
  }

  .mz-cat-ring__circle::before {
    inset: 2px;
  }

  .mz-cat-ring__emoji {
    font-size: 1.55rem;
  }

  .mz-cat-ring__label {
    font-size: 0.68rem;
    max-width: 60px;
  }

}

/* ── Recommended product mini-cards ── */

.mz-search-pre__products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.mz-search-prod-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.15s, transform 0.15s;
}

.mz-search-prod-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.mz-search-prod-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}

.mz-search-prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mz-search-prod-card__title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #111;
  margin: 8px 10px 2px;
  line-height: 1.3;
}

.mz-search-prod-card__price {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F92982;
  margin: 0 10px 10px;
}

/* ── Live results ── */

.mz-search-live {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.mz-search-live__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.mz-live-suggestion {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f5f5f5;
  text-decoration: none;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  transition: background 0.12s;
}

.mz-live-suggestion:hover {
  background: #ffe4f0;
  color: #F92982;
}

.mz-search-live__label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin: 0 0 14px;
}

.mz-search-live__products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.mz-live-prod-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}

.mz-live-prod-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.mz-live-prod-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}

.mz-live-prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mz-live-prod-card__info {
  padding: 10px 12px 12px;
}

.mz-live-prod-card__title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mz-live-prod-card__price {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #F92982;
}

.mz-live-prod-card__compare {
  font-size: 0.75rem;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 5px;
}

.mz-search-live__footer {
  margin-top: 20px;
  text-align: center;
}

.mz-view-all-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}

.mz-view-all-btn:hover {
  background: #F92982;
}

/* ── Spinner skeleton ── */

.mz-search-spinner {
  display: flex;
  gap: 14px;
  padding: 10px 0;
}

.mz-search-skeleton {
  flex: 0 0 160px;
  height: 220px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mzSkeletonShimmer 1.4s infinite;
  border-radius: 12px;
}

@keyframes mzSkeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }

}

/* ════════════════════════════════════════════

   SEARCH RESULTS PAGE — main-search.liquid

   ════════════════════════════════════════════ */

.msr-section {
  background: #fafafa;
  min-height: 60vh;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Header */

.msr-header {
  background: #fff;
  border-bottom: 1px solid #efefef;
  padding: 32px 20px 24px;
  width: 100%;
  box-sizing: border-box;
}

.msr-header__inner {
  max-width: 1260px;
  margin: 0 auto;
}

.msr-header__title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 6px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.msr-header__title em {
  font-style: normal;
  color: #F92982;
}

.msr-header__count {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Container */

.msr-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 24px 20px 60px;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile bar */

.msr-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  margin-bottom: 8px;
}

.msr-mobile-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.msr-mobile-filter-btn:hover {
  background: #F92982;
}

.msr-mobile-count {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #888;
}

/* Layout */

.msr-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* ── SIDEBAR ── */

.msr-sidebar {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 14px;
  position: sticky;
  top: 90px;
  overflow: hidden;
}

.msr-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.msr-sidebar__title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.msr-sidebar__close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  padding: 4px;
}

/* Filter groups */

.msr-filter-form {
  padding: 0 0 12px;
}

.msr-filter-group {
  border-bottom: 1px solid #f5f5f5;
}

.msr-filter-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #222;
  text-align: left;
}

.msr-filter-group__toggle:hover {
  background: #fafafa;
}

.msr-chevron {
  transition: transform 0.2s;
}

.msr-filter-group__toggle[aria-expanded="false"] .msr-chevron {
  transform: rotate(-90deg);
}

.msr-filter-group__body {
  padding: 4px 20px 14px;
  display: block;
}

.msr-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #333;
}

.msr-checkbox input[type="checkbox"] {
  accent-color: #F92982;
  width: 15px;
  height: 15px;
}

.msr-filter-count {
  color: #aaa;
  font-style: normal;
}

/* Price inputs */

.msr-price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.msr-price-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 10px;
  gap: 4px;
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #666;
}

.msr-price-input-wrap input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.85rem;
  background: transparent;
}

.msr-price-dash {
  color: #aaa;
}

.msr-price-apply {
  display: block;
  width: 100%;
  padding: 8px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.msr-price-apply:hover {
  background: #F92982;
}

.msr-clear-all {
  display: block;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  color: #F92982;
  text-decoration: underline;
  cursor: pointer;
}

.msr-apply-btn {
  display: none;
  /* submits on checkbox change via JS */
}

.msr-mobile-sort {
  display: none;
}

/* ── GRID COL ── */

.msr-grid-col {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Sort bar */

.msr-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 10px;
}

.msr-sort-bar__count {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: #888;
  margin: 0;
}

.msr-sort-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.msr-sort-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #555;
}

.msr-sort-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 7px 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #222;
  background: #fff;
  cursor: pointer;
  outline: none;
}

.msr-sort-select:focus {
  border-color: #F92982;
}

/* Product grid */

.msr-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.msr-grid-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

/* No results */

.msr-no-results {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.msr-no-results h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #222;
  margin: 0;
}

.msr-no-results p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

.msr-browse-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  background: #F92982;
  color: #fff;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.msr-browse-btn:hover {
  background: #d41e6e;
}

/* Pagination */

.msr-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.msr-pagination .page {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: #333;
  text-decoration: none;
}

.msr-pagination .page.current {
  background: #F92982;
  color: #fff;
  border-color: #F92982;
}

/* Mobile overlay */

.msr-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1200;
}

.msr-filter-overlay.is-visible {
  display: block;
}

/* ── MOBILE BREAKPOINT ── */

@media (max-width: 768px) {
  .msr-header {
    padding: 20px 12px 16px !important;
  }

  .msr-container {
    padding: 16px 12px 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .msr-mobile-bar {
    display: flex;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .msr-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .msr-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    z-index: 1300;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    visibility: hidden;
  }

  .msr-sidebar.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .msr-sidebar__close {
    display: flex;
  }

  .msr-sort-bar {
    display: none;
  }

  .msr-mobile-sort {
    display: block;
  }

  .msr-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .msr-grid-item {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Search overlay mobile */

  .mz-search-overlay__bar-inner {
    padding: 12px 16px;
  }

  .mz-search-overlay__close span {
    display: none;
  }

  .mz-search-pre__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mz-search-live__products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* ════════════════════════════════════════════

   MOBILE NAV — White Theme Overrides

   ════════════════════════════════════════════ */

/* Force white background + high z-index */

.mz-mobile-nav {
  background: #ffffff !important;
  z-index: 1100 !important;
  color: #111 !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

/* Header bar inside mobile nav */

.mz-mobile-nav__header {
  border-bottom: 1px solid #f0f0f0 !important;
  background: #fff !important;
}

.mz-mobile-nav__title {
  color: #111 !important;
  font-weight: 800;
}

.mz-mobile-nav__close {
  color: #555 !important;
}

.mz-mobile-nav__close:hover {
  color: #111 !important;
}

/* Nav list items */

.mz-mobile-nav__item {
  border-bottom: 1px solid #f5f5f5 !important;
}

.mz-mobile-nav__accordion,

.mz-mobile-nav__link {
  color: #111 !important;
  background: transparent !important;
  font-weight: 600;
}

.mz-mobile-nav__accordion:hover,

.mz-mobile-nav__link:hover {
  background: #fdf2f8 !important;
  color: #F92982 !important;
}

/* Thumb placeholder */

.mz-mobile-nav__thumb--placeholder {
  background: #f5f5f5 !important;
}

/* Accordion chevron */

.mz-accordion-chevron {
  opacity: 1 !important;
  color: #888 !important;
}

/* Sub-links */

.mz-mobile-nav__sub {
  background: #fafafa !important;
}

.mz-mobile-nav__sub li a {
  color: #555 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  padding: 11px 20px 11px 36px !important;
}

.mz-mobile-nav__sub li a:hover {
  color: #F92982 !important;
}

/* Ensure the backdrop overlay is behind the mobile nav */

.mz-overlay {
  z-index: 1050 !important;
}

/* Search overlay backdrop (right-side drawer needs a backdrop) */

.mz-search-overlay.is-open::before {
  content: '';
  position: fixed;
  inset: 0;
  right: min(520px, 100vw);
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* Add to Cart button — mobile friendly */

.pdp-atc-btn,

.sb-atc-btn,

.btn-add-to-cart,

button[name="add"] {
  min-height: 48px;
  font-size: 1rem !important;
  padding: 14px 24px !important;
  border-radius: 12px !important;
  touch-action: manipulation;
}

@media (max-width: 768px) {
  .pdp-atc-btn,
  .sb-atc-btn,
  .btn-add-to-cart,
  button[name="add"] {
    width: 100% !important;
    min-height: 52px;
    font-size: 1rem !important;
  }

}

/* ════════════════════════════════════════════════════════

   WORTH THE HYPE — SCOPED PRODUCT CARD SIZING

   Overrides the global ag-product-card ONLY inside the

   WTH desktop slider and mobile scroll row.

   ════════════════════════════════════════════════════════ */

/* ── Desktop: fixed 230px wide cards ── */

.worth-hype-products .wth-product-wrapper,

.worth-hype-products .ag-product-card-outer {
  flex: 0 0 230px !important;
  width: 230px !important;
  min-width: 230px !important;
  max-width: 230px !important;
  min-height: 340px !important;
}

.worth-hype-products .wth-product-wrapper .ag-product-card,

.worth-hype-products .ag-product-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

/* Image: premium 4/5 ratio */

.worth-hype-products .ag-img-wrap {
  aspect-ratio: 4 / 5 !important;
  height: auto !important;
}

/* Ensure the card and link wrapper expand to fill the full column height */

.worth-hype-products .ag-product-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.worth-hype-products .product-pdp-link {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Flex layout & Left text alignment for card body */

.worth-hype-products .ag-card-body {
  padding: 12px 10px 10px !important;
  gap: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex: 1 !important;
  text-align: left !important;
}

/* Ensure inner row elements align to the left */

.worth-hype-products .ag-rating-row,

.worth-hype-products .ag-pricing-row,

.worth-hype-products .ag-swatch-bar {
  justify-content: flex-start !important;
}

.worth-hype-products .ag-product-title {
  font-size: 13px !important;
  -webkit-line-clamp: 2 !important;
  margin-bottom: 2px !important;
  text-align: left !important;
}

.worth-hype-products .ag-rating-row {
  font-size: 11px !important;
  margin-bottom: 4px !important;
}

.worth-hype-products .ag-price {
  font-size: 14px !important;
}

.worth-hype-products .ag-coupon-block {
  margin-bottom: 6px !important;
  padding: 4px 8px !important;
  font-size: 11px !important;
}

/* ATC button: compact height in WTH slider */

.worth-hype-products .ag-atc-wrapper {
  padding: 0 10px 10px !important;
}

.worth-hype-products .ag-atc-btn,

.worth-hype-products .ag-atc-btn-link {
  height: 38px !important;
  font-size: 12px !important;
  min-height: unset !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
}

/* ── Mobile: fixed 155px wide cards in horizontal scroll ── */

@media (max-width: 768px) {
  .wth-mobile-products-track .wth-mobile-product-card-wrap {
    flex: 0 0 160px !important;
    width: 160px !important;
    min-width: 0 !important;
    max-width: 160px !important;
  }

  .wth-mobile-products-track .ag-product-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  /* Portrait image on mobile — taller for cosmetics products */

  .wth-mobile-products-track .ag-img-wrap {
    height: 180px !important;
    aspect-ratio: auto !important;
  }

  .wth-mobile-products-track .ag-card-body {
    padding: 8px 8px 4px !important;
  }

  .wth-mobile-products-track .ag-product-title {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }

  .wth-mobile-products-track .ag-price {
    font-size: 13px !important;
  }

  .wth-mobile-products-track .ag-rating-row,

  .wth-mobile-products-track .ag-coupon-block,

  .wth-mobile-products-track .ag-compare,

  .wth-mobile-products-track .ag-discount {
    display: none !important;
  }

  .wth-mobile-products-track .ag-atc-wrapper {
    padding: 0 8px 8px !important;
  }

  .wth-mobile-products-track .ag-atc-btn,

  .wth-mobile-products-track .ag-atc-btn-link {
    height: 34px !important;
    font-size: 11px !important;
    min-height: unset !important;
    padding: 0 8px !important;
    border-radius: 6px !important;
  }

}

/* ════════════════════════════════════════════════════════

   GLOBAL: Hide "Buy It Now" / Dynamic Checkout Button

   Removes the button from the PDP and any other section.

   ════════════════════════════════════════════════════════ */

.pdp-buy-now-btn,

[data-shopify="payment-button"],

.shopify-payment-button,

.shopify-payment-button__button,

.dynamic-checkout-cart {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ════════════════════════════════════════════════════════

   PRODUCT FEATURE BADGES

   ════════════════════════════════════════════════════════ */

.product-feature-badges {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  align-items: center !important;
}

.feature-badge-pill {
  border-radius: 9999px !important;
  background-color: #FEF6D0 !important;
  border: 1px solid #FDE08B !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  font-size: 11px !important; /* Small, neat, and highly legible */
  font-family: sans-serif !important;
  color: #5D3108 !important;
  padding: 6px 12px !important; /* Comfortable vertical & horizontal padding */
  line-height: 1.3 !important; /* Standard spacing to prevent vertical overlap */
  height: auto !important; /* Dynamic height auto */
  min-height: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* ==========================================================================

   SHOPIFY STOREFRONT UI/UX SPACING OPTIMIZATIONS

   ========================================================================== */

/* --------------------------------------------------------------------------

   TARGET 1: Hero/Banner Section to Next Section ("Curate Your Look")

   -------------------------------------------------------------------------- */

/* Reduce the large margin-top on the curate section and its heading to bring it closer to the banner */

/* Desktop view (min-width: 768px) */

@media (min-width: 768px) {
  .curate-section {
    margin-top: 0px !important;
    padding-top: 0px !important;
  }

  .curate-section .section-heading {
    margin-top: 8px !important;
    margin-bottom: 16px !important;
  }

}

/* Mobile view (max-width: 768px) */

@media (max-width: 768px) {
  .curate-section {
    margin-top: 0px !important;
    padding-top: 0px !important;
  }

  .curate-section .section-heading {
    margin-top: 4px !important;
    margin-bottom: 12px !important;
  }

}

/* --------------------------------------------------------------------------

   TARGET 2: Category Grid ("Curate Your Look") to "Worth the Hype" Heading

   -------------------------------------------------------------------------- */

/* Minimize the bottom margin of the category section and the top margin of the following section */

/* Desktop view (min-width: 768px) */

@media (min-width: 768px) {
  .curate-section {
    margin-bottom: 8px !important;
  }

  .curate-grid {
    padding-bottom: 8px !important;
  }

  .worth-hype-section {
    margin-top: 0px !important;
    padding-top: 0px !important;
  }

}

/* Mobile view (max-width: 768px) */

@media (max-width: 768px) {
  .curate-section {
    margin-bottom: 6px !important;
  }

  .curate-grid {
    padding-bottom: 6px !important;
    gap: 12px !important; /* Prevent excessive flexbox column gap */
  }

  .worth-hype-section {
    margin-top: 8px !important;
    padding-top: 0px !important;
  }

  /* Worth the Hype Mobile Section heading spacing */

  .wth-mobile-products-heading {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
  }

}

/* --------------------------------------------------------------------------

   TARGET 3: Product Card Internals ("Worth the Hype")

   -------------------------------------------------------------------------- */

/* Tighten spacing between image, title, swatches, badges, pricing, and the cart button inside product cards */

/* Global and Scoped Card Spacing Refinements */

.ag-product-card .ag-card-body {
  padding: 8px 12px 12px !important;
  gap: 4px !important; /* Stack layout with tight and consistent spacing */
  top: 0 !important; /* Clear negative margin overlap */
  border-radius: 0 0 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* Swatch container spacing: Keep consistent height across all cards for perfect alignment */

.ag-product-card .ag-swatch-wrapper {
  margin: 0 !important;
  height: 20px !important;
  min-height: 20px !important;
  display: flex !important;
  align-items: center !important;
}

/* Title text height and margin: Strictly force single-line truncation with ellipsis */

.ag-product-card .ag-product-title {
  margin: 8px 0 2px 0 !important; /* Controlled Name Spacing: 8px top margin */
  font-size: 0.88rem !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  height: 35px !important;
  text-align: left !important; 
  width: 100% !important;
}

/* Features/Key description line */

.ag-product-card .ag-product-features {
  margin: 0 !important;
  font-size: 0.72rem !important;
}

/* Star rating row spacing */

.ag-product-card .ag-rating-row {
  margin: 0 !important;
  font-size: 11px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  width: 100% !important;
  font-family: 'Nunito Sans', sans-serif !important;
}

.ag-verified-badge {
  color: #10b981 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-size: 9px !important;
  letter-spacing: 0.5px !important;
  font-family: 'Outfit', sans-serif !important;
}

.ag-verified-svg {
  width: 12px !important;
  height: 12px !important;
  fill: currentColor !important;
  flex-shrink: 0 !important;
}

/* Price row spacing */

.ag-product-card .ag-pricing-row {
  margin: 0 !important;
  gap: 6px !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  width: 100% !important;
}

.ag-product-card .ag-price {
  font-size: 1rem !important;
}

.ag-product-card .ag-compare {
  font-size: 0.78rem !important;
}

/* Coupon block sizing */

.ag-product-card .ag-coupon-block {
  margin: 0 !important;
  padding: 3.5px 8px !important;
  font-size: 10px !important;
  background: #f0fdf4 !important; /* bg-emerald-50 */
  border: 1px dashed #34d399 !important; /* border-emerald-400 */
  color: #047857 !important; /* text-emerald-700 */
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  width: fit-content !important;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.03) !important;
  font-weight: 800 !important;
  font-family: 'Roboto', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.ag-product-card .ag-coupon-block strong {
  font-weight: 900 !important;
}

.ag-coupon-tag-svg {
  width: 12px !important;
  height: 12px !important;
  color: #059669 !important; /* text-emerald-600 */
  flex-shrink: 0 !important;
}

/* Add to cart button wrapper */

.ag-product-card .ag-atc-wrapper {
  padding: 0 !important; /* Button expands to fill full content width */
  margin-top: 4px !important; /* Tight consolidated layout gap */
  margin-bottom: 0 !important;
  width: 100% !important;
}

.ag-product-card .ag-atc-btn,

.ag-product-card .ag-atc-btn-link {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  height: 38px !important;
  min-height: unset !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  background-color: #f43f5e !important;
  border: 1px solid #f43f5e !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  width: 100% !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
}

.ag-product-card .ag-atc-btn:hover,

.ag-product-card .ag-atc-btn-link:hover {
  background-color: #e11d48 !important;
  border-color: #e11d48 !important;
  box-shadow: 0 6px 18px rgba(244, 63, 94, 0.35) !important;
  transform: translateY(-0.5px) !important;
}

/* Scoped adjustments specifically inside the Worth the Hype sliders (Desktop) */

.worth-hype-products .ag-card-body {
  padding: 8px 8px 4px !important;
  gap: 2px !important;
}

.worth-hype-products .ag-product-title {
  font-size: 12px !important;
  margin-bottom: 2px !important;
}

.worth-hype-products .ag-rating-row {
  margin-bottom: 2px !important;
}

.worth-hype-products .ag-pricing-row {
  margin-bottom: 2px !important;
}

.worth-hype-products .ag-coupon-block {
  margin-bottom: 4px !important;
  padding: 2px 4px !important;
}

.worth-hype-products .ag-atc-wrapper {
  padding: 0 8px 6px !important;
}

/* Scoped adjustments specifically inside the Worth the Hype sliders (Mobile) */

@media (max-width: 768px) {
  .wth-mobile-products-track .ag-card-body {
    padding: 8px 8px 4px !important;
    gap: 2px !important;
  }

  .wth-mobile-products-track .ag-product-title {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }

  .wth-mobile-products-track .ag-rating-row {
    margin-bottom: 2px !important;
  }

  .wth-mobile-products-track .ag-pricing-row {
    margin-bottom: 2px !important;
  }

  .wth-mobile-products-track .ag-coupon-block {
    margin-bottom: 4px !important;
    padding: 2px 4px !important;
  }

  .wth-mobile-products-track .ag-atc-wrapper {
    padding: 0 8px 6px !important;
  }

}

/* --------------------------------------------------------------------------

   TARGET 4: Product Display Page (PDP) - Image Carousel/Thumbnails to Title

   -------------------------------------------------------------------------- */

/* Eliminate the white space block separating the product photos and the product title details */

/* Desktop view (min-width: 768px) */

@media (min-width: 768px) {
  .pdp-gallery {
    padding-bottom: 8px !important;
  }

  .pdp-thumb-strip {
    margin-top: 10px !important;
  }

  .pdp-info {
    padding-top: 8px !important;
  }

}

/* Mobile view (max-width: 768px) */

@media (max-width: 768px) {
  .pdp-gallery {
    margin-bottom: 4px !important;
    padding-bottom: 0px !important;
  }

  .pdp-thumb-strip {
    margin-top: 8px !important;
    margin-bottom: 4px !important;
    padding-bottom: 4px !important;
  }

  .pdp-info {
    padding-top: 6px !important;
  }

  .pdp-title {
    margin-top: 0px !important;
    padding-top: 0px !important;
  }

}

/* --------------------------------------------------------------------------

   TARGET 5: PDP - Delivery Perks to Accordions Spacing

   -------------------------------------------------------------------------- */

/* Tighten the space between the Perks Row card and the Accordion dropdown block */

/* Desktop view (min-width: 768px) */

@media (min-width: 768px) {
  .pdp-layout {
    padding-bottom: 20px !important;
  }

}

/* Mobile view (max-width: 768px) */

@media (max-width: 768px) {
  .pdp-layout {
    padding-bottom: 8px !important;
  }

  .pdp-info {
    padding-bottom: 8px !important;
  }

  .pdp-perks-row {
    margin-bottom: 4px !important;
  }

}

/* --------------------------------------------------------------------------

   TARGET 6: PDP - Bottom of Accordions to "Recommended For You" Heading

   -------------------------------------------------------------------------- */

/* Optimize the gap below accordions, empty reviews containers, and recommended sliders */

/* Desktop view (min-width: 768px) */

.pdp-accordions-section {
  margin-bottom: 24px !important;
}

.pdp-reviews-app-container {
  margin-top: 20px !important;
  margin-bottom: 0px !important;
}

.trustoo-reviews-wrapper {
  padding: 16px !important;
}

.pdp-recommendations-section {
  margin-top: 20px !important;
  margin-bottom: 40px !important;
}

/* Mobile view (max-width: 768px) */

@media (max-width: 768px) {
  .pdp-accordions-section {
    margin-bottom: 12px !important;
  }

  .pdp-reviews-app-container {
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    padding: 0 10px !important;
  }

  .trustoo-reviews-wrapper {
    padding: 12px !important;
  }

  .pdp-recommendations-section {
    margin-top: 12px !important;
    margin-bottom: 30px !important;
  }

}

/* =====================================================

   ANTIGRAVITY MOBILE COMPACTNESS & OVERFLOW FIXES

   ===================================================== */

@media (max-width: 768px) {
  /* Prevent flex items from stretching the card horizontally */
  .ag-product-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .ag-card-body {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 8px 6px !important; /* Slightly tighter padding for mobile */
    gap: 4px !important;
    top: 0 !important;
  }

  .ag-bottom-wrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Force single-line truncation with ellipsis for product title on mobile */

  .ag-product-card .ag-product-title {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    width: 100% !important;
    margin: 8px 0 2px 0 !important; /* 8px predefined gap above name */
    height: auto !important;
  }

  /* Ensure key features truncate and fit */

  .ag-product-card .ag-product-features {
    font-size: 0.68rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Rating row layout & spacing */

  .ag-product-card .ag-rating-row {
    font-size: 0.68rem !important;
    margin: 0 !important;
    gap: 3px !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
  }

  /* Price row layout: wrap to avoid overflow, adjust font size */

  .ag-product-card .ag-pricing-row {
    gap: 4px !important;
    margin: 0 !important;
    flex-wrap: wrap !important;
  }

  .ag-product-card .ag-price {
    font-size: 0.85rem !important;
  }

  .ag-product-card .ag-compare {
    font-size: 0.72rem !important;
  }

  .ag-product-card .ag-discount {
    font-size: 0.62rem !important;
    padding: 1px 4px !important;
  }

  /* Coupon block adjustment on mobile: fit nicely inside 100% width */

  .ag-product-card .ag-coupon-block {
    display: inline-flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 3px 6px !important;
    margin: 0 !important;
    font-size: 0.65rem !important;
    justify-content: center !important; /* Center the badge contents */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .ag-product-card .ag-coupon-block strong {
    font-size: 0.7rem !important;
  }

  .ag-product-card .ag-coupon-block span {
    font-size: 0.65rem !important;
  }

  /* ATC button wrapper and elements */

  .ag-product-card .ag-atc-wrapper {
    padding: 0 !important;
    margin-top: 4px !important;
    width: 100% !important;
  }

  .ag-product-card .ag-atc-btn,

  .ag-product-card .ag-atc-btn-link {
    height: 30px !important;
    line-height: 30px !important;
    font-size: 0.7rem !important;
    padding: 0 4px !important;
    border-radius: 4px !important;
    width: 100% !important;
    text-align: center !important;
  }

}

/* ════════════════════════════════════════════════════════

   RESPONSIVE HERO SLIDESHOW LINKS (DESKTOP vs MOBILE)

   ════════════════════════════════════════════════════════ */

/* Full clickable slide overlay links */

.hero-slide__overlay-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
  background: transparent;
  display: block;
}

/* Base button visibility values */

.hero-slide__btn--desktop {
  display: inline-block;
}

.hero-slide__btn--mobile {
  display: none;
}

@media (max-width: 768px) {
  /* Overlay link responsive visibility */
  .hero-slide__overlay-link--desktop {
    display: none !important;
  }

  .hero-slide__overlay-link--mobile {
    display: block !important;
  }

  /* Button responsive visibility */

  .hero-slide__btn--desktop {
    display: none !important;
  }

  .hero-slide__btn--mobile {
    display: inline-block !important;
  }

}

@media (min-width: 768px) {
  /* Overlay link responsive visibility */
  .hero-slide__overlay-link--desktop {
    display: block !important;
  }

  .hero-slide__overlay-link--mobile {
    display: none !important;
  }

  /* Button responsive visibility */

  .hero-slide__btn--desktop {
    display: inline-block !important;
  }

  .hero-slide__btn--mobile {
    display: none !important;
  }

}

/* ════════════════════════════════════════════════════════

   GLOBAL FEATURE BADGES ALIGNMENT & LAYER FIX (site-wide)

   ════════════════════════════════════════════════════════ */

.moraze-badge-wrapper {
  display: flex !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 5 !important;
}

.moraze-product-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  border-radius: 50px !important;
  overflow: hidden !important;
  position: relative !important;
  background: #ffe16b !important; /* Elegant solid gold background for maximum readability and high contrast */
  border-left: 3px solid #d49a00 !important; /* Slightly darker gold accent border */
  box-sizing: border-box !important;
  z-index: 1 !important;
}

.moraze-badge-text-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 2 !important;
}

.moraze-badge-list {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  z-index: 3 !important;
}

.moraze-badge-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  color: #111111 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  z-index: 4 !important;
  line-height: 1.2 !important;
}

/* =====================================================
   ANTIGRAVITY PRODUCT CARD - GLOBAL SNIPPET STYLES
   ===================================================== */
/* Strip parent card wrappers of extra borders, padding, background, or shadows if they contain our redesigned ag-product-card */
.product-card-wrapper:has(.ag-product-card),
.sb-product-card:has(.ag-product-card),
.pslider-card:has(.ag-product-card),
.sheglam-mtl-item:has(.ag-product-card),
.wth-product:has(.ag-product-card) {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.ag-product-card {
  background: #ffffff !important;
  border: 1.5px solid #f0f0f0 !important; /* Sleek uniform border */
  border-radius: 16px !important; /* Premium border-radius */
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important; /* Sleek consistent drop shadow */
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ag-product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px) !important;
}

.product-pdp-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-pdp-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.ag-badges-container {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}

.ag-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ag-badge-blue {
  background: #2563eb;
}

.ag-badge-green {
  background: #10b981;
}

.ag-badge-sale {
  background: #dc2626;
}

.ag-img-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 5 !important; /* Premium tall aspect ratio */
  background: #f9f9f9 !important;
  overflow: hidden !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .ag-img-wrap {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
  }
}

/* ── Primary & Secondary images with Object-Contain centering ── */
.ag-img-wrap .ag-img-primary {
  position: absolute;
  inset: 12px !important;
  width: calc(100% - 24px) !important;
  height: calc(100% - 24px) !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1;
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 1;
}

.ag-img-wrap .ag-img-secondary {
  position: absolute;
  inset: 12px !important;
  width: calc(100% - 24px) !important;
  height: calc(100% - 24px) !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 2;
  transform: scale(1.03);
}

/* Fallback for single-image cards (no .ag-img-primary class) */
.ag-img-wrap img:not(.ag-img-primary):not(.ag-img-secondary) {
  width: 100%;
  height: 100%;
  padding: 12px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 0.4s ease;
}

/* ── Hover state: crossfade ── */
.ag-product-card:hover .ag-img-wrap .ag-img-primary {
  opacity: 0;
  transform: scale(1.03);
}

.ag-product-card:hover .ag-img-wrap .ag-img-secondary {
  opacity: 1;
  transform: scale(1);
}

/* Legacy single-image scale (no secondary) */
.ag-product-card:hover .ag-img-wrap img:not(.ag-img-primary):not(.ag-img-secondary) {
  transform: scale(1.05);
}

.ag-swatch-bar {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ag-swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ag-swatch-more {
  font-size: 0.65rem;
  color: #111;
  font-weight: 700;
  margin-left: 2px;
}

/* Yellow Feature Bar (Full-Width Bottom Anchor) with Cyclical Text Animation */
.ag-feature-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 24px !important; /* Fixed height for consistent vertical slide */
  background-color: #FFD43B !important; /* Premium brand-yellow */
  color: #111111 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
  padding: 0 !important; /* Reset padding to enable scrolling */
  z-index: 4 !important;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05) !important;
  line-height: 24px !important;
  overflow: hidden !important;
}

.ag-feature-scroller {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  animation: ag-feature-scroll-loop 6s steps(1) infinite !important; /* Stepped 6s loop (2s per word for 3 words) */
}

.ag-feature-word {
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  line-height: 24px !important;
}

@keyframes ag-feature-scroll-loop {
  0% {
    transform: translateY(0);
  }
  33.33% {
    transform: translateY(-33.333%);
  }
  66.66% {
    transform: translateY(-66.666%);
  }
  100% {
    transform: translateY(0);
  }
}

/* If the card has a shades badge, add padding-bottom to the body to make room below the button */
.ag-product-card.ag-has-shades .ag-card-body {
  padding-bottom: 38px !important; /* Space for the anchored badge below the button */
}

/* Pink Shades Badge anchored at the bottom edge of the entire card wrapper in the bottom-right corner */
.ag-shades-badge {
  position: absolute !important;
  bottom: 8px !important; /* Anchored at the bottom edge */
  right: 12px !important; /* Bottom-right corner */
  background-color: #ffffff !important;
  border: 1.5px solid #F92982 !important;
  color: #F92982 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 4px 12px !important;
  border-radius: 9999px !important;
  z-index: 5 !important;
  box-shadow: 0 4px 10px rgba(249, 41, 130, 0.15) !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.ag-card-body {
  padding: 8px 12px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1;
  background: #fff;
  border-radius: 0 0 16px 16px !important;
  position: relative;
  top: 0 !important;
}

.ag-product-title {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 8px 0 2px 0 !important;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em !important;
}

.ag-rating-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 0.75rem;
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}

.ag-star {
  color: #ef4444;
  font-size: 0.9rem;
}

.ag-score {
  font-weight: 800;
  color: #111;
}

.ag-sep {
  color: #ddd;
  margin: 0 2px;
}

.ag-verified {
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
}

.ag-pricing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px !important;
  flex-wrap: wrap;
}

.ag-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.ag-compare {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
}

.ag-discount {
  background: #fef2f2;
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.ag-coupon-block {
  background: #ecfdf5;
  border: 1px dashed #34d399;
  padding: 4px 8px !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

.ag-coupon-block i {
  color: #10b981;
  font-size: 1rem;
}

.ag-coupon-block strong {
  color: #059669;
  font-size: 0.85rem;
  font-weight: 800;
}

.ag-coupon-block span {
  color: #064e3b;
  font-size: 0.75rem;
  font-weight: 600;
}

.ag-atc-wrapper {
  padding: 0 !important;
  background: transparent;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  margin-top: 4px !important;
}

.ag-atc-form {
  margin: 0;
  width: 100% !important;
  display: block !important;
}

.ag-atc-btn,
.ag-atc-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
  height: 44px;
  background: #F92982; /* Premium brand-pink */
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(249, 41, 130, 0.3);
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.5px;
}

.ag-atc-btn:active,
.ag-atc-btn-link:active {
  transform: scale(0.98);
}

.ag-atc-btn:hover,
.ag-atc-btn-link:hover {
  background: #E01C70;
}

.ag-atc-btn-link {
  background: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ag-atc-btn-link:hover {
  background: #333;
}

.ag-notify-btn {
  background: #d1d5db;
  color: #6b7280;
  box-shadow: none;
  cursor: not-allowed;
}

.ag-notify-btn:hover {
  background: #d1d5db;
}



/* ── Reset redundant card-within-card styled parent wrappers ── */

.worth-hype-products .wth-product-wrapper,

.worth-hype-products .ag-product-card-outer,

.product-card-wrapper:has(.ag-product-card),

.sheglam-mtl-item:has(.ag-product-card),

.pslider-card:has(.ag-product-card),

.sb-product-card:has(.ag-product-card) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* ==========================================================================
   GLOBAL USP BANNER / BADGE OPTIMIZATIONS
   Fixes typography, text overflow, and height issues globally
   ========================================================================== */

.custom-usp-banner,
.card-usp-badge,
.usp-badge,
.product-card-badge,
.feature-badge-pill {
  /* 1. Base Design & Theme (Pill shape and solid brand-yellow background) */
  border-radius: 50px !important;
  background-color: #FFD43B !important; /* Premium brand-yellow */
  background-image: none !important; /* Remove gradient */
  border: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  
  /* 2. Fix the Overflow & Heights */
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  padding: 4px 10px !important;
  box-sizing: border-box !important;
  
  /* 3. Typography (Bold & Montserrat display font) */
  font-family: var(--font-heading) !important; /* matches product name bold font family */
  font-weight: 800 !important; /* bold text */
  font-size: 9px !important; /* smaller font size */
  line-height: 1.3 !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  
  /* 4. Text Truncation & Center Alignment */
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ==========================================================================
   COSMETICS STORE REDESIGN & OPTIMIZATION OVERRIDES
   ========================================================================== */

/* Centered Pill Search Bar in Header */
.mz-header-search {
  flex: 0 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.mz-header-search__pill {
  display: flex;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 50px;
  padding: 8px 16px;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.mz-header-search__icon {
  color: #888;
  display: flex;
  align-items: center;
}

.mz-header-search__input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #111;
  cursor: pointer;
}

.mz-header-search__input::placeholder {
  color: #999;
}

/* Mobile Responsive Header Search Bar (Center layout based on image_1.png) */
@media (max-width: 768px) {
  .mz-logo {
    display: none !important; /* Hide logo on mobile for centered search bar space */
  }
  .mz-nav {
    display: none !important;
  }
  .mz-header-search {
    flex: 1 !important;
    margin: 0 10px !important;
    max-width: none !important;
  }
  .mz-header__inner {
    padding: 0 16px !important;
    gap: 8px !important;
  }
}

/* Curate Your Look section overrides */
@media (max-width: 768px) {
  .curate-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important; /* Heading and content right-aligned */
    margin: 8px 0 !important;
    padding: 0 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .curate-section .section-heading {
    font-size: 1.1rem !important; /* small size */
    font-weight: 800 !important;
    text-align: right !important;
    width: 100% !important;
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    color: #111 !important;
    text-transform: uppercase !important;
    font-family: var(--font-heading) !important;
  }

  .curate-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end !important; /* Align boxes below it to the right */
    gap: 12px !important;
    width: 100% !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .curate-card {
    flex: 0 0 calc(50% - 6px) !important;
    max-width: 160px !important;
    border-radius: 12px !important;
    border: 4px solid !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  }
}

/* Global Spacing Reductions (Orange lines marked on reference images 3–6) */
.shopify-section,
.shopify-section-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.hero-slideshow {
  margin-bottom: 8px !important;
}

.worth-hype-section {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.collection-section {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.sheglam-mtl-section {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.reviews-slider, .reviews-section {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.join-party, .join-party-section {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Bold and small text for animated feature bar words to match product card design */
.ag-feature-word {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: 10px !important;
}

/* PDP Mobile Margins set to exactly 0.50rem */
@media (max-width: 768px) {
  .pdp-section {
    padding-left: 0.50rem !important;
    padding-right: 0.50rem !important;
  }
  .pdp-layout,
  .pdp-breadcrumb,
  .pdp-info,
  .pdp-gallery,
  .pdp-thumb-strip,
  .pdp-reviews-section,
  .pdp-perks-row,
  .pdp-accordions-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   MORAZE MOBILE REDESIGN COMPACTNESS OVERRIDES
   ========================================================================== */

@media (max-width: 768px) {
  /* 1. Global Spacing / Margins for all homepage sections */
  .collection-section,
  .sheglam-mtl-section,
  .reviews-section,
  .join-party-section,
  #MainContent > .shopify-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Spacing overrides for Curate Your Look & Worth the Hype */
  .curate-section,
  .worth-hype-section {
    padding-left: 0.50rem !important;
    padding-right: 0.50rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #MainContent {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* 2. Header and Logo Visibility overrides */
  .mz-logo {
    display: block !important;
    justify-self: center !important;
    align-self: center !important;
  }
  .mz-logo a {
    display: flex !important;
    align-items: center !important;
  }
  .mz-logo__moraze {
    font-size: 1.4rem !important;
    letter-spacing: 1px !important;
  }

  /* Hide the centered search bar block on mobile if any remains */
  .mz-header-search {
    display: none !important;
  }

  /* 3. Product Cards Spacing & Ratings overrides */
  .wth-mobile-products-track .ag-rating-row {
    display: flex !important; /* Show ratings row on mobile for Worth the Hype */
  }

  /* Prevent image clipping and adjust inset on mobile */
  .ag-img-wrap .ag-img-primary,
  .ag-img-wrap .ag-img-secondary {
    inset: 8px 8px 30px 8px !important;
    width: calc(100% - 16px) !important;
    height: calc(100% - 38px) !important;
  }

  /* Compact yellow feature bar on mobile */
  .ag-feature-bar {
    height: 20px !important;
    line-height: 20px !important;
  }

  .ag-feature-word {
    height: 20px !important;
    line-height: 20px !important;
    font-size: 8px !important;
  }

  /* Compact shades badge on mobile */
  .ag-shades-badge {
    font-size: 8px !important;
    padding: 2px 6px !important;
    bottom: 24px !important;
    right: 6px !important;
  }

  /* Compact product cards spacing on mobile viewports */
  .ag-card-body {
    padding: 6px 6px 4px !important;
    gap: 2px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .ag-product-card .ag-product-title {
    margin: 4px 0 1px 0 !important;
    font-size: 11px !important;
    text-align: center !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: 28px !important;
    line-height: 1.25 !important;
  }
  .ag-product-card .ag-rating-row {
    margin-bottom: 1px !important;
    font-size: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }
  .ag-product-card .ag-pricing-row {
    margin-bottom: 1px !important;
    gap: 4px !important;
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
  }
  .ag-product-card .ag-price {
    font-size: 0.8rem !important;
  }
  .ag-product-card .ag-compare {
    font-size: 0.68rem !important;
  }
  .ag-product-card .ag-discount {
    font-size: 0.58rem !important;
    padding: 0px 3px !important;
  }
  .ag-product-card .ag-coupon-block {
    padding: 2px 6px !important;
    font-size: 8px !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
  }
  .ag-product-card .ag-coupon-block strong {
    font-size: 8.5px !important;
  }
  .ag-product-card .ag-coupon-block span {
    font-size: 7.5px !important;
  }
  .ag-product-card .ag-coupon-tag-svg {
    width: 9px !important;
    height: 9px !important;
  }
  .ag-product-card .ag-atc-wrapper {
    margin-top: 2px !important;
    width: 100% !important;
  }
  .ag-product-card .ag-atc-btn,
  .ag-product-card .ag-atc-btn-link {
    height: 32px !important;
    line-height: 32px !important;
    font-size: 10px !important;
    border-radius: 8px !important;
  }

  /* 4. Curate Your Look Overrides (Restore sliding layout, left heading, reduce size) */
  .curate-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* Left alignment */
    margin: 8px 0 !important;
  }
  .curate-section .section-heading {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    text-align: left !important;
    margin-top: 4px !important;
    margin-bottom: 12px !important;
  }
  .curate-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
  }
  .curate-card {
    flex: 0 0 135px !important;
    width: 135px !important;
    min-width: 135px !important;
  }

  /* 5. More to Love Overrides (Restore sliding track, center heading, make heading larger) */
  .sheglam-mtl-section {
    padding-top: 8px !important;
    padding-bottom: 16px !important;
  }
  .sheglam-mtl-heading {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-family: var(--font-heading) !important;
  }
  .sheglam-mtl-wrap {
    padding: 0 !important;
  }
  .sheglam-mtl-viewport {
    overflow: hidden !important;
    width: 100% !important;
  }
  .sheglam-mtl-track {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    transform: none !important;
    width: 100% !important;
  }
  .sheglam-mtl-item {
    flex: 0 0 160px !important;
    width: 160px !important;
    min-width: 160px !important;
    scroll-snap-align: start !important;
  }

  /* 6. Customer Voices (Reduce gap, center heading, make heading larger) */
  .reviews-section {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
  }
  .reviews-section .section-heading {
    font-size: 1.5rem !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
  .reviews-slider-track .review-item {
    padding: 16px 12px !important; /* Compressed internal padding */
    min-height: unset !important;
    height: auto !important;
    flex: 0 0 78% !important;
  }
  .reviews-slider-track .review-item .review-text {
    font-size: 0.85rem !important;
    margin-bottom: 12px !important;
  }
  .reviews-slider-track .review-item .review-stars {
    margin-bottom: 12px !important;
  }
}



/* Mouse Drag-scroll cursor styles for More to Love track */
.sheglam-mtl-track {
  cursor: grab;
}
.sheglam-mtl-track.active-drag {
  cursor: grabbing;
  scroll-behavior: auto !important;
}


/* ==========================================================================
   GLOBAL HEADER REDESIGN (TWO-ROW LAYOUT)
   ========================================================================== */

/* Structure inner header as vertical column */
.mz-header__inner {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 10px 32px !important;
}

.mz-header__top-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

/* Left Group containing hamburger + logo */
.mz-header__left-group {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Make sure hamburger is displayed on mobile, hidden on desktop by default */
.mz-hamburger {
  display: none !important;
}

/* Show hamburger on mobile viewports */
@media (max-width: 768px) {
  .mz-hamburger {
    display: flex !important;
  }
  .mz-header__inner {
    padding: 10px 16px !important;
    gap: 8px !important;
  }
}

/* Search bar on bottom row */
.mz-header__search-row {
  width: 100% !important;
  padding-bottom: 2px !important;
}

.mz-header-search-bar {
  display: flex !important;
  align-items: center !important;
  background: #ffffff !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 50px !important;
  padding: 10px 18px !important;
  gap: 10px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  cursor: pointer !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.mz-header-search-bar:hover,
.mz-header-search-bar:focus-within {
  border-color: #b0b0b0 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07) !important;
}

.mz-header-search-bar__icon {
  display: flex !important;
  align-items: center !important;
  color: #666666 !important;
  flex-shrink: 0 !important;
}

.mz-header-search-bar__placeholder {
  color: #777777 !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  user-select: none !important;
}

/* Hide legacy centered search and search trigger */
.mz-search,
.mz-header-search {
  display: none !important;
}

/* SVG icon updates */
#mzAccountIcon svg {
  stroke-width: 2.2 !important;
}

/* Ensure Moraze brand logo on the left is displayed cleanly on mobile */
@media (max-width: 768px) {
  .mz-logo {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}


/* ==========================================================================
   PDP MOBILE VERTICAL SPACING REDUCTIONS
   ========================================================================== */
@media (max-width: 768px) {
  /* TARGET AREA 1: Trust Badges to Description Accordion spacing */
  .pdp-layout {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .pdp-info {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .pdp-perks-row {
    margin-bottom: 0 !important;
    padding-bottom: 8px !important; /* tight padding */
  }
  
  .pdp-accordions-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important; /* merge sections closely */
  }

  .pdp-accordion:first-child .pdp-acc-header {
    padding-top: 8px !important; /* reduce top gap of the first dropdown */
  }

  .pdp-acc-header {
    padding: 10px 4px !important; /* make all accordion headers more compact */
  }

  /* TARGET AREA 2: Final Accordion to Recommended For You Section spacing */
  .pdp-accordions-section {
    margin-bottom: 0 !important;
  }
  
  .pdp-reviews-app-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .trustoo-reviews-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 8px 12px !important; /* make widget box compact */
  }
  
  .pdp-recommendations-section {
    margin-top: 4px !important; /* tight transition gap */
    padding-top: 0 !important;
  }
  
  .pdp-recommendations-section h2 {
    margin-top: 0 !important;
    margin-bottom: 12px !important; /* tight transition to cards */
    font-size: 1.3rem !important; /* compact size on mobile */
  }
}

/* ==========================================================================
   DESKTOP HERO SLIDESHOW FIXED SIZE OVERRIDES (>768px)
   ========================================================================== */
@media (min-width: 769px) {
  .hero-slideshow {
    width: 100% !important;
    max-width: 1888px !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
    background-color: transparent !important;
  }
  .hero-slideshow .hero-slider-container {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    background-color: transparent !important;
  }
  .hero-slideshow .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 1 !important;
    transition: opacity 1s ease-in-out !important;
    background-color: transparent !important;
    display: block !important;
  }
  .hero-slideshow .hero-slide.is-active {
    position: relative !important;
    opacity: 1 !important;
    z-index: 2 !important;
  }
  .hero-slideshow .hero-slide__img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    background-color: transparent !important;
  }
}

/* Eliminate top margins of sections directly following the hero slideshow */
.shopify-section:has(.hero-slideshow) + .shopify-section {
  margin-top: 0 !important;
}
.shopify-section:has(.hero-slideshow) + .shopify-section > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ==========================================================================
   HARRY POTTER COLLECTION BANNER PANEL OVERRIDES
   ========================================================================== */
.hp-panel {
  background: linear-gradient(135deg, rgba(82, 38, 19, 0.95) 0%, rgba(130, 68, 42, 0.98) 100%) !important;
  backdrop-filter: blur(8px) !important;
}

.hp-panel .bhp-inner {
  text-align: center !important;
  padding: 40px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
}

.hp-panel .bhp-tag {
  color: #ffffff !important;
  font-family: 'Montserrat', 'Roboto', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.hp-panel .bhp-title {
  font-family: 'Montserrat', 'Roboto', sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1.25 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
}

.hp-panel .bhp-title span {
  color: #ffffff !important;
  font-style: normal !important;
  text-transform: uppercase !important;
}

.hp-panel .bhp-desc {
  font-family: 'Poppins', 'Roboto', sans-serif !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 28px !important;
  line-height: 1.5 !important;
}

.hp-panel .bhp-btn {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 36px !important;
  font-family: 'Montserrat', 'Roboto', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
}

.hp-panel .bhp-btn:hover {
  background-color: #f5f5f5 !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

/* ==========================================================================
   GLOBAL PRODUCT CARD TITLE SINGLE-LINE OVERRIDES
   ========================================================================== */
.ag-product-title,
.ag-product-card .ag-product-title,
.product-card .product-title,
.sheglam-mtl-title,
.wth-product .product-title,
.mz-rec-title {
  font-size: 13px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  height: auto !important;
  max-height: none !important;
  line-height: 1.3 !important;
}

@media (max-width: 768px) {
  .ag-product-title,
  .ag-product-card .ag-product-title,
  .product-card .product-title,
  .sheglam-mtl-title,
  .wth-product .product-title,
  .mz-rec-title {
    font-size: 11px !important;
  }
}