/**
 * ==========================================================================
 * Noon.com UAE - Premium Storefront Theme
 * Signature Noon Yellow (#feee00), Squircle Cards, Mega-Menu & Mega-Footer
 * ==========================================================================
 */

:root {
  --noon-yellow: #feee00;
  --noon-yellow-hover: #ecd900;
  --noon-black: #000000;
  --noon-dark: #222222;
  --noon-text: #404553;
  --noon-text-muted: #7e859b;
  --noon-bg: #f7f7fa;
  --noon-card-bg: #ffffff;
  --noon-border: #e6e6e6;
  --noon-border-light: #f0f0f0;
  --noon-express-bg: #fbf000;
  --noon-express-text: #000000;
  --noon-green: #38ae04;
  --noon-link-blue: #3866df;
  --noon-radius-sm: 4px;
  --noon-radius-md: 8px;
  --noon-radius-squircle: 24px;
  --noon-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --primary: #feee00;
}

body {
  background-color: var(--noon-bg) !important;
  color: var(--noon-text);
  font-family: var(--noon-font);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   1. NOON TOP HEADER (SIGNATURE YELLOW #feee00)
   ========================================================================== */
.noon-header-top {
  background-color: var(--noon-yellow);
  height: 68px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

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

/* Brand Logo */
.noon-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.noon-brand-logo {
  font-family: var(--noon-font);
  font-size: 36px;
  font-weight: 900;
  color: var(--noon-black);
  letter-spacing: -1.5px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Delivery Location Pill */
.noon-location-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--noon-black);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.noon-location-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.noon-location-pin {
  width: 16px;
  height: 16px;
}

/* Large Search Bar */
.noon-search-form {
  flex: 1;
  max-width: 820px;
  position: relative;
}

.noon-search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  height: 42px;
  padding: 0 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.noon-search-box:focus-within {
  border-color: #000000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.noon-search-icon {
  width: 18px;
  height: 18px;
  color: #7e859b;
  margin-right: 10px;
  flex-shrink: 0;
}

.noon-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--noon-dark);
  background: transparent;
}
.noon-search-input::placeholder {
  color: #7e859b;
}

/* Right Nav Actions */
.noon-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.noon-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--noon-black);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.15s;
  cursor: pointer;
}
.noon-nav-item:hover {
  background: rgba(0, 0, 0, 0.06);
}
.noon-nav-item svg {
  width: 18px;
  height: 18px;
}

.noon-lang-btn {
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid rgba(0,0,0,0.15);
  padding-right: 14px;
  margin-right: 2px;
}

/* Cart Button with badge */
.noon-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--noon-black);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
}
.noon-cart-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
.noon-cart-badge {
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

/* ==========================================================================
   2. SUBHEADER CATEGORY BAR & MEGA MENU
   ========================================================================== */
.noon-subheader {
  background: #ffffff;
  border-bottom: 1px solid var(--noon-border);
  position: relative;
  z-index: 990;
}

.noon-subheader-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.noon-category-links {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.noon-category-links::-webkit-scrollbar {
  display: none;
}

.noon-cat-item {
  font-size: 13px;
  font-weight: 700;
  color: #404553;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.noon-cat-item:hover,
.noon-cat-item.active {
  color: #000000;
  border-bottom-color: #000000;
}

.noon-all-cats-btn {
  color: #000000;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-right: 6px;
}

/* Right Noon One Promo Pill */
.noon-one-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.noon-one-pill:hover {
  border-color: #000000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.noon-one-badge {
  background: #000;
  color: var(--noon-yellow);
  font-size: 10px;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 10px;
}

/* ==========================================================================
   MEGA MENU FLYOUT (Screenshot 2 Replication)
   ========================================================================== */
.noon-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-top: 1px solid #eeeeee;
  display: none;
  z-index: 1050;
  animation: noonFadeIn 0.2s ease-out;
}
@keyframes noonFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.noon-has-mega:hover .noon-mega-dropdown,
.noon-mega-dropdown:hover {
  display: block;
}

.noon-mega-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 24px 24px;
}

.noon-mega-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr) 280px;
  gap: 20px;
}

.noon-mega-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.noon-mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.noon-mega-col li {
  margin-bottom: 8px;
}

.noon-mega-col a {
  font-size: 12px;
  color: #666e82;
  text-decoration: none;
  transition: color 0.15s;
}
.noon-mega-col a:hover {
  color: #000000;
  font-weight: 600;
}

/* Top Brands Row */
.noon-mega-brands-section {
  border-top: 1px solid #eeeeee;
  margin-top: 24px;
  padding-top: 20px;
}

