* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

button, a, input, select {
  -webkit-tap-highlight-color: var(--bs-light-bg-subtle);
  touch-action: manipulation;
}

/* ============================================
   BODY & CONTAINER
   ============================================ */

body, .gs-body {
  color: var(--bs-light-text-emphasis);
  -webkit-font-smoothing: antialiased;
  background-color: var(--bs-body-bg);
  color: var(--bs-light-text-emphasis);
  line-height: 1.6;
  font-family: 'Anta', sans-serif;
  transition: background-color 0.7s ease, color 0.7s ease;
}

.gs-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 0 var(--container-padding);*/
  justify-content: center !important;
  text-align: center;
}

.divider-wrapper {
  padding-bottom: 90px;
}

.divider {
  position: relative;
  margin-top: 1px;
  height: 1px;
}

.div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-arrow-down:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -7px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background-color: white;
  border-bottom: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
}

.div-tab-down:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 10px);
  width: 20px;
  height: 14px;
  background-color: white;
  border-bottom: 1px solid rgb(48,49,51);
  border-left: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
  border-radius: 0 0 8px 8px;
}

.div-stopper:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: calc(50% - 7px);
  width: 14px;
  height: 12px;
  background-color: white;
  border-left: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
}

.div-dot:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -9px;
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  background-color: var(--bs-primary);
  border: 1px solid rgb(48,49,51);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}

.btn-row {
  display: flex;
  justify-content: space-between;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bs-bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  border-radius: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-to-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ============================================
   LOADING & EMPTY STATES
   ============================================ */

.loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--bs-light-text-emphasis);
}

.loading .spinner, .spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--bs-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.empty, .empty-state {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--bs-bg-card);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  margin-top: 20px;
}

.empty-state .empty-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state p {
  color: var(--bs-primary);
  margin-bottom: 16px;
}

/* ============================================
   PAGE LOADER
   ============================================ */

#page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
  background: color-mix(in srgb, var(--bs-body-bg), transparent 2%);
}

#page-loader .spinner {
  width: 42px;
  height: 42px;
}

.biglogo {
  filter: invert(100%) hue-rotate(182deg) contrast(133%) brightness(80%);
}

/* Dark mode */

[data-bs-theme="dark"] .logo5 {
  filter: none;
}

[data-bs-theme="dark"] .biglogo {
  filter: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-nua {
  background-image: linear-gradient(to right, var(--bs-secondary) 0%, var(--bs-primary) 51%, var(--bs-secondary) 100%);
}

.btn-nua {
  margin: 10px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px var(--bs-tertiary-color);
  border-radius: 10px;
  display: block;
  outline: none;
  border: none;
  max-width: 250px;
  display: inline-block;
  font-size: 0.7rem;
}

.btn-nua:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.35);
  transform: translateY(-2px);
}

.gs-btn {
  display: inline-block;
  color: var(--bs-light);
  text-decoration: none;
  text-transform: capitalize;
  font-family: Anta;
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  background: radial-gradient(circle,var(--bs-primary) 25%, var(--bs-secondary) 74%);
}

.gs-btn-primary {
  background: linear-gradient(135deg, var(--bs-primary-bg-subtle), var(--bs-light-bg-subtle));
  color: var(--bs-light-text-emphasis);
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.35);
}

.gs-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(var(--bs-primary-rgb), 0.45);
}

.gs-btn-danger {
  background: var(--bs-danger);
  color: var(--bs-light);
}

.gs-btn-danger:hover {
  opacity: 0.9;
}

/* ============================================
   BADGES
   ============================================ */

.NCbadge {
  height: 20px;
  background: var(--bs-secondary);
  width: 200px;
  text-align: center;
  font-size: 7px;
  line-height: 20px;
  font-family: sans-serif;
  color: var(--bs-light-bg-subtle);
  font-weight: 600;
  transform: rotate(-45deg);
  position: relative;
  top: 5px;
  left: -85px;
  box-shadow: inset 0px 0px 0px 4px rgba(255, 255, 255, 0.34);
  letter-spacing: 1px;
  /*opacity: 0.7;*/
}

.badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.product-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.shop-badge, .product-badge {
  padding: 3px 6px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bs-primary);
  background: var(--bs-primary-bg-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: Anta, sans-serif;
  scale: 0.8;
}

.shop-badge-bundle, .product-badge-bundle {
  background: rgba(255,212,224,0.71);
  color: var(--bs-primary);
  cursor: pointer;
  text-align: center;
}

.shop-badge-bundle {
  border-radius: 15px;
  max-width: 130px;
}

.shop-badge-bundle:hover {
  background: var(--bs-secondary-text-emphasis);
  color: var(--bs-light-bg-subtle);
}

