/* =========================================================
   MengSNS Official Store Stylesheet
   Version: 1.0.0
   Rebranded from Aurora World UK (Ella Theme Architecture)
   ========================================================= */

:root {
  --brand-color: #EB1E2E;
  --brand-hover: #c41523;
  --dark-text: #232323;
  --light-text: #666666;
  --bg-light: #f7f8fa;
  --border-color: #e5e5e5;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-height: 46px;
  --container-width: 1200px;
  --header-bg: #ffffff;
  --nav-bg: #EB1E2E;
  --nav-text: #ffffff;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--dark-text);
  background-color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-full {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   Announcement Bar (Top red text centered on white)
   ========================================================= */
.announcement-bar {
  background-color: #ffffff;
  color: #eb1e2e;
  padding: 6px 0 2px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
  border-bottom: none;
}

.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-bar__ticker {
  text-align: center;
  position: relative;
}

.announcement-bar__message {
  font-size: 13px;
  color: #eb1e2e;
  font-weight: 600;
}

.announcement-bar__message a.highlight {
  color: #eb1e2e;
  text-decoration: underline;
  margin-left: 4px;
}

/* =========================================================
   Header Advanced (Desktop Top Row)
   ========================================================= */
.header-advanced {
  background: #ffffff;
  border-bottom: none;
}

.header-top-bar {
  padding: 2px 0 8px 0;
  font-size: 12px;
  color: #333333;
}

.header-top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-top-center-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: #444;
}

.header-top-center-links a {
  color: #444;
  transition: color 0.2s;
}

.header-top-center-links a:hover {
  color: var(--brand-color);
}

.header-localization {
  display: flex;
  align-items: center;
  margin-left: 4px;
}

.disclosure-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #232323;
  padding: 0;
}

.disclosure-btn .flag-icon {
  font-size: 14px;
}

/* Header Middle (Logo, Search, Actions) */
.header-middle {
  padding: 10px 0 20px 0;
}

.header-middle .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo a {
  display: flex;
  align-items: center;
}

.aurora-logo-svg {
  height: 40px;
  width: auto;
  display: block;
}

.header__logo-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-color);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.header__logo-subtext {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
  display: block;
}

/* Predictive Search Bar */
.header__search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid #333333;
  transition: border-color 0.2s ease;
}

.search-form:focus-within {
  border-color: #000000;
  box-shadow: 0 0 0 1px #333333;
}

.search__input {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #333333;
}

.search__input::placeholder {
  color: #666666;
}

.search__button {
  background: #232323;
  color: #ffffff;
  border: none;
  padding: 0 20px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.search__button:hover {
  background: #000000;
}

.search__button i {
  font-size: 16px;
}

/* Quick Search Dropdown / Trending */
.search-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.search-dropdown-menu.is-active {
  display: block;
}

.search-dropdown-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.search-trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.search-trending-tag {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #333;
  transition: all 0.2s ease;
}

.search-trending-tag:hover {
  background: var(--brand-color);
  color: #ffffff;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
  cursor: pointer;
}

.search-result-item:hover {
  background: #f8f8f8;
}

.search-result-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
}

.search-result-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
}

.search-result-price {
  font-size: 12px;
  color: var(--brand-color);
  font-weight: 700;
}

/* User Actions (Hello Sign In, Wish List, Bag) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  color: #232323;
}

.header-action-item i {
  color: #232323;
}

.header-action-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-action-text .subtext {
  font-size: 11px;
  color: #666666;
  font-weight: 500;
}

.header-action-text .maintext {
  font-size: 13px;
  font-weight: 700;
  color: #232323;
}

.cart-bubble {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #eb1e2e;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  height: 16px;
  min-width: 16px;
  padding: 0 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   Red Navigation Bar & Mega Menu
   ========================================================= */
.header-navigation-wrapper {
  background: #eb1e2e;
  position: relative;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-navigation-wrapper > .container {
  position: relative;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  width: 100%;
}

.menu-lv-1 {
  position: relative;
}

.menu-lv-1.has-megamenu {
  position: static;
}

.menu-lv-1 > a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  position: relative;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.menu-lv-1:hover > a,
.menu-lv-1.active > a {
  background-color: #d61827;
}

.menu-lv-1.nav-trade-item {
  margin-left: auto;
}

.menu-lv-1.nav-trade-item > a {
  padding-right: 0;
}

.menu-lv-1.nav-trade-item > a:hover {
  background-color: transparent;
  opacity: 0.85;
}

/* Mega Menu Dropdown Centering */
.menu-lv-1.has-megamenu .menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-top: 1px solid #f0f0f0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateY(6px);
  z-index: 999;
}

