/* ─── MORAZE OFFICIAL LIGHT THEME DESIGN SYSTEM ─── */
:root {
  --bg-dark: #ffffff;
  --bg-surface: #ffffff; /* White background */
  --bg-card: #ffffff;
  --border-neon: rgba(249, 41, 130, 0.15); /* Pink instead of violet */

  --neon-pink: #F92982; /* Hot pink brand color */
  --neon-pink-glow: rgba(249, 41, 130, 0.12);
  --neon-yellow: #f2ef00;
  --neon-yellow-glow: rgba(242, 239, 0, 0.12);
  --neon-purple: #ff4f93; /* Hot pink secondary */
  --neon-cyan: #ff2a85; /* Vibrant pink/rose */
  --success-green: #2b8a3e;
  --success-green-bg: #e6fcf5;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --shadow-glow: 0 8px 30px rgba(0, 0, 0, 0.03);
  --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.08);

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE STYLES ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-surface);
  margin: 0;
  padding: 0;
}

.m1111-page-container {
  font-family: var(--font-primary);
  background-color: var(--bg-surface);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.5;
  padding-bottom: 0; /* ponytail: removed bottom padding to prevent white space below dark footer */
}

.m1111-page-container h1,
.m1111-page-container h2,
.m1111-page-container h3,
.m1111-page-container h4,
.m1111-page-container .font-display {
  font-family: var(--font-display);
}

.m1111-page-container .container {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1600px) {
  .m1111-page-container .container {
    max-width: 1520px;
  }
}

.m1111-page-container .neon-text-pink {
  color: var(--neon-pink);
}

.m1111-page-container .neon-text-yellow {
  color: var(--neon-yellow);
}

/* Visually Hidden Helper (SEO) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Clean Solid Black buttons matching site design */
.m1111-page-container .neon-btn-pink {
  background: #000000;
  color: #fff;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.m1111-page-container .neon-btn-pink:hover {
  background: var(--neon-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 41, 130, 0.3);
}

.m1111-page-container .neon-btn-pink:active {
  transform: translateY(0);
}

/* ─── STICKY HEADER ─── */
.m1111-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(249, 41, 130, 0.1);
  padding: 15px 0;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: -1px;
}

.header-logo .logo-accent {
  color: var(--neon-pink);
  font-weight: 400;
}

.header-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--neon-pink);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--neon-pink);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.header-cart-btn:hover {
  color: var(--neon-pink);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--neon-pink);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

@media (max-width: 768px) {
  .header-nav {
    display: none; /* Hide nav links on mobile */
  }
}

/* ─── BANNER IMAGE SECTION ─── */
.m1111-banner-section {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #be185d 0%, #F92982 50%, #ff78b4 100%);
  height: 280px; /* Shorter desktop height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 20px rgba(249, 41, 130, 0.1);
}

.banner-placeholder-text {
  z-index: 1;
  pointer-events: none;
}

.banner-placeholder-text .banner-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.banner-placeholder-text .banner-subtitle {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ffffff;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.m1111-banner-desktop,
.m1111-banner-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.m1111-banner-desktop a,
.m1111-banner-mobile a {
  display: block;
  width: 100%;
  height: 100%;
}

.m1111-banner-section .m1111-banner-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover; /* Crop and scale nicely if they insert a different sized image */
  display: block;
  border-radius: 0 0 24px 24px;
}

.m1111-banner-desktop {
  display: block;
}

.m1111-banner-mobile {
  display: none;
}

@media (max-width: 768px) {
  .m1111-banner-section {
    height: 160px; /* Shorter mobile height */
    border-radius: 0 0 16px 16px;
  }
  
  .banner-placeholder-text .banner-title {
    font-size: 1.6rem;
  }
  
  .banner-placeholder-text .banner-subtitle {
    font-size: 0.78rem;
    letter-spacing: 2px;
  }

  .m1111-banner-desktop {
    display: none;
  }
  .m1111-banner-mobile {
    display: block;
  }
}

/* ─── TRUST BADGES SECTION ─── */
.m1111-page-container .trust-section {
  margin-bottom: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 30px;
}

.m1111-page-container .trust-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding: 6px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.m1111-page-container .trust-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.m1111-page-container .trust-card {
  flex: 1 0 calc(25% - 15px);
  min-width: 240px; /* Wider card length */
  background: #fff5f7; /* Soft light pink card background */
  border: none; /* No border */
  border-radius: 24px; /* Highly rounded corners */
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(249, 41, 130, 0.02); /* Very soft pink shadow */
  display: flex;
  flex-direction: column; /* Vertically stacked (icon on top, text below) */
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 106px;
  box-sizing: border-box;
  color: #be185d; /* Dark Pink brand color */
}

.m1111-page-container .trust-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.m1111-page-container .trust-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #be185d; /* Dark Pink brand color */
}

/* ─── TIER SECTIONS HEADERS ─── */
.m1111-page-container .neon-text-cyan {
  color: #F92982; /* pink price tag in headers */
}