.product-badge-bundle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 23px rgba(var(--bs-primary-rgb), 0.45);
}

.shop-badge-custom {
  background: rgba(255,255,255,0.52);
  color: var(--bs-primary);
}

.product-badge-custom {
  background: var(--bs-warning-text-emphasis);
  color: var(--bs-light-bg-subtle);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  width: 100%;
  background: var(--bs-body-bg);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 90px;
  margin-bottom: 1em;
  font-family: 'Anta';
}

.nav-container {
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-secondary);
  letter-spacing: 0.5px;
  transition: 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--bs-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--bs-secondary-text-emphasis);
}

/* ============================================
   NAVIGATION ACTIONS & AUTH
   ============================================ */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icon {
  color: var(--bs-secondary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.2s ease;
}

.nav-icon:hover {
  color: var(--bs-secondary-text-emphasis);
}

.nav-icon span {
  font-weight: 600;
}

.nav-auth {
  color: var(--bs-secondary);
  margin: 5px 10px;
}

.nav-auth:hover {
  color: var(--bs-secondary-text-emphasis);
}

/* ============================================
   USER MENU & DROPDOWN
   ============================================ */

.user-menu {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bs-light);
  color: var(--bs-secondary-text-emphasis);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.user-menu:hover .user-icon {
  opacity: 0.9;
}

.user-dropdown {
  position: absolute;
  top: 32px;
  right: 0;
  background: var(--bs-light-bg-subtle);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  padding: 14px;
  min-width: 180px;
  display: none;
  flex-direction: column;
  animation: fadeIn 0.2s ease;
  z-index: 10000;
}

.user-menu:hover .user-dropdown {
  display: flex;
}

.user-dropdown .user-email {
  font-size: 0.85rem;
  color: var(--bs-light);
  margin-bottom: 10px;
  color: var(--bs-emphasis-color);
}

.user-dropdown a {
  padding: 8px 0;
  color: var(--bs-light);
  font-size: 0.95rem;
  transition: 0.2s ease;
  color: var(--bs-emphasis-color);
  padding: 6px;
}

.user-dropdown a:hover {
  color: var(--bs-light);
  background: var(--bs-primary);
  border-radius: 6px;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.menu-btn {
  display: none;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--bs-secondary);
  cursor: pointer;
  transition: 0.2s ease;
}

.menu-btn:hover {
  color: var(--bs-secondary-text-emphasis);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 18px;
  margin: 12px 16px;
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  position: fixed;
  top: 90px;
  left: 5%;
  right: 5%;
  width: 90%;
  z-index: 10000;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  background: var(--bs-light-bg-subtle);
}

.mobile-menu a {
  padding: 14px 4px;
  color: var(--bs-secondary-text-emphasis);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--bs-border-color-translucent);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--bs-danger-text-emphasis);
  padding-left: 10px;
}

.mobile-user-info {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--bs-primary);
  border-bottom: 1px solid var(--bs-border-color-translucent);
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

#mobileAuthArea {
  display: none;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */

#theme-toggle-btn {
  position: fixed;
  bottom: 70px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background-color: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  opacity: 0.3;
}

#theme-toggle-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

#theme-toggle-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

[data-bs-theme="dark"] .sun-icon {
  display: block;
}

[data-bs-theme="dark"] .moon-icon {
  display: none;
}

[data-bs-theme="light"] .sun-icon {
  display: none;
}

[data-bs-theme="light"] .moon-icon {
  display: block;
}

/* ============================================
   BANNER SCROLLER
   ============================================ */

/* 1. Ensure the parent is a flex container and doesn't wrap */

.banner-scroller-wrapper {
  overflow: hidden;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  height: 20px;
  display: flex;
  align-items: center;
  background: var(--bs-secondary);
  background: linear-gradient(140deg, var(--bs-secondary) 11%, var(--bs-primary) 47%, var(--bs-secondary) 100%);
}

/* 2. Remove fit-content and ensure it spans enough space */

.banner-scroller-wrapper .banner-scroller-content {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  animation: slide-to-left 50s linear infinite;
  opacity: 1;
}

.banner-scroller-wrapper:hover .banner-scroller-content {
  animation-play-state: paused;
}

.banner-scroller-wrapper .banner-scroller-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.banner-scroller-text {
  min-width: 400px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--bs-white);
}

/* ============================================
   MINI CART
   ============================================ */

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  z-index: 999;
}

.mini-cart-overlay.show {
  display: block;
}