/* Invisible bridge so moving cursor from nav link to dropdown never flickers */
.menu-lv-1.has-megamenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
  background: transparent;
  z-index: 1001;
}

.menu-lv-1.has-megamenu:hover .menu-dropdown,
.menu-lv-1.has-megamenu:focus-within .menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-dropdown .container {
  margin: 0 auto;
  max-width: var(--container-width);
}

.menu-dropdown__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1.1fr;
  gap: 40px;
  padding: 40px 15px 50px 15px;
  color: #232323;
  margin: 0 auto;
  width: 100%;
}

.megamenu-column-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  border-bottom: none;
  padding-bottom: 0;
}

.megamenu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.megamenu-links li a {
  font-size: 14px;
  color: #4a4a4a;
  transition: color 0.2s ease;
  display: inline-block;
  line-height: 1.4;
}

.megamenu-links li a:hover {
  color: #eb1e2e;
}

/* Featured Product Column in Mega Menu */
.megamenu-col-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.megamenu-featured-clean {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.featured-img-link {
  display: inline-block;
  margin-bottom: 16px;
  overflow: hidden;
}

.featured-img-link img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: transparent;
  transition: transform 0.3s ease;
}

.featured-img-link:hover img {
  transform: scale(1.05);
}

.featured-name {
  font-size: 14px;
  font-weight: 500;
  color: #232323;
  margin-bottom: 6px;
  max-width: 200px;
  line-height: 1.4;
}

.featured-price {
  font-size: 14px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 12px;
}

.featured-shop-link {
  font-size: 14px;
  font-weight: 700;
  color: #232323;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.featured-shop-link:hover {
  color: #eb1e2e;
}

/* =========================================================
   Hero Banner Section (Static Single Banner)
   ========================================================= */
.hero-banner-section {
  position: relative;
  overflow: hidden;
  background: #fdf6f0;
  width: 100%;
}

.hero-banner-container {
  width: 100%;
}

.hero-banner-container a {
  display: block;
  width: 100%;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

/* =========================================================
   Section Headers
   ========================================================= */
.section-header-block {
  text-align: center;
  margin-bottom: 35px;
}

.section-header-title {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark-text);
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.section-header-sub {
  font-size: 14px;
  color: var(--light-text);
  margin-top: 6px;
}

.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* =========================================================
   Product Grid & Product Cards
   ========================================================= */
.product-slider-wrapper {
  position: relative;
}

.product-grid-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
  -webkit-overflow-scrolling: touch;
}

.product-grid-row::-webkit-scrollbar {
  height: 4px;
}

.product-grid-row::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.product-grid-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.product-grid-row::-webkit-scrollbar-thumb:hover {
  background: var(--brand-color);
}

.product-card {
  flex: 0 0 calc((100% - (24px * 3)) / 4);
  min-width: 250px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card__media {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect ratio */
  overflow: hidden;
  background-color: #fafafa;
}

.product-card__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card__media img.hover-img {
  opacity: 0;
}

.product-card:hover .product-card__media img.hover-img {
  opacity: 1;
}

.product-card:hover .product-card__media img.main-img {
  opacity: 1;
  transform: scale(1.05);
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 5;
  text-transform: uppercase;
}

/* Wishlist & Quick View Floating Buttons */
.product-card__buttons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 6;
}

.btn-card-icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.btn-card-icon:hover {
  background: var(--brand-color);
  color: #ffffff;
  border-color: var(--brand-color);
}

.btn-card-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Product Info */
.product-card__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__title:hover {
  color: var(--brand-color);
}

/* Star Ratings Badge */
.product-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
  color: var(--brand-color);
  font-size: 12px;
}

.product-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 14px;
}

.product-card__price .compare-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}

.product-card__price .sale-price {
  color: var(--brand-color);
}