.m1111-tier-header {
  display: flex;
  justify-content: center; /* ponytail: center-aligned tier header */
  align-items: center;
  border-left: none !important; /* Remove the left pink border */
  padding: 0;
  margin-top: 10px;
  margin-bottom: 24px;
}
.m1111-tier-header h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #111111;
  text-transform: uppercase;
  font-family: var(--font-display), sans-serif;
  text-align: center;
}

/* ─── PRODUCT CATALOG TIERS ─── */
.m1111-page-container .tier-section {
  background: #FFF0F5; /* ponytail: light pink section background */
  border-radius: 28px;
  padding: 28px 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(249, 41, 130, 0.03);
}

@media (max-width: 768px) {
  .m1111-page-container .tier-section {
    padding: 20px 12px;
    margin-bottom: 24px;
    border-radius: 20px;
  }
}

.m1111-scroll-progress-wrap {
  width: 80px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 10px;
  margin: 16px auto 0 auto;
  overflow: hidden;
  position: relative;
  display: none;
}
.m1111-scroll-progress-bar {
  width: 30%;
  height: 100%;
  background: #F92982;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.1s ease-out;
  transform-origin: left;
}

.m1111-page-container .products-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 12px 4px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  cursor: grab;
}

.m1111-page-container .products-slider.active-drag {
  cursor: grabbing;
  user-select: none;
}

.m1111-page-container .products-slider::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.m1111-page-container .products-slider .m1111-product-card-wrap {
  flex: 0 0 calc(25% - 18px); /* 4 cards on desktop */
  scroll-snap-align: start;
  min-width: 280px;
}

@media (max-width: 1024px) {
  .m1111-page-container .products-slider .m1111-product-card-wrap {
    flex: 0 0 calc(33.33% - 16px); /* 3 cards */
  }
}

@media (max-width: 768px) {
  .m1111-page-container .products-slider {
    gap: 16px;
  }
  .m1111-page-container .products-slider .m1111-product-card-wrap {
    flex: 0 0 calc(50% - 8px); /* 2 cards */
    min-width: 150px;
  }
}

/* Slider Container wrapper */
.m1111-page-container .slider-container {
  position: relative;
  width: 100%;
}

/* ─── PRODUCT CARD INTERACTIVE STYLING ─── */
.sb-product-card {
  background: #ffffff;
  border: 1px solid rgba(249, 41, 130, 0.08);
  border-radius: 18px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sb-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 25px rgba(249, 41, 130, 0.08);
}

.sb-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--neon-pink);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(249, 41, 130, 0.2);
}

.sb-img-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.sb-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sb-product-card:hover .sb-img-wrap img {
  transform: scale(1.06);
}

.sb-shades-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #be185d;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.sb-product-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 1.25rem;
}

.sb-rating {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.sb-star {
  color: #f59e0b; /* Amber */
  font-size: 0.9rem;
}

.sb-sep {
  color: #e2e8f0;
}

.sb-check {
  color: var(--success-green);
}

/* Swatches styling */
.swatches-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.swatches-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.swatches-list {
  display: flex;
  gap: 4px;
}

.swatch-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  position: relative;
}

.swatch-btn::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.swatch-btn.active {
  transform: scale(1.15);
}

.swatch-btn.active::after {
  border-color: var(--neon-pink);
}

.sb-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.sb-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--neon-pink);
  font-family: var(--font-display);
}

.sb-compare {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.sb-off-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--success-green);
  background: var(--success-green-bg);
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
}

.sb-coupon {
  font-size: 0.68rem;
  font-weight: 700;
  color: #be185d;
  background: #fff5f7;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  width: fit-content;
}

.sb-coupon i {
  font-size: 0.85rem;
}

.product-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 3px 6px;
  gap: 8px;
  background: #f8fafc;
}

.qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--text-dark);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.qty-btn:hover {
  color: var(--neon-pink);
}

.qty-value {
  font-size: 0.8rem;
  font-weight: 800;
  min-width: 14px;
  text-align: center;
  color: var(--text-dark);
}

.sb-atc-wrapper {
  flex-grow: 1;
}