.mini-cart {
  position: fixed;
  top: 7em;
  right: -400px;
  width: 340px;
  height: 80vh;
  background: var(--bs-bg-card);
  box-shadow: var(--bs-box-shadow);
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 11000;
  display: flex;
  flex-direction: column;
  background: var(--bs-light-bg-subtle);
  border-radius: 20px 0 0 20px;
}

.mini-cart.show {
  right: 0;
}

.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  color: var(--bs-light-bg-subtle);
  background: var(--bs-secondary-text-emphasis);
  border-radius: 10px 10px 0 0;
  padding: 2px 10px;
}

.mini-cart-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

#miniCartClose {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--bs-light-bg-subtle);
  cursor: pointer;
}

.mini-cart-items {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bs-secondary-text-emphasis);
  color: var(--bs-primary);
}

.mini-cart-item:last-child {
  border-bottom: 1px solid var(--bs-secondary-text-emphasis);
}

.mini-cart-item img {
  width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--bs-border-radius-sm);
  background: var(--bs-bg-soft);
  border-width: 1px;
  border-color: var(--bs-primary);
  border-style: outset;
}

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

.mini-cart-item-name {
  font-size: 0.7rem;
  font-weight: 600;
  /*Note: you had this twice, 'bold' is redundant;*/
  margin-bottom: 4px;
  color: var(--bs-emphasis-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100px;
}

.mini-cart-item-qty {
  font-size: 0.85rem;
  color: var(--bs-emphasis-color);
  font-weight: bold;
}

.mini-cart-item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--bs-secondary);
}

.mini-cart-footer {
  margin-top: 16px;
}

.mini-cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--bs-secondary);
}

.bundle-row {
  color: var(--bs-secondary-text-emphasis);
  font-size: 0.9rem;
}

.mini-cart-btn {
  display: block;
  width: 100%;
  padding: 6px;
  margin-top: 10px;
  text-align: center;
  border-radius: var(--bs-border-radius-pill);
  background: var(--bs-secondary-text-emphasis);
  color: var(--bs-light-bg-subtle);
  font-weight: 600;
  transition: 0.2s ease;
}

.mini-cart-btn:hover {
  background: var(--bs-secondary);
  color: var(--bs-light-bg-subtle);
}

.mini-cart-btn.accent:hover {
  opacity: 0.9;
}

/* ============================================
   SUMMARY ROWS (CART/CHECKOUT/ORDERS)
   ============================================ */

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--bs-danger);
}

.total-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--bs-primary);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================
   ORDER ITEMS
   ============================================ */

.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-bottom: 1px solid var(--bs-border-color-translucent);
}

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

.order-item img {
  width: 70px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--bs-border-radius-sm);
  background: var(--bs-bg-soft);
}

.order-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.order-item-qty {
  font-size: 0.85rem;
  color: var(--bs-light-text-emphasis);
}

.order-item-price {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-success);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 50px 0 20px;
  color: var(--bs-light-text-emphasis);
  margin-top: 60px;
  box-shadow: var(--bs-box-shadow-sm);
  background: var(--bs-secondary);
}

.logo5 {
  resize: auto;
  max-width: 184px;
  min-width: 218px;
  filter: invert(100%) hue-rotate(182deg) contrast(133%) brightness(80%);
}

/* ============================================
   PRODUCT GRIDS
   ============================================ */

.products-grid {
  display: grid;
  justify-content: center;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin-top: 20px;
}

#productsGrid {
  align-content: space-between;
}

/* ============================================
   STOCK STATUS
   ============================================ */

.out-of-stock {
  color: var(--bs-light-text-emphasis);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.stock-status {
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.stock-status.in-stock {
  color: var(--bs-light-text-emphasis);
}

.stock-status.low-stock {
  color: var(--bs-light-text-emphasis);
}

.stock-status.out-of-stock {
  color: var(--bs-light-text-emphasis);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (min-width: 468px) {
  :root {
    --container-padding: 24px;
    --section-spacing: 40px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 32px;
    --section-spacing: 60px;
  }
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 1000px) {
  .menu-btn {
    display: block;
  }
}

@media (max-width: 1000px) {
  .nav-actions {
    gap: 12px;
  }
}

@media (max-width: 1000px) {
  #authArea {
    display: none !important;
  }
}

@media (max-width: 1000px) {
  #mobileAuthArea {
    display: block !important;
  }
}

@media (max-width: 1000px) {
  .user-dropdown {
    position: static !important;
    display: flex !important;
    background: transparent;
    box-shadow: none;
    padding: 0;
    animation: none;
  }
}

@media (max-width: 1000px) {
  .user-menu:hover .user-dropdown {
    display: flex;
  }
}

@media (max-width: 1000px) {
  .gs-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px) {
  #page-loader .spinner {
    width: 50px;
    height: 50px;
    border-width: 5px;
  }
}

