/* ============================================================
   NOON.COM ECOMMERCE DESIGN SYSTEM FOR WEWOW EGY (wewoweg.com)
   Precision Refined: Red Accent Header, Zero Horizontal Deviation,
   Symmetric Responsive Controls & Clean Mobile Typography
   ============================================================ */

:root {
  /* Noon Brand Palette */
  --noon-yellow: #feee00;
  --noon-yellow-hover: #edd900;
  --noon-yellow-light: #fffde6;
  --noon-red: #d62828;
  --noon-red-hover: #b71c1c;
  --noon-black: #1e2022;
  --noon-charcoal: #2a2b2e;
  --noon-dark-text: #334155;
  --noon-muted: #64748b;
  --noon-light-gray: #f8fafc;
  --noon-border: #e2e8f0;
  --noon-border-dark: #cbd5e1;
  --noon-white: #ffffff;
  --noon-deal-red: #dc2626;
  --noon-deal-bg: #fee2e2;
  --noon-blue: #2563eb;
  --noon-star-gold: #f59e0b;

  /* Typography */
  --font-ar: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout & Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;
  --container-width: 1400px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Base Styles & Zero Horizontal Overflow Guarantee */
html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-ar);
  background-color: var(--noon-light-gray);
  color: var(--noon-dark-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html[dir="ltr"] body {
  font-family: var(--font-en);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ============================================================
   1. NOON TOP ANNOUNCEMENT BAR (RED THEME ACCENT)
   ============================================================ */
.noon-top-announcement {
  background: #00a651;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 0;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.noon-top-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.noon-top-announcement .announcement-badge {
  background: #ffffff;
  color: #000;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  margin-inline-end: 8px;
  display: inline-block;
}

.noon-top-announcement .support-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.noon-top-announcement .support-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

/* ============================================================
   2. NOON MASTER MAIN HEADER (YELLOW WITH RED ACCENTS)
   ============================================================ */
.noon-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.noon-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
}

/* Red Logo Pill */
.noon-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.noon-logo-pill {
  background: var(--noon-red);
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  padding: 5px 14px;
  border-radius: var(--radius-md);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(214, 40, 40, 0.35);
}

.noon-logo-pill span.egy-badge {
  background: #ffffff;
  color: #000;
  font-size: 10.5px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 3px;
}

/* Deliver to location */
.noon-delivery-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--noon-charcoal);
  background: rgba(255, 255, 255, 0.5);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.noon-delivery-location:hover {
  background: rgba(255, 255, 255, 0.85);
}

.noon-delivery-location i {
  color: var(--noon-red);
  font-size: 13px;
}

.noon-delivery-location strong {
  font-weight: 800;
  color: #000;
}

/* Search Bar */
.noon-search-wrapper {
  flex: 1;
  max-width: 720px;
  position: relative;
}

.noon-search-bar {
  display: flex;
  align-items: center;
  background: var(--noon-white);
  border-radius: var(--radius-md);
  padding: 3px 12px;
  border: 1.5px solid transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.noon-search-bar:focus-within {
  border-color: var(--noon-red);
  box-shadow: 0 2px 8px rgba(214, 40, 40, 0.18);
}

.noon-search-bar i.search-icon {
  color: var(--noon-muted);
  font-size: 16px;
  margin-inline-end: 10px;
}

.noon-search-bar input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--noon-black);
  padding: 8px 0;
  background: transparent;
}

.noon-search-bar input::placeholder {
  color: var(--noon-muted);
  font-size: 13px;
}

/* Header Actions */
.noon-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.noon-action-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--noon-charcoal);
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
  padding: 4px 0;
  text-decoration: none;
}

.noon-action-item:hover {
  opacity: 0.8;
}

.noon-action-item i {
  font-size: 18px;
}

.noon-badge-count {
  position: absolute;
  top: -5px;
  left: -8px;
  background: var(--noon-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

html[dir="rtl"] .noon-badge-count {
  left: auto;
  right: -8px;
}

.noon-lang-btn {
  font-size: 12.5px;
  font-weight: 800;
  border: 1.5px solid var(--noon-red);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--noon-red);
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.noon-lang-btn:hover {
  background: var(--noon-red);
  color: #fff;
}

/* ============================================================
   3. NOON CATEGORY NAVIGATION RIBBON
   ============================================================ */
.noon-category-ribbon {
  background: var(--noon-white);
  border-bottom: 1px solid var(--noon-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  width: 100%;
}

.noon-category-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}

.noon-category-nav::-webkit-scrollbar {
  display: none;
}

.noon-all-cats-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 900;
  color: var(--noon-black);
  padding: 10px 14px;
  border-inline-end: 1px solid var(--noon-border);
  white-space: nowrap;
  flex-shrink: 0;
}

.noon-cat-nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--noon-charcoal);
  white-space: nowrap;
  padding: 10px 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.noon-cat-nav-link:hover,