.noon-mega-brands-title {
  font-size: 11px;
  font-weight: 800;
  color: #7e859b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

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

.noon-brand-pill {
  background: #ffffff;
  border: 1px solid #e2e5ec;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  transition: border-color 0.2s, transform 0.15s;
}
.noon-brand-pill:hover {
  border-color: #000000;
  transform: translateY(-2px);
}

/* Right Editorial Banner */
.noon-mega-banner {
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 280px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.noon-mega-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.noon-mega-banner-overlay {
  position: relative;
  z-index: 2;
  background: #000000;
  color: #ffffff;
  padding: 14px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
}

/* ==========================================================================
   3. NOON SQUIRCLE SHOWCASE SECTIONS (Screenshot 1)
   ========================================================================== */
.noon-showcase-section {
  max-width: 1440px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.noon-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.noon-showcase-title {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  letter-spacing: -0.3px;
}

.noon-view-all-btn {
  background: #ffffff;
  border: 1.5px solid #d2d5dc;
  border-radius: 4px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 800;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background-color 0.2s;
  cursor: pointer;
}
.noon-view-all-btn:hover {
  border-color: #000000;
  background-color: #f7f7fa;
}

/* Horizontal Squircle Row */
.noon-squircle-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .noon-squircle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .noon-squircle-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .noon-squircle-grid::-webkit-scrollbar {
    display: none;
  }
  .noon-squircle-card {
    min-width: 130px;
    flex-shrink: 0;
  }
}

.noon-squircle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.noon-squircle-img-box {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--noon-radius-squircle);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noon-squircle-card:hover .noon-squircle-img-box {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.15);
}

.noon-squircle-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.noon-squircle-card:hover .noon-squircle-img-box img {
  transform: scale(1.04);
}

.noon-squircle-label {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-top: 10px;
  text-align: center;
  line-height: 1.3;
}

/* ==========================================================================
   4. NOON PRODUCT CARDS (Daily Discover / Deals)
   ========================================================================== */
.noon-product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 1200px) {
  .noon-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .noon-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.noon-product-card {
  background: #ffffff;
  border: 1px solid var(--noon-border-light);
  border-radius: var(--noon-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.noon-product-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #dcdcdc;
  transform: translateY(-2px);
}

.noon-prod-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noon-prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.3s ease;
}
.noon-product-card:hover .noon-prod-img-box img {
  transform: scale(1.03);
}

/* Wishlist heart */
.noon-wish-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: #7e859b;
  transition: color 0.15s, transform 0.15s;
}
.noon-wish-heart:hover {
  color: #e02020;
  transform: scale(1.1);
}
.noon-wish-heart.active {
  color: #e02020;
}
.noon-wish-heart.active svg {
  fill: #e02020;
  stroke: #e02020;
}

.noon-wishlist-badge {
  background: #e02020;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

.noon-move-cart-btn {
  background: #feee00;
  color: #000000;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: auto;
  transition: background-color 0.15s, transform 0.15s;
}
.noon-move-cart-btn:hover {
  background: #ecd900;
  transform: translateY(-1px);
}

.noon-prod-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.noon-prod-title {
  font-size: 13px;
  font-weight: 500;
  color: #404553;
  line-height: 1.4;
  height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}
.noon-product-card:hover .noon-prod-title {
  color: #000000;
}

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

.noon-currency {
  font-size: 11px;
  font-weight: 700;
  color: #000000;
}

.noon-price-main {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
}

.noon-price-old {
  font-size: 12px;
  color: #9e9e9e;
  text-decoration: line-through;
}

.noon-disc-pill {
  font-size: 11px;
  font-weight: 800;
  color: var(--noon-green);
  background: #eaf8e6;
  padding: 1px 5px;
  border-radius: 2px;
}

/* Express badge */
.noon-express-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--noon-express-bg);
  color: var(--noon-express-text);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.noon-express-dot {
  width: 5px;
  height: 5px;
  background: var(--noon-green);
  border-radius: 50%;
}

/* Rating */
.noon-prod-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #7e859b;
  margin-top: auto;
}
.noon-rating-badge {
  background: #eaf8e6;
  color: var(--noon-green);
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* ==========================================================================
   5. NOON MEGA FOOTER (Screenshot 3)
   ========================================================================== */
.noon-footer-wrapper {
  background: #ffffff;
  border-top: 1px solid var(--noon-border);
  margin-top: 60px;
  color: #404553;
}

/* Customer Support Bar */
.noon-support-bar {
  border-bottom: 1px solid var(--noon-border);
  padding: 18px 24px;
}

.noon-support-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #404553;
}

.noon-support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}
.noon-support-link:hover {
  text-decoration: underline;
}