@media (max-width: 1000px) {
  .products-grid {
    grid-template-columns: repeat(2, 1.1fr);
  }
}

@media (max-width: 600px) {
  .empty-state {
    padding: 40px 16px;
  }
}

@media (max-width: 600px) {
  .empty-state .empty-icon {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .empty-state h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .empty-state p {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .summary-row {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .total-row {
    font-size: 1.2rem;
    margin-top: 12px;
    padding-top: 12px;
  }
}

@media (min-width: 601px) and (max-width: 1000px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1001px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================   CATEGORY PAGE   ============================================================ */

/* ---- Grid ---- */

/* ---- Card ---- */

/* ---- Card info ---- */

/* ---- Badge row ---- */

.badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ---- Loading ---- */

.loading {
  text-align: center;
  padding: 60px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--bs-primary);
  border-top-color: var(--bs-secondary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Empty state ---- */

.empty-state {
  text-align: center;
  padding: 80px 20px;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--bs-secondary);
}

.empty-state a {
  text-decoration: none;
}

/* ---- Responsive ---- */

.lottie {
  cursor: pointer;
}

.flinks {
  color: var(--bs-secondary);
}

.flinks:hover {
  color: var(--bs-secondary-text-emphasis);
  text-decoration: underline!important;
}

.ftll {
  color: var(--bs-secondary-text-emphasis);
}

.nua-c {
  --bs-text-opacity: 1;
  color: var(--bs-border-color-translucent)!important;
}

.bbb {
  color: var(--bs-secondary)!important;
}

.bbb:hover, .nua-c:hover {
  color: var(--bs-info-text-emphasis)!important;
  transition: color 1.5s ease;
}

.mini-cart-delete-btn {
  background: transparent;
  border: none;
  color: var(--bs-secondary);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}

.mini-cart-delete-btn:hover {
  color: var(--bs-emphasis-color);
}

/* HTML: <div class="loader"></div> */

/* HTML: <div class="loader"></div> */

.Nproduct, .Nshop, .Nbundles, .Ncart, .Ncategory, .Ncheckout, .Ncontact, .Npassword, .Nhome, .Norders, .Nprivacy, .Nprofile, .Nwishlist, .Nsupport, .Nloading {
  width: fit-content;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 30px;
  padding-bottom: 8px;
  background: linear-gradient(currentColor 0 0) 0 100%/0% 1px no-repeat;
  /*animation: Nmove 2s linear infinite;*/
  color: var(--bs-secondary);
}

/* Shared styling for all loading messages */

[class^="N"]:before {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bs-secondary);
  text-shadow: 0 0 6px var(--bs-primary), 0 0 6px var(--bs-secondary);
  animation: shinePulse 3s ease-in-out infinite;
  letter-spacing: 0.5px;
}

/* Shine animation */

@keyframes shinePulse {
  0% {
    opacity: 0.4;
    text-shadow: 0 0 4px var(--bs-primary);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px var(--bs-secondary), 0 0 20px var(--bs-danger);
  }
  100% {
    opacity: 0.4;
    text-shadow: 0 0 4px var(--bs-primary);
  }
}

/* Individual messages */

.Nproduct:before {
  content: "Finding your perfect pick";
}

.Nshop:before {
  content: "Curating your shopping experience";
}

.Nbundles:before {
  content: "Building the best bundle for you";
}

.Ncart:before {
  content: "Preparing your cart";
}

.Ncategory:before {
  content: "Exploring more collections";
}

.Ncheckout:before {
  content: "Almost there — final step";
}

.Ncontact:before {
  content: "We’re ready to connect";
}

.Npassword:before {
  content: "Securing your account";
}

.Nhome:before {
  content: "Welcome back to Nanushty";
}

.Norders:before {
  content: "Loading your order details";
}

.Nprivacy:before {
  content: "Protecting your information";
}

.Nprofile:before {
  content: "Personalizing your profile";
}

.Nwishlist:before {
  content: "Saving your favorites";
}

.Nsupport:before {
  content: "Here to help anytime";
}

.Nloading:before {
  content: "Just a moment…";
}

@keyframes Nmove {
  to {
    background-size: 100% 1px;
  }
}

/* Hide footer on screens smaller than 768px */

@media (max-width: 768px) {
  footer, .main-footer {
    display: none !important;
  }
}

/* Chat Box */

.chat-box {
  background: var(--gs-card-bg, #fff);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Message bubbles */

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.3;
  word-break: break-word;
}

.chat-user {
  align-self: flex-end;
  background: #4f46e5;
  color: white;
  border-radius: 14px 14px 0 14px;
}

.chat-admin {
  align-self: flex-start;
  background: #f1f1f1;
  color: #333;
  border-radius: 14px 14px 14px 0;
}

.chat-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 4px;
  text-align: right;
}

/* Input area */

.chat-input-wrap {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#chatInput {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
}

.msg-badge {
  position: relative;
  top: -1px;
  right: 0px;
  background: var(--bs-secondary);
  color: var(--bs-light-bg-subtle);
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 50%;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  animation: beat 1.5s infinite ease-in-out;
}

@keyframes beat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.user-avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-avatar-initial {
  width: 100%;
  height: 100%;
  background: var(--accent-color, #333);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-avatar-img {
  opacity: 0;
  transition: opacity 5s ease-in;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-avatar-img.loaded {
  opacity: 1;
}

.liveBadge {
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: white;
  animation: breathe 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(25,135,84,0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
  }
}

/* =============================================================================
   NANUSHTY CHAT WIDGET — global styles
   Drop into your main stylesheet (e.g. global.css or layout.css).
   ============================================================================= */

/* ── PWA toolbar height token — keep in sync with your toolbar CSS ─────────── */

:root {
  --pwa-toolbar-h: 60px;
  --chat-gap: 16px;
}

/* ── Toggle button ──────────────────────────────────────────────────────────── */

.chat-toggle-btn {
  position: fixed;
  bottom: calc(var(--pwa-toolbar-h) + var(--chat-gap) * 2);
  right: 25px;
  background: var(--bs-primary, #9d174d);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 8000;
  transition: transform 0.25s ease, background 0.2s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  opacity: 0.3;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--bs-secondary, #7a1040);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  opacity: 1;
}

.chat-toggle-btn.hidden {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
}

/* ── Chat window — desktop ──────────────────────────────────────────────────── */

.chat-window {
  position: fixed;
  bottom: calc(var(--pwa-toolbar-h) + var(--chat-gap) * 2);
  right: 20px;
  width: 350px;
  height: 500px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  z-index: 7999;
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-window.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile overrides — full-width panel sitting above the bottom bar ───────── */

.n-signature {
  text-align: center;
  color: rgba(59,47,59,0.37);
}

.n-signature span {
  letter-spacing: 1px;
  font-family: 'Anta';
}

@media (max-width: 600px) {
  .chat-toggle-btn {
    bottom: calc(var(--pwa-toolbar-h) + var(--chat-gap) * 2.5);
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .chat-window {
    left: 8px;
    right: 8px;
    width: auto;
    bottom: calc(var(--pwa-toolbar-h) + var(--chat-gap));
    height: min(420px, calc(100dvh - var(--pwa-toolbar-h) - 90px));
    border-radius: 12px;
    transition: transform 0.22s ease, opacity 0.2s ease;
  }
}

/* Disable dragging cursor on mobile (dragging is turned off in JS too) */

@media (max-width: 600px) {
  .chat-header {
    cursor: default;
  }
}

/* ── Header ─────────────────────────────────────────────────────────────────── */

.chat-header {
  background: var(--bs-primary, #9d174d);
  color: #fff;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
  user-select: none;
  flex-shrink: 0;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bs-primary-bg-subtle);
  box-shadow: 0 0 0 2px var(--bs-secondary);
  flex-shrink: 0;
  animation: blink-animation 2s steps(10, start) infinite;
}

.chat-title {
  font-weight: 600;
  font-size: 0.975rem;
  letter-spacing: 0.01em;
}

.chat-controls {
  display: flex;
  gap: 4px;
}

.chat-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.18s ease;
  flex-shrink: 0;
}

.chat-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── Messages area ───────────────────────────────────────────────────────────── */

.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

.chat-messages::-webkit-scrollbar {
  width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* ── Messages ────────────────────────────────────────────────────────────────── */

.message {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 18px;
  line-height: 1.48;
  font-size: 0.875rem;
  word-break: break-word;
  animation: chat-fadeIn 0.26s ease both;
}

@keyframes chat-fadeIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  background: #fff;
  border: 1px solid #e5e7eb;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #1f2937;
}

.bot-message a {
  color: var(--bs-primary, #9d174d);
  text-decoration: underline;
}

.user-message {
  background: var(--bs-primary, #9d174d);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* ── Typing indicator ────────────────────────────────────────────────────────── */

.typing-indicator {
  display: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px 13px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  gap: 4px;
  align-items: center;
}

.typing-indicator span {
  height: 7px;
  width: 7px;
  display: inline-block;
  background: #9ca3af;
  border-radius: 50%;
  opacity: 0.5;
}

.typing-indicator span:nth-child(1) {
  animation: chat-bounce 1s infinite 0s;
}

.typing-indicator span:nth-child(2) {
  animation: chat-bounce 1s infinite 0.18s;
}

.typing-indicator span:nth-child(3) {
  animation: chat-bounce 1s infinite 0.36s;
}

@keyframes chat-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
}

/* ── Input area ─────────────────────────────────────────────────────────────── */

.chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  padding: 9px 13px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  outline: none;
  font-size: 0.875rem;
  background: #f9fafb;
  color: #1f2937;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  font-size: max(16px, 0.875rem);
}

.chat-input:focus {
  border-color: var(--bs-primary, #9d174d);
  box-shadow: 0 0 0 3px rgba(157, 23, 77, 0.12);
  background: #fff;
}

.chat-send-btn {
  background: var(--bs-primary, #9d174d);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.18s ease, transform 0.15s ease;
}

.chat-send-btn:hover {
  background: var(--bs-secondary, #7a1040);
}

.chat-send-btn:active {
  transform: scale(0.92);
}

/* ── Quick replies ───────────────────────────────────────────────────────────── */

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
  align-self: flex-start;
  max-width: 100%;
}

.quick-reply {
  background: #fff;
  border: 1px solid var(--bs-primary, #9d174d);
  color: var(--bs-primary, #9d174d);
  border-radius: 14px;
  padding: 5px 11px;
  font-size: 0.77rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.quick-reply:hover {
  background: var(--bs-primary, #9d174d);
  color: #fff;
}

/* ── Dark mode ───────────────────────────────────────────────────────────────── */

[data-bs-theme="dark"] .chat-window {
  background: #1e1e2e;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .chat-messages {
  background: #181824;
}

[data-bs-theme="dark"] .bot-message {
  background: #2a2a3e;
  border-color: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

[data-bs-theme="dark"] .chat-input-area {
  background: #1e1e2e;
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .chat-input {
  background: #13131f;
  border-color: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
}

[data-bs-theme="dark"] .chat-input:focus {
  background: #1a1a2e;
}

[data-bs-theme="dark"] .quick-reply {
  background: transparent;
  border-color: rgba(157, 23, 77, 0.55);
  color: #f9a8c9;
}

[data-bs-theme="dark"] .quick-reply:hover {
  background: var(--bs-primary, #9d174d);
  color: #fff;
}

.font-lato {
  display: none!important;
}

/* --- Logo Switching Logic --- */

/* 1. Hide all logos by default */

.logo img {
  display: none;
}

/* 2. Show the specific logo based on the theme set on <html> */

html[data-bs-theme="teal"] .logottheme {
  display: inline-block;
}

html[data-bs-theme="orange"] .logootheme {
  display: inline-block;
}

html[data-bs-theme="pink"] .logoptheme {
  display: inline-block;
}

html[data-bs-theme="black"] .logobtheme {
  display: inline-block;
}

html[data-bs-theme="light"] .logoltheme {
  display: inline-block;
}

html[data-bs-theme="dark"] .logodtheme {
  display: inline-block;
}

/* Fallback: If a theme is set that doesn't have a specific logo (or "auto" light), show Light logo */

html:not([data-bs-theme="teal"]):not([data-bs-theme="orange"]):not([data-bs-theme="pink"]):not([data-bs-theme="black"]):not([data-bs-theme="dark"]) .logoltheme {
  display: inline-block;
}

#contact {
  padding-bottom: 50px;
}

@keyframes blink-animation {
  50% {
    opacity: 0;
  }
}

/* mobile arrivals */

.na-hero {
  background: radial-gradient(circle at 30% 60%, var(--bs-primary) 0%, var(--bs-secondary) 100%);
  padding: 2rem 1rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.na-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bs-body-bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.na-hero-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.na-hero-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fbce92;
  background: rgba(255,255,255,0.12);
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 0.6rem;
}

.na-hero h1 {
  font-family: 'Anta', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.na-hero h1 span {
  color: #fbce92;
}

.na-hero p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
}

/* Trust pills row */

.na-hero-pills {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

.na-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 4px 10px;
}

.na-hero-pill i {
  font-size: 0.65rem;
  color: #fbce92;
}

/* ─── STICKY FILTER BAR ─── */

.na-filter-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bs-body-bg);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 0.6rem 0;
}

.na-filter-scroll {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.na-filter-scroll::-webkit-scrollbar {
  display: none;
}

.na-pill {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-body-color);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.na-pill.active {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.na-sort-btn {
  flex-shrink: 0;
  margin-left: auto;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  cursor: pointer;
}

/* Sort drawer */

.na-sort-drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--bs-body-bg);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  z-index: 999;
  transition: bottom 0.3s ease;
  padding: 0 0 env(safe-area-inset-bottom, 16px);
}

.na-sort-drawer.open {
  bottom: 0;
}

.na-drawer-handle {
  width: 36px;
  height: 4px;
  background: var(--bs-border-color);
  border-radius: 2px;
  margin: 10px auto 16px;
}

.na-drawer-title {
  font-family: 'Anta', sans-serif;
  font-size: 1rem;
  color: var(--bs-highlight-color);
  padding: 0 1.25rem 0.75rem;
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 0.5rem;
}

.na-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bs-highlight-color);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.na-sort-option:active {
  background: var(--bs-secondary-bg);
}

.na-sort-option.active {
  color: var(--bs-primary);
}

.na-sort-option.active::after {
  content: '✓';
  color: var(--bs-primary);
  font-weight: 900;
}

.na-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  display: none;
}

.na-drawer-overlay.show {
  display: block;
}

/* ─── RESULTS COUNT ─── */

.na-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem 0.2rem;
}

.na-results-count {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: var(--bs-secondary-color);
}

/* ─── 2-COLUMN CARD GRID ─── */

.na-products-section {
  padding: 0.5rem 0 5rem;
}

.na-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0 0.65rem;
}

/* ─── CARD ─── */

.na-card {
  background: var(--bs-light-bg-subtle);
  border-radius: var(--na-radius);
  overflow: hidden;
  box-shadow: var(--na-card-shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s;
}

.na-card:active {
  transform: scale(0.97);
}

/* Image */

.na-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bs-secondary-bg);
  border-radius: 10px;
}

.na-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Badges */

.na-new-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  z-index: 3;
  opacity: 0;
}

.na-custom-badge {
  position: absolute;
  bottom: 7px;
  right: 7px;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  z-index: 3;
}

/* Cart button — floating on image */

.na-card-cart-float {
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 4;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s;
  display: none;
}

.na-card-cart-float:active {
  transform: scale(0.92);
}

.na-card-cart-float.in-cart {
  background: var(--bs-success);
}

/* Footer */

.na-card-footer {
  padding: 8px 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.na-card-name {
  font-family: 'Anta', sans-serif;
  font-size: 0.78rem;
  color: var(--bs-highlight-color);
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.na-card-price {
  font-family: 'Anta', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--bs-primary);
  text-align: right;
}

/* ─── LOADING / EMPTY ─── */

.na-loading, .na-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--bs-secondary-color);
  font-family: 'Lato', sans-serif;
}

.na-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bs-border-color);
  border-top-color: var(--bs-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 0.75rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── FADE IN ─── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.na-card.visible {
  animation: fadeUp 0.38s ease both;
}

/* ─── STICKY BOTTOM CTA ─── */

.na-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 10px 10px;
  background: var(--bs-body-bg);
  border-top: 1px solid var(--bs-border-color);
  display: flex;
  gap: 0.6rem;
  z-index: 200;
  justify-content: space-between;
}

.na-cta-shop-btn {
  flex: 1;
  height: 46px;
  max-width: 320px;
  border-radius: 12px;
  border: none;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s;
}

.na-cta-shop-btn:active {
  opacity: 0.85;
}

.na-cta-wishlist-btn {
  height: 46px;
  width: 46px;
  border-radius: 12px;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-secondary-color);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ─── SENTINEL ─── */

#naScrollSentinel {
  height: 1px;
}

/* ─── SKELETON CARDS ─── */

.na-skeleton {
  background: var(--bs-light-bg-subtle);
  border-radius: var(--na-radius);
  overflow: hidden;
}

.na-skeleton-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, var(--bs-secondary-bg) 25%, var(--bs-border-color) 50%, var(--bs-secondary-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 10px;
}

.na-skeleton-text {
  padding: 8px;
}

.na-skeleton-line {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bs-secondary-bg) 25%, var(--bs-border-color) 50%, var(--bs-secondary-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  margin-bottom: 6px;
}

.na-skeleton-line.short {
  width: 55%;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

/* Desktop Arrivals */

.nad-hero {
  background: radial-gradient(circle at 30% 50%, var(--bs-primary) 0%, var(--bs-secondary) 100%);
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.nad-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bs-body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.nad-hero-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fbce92;
  margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.12);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.nad-hero h1 {
  font-family: 'Anta', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.nad-hero h1 span {
  color: #d5b07f;
}

.nad-hero p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.nad-hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nad-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nad-hero-badge i {
  font-size: 0.75rem;
  color: #fbce92;
}

/* ─── STATS BAR ─── */

.nad-stats-bar {
  background: var(--bs-body-bg);
  padding: 1.25rem 0 0;
}

.nad-stats-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nad-stat {
  text-align: center;
}

.nad-stat-num {
  font-family: 'Anta', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bs-primary);
  display: block;
}

.nad-stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: var(--bs-secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── FILTERS ─── */

.nad-filters-wrap {
  padding: 1.5rem 0 0.5rem;
  background: var(--bs-body-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--bs-border-color);
}

.nad-filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nad-filter-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bs-secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.nad-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
}

.nad-pill {
  font-family: 'Lato', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-body-color);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nad-pill:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.nad-pill.active {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.nad-sort-select {
  margin-left: auto;
  font-family: 'Lato', sans-serif;
  font-size: 0.84rem;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  cursor: pointer;
  outline: none;
}

.nad-results-count {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: var(--bs-secondary-color);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── GRID ─── */

.nad-products-section {
  padding: 2rem 0 4rem;
  background: var(--bs-body-bg);
}

.nad-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Desktop: 4 columns */

.nad-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ─── PRODUCT CARD ─── */

.nad-card {
  background: var(--bs-light-bg-subtle);
  border-radius: var(--na-radius);
  overflow: hidden;
  box-shadow: var(--na-card-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.nad-card:hover {
  box-shadow: var(--na-card-shadow-hover);
  transform: translateY(-4px);
}

/* Image area */

.nad-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bs-secondary-bg);
  border-radius: 10px;
}

.nad-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.nad-card:hover .na-card-img {
  transform: scale(1.08);
}

/* New badge */

.nad-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 3;
  display: none;
}

/* Custom badge */

.nad-custom-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Quick-view overlay */

.nad-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.80);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nad-card:hover .na-card-overlay {
  opacity: 1;
  pointer-events: all;
}

.nad-overlay-actions {
  width: 100%;
  padding: 14px;
  display: flex;
  gap: 8px;
}

.nad-overlay-btn {
  flex: 1;
  height: 38px;
  border-radius: 10px;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}

.nad-overlay-btn:hover {
  transform: scale(1.03);
}

.nad-overlay-btn-primary {
  background: var(--bs-primary);
  color: #fff;
}

.nad-overlay-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3) !important;
  flex: 0 0 38px;
  padding: 0;
}

.nad-overlay-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  padding: 0 14px;
  text-align: left;
  line-height: 1.4;
  max-height: 54px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.nad-overlay-name {
  font-family: 'Anta', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  padding: 12px 14px 4px;
  text-align: left;
}

/* Card footer */

.nad-card-footer {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nad-card-name {
  font-family: 'Anta', sans-serif;
  font-size: 0.85rem;
  color: var(--bs-highlight-color);
  text-transform: capitalize;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
}

.nad-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.nad-card-price {
  font-family: 'Anta', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--bs-primary);
}

.nad-card-cart-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.85rem;
}

.nad-card-cart-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb), 0.4);
}