.sb-atc-btn {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sb-atc-btn:hover {
  background: var(--neon-pink);
  box-shadow: 0 4px 12px rgba(249, 41, 130, 0.25);
}

.sb-atc-btn.loading {
  background: #334155;
  color: #cbd5e1;
  pointer-events: none;
}

.sb-atc-btn.added {
  background: var(--success-green);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(43, 138, 62, 0.2);
}

/* ─── SLIDING CART DRAWER ─── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.cart-drawer.open {
  visibility: visible;
}

.cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cart-drawer.open .cart-overlay {
  opacity: 1;
}

.cart-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open .cart-content {
  transform: translateX(0);
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 4px;
}

.cart-close-btn:hover {
  color: var(--neon-pink);
  transform: rotate(90deg);
}

.cart-items-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empty-cart-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 100%;
  color: var(--text-muted);
}

.empty-cart-message i {
  font-size: 3.5rem;
  color: rgba(249, 41, 130, 0.2);
}

.empty-cart-message p {
  font-weight: 600;
}

.start-shopping-btn {
  margin-top: 10px;
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.cart-item-shade {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--neon-pink);
}

.cart-item-delete {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 4px;
}

.cart-item-delete:hover {
  color: var(--neon-pink);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fdfdfd;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.subtotal-row span:first-child {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1rem;
}

.subtotal-row span:last-child {
  font-weight: 900;
  color: var(--text-dark);
  font-size: 1.3rem;
}

.shipping-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--success-green-bg);
  color: var(--success-green);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.shipping-info i {
  font-size: 1rem;
}

.checkout-btn {
  width: 100%;
}

/* ─── TOAST NOTIFICATIONS ─── */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.toast {
  background: #ffffff;
  color: var(--text-dark);
  border-left: 4px solid var(--neon-pink);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  overflow: hidden;
}

.toast.success {
  border-left-color: var(--success-green);
}

.toast i {
  font-size: 1.1rem;
}

.toast .toast-success-icon {
  color: var(--success-green);
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

/* ─── FOOTER ─── */
.m1111-footer {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 50px 0 80px 0; /* ponytail: moved bottom padding here to cover the floating cart offset with the dark blue background */
  margin-top: 60px;
  border-radius: 28px 28px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-pink);
  margin-bottom: 12px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--neon-pink);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--neon-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: #64748b;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .m1111-footer {
    border-radius: 20px 20px 0 0;
  }
}