.noon-cat-nav-link.active {
  color: var(--noon-red);
  border-bottom-color: var(--noon-red);
}

.noon-cat-nav-link.highlight-deal {
  color: var(--noon-deal-red);
  font-weight: 900;
}

.noon-cat-nav-link.highlight-deal:hover {
  border-bottom-color: var(--noon-deal-red);
}

/* ============================================================
   4. NOON CATEGORY BUBBLES
   ============================================================ */
.noon-category-bubbles-section {
  padding: 16px 0 10px;
  background: var(--noon-white);
  border-bottom: 1px solid var(--noon-border);
  width: 100%;
}

.noon-bubbles-scroller {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scrollbar-width: none;
}

.noon-bubbles-scroller::-webkit-scrollbar {
  display: none;
}

.noon-bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
}

.noon-bubble-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--noon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.noon-bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.noon-bubble-item:hover .noon-bubble-avatar,
.noon-bubble-item.active .noon-bubble-avatar {
  transform: scale(1.08);
  border-color: var(--noon-red);
  box-shadow: 0 4px 12px rgba(214, 40, 40, 0.25);
}

.noon-bubble-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--noon-charcoal);
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   5. HERO PROMOTIONAL BANNER & SLIDER
   ============================================================ */
.noon-hero-section {
  padding: 16px 0;
  width: 100%;
}

.noon-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  width: 100%;
}

.noon-slider-card {
  background: var(--noon-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--noon-border);
  width: 100%;
}

.noon-slides-track {
  display: flex;
  direction: ltr;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
}

.noon-slide-item {
  min-width: 100%;
  flex: 0 0 100%;
  position: relative;
  height: 380px;
  background: #111;
  overflow: hidden;
}

.noon-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.noon-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 44px;
  color: #fff;
  z-index: 2;
}

html[dir="rtl"] .noon-slide-overlay {
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.noon-slide-badge {
  background: var(--noon-red);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.noon-slide-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #ffffff;
}

.noon-slide-subtitle {
  font-size: 14.5px;
  color: #e2e8f0;
  margin-bottom: 16px;
  max-width: 480px;
}

.noon-slide-discount-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.noon-slide-discount-box .upto-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.noon-slide-discount-box .discount-val {
  font-size: 36px;
  font-weight: 900;
  color: var(--noon-yellow);
}

.noon-slide-cta-btn {
  background: #ffffff;
  color: #000;
  font-weight: 900;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(254, 238, 0, 0.3);
  text-decoration: none;
}

.noon-slide-cta-btn:hover {
  background: var(--noon-yellow-hover);
  transform: translateY(-2px);
}

/* Slider Controls */
.noon-slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--noon-white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--noon-black);
  z-index: 5;
  transition: all 0.2s;
}

.noon-slider-nav-btn:hover {
  background: #ffffff;
}

.noon-slider-nav-btn.prev {
  left: 14px;
}

.noon-slider-nav-btn.next {
  right: 14px;
}

.noon-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.noon-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.25s;
}

.noon-slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #ffffff;
}

/* Side Promos (Noon side stack) */
.noon-side-promos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.noon-side-banner {
  flex: 1;
  background: var(--noon-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--noon-border);
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.noon-side-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.noon-side-banner.promo-fast-charge {
  background: linear-gradient(135deg, #1e2022 0%, #2d3748 100%);
  color: #fff;
}

.noon-side-banner.promo-power-bank {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

.noon-side-banner-content h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}

.noon-side-banner-content p {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.noon-side-banner-badge {
  background: var(--noon-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* ============================================================
   6. 4-PILLAR TRUST STRIP
   ============================================================ */
.noon-trust-ribbon {
  background: var(--noon-white);
  border: 1px solid var(--noon-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 16px 0 24px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.noon-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.noon-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 8px;
}

.noon-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--noon-yellow-light);
  color: var(--noon-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid #f9ea8f;
}

.noon-trust-text strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--noon-black);
  display: block;
}

.noon-trust-text span {
  font-size: 11.5px;
  color: var(--noon-muted);
}

/* ============================================================
   7. SECTION HEADERS
   ============================================================ */
.noon-section-box {
  margin-bottom: 30px;
  width: 100%;
}

.noon-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--noon-border);
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.noon-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.noon-section-title-wrap h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--noon-black);
}