.nad-card-cart-btn.in-cart {
  background: var(--bs-success);
}

/* ─── EMPTY / LOADING ─── */

.nad-loading, .na-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--bs-secondary-color);
  font-family: 'Lato', sans-serif;
}

.nad-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--bs-border-color);
  border-top-color: var(--bs-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── FADE-IN ─── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nad-card.visible {
  animation: fadeUp 0.45s ease both;
}

/* ─── TRUST STRIP ─── */

.nad-trust-strip {
  background: var(--bs-secondary-bg);
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 1.25rem 0;
}

.nad-trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.nad-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
}

.nad-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d5b07f;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nad-trust-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bs-highlight-color);
}

.nad-trust-text span {
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
}

/* ─── CTA BANNER ─── */

.nad-cta-banner {
  background: radial-gradient(circle at 70% 50%, var(--bs-primary) 0%, var(--bs-secondary) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.nad-cta-banner h2 {
  font-family: 'Anta', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.nad-cta-banner p {
  font-family: 'Lato', sans-serif;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.nad-cta-btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--bs-primary) !important;
  background: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nad-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ─── LOAD MORE ─── */

.nad-load-more-wrap {
  text-align: center;
  padding: 2rem 0 1rem;
}

.nad-load-more-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  background: transparent;
  padding: 10px 32px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.nad-load-more-btn:hover {
  background: var(--bs-primary);
  color: #fff;
}

/* ─── SENTINEL ─── */

#naScrollSentinel {
  height: 1px;
}

/* ─── RESPONSIVE: force desktop, min 900px ─── */

@media (max-width: 1100px) {
  .nad-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .nad-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .nad-hero h1 {
    font-size: 2.2rem;
  }
}