/* Add to Bag Button */
.btn-add-to-bag {
  margin-top: auto;
  background: var(--brand-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.1s ease;
  width: 100%;
}

.btn-add-to-bag:hover {
  background: var(--brand-hover);
}

.btn-add-to-bag:active {
  transform: scale(0.98);
}

/* Carousel Prev/Next Buttons */
.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--brand-color);
  color: #ffffff;
  border-color: var(--brand-color);
}

.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }
.carousel-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* =========================================================
   3-Card Spotlight Section (Edge-to-Edge Full Bleed Overlay)
   ========================================================= */
.spotlight-section-full {
  width: 100%;
  padding: 30px 20px 50px 20px;
  background: #ffffff;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.spotlight-banner-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  background: #f0f0f0;
  width: 100%;
}

.spotlight-banner-item .spotlight-banner-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.spotlight-banner-item:hover .spotlight-banner-img {
  transform: scale(1.03);
}

.spotlight-banner-title {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
  pointer-events: none;
  font-family: inherit;
}

/* =========================================================
   Brand Showcase 3-Card Section (Edge-to-Edge Full Width)
   ========================================================= */
.brand-showcase-section-full {
  width: 100%;
  padding: 30px 20px 60px 20px;
  background: #ffffff;
}

.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.brand-showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.brand-showcase-card__img-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 18px;
  background: #fdfdfd;
}

.brand-showcase-card__img-link img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.brand-showcase-card__img-link:hover img {
  transform: scale(1.03);
}

.brand-showcase-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.brand-showcase-card__desc {
  font-size: 12px;
  color: #666666;
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 28px;
}

.brand-showcase-card__btn {
  display: inline-block;
  background: #eb1e2e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.brand-showcase-card__btn:hover {
  background: #d61827;
  transform: translateY(-1px);
}

/* =========================================================
   Brand Marquee Carousel
   ========================================================= */
.brand-marquee-section {
  background: #fdfaf8;
  padding: 30px 0;
  border-top: 1px solid #f0ebe5;
  border-bottom: 1px solid #f0ebe5;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: calc(200px * 16);
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.marquee-item img {
  max-height: 45px;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s ease;
}

.marquee-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 8)); }
}

/* =========================================================
   Newsletter Callout Section
   ========================================================= */
/* =========================================================
   Don't Miss Out Newsletter Section (Screenshot 3)
   ========================================================= */