.noon-deal-timer-pill {
  background: var(--noon-deal-bg);
  color: var(--noon-deal-red);
  border: 1px solid #fca5a5;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.noon-view-all-link {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--noon-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
  text-decoration: none;
}

.noon-view-all-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ============================================================
   8. NOON PRODUCT CARD (CLEAN WITHOUT EXPRESS BADGE)
   ============================================================ */
.noon-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  width: 100%;
}

.noon-product-card {
  background: var(--noon-white);
  border: 1px solid var(--noon-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.noon-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

/* Product Wishlist Icon Button */
.noon-wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  background: var(--noon-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--noon-muted);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  border: 1px solid var(--noon-border);
  z-index: 3;
  transition: all 0.2s;
}

html[dir="rtl"] .noon-wishlist-btn {
  left: auto;
  right: 10px;
}

.noon-wishlist-btn:hover,
.noon-wishlist-btn.active {
  color: var(--noon-deal-red);
  transform: scale(1.1);
}

/* Product Discount Tag */
.noon-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--noon-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  z-index: 3;
}

html[dir="rtl"] .noon-discount-badge {
  right: auto;
  left: 10px;
}

/* Product Image */
.noon-product-pic {
  width: 100%;
  height: 200px;
  background: #ffffff;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--noon-light-gray);
  text-decoration: none;
}

.noon-product-pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.noon-product-card:hover .noon-product-pic img {
  transform: scale(1.04);
}

/* Product Details Body */
.noon-product-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.noon-product-brand {
  font-size: 11px;
  font-weight: 800;
  color: var(--noon-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.noon-product-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--noon-black);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
  text-decoration: none;
}

/* Rating */
.noon-product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  margin-bottom: 8px;
}

.noon-rating-pill {
  background: #fef3c7;
  color: #b45309;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.noon-rating-count {
  color: var(--noon-muted);
}

/* Hide wewow express completely */
.noon-express-badge {
  display: none !important;
}

/* Price Box */
.noon-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
  margin-top: auto;
}

.noon-current-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--noon-black);
}

.noon-currency {
  font-size: 12px;
  font-weight: 700;
  margin-inline-end: 2px;
}

.noon-old-price {
  font-size: 12px;
  color: var(--noon-muted);
  text-decoration: line-through;
}

.noon-save-percent {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--noon-red);
}

/* Quick Add Button */
.noon-add-cart-btn {
  background: #ffffff;
  color: var(--noon-black);
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 4px;
  transition: all 0.2s;
  text-decoration: none;
}

.noon-add-cart-btn:hover {
  background: var(--noon-yellow-hover);
}

/* ============================================================
   9. CATALOG TOOLBAR & FILTERS (PERFECTLY ALIGNED GRID)
   ============================================================ */
.noon-catalog-toolbar {
  background: var(--noon-white);
  border: 1px solid var(--noon-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
}

.noon-toolbar-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.noon-filter-select {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 800;
  color: #1e293b;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 15px;
  padding-left: 36px;
  transition: all 0.2s;
}

html[dir="ltr"] .noon-filter-select {
  background-position: right 12px center;
  padding-left: 14px;
  padding-right: 36px;
}

.noon-filter-select:focus {
  border-color: var(--noon-red);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.noon-catalog-count {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--noon-charcoal);
}

/* Pagination */
.noon-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 36px 0 20px;
}

.noon-pagination button {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: var(--noon-white);
  border: 1px solid var(--noon-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  color: var(--noon-black);
  transition: all 0.2s;
}

.noon-pagination button:hover:not(:disabled) {
  border-color: var(--noon-red);
  background: var(--noon-yellow-light);
}

.noon-pagination button.active {
  background: var(--noon-red);
  border-color: var(--noon-red);
  color: #ffffff;
}

.noon-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============================================================
   10. NOON MULTI-COLUMN FOOTER
   ============================================================ */
.noon-footer {
  background: var(--noon-white);
  border-top: 1px solid var(--noon-border);
  margin-top: 40px;
  padding-top: 36px;
  width: 100%;
}

.noon-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 36px;
  width: 100%;
}

.noon-footer-col h5 {
  font-size: 15px;
  font-weight: 900;
  color: var(--noon-black);
  margin-bottom: 16px;
}

.noon-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.noon-footer-links a {
  font-size: 13.5px;
  color: var(--noon-dark-text);
  transition: color 0.2s;
  text-decoration: none;
}

.noon-footer-links a:hover {
  color: var(--noon-red);
  text-decoration: underline;
}