/* ─── MOBILE MEDIA QUERIES & OVERRIDES (576PX) ─── */
@media (max-width: 576px) {
  .m1111-page-container {
    padding-bottom: 0 !important; /* ponytail: removed mobile bottom padding */
  }
  .m1111-banner-section {
    margin-bottom: 24px !important;
  }
  .m1111-page-container .container {
    padding: 0 10px;
  }
  .m1111-page-container .products-slider {
    gap: 10px !important;
    padding: 8px 0 !important;
  }
  .m1111-page-container .products-slider .m1111-product-card-wrap {
    flex: 0 0 75% !important;
    min-width: 75% !important;
  }
  .m1111-page-container .tier-section {
    margin-bottom: 40px !important;
  }
  .m1111-tier-header {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m1111-page-container .trust-section {
    padding: 15px 10px !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    border-top: none !important;
  }
  .m1111-page-container .trust-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .m1111-page-container .trust-card {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 76px !important; /* rectangular height as in screenshot */
    border-radius: 14px !important;
    padding: 10px !important;
    box-shadow: 0 4px 15px rgba(249, 41, 130, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    box-sizing: border-box !important;
  }
  .m1111-page-container .trust-icon {
    font-size: 1.6rem !important;
  }
  .m1111-page-container .trust-title {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #be185d !important;
  }
  .m1111-page-container .trust-desc {
    display: none !important;
  }
  .m1111-page-container .hero-section {
    height: 260px !important;
    margin-bottom: 20px !important;
  }
  .m1111-page-container .hero-content {
    padding: 20px !important;
  }
  .m1111-page-container .hero-title {
    font-size: 1.8rem !important;
  }
  .m1111-page-container .hero-title span {
    font-size: 1.8rem !important;
  }
  .m1111-page-container .hero-description {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
  }
  .m1111-page-container .swatches-container {
    margin-top: 4px !important;
    gap: 2px !important;
  }
  .m1111-page-container .swatches-label {
    font-size: 0.6rem !important;
  }
  .m1111-page-container .swatch-btn {
    width: 14px !important;
    height: 14px !important;
    border-width: 1px !important;
  }
  .m1111-page-container .qty-selector {
    margin: 4px auto 0 auto !important;
    gap: 6px !important;
    padding: 2px 4px !important;
  }
  .m1111-page-container .qty-btn {
    width: 18px !important;
    height: 18px !important;
    font-size: 0.75rem !important;
  }
  .m1111-page-container .qty-value {
    font-size: 0.75rem !important;
    min-width: 12px !important;
  }
  
  .sb-img-wrap {
    height: 140px;
    margin-bottom: 8px;
  }
  
  .sb-product-card {
    padding: 10px;
    border-radius: 14px;
  }
  
  .sb-product-title {
    font-size: 0.82rem;
    height: 2.2rem;
    margin-bottom: 4px;
  }
  
  .sb-rating {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }
  
  .sb-pricing {
    gap: 4px;
    margin-bottom: 4px;
  }
  
  .sb-price {
    font-size: 0.95rem;
  }
  
  .sb-compare {
    font-size: 0.75rem;
  }
  
  .sb-off-badge {
    font-size: 0.65rem;
    padding: 1px 4px;
  }
  
  .sb-coupon {
    font-size: 0.68rem;
    padding: 4px 6px;
    margin-bottom: 8px;
    border-radius: 6px;
  }
  
  .product-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  
  .qty-selector {
    width: 100%;
    justify-content: center;
  }
  
  .sb-atc-btn {
    font-size: 0.72rem;
    padding: 6px 10px;
    border-radius: 8px;
  }
  
  .m1111-header {
    padding: 10px 0;
  }
  
  .header-logo {
    font-size: 1.3rem;
  }
}

/* ─── PDP (PRODUCT DETAIL PAGE) STYLING ─── */
.pdp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.pdp-main-image-wrap {
  width: 100%;
  height: 480px;
  background-color: #fafafa;
  border: 1px solid rgba(249, 41, 130, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pdp-main-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.pdp-main-image-wrap:hover img {
  transform: scale(1.05);
}

.pdp-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pdp-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 2px solid transparent;
  background-color: #fafafa;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pdp-thumb:hover, .pdp-thumb.active {
  border-color: var(--neon-pink);
  transform: translateY(-2px);
}

.pdp-breadcrumbs {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pdp-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pdp-coupon-alert {
  background: #fff5f7;
  border: 2px dotted var(--neon-pink);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #be185d;
  text-align: left;
}

.pdp-coupon-alert i {
  font-size: 1.5rem;
}

.pdp-coupon-alert h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.pdp-coupon-alert p {
  font-size: 0.8rem;
  font-weight: 600;
}

.pdp-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
}

.pdp-actions .qty-selector {
  background-color: #f8fafc;
  padding: 8px 12px;
  border-radius: 12px;
}

.pdp-actions .qty-btn {
  width: 28px;
  height: 28px;
  font-size: 1rem;
}

.pdp-actions .qty-value {
  font-size: 0.95rem;
  min-width: 20px;
}

.pdp-add-to-cart {
  flex-grow: 1.5;
  height: 52px;
  font-size: 0.9rem;
}

.pdp-buy-now {
  flex-grow: 1;
  background-color: var(--neon-pink);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  height: 52px;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(249, 41, 130, 0.2);
}

.pdp-buy-now:hover {
  background-color: #d11263;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 41, 130, 0.3);
}

.pdp-accordions {
  margin-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pdp-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pdp-accordion-header {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.pdp-accordion-header i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.pdp-accordion-item.active .pdp-accordion-header i {
  transform: rotate(180deg);
  color: var(--neon-pink);
}

.pdp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pdp-accordion-body-inner {
  padding-bottom: 16px;
  text-align: left;
}

.pdp-accordion-body ul {
  padding-left: 20px;
  margin-top: 8px;
}

/* Reviews Styling */
.reviews-section {
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 40px;
}

.reviews-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
}

.reviews-summary {
  background: #fff5f7;
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  height: fit-content;
  border: 1px solid rgba(249, 41, 130, 0.05);
}

.summary-score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--neon-pink);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.summary-stars {
  font-size: 1.3rem;
  color: #f59e0b;
  margin-bottom: 8px;
}

.summary-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.bar-track {
  flex-grow: 1;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background-color: #f59e0b;
  border-radius: 10px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.reviewer-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  font-size: 0.72rem;
  color: var(--success-green);
  background: var(--success-green-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.review-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-align: left;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: left;
}

/* ─── CHECKOUT PAGE STYLING ─── */
.checkout-header {
  border-bottom: 1px solid rgba(249, 41, 130, 0.06);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 0;
  margin-bottom: 35px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.checkout-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1600px) {
  .checkout-header .header-container {
    max-width: 1520px;
  }
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid rgba(249, 41, 130, 0.06);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(249, 41, 130, 0.02), 0 2px 8px rgba(0, 0, 0, 0.01);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkout-card:hover {
  box-shadow: 0 12px 35px rgba(249, 41, 130, 0.04), 0 4px 12px rgba(0, 0, 0, 0.015);
}

.checkout-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.3px;
}

.checkout-card h3 i {
  color: var(--neon-pink);
  font-size: 1.45rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.span-2 {
  grid-column: span 2;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: var(--font-primary);
  color: var(--text-dark);
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #f8fafc;
}

.form-input:focus {
  border-color: var(--neon-pink);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px var(--neon-pink-glow);
}

/* Shipping choices */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shipping-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  padding: 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #f8fafc;
}

.shipping-option-row:hover {
  border-color: var(--neon-pink);
  background-color: #fffafc;
  transform: translateY(-1px);
}

.shipping-option-row.active {
  border-color: var(--neon-pink);
  background-color: #fff5f7;
  box-shadow: 0 8px 20px rgba(249, 41, 130, 0.05);
}

.shipping-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shipping-left input[type="radio"] {
  accent-color: var(--neon-pink);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.shipping-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.shipping-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 500;
}

.shipping-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--neon-pink);
  font-size: 0.95rem;
}

/* Payment choices */
.payment-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-tab-row {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  transition: all 0.25s ease;
}

.payment-tab-row:hover {
  border-color: var(--neon-pink);
}

.payment-tab-row.active {
  border-color: var(--neon-pink);
  background-color: #ffffff;
  box-shadow: 0 8px 25px rgba(249, 41, 130, 0.05);
}

.payment-tab-header {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.payment-tab-header input[type="radio"] {
  accent-color: var(--neon-pink);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-tab-row.active .payment-tab-header {
  background-color: #fff5f7;
}

.payment-tab-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border-top: 1px solid transparent;
}

.payment-tab-row.active .payment-tab-body {
  padding: 20px;
  max-height: 280px;
  border-top: 1px solid #f1f5f9;
}

/* Sidebar summary checkout */
.checkout-summary-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(135deg, #fffafd 0%, #fff2f6 100%);
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(249, 41, 130, 0.08);
  height: fit-content;
  text-align: left;
  box-shadow: 0 10px 30px rgba(249, 41, 130, 0.03);
}

.checkout-summary-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(249, 41, 130, 0.1);
  letter-spacing: -0.3px;
}

.checkout-item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 24px;
  padding-right: 6px;
}

.checkout-item-list::-webkit-scrollbar {
  width: 4px;
}

.checkout-item-list::-webkit-scrollbar-thumb {
  background-color: rgba(249, 41, 130, 0.15);
  border-radius: 4px;
}

.checkout-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.checkout-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 41, 130, 0.06);
}