/* 9 Columns Directory */
.noon-footer-directory {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px 24px 30px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .noon-footer-directory {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 768px) {
  .noon-footer-directory {
    grid-template-columns: repeat(2, 1fr);
  }
}

.noon-foot-col h5 {
  font-size: 13px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 14px;
  white-space: nowrap;
}

.noon-foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.noon-foot-col li {
  margin-bottom: 8px;
}

.noon-foot-col a {
  font-size: 12px;
  color: #666e82;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
  display: block;
}
.noon-foot-col a:hover {
  color: #000000;
}

/* App Download & Social Icons Bar */
.noon-footer-connect-bar {
  border-top: 1px solid var(--noon-border);
  border-bottom: 1px solid var(--noon-border);
  padding: 24px;
}

.noon-connect-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.noon-connect-block h6 {
  font-size: 11px;
  font-weight: 800;
  color: #7e859b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 12px;
}

.noon-app-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.noon-app-badge {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  transition: opacity 0.2s;
}
.noon-app-badge:hover {
  opacity: 0.85;
}

/* Yellow Circular Social Icons */
.noon-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.noon-social-circle {
  width: 38px;
  height: 38px;
  background-color: var(--noon-yellow);
  color: #000000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.2s, background-color 0.2s;
}
.noon-social-circle:hover {
  transform: translateY(-2px);
  background-color: var(--noon-yellow-hover);
}
.noon-social-circle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Bottom Legal & Payment Strip */
.noon-footer-legal-bar {
  background: #ffffff;
  padding: 20px 24px;
  font-size: 12px;
  color: #7e859b;
}

.noon-legal-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.noon-payments-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.noon-pay-badge {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 800;
  color: #333333;
}
.noon-pay-badge.visa { color: #1a1f71; }
.noon-pay-badge.mastercard { color: #eb001b; }
.noon-pay-badge.tabby { background: #3cff96; color: #000; border: none; }
.noon-pay-badge.tamara { background: #ff7d54; color: #fff; border: none; }
.noon-pay-badge.amex { color: #006fcf; }

.noon-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.noon-legal-links a {
  color: #666e82;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s;
}
.noon-legal-links a:hover {
  color: #000000;
}

/* ==========================================================================
   6. POLICY PAGES & FAQ ACCORDION STYLES
   ========================================================================== */
.policy-page-container {
  max-width: 1040px;
  margin: 36px auto 60px;
  padding: 0 24px;
}

.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7e859b;
  margin-bottom: 20px;
}
.policy-breadcrumb a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.policy-breadcrumb a:hover {
  text-decoration: underline;
}

.policy-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  padding: 44px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  .policy-card {
    padding: 24px 18px;
  }
}

.policy-header {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.policy-title {
  font-size: 30px;
  font-weight: 900;
  color: #000000;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.policy-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #7e859b;
  flex-wrap: wrap;
}

.policy-badge {
  background: #feee00;
  color: #000000;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.policy-body {
  color: #404553;
  line-height: 1.75;
  font-size: 15px;
}

.policy-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: #000000;
  margin: 32px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 20px 0 8px;
}

.policy-body p {
  margin: 0 0 16px;
}

.policy-body ul, .policy-body ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.policy-body li {
  margin-bottom: 8px;
}

.policy-highlight-box {
  background: #fdfae6;
  border-left: 4px solid #feee00;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #222222;
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDION (Arabia Mart)
   ========================================================================== */
.faq-section {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 24px;
}

.faq-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.faq-main-title {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.faq-main-subtitle {
  font-size: 15px;
  color: #7e859b;
  margin: 0;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.faq-item.active {
  border-color: #000000;
}

.faq-question-btn {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  font-family: inherit;
  transition: background-color 0.15s;
}
.faq-question-btn:hover {
  background-color: #fbfbfb;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  background: #f0f0f0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  color: #000000;
  transition: transform 0.25s ease, background-color 0.2s;
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background-color: #feee00;
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  color: #555e6d;
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item.active .faq-answer-content {
  max-height: 800px;
  padding: 0 24px 20px;
  transition: max-height 0.35s ease-in-out, padding 0.25s ease;
}

/* ==========================================================================
   CONTACT PAGE STYLES (NO PHONE NUMBERS)
   ========================================================================== */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
@media (max-width: 860px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

.contact-method-card {
  background: #f9f9fb;
  border: 1px solid #ebebf0;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  background: #feee00;
  color: #000000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-method-title {
  font-size: 15px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 6px;
}

.contact-method-desc {
  font-size: 13px;
  color: #7e859b;
  margin-bottom: 12px;
}

.contact-email-link {
  font-size: 15px;
  font-weight: 800;
  color: #000000;
  text-decoration: underline;
  word-break: break-all;
}

.contact-form-box {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 30px;
}