.noon-footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.noon-footer-hotline {
  background: var(--noon-light-gray);
  border: 1px solid var(--noon-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  text-decoration: none;
}

.noon-footer-hotline i {
  font-size: 18px;
  color: var(--noon-red);
}

.noon-payment-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.noon-payment-chip {
  background: var(--noon-light-gray);
  border: 1px solid var(--noon-border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  color: var(--noon-charcoal);
}

.noon-footer-bottom {
  background: var(--noon-light-gray);
  border-top: 1px solid var(--noon-border);
  padding: 16px 0;
  font-size: 12.5px;
  color: var(--noon-muted);
  width: 100%;
}

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

/* ============================================================
   11. SURGICAL MOBILE RESPONSIVE TUNING (NO DEVIATION / NO OVERFLOW)
   ============================================================ */
@media (max-width: 1024px) {
  .noon-hero-grid {
    grid-template-columns: 1fr;
  }
  .noon-side-promos {
    display: none; /* Hide side stacked promos on tablet/mobile to prevent horizontal deviation */
  }
  .noon-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .noon-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Top Announcement Bar */
  .noon-top-announcement {
    padding: 6px 0;
    font-size: 11.5px;
  }
  .noon-top-announcement .container {
    justify-content: center;
    text-align: center;
  }
  .noon-top-announcement .support-contacts {
    display: none; /* Hide contacts from top bar on mobile to keep 1 clean row */
  }

  /* Master Header */
  .noon-header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    padding: 8px 12px;
  }

  .noon-brand-logo {
    order: 1;
  }
  .noon-logo-pill {
    font-size: 17px;
    padding: 4px 10px;
  }

  .noon-delivery-location {
    display: none;
  }

  .noon-header-actions {
    order: 2;
    gap: 10px;
  }
  .noon-action-item {
    font-size: 12px;
  }
  .noon-action-item span {
    display: none; /* Icon-only on mobile to prevent overflow */
  }
  .noon-action-item i {
    font-size: 20px;
  }

  .noon-search-wrapper {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 2px;
  }
  .noon-search-bar input {
    padding: 6px 0;
    font-size: 13px;
  }

  /* Category Nav Ribbon */
  .noon-all-cats-trigger {
    padding: 8px 10px;
    font-size: 12px;
  }
  .noon-cat-nav-link {
    font-size: 12px;
    padding: 8px 2px;
  }

  /* Slider */
  .noon-slide-item {
    height: 210px;
  }
  .noon-slide-overlay {
    padding: 16px 18px;
  }
  .noon-slide-title {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .noon-slide-subtitle {
    display: none;
  }
  .noon-slide-discount-box {
    margin-bottom: 10px;
  }
  .noon-slide-discount-box .discount-val {
    font-size: 22px;
  }
  .noon-slide-cta-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  /* Filters Dropdown (Image 1 fix: Single column full width) */
  .noon-toolbar-filters {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }
  .noon-filter-select {
    width: 100%;
    display: block;
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Products Grid */
  .noon-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .noon-product-pic {
    height: 150px;
    padding: 8px;
  }
  .noon-product-body {
    padding: 8px 10px 10px;
  }
  .noon-product-title {
    font-size: 12.5px;
    height: 34px;
  }
  .noon-current-price {
    font-size: 15px;
  }
  .noon-add-cart-btn {
    padding: 6px 8px;
    font-size: 12px;
  }

  /* Trust Ribbon */
  .noon-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Footer */
  .noon-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ============================================================
   MOBILE RESPONSIVE & NOON NAVIGATION SYSTEM (CRITICAL IN-PLACE FIX)
   ============================================================ */

/* Global Reset for Lists */
ul, ol {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

/* Master Header Layout */
.noon-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.noon-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}

.noon-header-main {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}

.noon-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  color: #1e2022;
  flex-shrink: 0;
}

.noon-logo .logo-wewow {
  color: #1e2022;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.noon-logo .logo-egy {
  background: #d62828;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.noon-search-wrap {
  flex: 1;
  max-width: 700px;
  margin: 0 auto;
}

.noon-search-form {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
  width: 100%;
}

.noon-search-form:focus-within {
  border-color: #d62828;
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.15);
}

.noon-search-form .search-icon {
  padding: 0 12px;
  color: #888;
  font-size: 14px;
}

.noon-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  width: 100%;
}

.noon-search-btn {
  background: #d62828;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  flex-shrink: 0;
}

.noon-search-btn:hover {
  background: #b71c1c;
}

.noon-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.noon-action-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1e2022;
  font-weight: 800;
  font-size: 13.5px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}