.checkout-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.checkout-item-details {
  flex-grow: 1;
}

.checkout-item-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.checkout-item-shade {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 600;
}

.checkout-item-price {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
}

.coupon-apply-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.coupon-apply-row .form-input {
  background: #ffffff;
}

.coupon-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 0 20px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.coupon-btn:hover {
  background: var(--neon-pink);
  transform: translateY(-1px);
}

.summary-calculations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(249, 41, 130, 0.1);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-row.discount-row {
  color: var(--success-green);
  font-weight: 700;
}

.calc-row.total-row {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
}

.place-order-btn {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, #f92982 0%, #ff529a 100%) !important;
  color: #ffffff !important;
  border: none;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(249, 41, 130, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.place-order-btn:hover {
  background: linear-gradient(135deg, #ff4093 0%, #ff6aa7 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 41, 130, 0.4);
}

.place-order-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(249, 41, 130, 0.2);
}

.place-order-btn:disabled {
  background: #cbd5e1 !important;
  color: #64748b !important;
  box-shadow: none;
  cursor: not-allowed;
}

.secure-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(249, 41, 130, 0.15);
}

.secure-badges span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.secure-badges span i {
  color: var(--success-green);
  font-size: 0.95rem;
}

/* ─── THANK YOU PAGE STYLING ─── */
.thankyou-card {
  max-width: 620px;
  margin: 50px auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(249, 41, 130, 0.1);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.success-checkmark-wrap {
  width: 72px;
  height: 72px;
  background-color: var(--success-green-bg);
  color: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 2.2rem;
  box-shadow: 0 8px 24px rgba(43, 138, 62, 0.15);
  animation: pulseCheck 2s infinite;
}

@keyframes pulseCheck {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 138, 62, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(43, 138, 62, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 138, 62, 0);
  }
}

.thankyou-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.thankyou-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.order-number {
  color: var(--neon-pink);
  font-weight: 800;
}

.thankyou-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 36px 0;
  position: relative;
}

.thankyou-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: #f1f5f9;
  z-index: 1;
}

.timeline-progress-line {
  position: absolute;
  top: 15px;
  left: 10%;
  width: 30%; /* Set at Shipped */
  height: 3px;
  background-color: var(--success-green);
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
  width: 25%;
}

.timeline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}

.timeline-step.completed .timeline-icon {
  background-color: var(--success-green);
  color: #ffffff;
}

.timeline-step.active .timeline-icon {
  background-color: var(--neon-pink);
  color: #ffffff;
  box-shadow: 0 0 0 4px var(--neon-pink-glow);
}

.timeline-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
}

.timeline-step.completed .timeline-label {
  color: var(--success-green);
}

.timeline-step.active .timeline-label {
  color: var(--neon-pink);
}

.thankyou-details {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
  border: 1px solid #f1f5f9;
}

.thankyou-details-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--text-muted);
}

.detail-val {
  font-weight: 700;
  text-align: right;
}

/* ─── RESPONSIVE FOR NEW PAGES ─── */
@media (max-width: 768px) {
  .pdp-grid, .checkout-grid, .reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pdp-main-image-wrap {
    height: 340px;
  }
  
  .pdp-title {
    font-size: 1.6rem;
  }
  
  .pdp-actions {
    flex-wrap: wrap;
  }
  
  .pdp-actions .qty-selector {
    width: 100%;
    justify-content: center;
  }
  
  .pdp-add-to-cart, .pdp-buy-now {
    width: 100%;
    flex-grow: unset;
  }
  
  .reviews-summary {
    width: 100%;
  }
  
  .checkout-summary-card {
    position: static;
    margin-top: 20px;
  }
}