.newsletter-section-clean {
  background: #ffffff;
  padding: 50px 20px 40px 20px;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.newsletter-clean__container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-clean__title {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.newsletter-clean__sub {
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 24px;
}

.newsletter-clean__sub a {
  text-decoration: underline;
  color: #333333;
}

.newsletter-clean__form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-clean__input {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #232323;
  border-right: none;
  outline: none;
  background: #ffffff;
  color: #333333;
}

.newsletter-clean__btn {
  background: #232323;
  color: #ffffff;
  border: 1px solid #232323;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.newsletter-clean__btn:hover {
  background: #000000;
}

/* =========================================================
   Let Customers Speak For Us Section (Screenshot 3 & Carousel)
   ========================================================= */
.reviews-section-clean {
  background: #ffffff;
  padding: 40px 20px 60px 20px;
  text-align: center;
  overflow: hidden;
}

.reviews-clean__header {
  margin-bottom: 35px;
}

.reviews-clean__title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.reviews-clean__stars-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #108474;
  font-size: 14px;
  margin-bottom: 4px;
}

.reviews-clean__count {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.reviews-clean__carousel-wrapper {
  max-width: 960px;
  margin: 0 auto 30px auto;
  position: relative;
  overflow: hidden;
}

.reviews-clean__track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 10px;
}

.reviews-clean__track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.review-clean-item {
  flex: 0 0 calc((100% - 80px) / 3);
  min-width: 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.review-clean-stars {
  color: #108474;
  font-size: 13px;
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}

.review-clean-heading {
  font-size: 14px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 4px;
}

.review-clean-snippet {
  font-size: 13px;
  color: #666666;
  margin-bottom: 12px;
}

.review-clean-product-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-clean-product-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 4px;
}

.review-clean-author {
  font-size: 13px;
  font-weight: 700;
  color: #232323;
  margin-top: auto;
}

.reviews-clean-nav-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews-clean-arrow {
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.reviews-clean-arrow:hover {
  color: #232323;
}

/* =========================================================
   Footer (Judge.me Badges + 4 Columns + Copyright/Payment Bar)
   ========================================================= */
.site-footer {
  background: #f0f0f0;
  color: #333333;
  font-size: 13px;
}

/* Judge.me Top Badges Bar */
.footer-judgeme-bar {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}

.footer-judgeme-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.judgeme-summary-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.judgeme-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #108474;
  font-size: 14px;
}

.judgeme-score-text {
  font-weight: 700;
  color: #108474;
  margin-left: 6px;
  font-size: 13px;
}

.judgeme-verified-by {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #555;
  margin-top: 4px;
}

.judgeme-logo-img {
  height: 16px;
  width: auto;
}

.judgeme-medals-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.judgeme-medal-img {
  height: 48px;
  width: auto;
  transition: transform 0.2s;
}

.judgeme-medal-img:hover {
  transform: scale(1.08);
}

/* Main Footer 4 Columns */
.footer-main-links {
  padding: 50px 0 40px 0;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col-header {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li a {
  color: #4a4a4a;
  font-size: 13px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-list li a:hover {
  color: #eb1e2e;
}

.footer-social-circles {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.footer-social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #232323;
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-circle-btn:hover {
  background: #eb1e2e;
  color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom-dark {
  background: #1f1f1f;
  color: #a0a0a0;
  padding: 18px 0;
  font-size: 12px;
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-card-badge {
  background: #ffffff;
  border-radius: 3px;
  padding: 3px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* =========================================================
   Teddy Perks Slide-Out Widget
   ========================================================= */
.teddy-perks-launcher {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background: #f22f00;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(242,47,0,0.35);
  cursor: pointer;
  z-index: 950;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teddy-perks-launcher:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(242,47,0,0.45);
}

.teddy-perks-launcher svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.teddy-perks-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 35px rgba(0,0,0,0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.teddy-perks-drawer.is-open {
  right: 0;
}

.teddy-perks-header {
  background: linear-gradient(135deg, #f22f00, #9f1f00);
  color: #ffffff;
  padding: 24px 20px;
  position: relative;
}

.teddy-perks-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teddy-perks-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.teddy-perks-tagline {
  font-size: 12px;
  opacity: 0.9;
}

.teddy-perks-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.perks-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
}

.perks-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.perks-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #e5e5e5;
  font-size: 12px;
}

.perks-item:last-child {
  border-bottom: none;
}

.perks-badge-pts {
  background: #eb1e2e;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 11px;
}

.perks-points-card {
  background: linear-gradient(135deg, #fdf4f4, #fae8e8);
  border: 1px solid #ffd4d4;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.perks-points-val {
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-color);
  line-height: 1;
}

.perks-points-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-top: 6px;
}

.perks-tier-tag {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #eb1e2e;
  color: #eb1e2e;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 10px;
  text-transform: uppercase;
}

.perks-section-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.perks-list li {
  font-size: 13px;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
}

.referral-box {
  background: #f7f9fc;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  padding: 16px;
  margin-top: 15px;
}

.referral-box h4 {
  font-size: 13px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 4px;
}

.referral-box p {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.referral-input-wrap {
  display: flex;
  gap: 6px;
}

.referral-input-wrap input {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

.referral-input-wrap button {
  background: var(--brand-color);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

/* =========================================================
   Accessibility Widget (Modal & Overlays)
   ========================================================= */
.a11y-launcher {
  position: fixed;
  bottom: 85px;
  right: 20px;
  background: #0052B4;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,82,180,0.35);
  z-index: 940;
  border: none;
  transition: transform 0.2s ease;
}

.a11y-launcher:hover {
  transform: scale(1.1);
}

.a11y-launcher svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.a11y-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 420px;
  max-width: 92vw;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 1100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s ease;
}

.a11y-modal.is-open {
  display: flex;
  transform: translate(-50%, -50%) scale(1);
}

.a11y-modal-header {
  background: #0052B4;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.a11y-modal-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.a11y-modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.a11y-modal-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.a11y-control-btn {
  background: #f4f6f8;
  border: 1px solid #dcdfe3;
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.a11y-control-btn.is-active {
  background: #0052B4;
  color: #ffffff;
  border-color: #0052B4;
}

.a11y-control-btn:hover:not(.is-active) {
  background: #e9ecef;
}

.a11y-modal-footer {
  padding: 12px 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.a11y-reset-btn {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.a11y-hint {
  font-size: 11px;
  color: #777;
}

/* Modal Backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 1040;
  display: none;
}

.modal-backdrop.is-open {
  display: block;
}

/* Accessibility Modifiers */
body.a11y-high-contrast {
  filter: contrast(160%) !important;
}

body.a11y-grayscale {
  filter: grayscale(100%) !important;
}

body.a11y-invert {
  filter: invert(100%) hue-rotate(180deg) !important;
  background: #111 !important;
}

body.a11y-stop-animations *,
body.a11y-stop-animations *::before,
body.a11y-stop-animations *::after {
  transition: none !important;
  animation: none !important;
}

body.a11y-large-font {
  font-size: 17px !important;
}

body.a11y-dyslexic-font * {
  font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
}

/* Reading Mask Guide */
.a11y-reading-mask {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 60px;
  background: rgba(255, 255, 0, 0.2);
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

/* =========================================================
   Slide-in Cart Drawer
   ========================================================= */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 35px rgba(0,0,0,0.25);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.is-open {
  right: 0;
}

.cart-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-title {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-close svg {
  width: 16px;
  height: 16px;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--brand-color);
  color: #ffffff;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-checkout:hover {
  background: var(--brand-hover);
}

/* =========================================================
   Quick View Modal
   ========================================================= */
.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 750px;
  max-width: 92vw;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  z-index: 1100;
  display: none;
  overflow: hidden;
  transition: all 0.25s ease;
}

.quick-view-modal.is-open {
  display: flex;
  transform: translate(-50%, -50%) scale(1);
}

.quick-view-modal .qv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
}

.qv-media {
  background: #f8f8f8;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qv-media img {
  max-height: 320px;
  border-radius: 8px;
}

.qv-details {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.qv-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.qv-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.qv-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-color);
  margin-bottom: 15px;
}

.qv-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* =========================================================
   Responsive Breakpoints
   ========================================================= */
@media screen and (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc((100% - (24px * 2)) / 3);
  }
  .spotlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .header-top-bar {
    display: none;
  }
  .header-middle .container {
    flex-wrap: wrap;
  }
  .header__search {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .product-grid-row {
    gap: 12px;
  }
  .product-card {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: 160px;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .menu-dropdown__wrapper {
    grid-template-columns: 1fr;
  }
  .quick-view-modal .qv-content {
    grid-template-columns: 1fr;
  }
  .teddy-perks-launcher {
    bottom: 110px;
    padding: 8px 14px;
    font-size: 11px;
  }
  .a11y-launcher {
    bottom: 60px;
    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   Cart Item & Quick View Enhancements
   ========================================================= */
.cart-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  background: #f8f8f8;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-color);
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--brand-color);
}

.cart-empty-state {
  text-align: center;
  padding: 40px 10px;
  color: #888;
}

.cart-empty-state svg {
  margin-bottom: 16px;
  stroke: #bbb;
}

.cart-empty-state p {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* =========================================================
   Unified Standalone Product Card & Button Styles
   Used across Collections, Animals, Spudsters, Palm Pals, etc.
   ========================================================= */
.product-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ebe5df;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-thumb-wrap {
  position: relative;
  background: #faf8f5;
  padding: 16px;
  text-align: center;
  overflow: hidden;
}

.product-thumb-wrap img,
.product-thumb {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb-wrap img,
.product-card:hover .product-thumb {
  transform: scale(1.04);
}

.product-info {
  padding: 18px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  color: #232323;
  margin: 0 0 8px 0;
  line-height: 1.35;
  font-family: 'Quicksand', sans-serif;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
}

.product-rating i {
  color: #ffb800;
  font-size: 11px;
}

.product-rating span {
  font-size: 12px;
  color: #888;
  margin-left: 5px;
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: #eb1e2e;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* Primary Dark "Add to Bag" Button with Icon */
.btn-add-to-cart {
  width: 100%;
  background: #232323;
  color: #ffffff;
  border: none;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.1s ease;
  font-family: inherit;
}

.btn-add-to-cart:hover {
  background: #eb1e2e;
  color: #ffffff;
}

.btn-add-to-cart:active {
  transform: scale(0.98);
}