.noon-action-item:hover {
  background: rgba(0,0,0,0.06);
}

/* Horizontal Scroll Navigation Bar */
.noon-nav {
  width: 100%;
  margin-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 6px;
}

.noon-nav-list {
  display: flex !important;
  align-items: center;
  gap: 8px;
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 2px 0 4px 0 !important;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.noon-nav-list::-webkit-scrollbar {
  display: none;
}

.noon-nav-list li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
  display: inline-flex;
}

.noon-nav-list .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #1e2022;
  text-decoration: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.noon-nav-list .nav-link:hover {
  background: #ffffff;
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.noon-nav-list .nav-link.active {
  background: #1e2022;
  color: #ffffff;
  border-color: #1e2022;
}

.noon-nav-list .nav-link.highlight-red {
  background: #d62828;
  color: #ffffff;
  border-color: #d62828;
}

/* Mobile Responsive Header (< 768px) */
@media (max-width: 768px) {
  .noon-header .container {
    padding: 8px 12px;
  }

  .noon-header-main {
    flex-wrap: wrap;
    gap: 8px;
  }

  .noon-logo {
    font-size: 20px;
  }

  .noon-header-actions {
    order: 2;
    gap: 8px;
  }

  .noon-action-item {
    font-size: 12px;
    padding: 4px 8px;
  }

  .noon-action-item .action-label {
    display: none;
  }

  .noon-search-wrap {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
  }

  .noon-search-input {
    font-size: 13px;
    padding: 8px 0;
  }

  .noon-search-btn {
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .noon-nav {
    order: 4;
    padding-top: 6px;
    margin-top: 4px;
  }

  .noon-nav-list {
    gap: 6px;
    padding: 2px 4px 4px 4px !important;
  }

  .noon-nav-list .nav-link {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Mobile PDP & Breadcrumb Full Fix */
.noon-breadcrumb {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  color: var(--noon-muted, #64748b) !important;
  margin-bottom: 14px !important;
  flex-wrap: nowrap !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.noon-breadcrumb a {
  color: var(--noon-dark-text, #334155);
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}

.noon-breadcrumb span.breadcrumb-sep {
  flex-shrink: 0;
}

.noon-breadcrumb span.breadcrumb-sku {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  font-weight: 800;
  color: #888;
}

@media (max-width: 860px) {
  .pdp-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 12px 30px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .pdp-layout {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    gap: 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .pdp-gallery {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .pdp-main-img-box {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 240px !important;
    max-height: 340px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid var(--noon-border, #e2e8f0) !important;
    border-radius: 12px !important;
  }

  .pdp-main-img-box img {
    max-width: 100% !important;
    max-height: 300px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .pdp-thumbs {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 4px 0 !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .pdp-thumb-item {
    width: 54px !important;
    height: 54px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }

  .pdp-info {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .pdp-title {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }
}


/* White Minimalist Header Refinement */
.noon-header {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04) !important;
}

.noon-header-main {
  color: #1e2022 !important;
}

.noon-search-form, .noon-search-bar {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
}

.noon-search-form:focus-within, .noon-search-bar:focus-within {
  background: #ffffff !important;
  border-color: #1e2022 !important;
}

.noon-search-input {
  color: #1e2022 !important;
}

.noon-action-item, .noon-lang-btn, .noon-delivery-location {
  color: #1e2022 !important;
}

.noon-nav {
  background: #ffffff !important;
  border-top: 1px solid #f1f5f9 !important;
}

.noon-nav-list .nav-link {
  background: #f8fafc !important;
  color: #1e2022 !important;
  border: 1px solid #e2e8f0 !important;
}

.noon-nav-list .nav-link:hover {
  background: #f1f5f9 !important;
}

.noon-nav-list .nav-link.active {
  background: #1e2022 !important;
  color: #ffffff !important;
  border-color: #1e2022 !important;
}

.noon-nav-list .nav-link.highlight-red {
  background: #d62828 !important;
  color: #ffffff !important;
  border-color: #d62828 !important;
}

@media (max-width: 768px) {
  .noon-header {
    background: #ffffff !important;
    padding: 6px 0 !important;
  }
  .noon-header .container {
    padding: 6px 12px !important;
  }
  .noon-search-wrap, .noon-search-wrapper {
    margin-top: 6px !important;
  }
}


/* Global Logo Standardization (Typography Focus) */
.wewow-brand-logo {
  font-family: sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #1e2022;
  text-decoration: none;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: baseline;
}
.wewow-brand-logo .wewow-o {
  color: #e50010;
  font-size: 1.3em;
  margin: 0 2px;
}