/* ─── FLOATING STICKY CART BAR (SWISS BEAUTY STYLE) ─── */
#floating-cart-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  width: 480px;
  max-width: 90%;
  background-color: #0f172a; /* Dark premium slate */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 12px 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  z-index: 190;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

#floating-cart-bar:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

#floating-cart-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.fcb-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fcb-icon {
  background: var(--neon-pink);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  animation: fcbIconPulse 2s infinite;
}

@keyframes fcbIconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 41, 130, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(249, 41, 130, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 41, 130, 0);
  }
}

.fcb-info {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-align: left;
}

.fcb-items {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.fcb-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.fcb-cta {
  font-family: var(--font-display);
  background-color: var(--neon-pink);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(249, 41, 130, 0.35);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

#floating-cart-bar:hover .fcb-cta {
  background-color: #d11a64;
  transform: scale(1.03);
}

/* ─── MILESTONE CART DRAWER STYLING ─── */
.cart-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cart-drawer.open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open .cart-drawer__content {
  transform: translateX(0);
}

.cart-drawer__header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 4px;
}

.cart-drawer__close:hover {
  color: var(--neon-pink);
  transform: rotate(90deg);
}

.cd-scroll-area {
  flex-grow: 1;
  overflow-y: auto;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}

/* Progress milestones bar */
.cd-progress-section {
  display: none !important; /* ponytail: hidden as per user request, kept in DOM to prevent JS errors */
  background: #fff5f7;
  border: 1px solid rgba(249, 41, 130, 0.08);
  border-radius: 16px;
  padding: 16px 14px;
  margin: 14px 16px;
  box-sizing: border-box;
}

.cd-progress-bar-wrap {
  position: relative;
  height: 64px;
  margin: 10px 0 16px 0;
}

.cd-progress-track {
  position: absolute;
  top: 18px;
  left: 8%;
  width: 84%;
  height: 4px;
  background-color: #e2e8f0;
  border-radius: 4px;
  z-index: 1;
}

.cd-progress-fill {
  height: 100%;
  background-color: var(--neon-pink);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.cd-progress-nodes {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 2;
}

.cd-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-align: center;
}

.cd-node-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.cd-node-circle--active {
  background-color: var(--neon-pink);
  color: #ffffff;
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px var(--neon-pink-glow);
}

.cd-node-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.cd-node span {
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.cd-node span.cd-node-label--active {
  color: var(--text-dark);
}

.cd-node-amt {
  color: var(--neon-pink);
  font-weight: 800;
}

.claim-gift-btn {
  background: var(--neon-pink);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.58rem;
  font-weight: 800;
  margin-top: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.claim-gift-btn:hover {
  background: #be185d;
}

.claim-gift-status {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--success-green);
  margin-top: 4px;
}

.cd-progress-msg {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  margin-top: 4px;
}

.cd-progress-msg--success {
  color: var(--success-green);
}

/* Cart Items & Details Header */
.cd-details-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px 8px 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.cd-dot {
  color: #cbd5e1;
}

.cd-item-count {
  color: var(--neon-pink);
}

.cd-items-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.cd-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cd-item:hover {
  opacity: 0.95;
  transform: translateX(2px);
}

.cd-item__img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cd-item__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.cd-item__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cd-item__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cd-item__name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-right: 8px;
  text-align: left;
}

.cd-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.05rem;
  transition: color 0.2s;
  padding: 2px;
}

.cd-item__remove:hover {
  color: var(--neon-pink);
}

.cd-item__variant {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 1px;
  text-align: left;
}

.cd-item__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.cd-item__prices {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cd-item__price-now {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

.cd-item__price-was {
  font-size: 0.78rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.cd-item__qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 2px 4px;
  gap: 6px;
  background: #f8fafc;
}

.cd-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-dark);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.cd-qty-btn:hover {
  color: var(--neon-pink);
}

.cd-qty-val {
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 12px;
  text-align: center;
}

/* Empty state */
.cd-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cd-empty-icon {
  font-size: 3rem;
  color: rgba(249, 41, 130, 0.15);
}

.cd-empty-title {
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-display);
}

.cd-empty-sub {
  font-size: 0.8rem;
}

.cd-continue-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cd-continue-btn:hover {
  background: var(--neon-pink);
}

/* Price summary block */
.cd-price-summary {
  background: #f8fafc;
  margin: 20px 16px 10px 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
}

.cd-ps-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cd-ps-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-muted);
}

.cd-ps-row--discount {
  color: var(--success-green);
}

.cd-ps-divider {
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--text-dark);
}

.cd-ps-divider strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cd-free {
  color: var(--success-green);
  font-weight: 800;
}

/* Sticky footer */
.cd-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.cd-footer__checkout-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cd-footer__total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.js-cd-footer-total {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
}

.js-cd-footer-original-total {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.cd-checkout-btn {
  background: #000000;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.cd-checkout-btn:hover {
  background: var(--neon-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 41, 130, 0.25);
}

@media (max-width: 576px) {
  #floating-cart-bar {
    width: 90%;
    bottom: 16px;
    padding: 8px 20px;
  }
  
  .fcb-cta {
    font-size: 0.78rem;
  }

  .cart-drawer__content {
    width: 100%;
  }

  .cd-progress-section {
    margin: 10px;
    padding: 12px 10px;
  }

  .cd-node {
    width: 65px;
  }

  .cd-node-circle {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .cd-node span {
    font-size: 0.58rem;
  }
}

/* ─── COMPACT CATALOG CARD OVERRIDES ─── */
.products-slider .sb-product-title + span,
.products-slider .swatches-container {
  display: none !important;
}

.products-slider .sb-card-footer-msg {
  margin-top: 6px !important;
  padding-bottom: 6px !important;
}

/* ─── DELIGHTFUL TRUCK ORDER BUTTON ─── */
.order-truck-btn {
    appearance: none;
    border: 0;
    background: var(--dark);
    position: relative;
    height: 64px;
    width: 260px;
    padding: 0;
    outline: none;
    cursor: default;
    border-radius: 32px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    transition: transform .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.order-truck-btn span {
    --o: 1;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 20px;
    line-height: 24px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: var(--o);
    transition: opacity .3s ease;
}

.order-truck-btn span.default {
    transition-delay: .3s;
}

.order-truck-btn span.success {
    --offset: 16px;
    --o: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.order-truck-btn span.success svg {
    width: 16px;
    height: 14px;
    display: inline-block;
    vertical-align: top;
    fill: none;
    stroke: var(--green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: var(--offset);
    transition: stroke-dashoffset .3s ease;
}

.order-truck-btn.animate .default {
    --o: 0;
    transition-delay: 0s;
}

.order-truck-btn.animate .success {
    --offset: 0;
    --o: 1;
    transition-delay: 2.8s; /* Scaled from 7s */
}

.order-truck-btn.animate .success svg {
    transition-delay: 3.0s; /* Scaled from 7.3s */
}

.order-truck-btn .lines {
    opacity: 0;
    position: absolute;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    width: 6px;
    top: 30px;
    left: 100%;
    box-shadow: 15px 0 0 var(--white), 30px 0 0 var(--white), 45px 0 0 var(--white), 60px 0 0 var(--white), 75px 0 0 var(--white), 90px 0 0 var(--white), 105px 0 0 var(--white), 120px 0 0 var(--white), 135px 0 0 var(--white), 150px 0 0 var(--white), 165px 0 0 var(--white), 180px 0 0 var(--white), 195px 0 0 var(--white), 210px 0 0 var(--white), 225px 0 0 var(--white), 240px 0 0 var(--white), 255px 0 0 var(--white), 270px 0 0 var(--white), 285px 0 0 var(--white), 300px 0 0 var(--white), 315px 0 0 var(--white), 330px 0 0 var(--white);
}

.order-truck-btn .back,
.order-truck-btn .box {
    --start: var(--white);
    --stop: var(--grey-light);
    border-radius: 2px;
    background: linear-gradient(var(--start), var(--stop));
    position: absolute;
}

.order-truck-btn .truck {
    width: 60px;
    height: 41px;
    left: 100%;
    z-index: 1;
    top: 11px;
    position: absolute;
    transform: translateX(24px);
}

.order-truck-btn .truck:before,
.order-truck-btn .truck:after {
    --r: -90deg;
    content: '';
    height: 2px;
    width: 20px;
    right: 58px;
    position: absolute;
    display: block;
    background: var(--white);
    border-radius: 1px;
    transform-origin: 100% 50%;
    transform: rotate(var(--r));
}

.order-truck-btn .truck:before {
    top: 4px;
}

.order-truck-btn .truck:after {
    --r: 90deg;
    bottom: 4px;
}

.order-truck-btn .truck .back {
    left: 0;
    top: 0;
    width: 60px;
    height: 41px;
    z-index: 1;
}

.order-truck-btn .truck .front {
    overflow: hidden;
    position: absolute;
    border-radius: 2px 9px 9px 2px;
    width: 26px;
    height: 41px;
    left: 60px;
}

.order-truck-btn .truck .front:before,
.order-truck-btn .truck .front:after {
    content: '';
    position: absolute;
    display: block;
}

.order-truck-btn .truck .front:before {
    height: 13px;
    width: 2px;
    left: 0;
    top: 14px;
    background: linear-gradient(var(--grey), var(--grey-dark));
}

.order-truck-btn .truck .front:after {
    border-radius: 2px 9px 9px 2px;
    background: var(--primary);
    width: 24px;
    height: 41px;
    right: 0;
}

.order-truck-btn .truck .front .window {
    overflow: hidden;
    border-radius: 2px 8px 8px 2px;
    background: var(--primary-light);
    transform: perspective(4px) rotateY(3deg);
    width: 22px;
    height: 41px;
    position: absolute;
    left: 2px;
    top: 0;
    z-index: 1;
    transform-origin: 0 50%;
}

.order-truck-btn .truck .front .window:before,
.order-truck-btn .truck .front .window:after {
    content: '';
    position: absolute;
    right: 0;
}

.order-truck-btn .truck .front .window:before {
    top: 0;
    bottom: 0;
    width: 14px;
    background: var(--dark);
}

.order-truck-btn .truck .front .window:after {
    width: 14px;
    top: 7px;
    height: 4px;
    position: absolute;
    background: rgba(255, 255, 255, .14);
    transform: skewY(14deg);
    box-shadow: 0 7px 0 rgba(255, 255, 255, .14);
}

.order-truck-btn .truck .light {
    width: 3px;
    height: 8px;
    left: 83px;
    transform-origin: 100% 50%;
    position: absolute;
    border-radius: 2px;
    transform: scaleX(.8);
    background: rgba(240, 220, 95, 1);
}

.order-truck-btn .truck .light:before {
    content: '';
    height: 4px;
    width: 7px;
    opacity: 0;
    transform: perspective(2px) rotateY(-15deg) scaleX(.94);
    position: absolute;
    transform-origin: 0 50%;
    left: 3px;
    top: 50%;
    margin-top: -2px;
    background: linear-gradient(90deg, rgba(240, 220, 95, 1), rgba(240, 220, 95, .7), rgba(240, 220, 95, 0));
}

.order-truck-btn .truck .light.top {
    top: 4px;
}

.order-truck-btn .truck .light.bottom {
    bottom: 4px;
}

.order-truck-btn .box {
    --start: var(--sand-light);
    --stop: var(--sand);
    width: 21px;
    height: 21px;
    right: 100%;
    top: 21px;
}

.order-truck-btn .box:before,
.order-truck-btn .box:after {
    content: '';
    top: 10px;
    position: absolute;
    left: 0;
    right: 0;
}

.order-truck-btn .box:before {
    height: 3px;
    margin-top: -1px;
    background: rgba(0, 0, 0, .1);
}

.order-truck-btn .box:after {
    height: 1px;
    background: rgba(0, 0, 0, .15);
}

/* ─── ANIMATION TRIGGERS ─── */
.order-truck-btn.animate .truck {
    animation: truck-anim 4s ease forwards;
}

.order-truck-btn.animate .truck:before {
    animation: door1-anim 0.96s ease forwards .12s;
}

.order-truck-btn.animate .truck:after {
    animation: door2-anim 0.96s ease forwards .24s;
}

.order-truck-btn.animate .truck .light:before,
.order-truck-btn.animate .truck .light:after {
    animation: light-anim 4s ease forwards;
}

.order-truck-btn.animate .box {
    animation: box-anim 4s ease forwards;
}

.order-truck-btn.animate .lines {
    animation: lines-anim 4s ease forwards;
}

@keyframes truck-anim {
    10%,
    30% {
        transform: translateX(-164px);
    }
    40% {
        transform: translateX(-104px);
    }
    60% {
        transform: translateX(-224px);
    }
    75%,
    100% {
        transform: translateX(24px);
    }
}

@keyframes lines-anim {
    0%,
    30% {
        opacity: 0;
        transform: scaleY(.7) translateX(0);
    }
    35%,
    65% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    100% {
        transform: scaleY(.7) translateX(-400px);
    }
}

@keyframes light-anim {
    0%,
    30% {
        opacity: 0;
        transform: perspective(2px) rotateY(-15deg) scaleX(.88);
    }
    40%,
    100% {
        opacity: 1;
        transform: perspective(2px) rotateY(-15deg) scaleX(.94);
    }
}

@keyframes door1-anim {
    30%,
    50% {
        transform: rotate(32deg);
    }
}

@keyframes door2-anim {
    30%,
    50% {
        transform: rotate(-32deg);
    }
}

@keyframes box-anim {
    8%,
    10% {
        transform: translateX(40px);
        opacity: 1;
    }
    25% {
        transform: translateX(112px);
        opacity: 1;
    }
    26% {
        transform: translateX(112px);
        opacity: 0;
    }
    27%,
    100% {
        transform: translateX(0px);
        opacity: 0;
    }
}

.order-truck-btn {
    --primary: var(--neon-pink);          /* Moraze Pink cabin */
    --primary-light: #ff78b4;
    --dark: #000000;
    --grey-dark: #1e293b;
    --grey: #64748b;
    --grey-light: #e2e8f0;
    --white: #ffffff;
    --green: var(--success-green);
    --sand: #dcb773;
    --sand-light: #edd9a9;
}

/* Hide coupon on the product page */
.pdp-coupon-alert {
  display: none !important;
}

/* Hide slider scroll progress bar */
.m1111-scroll-progress-wrap {
  display: none !important;
}
