/* =====================================================================
   AL WAQIAH COSMETICS — Main Stylesheet
   Palette, typography and components derived from the UI/UX concept board.
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --awc-primary: #E84D8A;       /* rose pink */
  --awc-primary-dark: #d13a76;
  --awc-secondary: #D4AF37;     /* gold */
  --awc-accent: #FFE8F0;        /* light pink */
  --awc-light: #FAFAFA;
  --awc-text: #1F1F1F;
  --awc-muted: #777777;
  --awc-border: #eee0e6;
  --awc-success: #2e9e5b;
  --awc-white: #ffffff;

  --awc-font-display: "Playfair Display", Georgia, serif;
  --awc-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --awc-radius: 12px;
  --awc-radius-sm: 8px;
  --awc-radius-pill: 999px;
  --awc-shadow: 0 6px 24px rgba(232, 77, 138, 0.08);
  --awc-shadow-hover: 0 12px 34px rgba(232, 77, 138, 0.16);
  --awc-container: 1320px;
  --awc-gutter: 24px;
  --awc-transition: 0.25s ease;
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--awc-font-body);
  color: var(--awc-text);
  background: var(--awc-white);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .awc-display {
  font-family: var(--awc-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--awc-text);
  margin: 0 0 0.5em;
}

a { color: inherit; text-decoration: none; transition: color var(--awc-transition); }
a:hover { color: var(--awc-primary); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.awc-container {
  max-width: var(--awc-container);
  margin: 0 auto;
  padding: 0 var(--awc-gutter);
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--awc-primary);
  outline-offset: 2px;
}
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--awc-primary); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Buttons ---------- */
.awc-btn,
.button,
button.button,
input[type="submit"],
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--awc-font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--awc-radius-pill);
  border: none;
  cursor: pointer;
  background: var(--awc-primary);
  color: #fff;
  transition: background var(--awc-transition), transform var(--awc-transition), box-shadow var(--awc-transition);
}
.awc-btn:hover,
.button:hover,
button.button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
  background: var(--awc-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--awc-shadow-hover);
}
.awc-btn--outline {
  background: transparent;
  color: var(--awc-primary);
  border: 1.5px solid var(--awc-primary);
}
.awc-btn--outline:hover {
  background: var(--awc-primary);
  color: #fff;
}
.awc-btn--gold { background: var(--awc-secondary); color: #1f1f1f; }
.awc-btn--gold:hover { background: #c39d28; color: #1f1f1f; }

/* ---------- Top Bar ---------- */
.awc-topbar {
  background: var(--awc-primary);
  color: #fff;
  font-size: 13px;
}
.awc-topbar .awc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}
.awc-topbar__list {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.awc-topbar__list li { display: flex; align-items: center; gap: 7px; opacity: 0.95; }
.awc-topbar__contact { display: flex; align-items: center; gap: 22px; white-space: nowrap; }
.awc-topbar__contact a { color: #fff; font-weight: 600; }
.awc-topbar svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.awc-header { background: #fff; border-bottom: 1px solid var(--awc-border); position: relative; z-index: 40; }
.awc-header__main {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
}
.awc-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.awc-logo img { max-height: 54px; width: auto; }
.awc-logo__mark {
  font-family: var(--awc-font-display);
  color: var(--awc-secondary);
  font-size: 40px;
  line-height: 1;
}
.awc-logo__text { display: flex; flex-direction: column; line-height: 1; }
.awc-logo__text b {
  font-family: var(--awc-font-display);
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--awc-text);
}
.awc-logo__text span {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--awc-muted);
  margin-top: 3px;
}

/* Search */
.awc-search { flex: 1; }
.awc-search form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--awc-border);
  border-radius: var(--awc-radius-pill);
  overflow: hidden;
  background: #fff;
  transition: border-color var(--awc-transition);
}
.awc-search form:focus-within { border-color: var(--awc-primary); }
.awc-search input[type="search"],
.awc-search input[type="text"] {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-family: var(--awc-font-body);
  background: transparent;
  color: var(--awc-text);
}
.awc-search input:focus { outline: none; }
.awc-search__cat {
  border: none;
  border-left: 1px solid var(--awc-border);
  background: transparent;
  padding: 0 14px;
  font-size: 13px;
  color: var(--awc-muted);
  cursor: pointer;
  max-width: 150px;
}
.awc-search__submit {
  background: var(--awc-primary);
  color: #fff;
  border: none;
  padding: 0 20px;
  align-self: stretch;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
}
.awc-search__submit:hover { background: var(--awc-primary-dark); }
.awc-search__results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius-sm);
  box-shadow: var(--awc-shadow);
  z-index: 60;
  max-height: 420px;
  overflow-y: auto;
  display: none;
}
.awc-search { position: relative; }
.awc-search__results.is-open { display: block; }
.awc-search__result {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--awc-light);
}
.awc-search__result img { width: 46px; height: 46px; object-fit: cover; border-radius: 6px; }
.awc-search__result-title { font-weight: 500; font-size: 14px; }
.awc-search__result-price { color: var(--awc-primary); font-weight: 600; font-size: 13px; }

/* Header actions */
.awc-header__actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.awc-action {
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  color: var(--awc-text);
}
.awc-action__icon { position: relative; display: flex; }
.awc-action svg { width: 26px; height: 26px; stroke: var(--awc-text); }
.awc-action__meta { display: flex; flex-direction: column; line-height: 1.25; }
.awc-action__meta small { font-size: 11px; color: var(--awc-muted); }
.awc-action__meta b { font-size: 13px; }
.awc-count {
  position: absolute;
  top: -8px; right: -9px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--awc-primary);
  color: #fff;
  border-radius: var(--awc-radius-pill);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Primary Navigation ---------- */
.awc-nav { background: #fff; border-bottom: 1px solid var(--awc-border); position: relative; z-index: 30; }
.awc-nav .awc-container { display: flex; align-items: stretch; gap: 8px; }
.awc-nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--awc-primary);
  color: #fff;
  padding: 0 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--awc-radius-sm) var(--awc-radius-sm) 0 0;
  white-space: nowrap;
  cursor: pointer;
}
.awc-nav__cta svg { width: 18px; height: 18px; }
.awc-menu { display: flex; align-items: stretch; flex-wrap: wrap; }
.awc-menu > li { position: relative; }
.awc-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--awc-text);
}
.awc-menu > li > a:hover { color: var(--awc-primary); }
.awc-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}
.awc-menu__badge {
  background: var(--awc-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
/* Dropdown / mega menu */
.awc-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--awc-border);
  border-radius: 0 0 var(--awc-radius-sm) var(--awc-radius-sm);
  box-shadow: var(--awc-shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--awc-transition);
  z-index: 50;
}
.awc-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.awc-menu .sub-menu a { display: block; padding: 9px 20px; font-size: 14px; }
.awc-menu .sub-menu a:hover { background: var(--awc-accent); color: var(--awc-primary); }

/* ---------- Section headings ---------- */
.awc-section { padding: 46px 0; }
.awc-section--tight { padding: 30px 0; }
.awc-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
}
.awc-section__title { font-size: 28px; margin: 0; }
.awc-section__title small {
  display: block;
  font-family: var(--awc-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--awc-muted);
  margin-top: 4px;
}
.awc-viewall { font-weight: 600; font-size: 14px; color: var(--awc-primary); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Hero ---------- */
.awc-hero {
  background: linear-gradient(120deg, #ffeef4 0%, #fde3ee 55%, #fbd6e6 100%);
  border-radius: var(--awc-radius);
  overflow: hidden;
  margin: 22px 0;
}
.awc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  min-height: 430px;
  gap: 30px;
}
.awc-hero__content { padding: 40px 46px; }
.awc-hero__eyebrow {
  color: var(--awc-primary);
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.awc-hero__title { font-size: 52px; line-height: 1.08; margin-bottom: 16px; }
.awc-hero__title em { font-style: normal; color: var(--awc-primary); }
.awc-hero__text { color: #6b5560; font-size: 16px; margin-bottom: 26px; max-width: 420px; }
.awc-hero__media { position: relative; align-self: stretch; }
.awc-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Hero trust badges */
.awc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 16px 46px 30px;
}
.awc-trust li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #6b5560; font-weight: 500; }
.awc-trust svg { width: 20px; height: 20px; stroke: var(--awc-primary); }

/* ---------- Category icon strip ---------- */
.awc-cats {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 12px;
  scrollbar-width: thin;
}
.awc-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 8px;
  border-radius: var(--awc-radius-sm);
  text-align: center;
  transition: background var(--awc-transition), transform var(--awc-transition);
}
.awc-cat:hover { background: var(--awc-accent); transform: translateY(-3px); }
.awc-cat__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--awc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.awc-cat__icon svg { width: 26px; height: 26px; stroke: var(--awc-primary); }
.awc-cat span { font-size: 12.5px; font-weight: 500; color: var(--awc-text); }

/* ---------- Product card ---------- */
.awc-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.awc-card,
ul.products li.product {
  position: relative;
  background: #fff;
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius);
  padding: 14px;
  transition: box-shadow var(--awc-transition), transform var(--awc-transition), border-color var(--awc-transition);
  text-align: left;
  overflow: hidden;
}
.awc-card:hover,
ul.products li.product:hover {
  box-shadow: var(--awc-shadow-hover);
  border-color: var(--awc-accent);
  transform: translateY(-4px);
}
.awc-card__media,
ul.products li.product a img {
  border-radius: var(--awc-radius-sm);
  background: var(--awc-light);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  margin-bottom: 12px;
}
.awc-badge,
span.onsale {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--awc-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--awc-radius-pill);
  z-index: 3;
  margin: 0;
  min-height: auto;
  min-width: auto;
  line-height: 1.4;
}
.awc-badge--new { background: var(--awc-success); }
.awc-badge--best { background: var(--awc-secondary); color: #1f1f1f; }
.awc-badge--hot { background: #ef4444; }

/* hover action icons */
.awc-card__actions {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--awc-transition);
  z-index: 3;
}
.awc-card:hover .awc-card__actions,
ul.products li.product:hover .awc-card__actions { opacity: 1; transform: translateX(0); }
.awc-card__action {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--awc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--awc-text);
}
.awc-card__action:hover { background: var(--awc-primary); color: #fff; border-color: var(--awc-primary); }
.awc-card__action svg { width: 17px; height: 17px; }

.awc-card__brand,
ul.products li.product .awc-brand { font-size: 12px; color: var(--awc-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.3px; }
.awc-card__title,
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--awc-font-body) !important;
  font-size: 14px;
  font-weight: 500;
  color: var(--awc-text);
  margin: 0 0 8px;
  line-height: 1.4;
  padding: 0;
  min-height: 38px;
}
.awc-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.awc-rating__stars { color: var(--awc-secondary); font-size: 13px; letter-spacing: 1px; }
.awc-rating__count { font-size: 12px; color: var(--awc-muted); }

.awc-price,
ul.products li.product .price {
  color: var(--awc-primary) !important;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.awc-price del,
ul.products li.product .price del {
  color: var(--awc-muted) !important;
  font-weight: 400;
  font-size: 13px;
  opacity: 1;
}
.awc-price ins,
ul.products li.product .price ins { text-decoration: none; }

ul.products li.product .button,
.awc-card .awc-addcart {
  width: 100%;
  margin-top: 2px;
}

/* ---------- Flash sale ---------- */
.awc-flash {
  background: #fff;
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius);
  padding: 20px;
}
.awc-flash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.awc-flash__title { display: flex; align-items: center; gap: 8px; font-size: 20px; margin: 0; }
.awc-flash__title svg { width: 20px; height: 20px; fill: var(--awc-secondary); }
.awc-countdown { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--awc-primary); }
.awc-countdown__box {
  background: var(--awc-text);
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 34px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ---------- New arrival / promo banner ---------- */
.awc-promo {
  background: linear-gradient(135deg, #fff4f8, #ffe9f1);
  border-radius: var(--awc-radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--awc-border);
}
.awc-promo h3 { font-size: 24px; margin-bottom: 6px; }
.awc-promo p { color: var(--awc-muted); margin-bottom: 20px; }

/* ---------- Best sellers list ---------- */
.awc-bestsellers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.awc-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.awc-mini img { border-radius: var(--awc-radius-sm); background: var(--awc-light); aspect-ratio: 1; object-fit: cover; }
.awc-mini__title { font-size: 13px; font-weight: 500; }
.awc-mini__price { color: var(--awc-primary); font-weight: 700; font-size: 14px; }

/* ---------- Brand carousel ---------- */
.awc-brands {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  padding: 6px 0;
  scrollbar-width: none;
}
.awc-brands::-webkit-scrollbar { display: none; }
.awc-brands li { flex: 0 0 auto; opacity: 0.65; transition: opacity var(--awc-transition); filter: grayscale(1); }
.awc-brands li:hover { opacity: 1; filter: grayscale(0); }
.awc-brands span { font-family: var(--awc-font-display); font-size: 20px; white-space: nowrap; color: var(--awc-text); }

/* ---------- Footer ---------- */
.awc-footer { background: var(--awc-light); border-top: 1px solid var(--awc-border); margin-top: 50px; }
.awc-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 30px;
  padding: 50px 0 40px;
}
.awc-footer h4 {
  font-family: var(--awc-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--awc-text);
  margin-bottom: 18px;
}
.awc-footer__about p { color: var(--awc-muted); font-size: 13.5px; margin-bottom: 18px; }
.awc-footer__links li { margin-bottom: 10px; }
.awc-footer__links a { color: var(--awc-muted); font-size: 13.5px; }
.awc-footer__links a:hover { color: var(--awc-primary); }
.awc-socials { display: flex; gap: 12px; }
.awc-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--awc-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--awc-text);
}
.awc-socials a:hover { background: var(--awc-primary); color: #fff; border-color: var(--awc-primary); }
.awc-socials svg { width: 16px; height: 16px; }
.awc-newsletter form { display: flex; gap: 8px; margin-top: 14px; }
.awc-newsletter input {
  flex: 1;
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius-pill);
  padding: 11px 16px;
  font-family: var(--awc-font-body);
  font-size: 13px;
}
.awc-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.awc-payments span {
  background: #fff;
  border: 1px solid var(--awc-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--awc-muted);
}
.awc-footer__bottom {
  background: var(--awc-primary);
  color: #fff;
  font-size: 13px;
}
.awc-footer__bottom .awc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  flex-wrap: wrap;
}
.awc-footer__bottom ul { display: flex; gap: 26px; flex-wrap: wrap; }
.awc-footer__bottom li { display: flex; align-items: center; gap: 7px; opacity: 0.95; }
.awc-footer__bottom svg { width: 15px; height: 15px; }

/* ---------- Mobile bottom nav ---------- */
.awc-bottomnav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--awc-border);
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.awc-bottomnav ul { display: flex; justify-content: space-around; }
.awc-bottomnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px 10px;
  font-size: 11px;
  color: var(--awc-muted);
  position: relative;
}
.awc-bottomnav a.is-active { color: var(--awc-primary); }
.awc-bottomnav svg { width: 22px; height: 22px; }
.awc-bottomnav .awc-count { top: 0; right: 18%; }

/* Mobile drawer menu */
.awc-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
.awc-drawer.is-open { transform: translateX(0); }
.awc-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--awc-border); }
.awc-drawer nav a { display: block; padding: 13px 18px; border-bottom: 1px solid var(--awc-light); font-weight: 500; }
.awc-overlay {
  position: fixed; inset: 0;
  background: rgba(31,31,31,0.5);
  z-index: 250;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.awc-overlay.is-open { opacity: 1; visibility: visible; }

.awc-mobile-toggle,
.awc-mobile-only { display: none; }

/* ---------- WooCommerce layout tweaks ---------- */
.woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--awc-muted);
  margin: 20px 0;
}
.woocommerce-breadcrumb a { color: var(--awc-muted); }
.woocommerce-breadcrumb a:hover { color: var(--awc-primary); }

.awc-shop { display: grid; grid-template-columns: 250px 1fr; gap: 30px; padding: 20px 0 60px; }
.awc-shop__sidebar h3 {
  font-family: var(--awc-font-body);
  font-size: 15px;
  font-weight: 700;
  margin: 22px 0 12px;
}
.awc-shop__sidebar ul li { margin-bottom: 9px; }
.awc-shop__sidebar a { font-size: 14px; color: var(--awc-text); display: flex; justify-content: space-between; }
.awc-shop__sidebar a:hover { color: var(--awc-primary); }
.awc-shop__sidebar .count { color: var(--awc-muted); font-size: 12px; }

.woocommerce-result-count { color: var(--awc-muted); font-size: 14px; }
.woocommerce-ordering select {
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius-sm);
  padding: 9px 14px;
  font-family: var(--awc-font-body);
}

/* Single product */
.single-product div.product .product_title { font-size: 30px; }
.single-product div.product p.price,
.single-product div.product span.price { color: var(--awc-primary); font-size: 24px; font-weight: 700; }
.single-product .stock.in-stock { color: var(--awc-success); font-weight: 600; }
.woocommerce-tabs .tabs { border-bottom: 1px solid var(--awc-border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--awc-primary); }

/* Cart & checkout accents */
.woocommerce table.shop_table { border-radius: var(--awc-radius); border-color: var(--awc-border); }
.cart_totals h2, .woocommerce-checkout h3 { font-family: var(--awc-font-display); }
.woocommerce #payment, .woocommerce-checkout #payment { background: var(--awc-accent); border-radius: var(--awc-radius); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius-sm);
  padding: 11px 14px;
}

/* Account */
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border: none;
  margin-bottom: 4px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--awc-radius-sm);
  color: var(--awc-text);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--awc-accent);
  color: var(--awc-primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .awc-footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .awc-hero__title { font-size: 42px; }
}
@media (max-width: 992px) {
  .awc-search__cat { display: none; }
  .awc-header__actions .awc-action__meta { display: none; }
  .awc-shop { grid-template-columns: 1fr; }
  .awc-shop__sidebar { display: none; }
  .awc-bestsellers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 782px) {
  .awc-topbar, .awc-nav, .awc-hero__media { display: none; }
  .awc-mobile-toggle { display: inline-flex; }
  .awc-header__main { gap: 14px; padding: 12px 0; }
  .awc-logo__mark { font-size: 30px; }
  .awc-logo__text b { font-size: 19px; }
  .awc-logo__text span { letter-spacing: 3px; font-size: 9px; }
  .awc-header__actions { gap: 16px; }
  .awc-search { order: 5; flex-basis: 100%; }
  .awc-header__main { flex-wrap: wrap; }
  .awc-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .awc-hero__content { padding: 30px 24px; }
  .awc-hero__title { font-size: 34px; }
  .awc-trust { padding: 0 24px 26px; gap: 18px; }
  .awc-section { padding: 30px 0; }
  .awc-section__title { font-size: 22px; }
  .awc-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .awc-bestsellers { grid-template-columns: 1fr; }
  .awc-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; padding: 34px 0; }
  .awc-bottomnav { display: block; }
  body { padding-bottom: 68px; }
  .awc-mobile-only { display: block; }
}
@media (max-width: 480px) {
  .awc-footer__top { grid-template-columns: 1fr; }
  .awc-hero__title { font-size: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* =====================================================================
   Mega menu, Quick view modal, Payment brand chips
   ===================================================================== */

/* ---------- Mega menu ---------- */
.awc-has-mega { position: relative; }
.awc-nav__cta {
  border: none;
  font-family: var(--awc-font-body);
  cursor: pointer;
  height: 100%;
}
.awc-mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 860px;
  max-width: 92vw;
  background: #fff;
  border: 1px solid var(--awc-border);
  border-top: 3px solid var(--awc-primary);
  border-radius: 0 0 var(--awc-radius) var(--awc-radius);
  box-shadow: var(--awc-shadow-hover);
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--awc-transition), transform var(--awc-transition), visibility var(--awc-transition);
  z-index: 60;
  overflow: hidden;
}
.awc-has-mega.is-open .awc-mega { opacity: 1; visibility: visible; transform: translateY(0); }

.awc-mega__rail {
  background: var(--awc-light);
  border-right: 1px solid var(--awc-border);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
.awc-mega__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px 20px;
  font-family: var(--awc-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--awc-text);
  cursor: pointer;
  transition: background var(--awc-transition), color var(--awc-transition);
}
.awc-mega__tab span { color: var(--awc-muted); transition: transform var(--awc-transition); }
.awc-mega__tab:hover,
.awc-mega__tab.is-active { background: #fff; color: var(--awc-primary); box-shadow: inset 3px 0 0 var(--awc-primary); }
.awc-mega__tab.is-active span { transform: translateX(3px); color: var(--awc-primary); }

.awc-mega__panels { position: relative; }
.awc-mega__panel {
  display: none;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  padding: 24px 26px;
}
.awc-mega__panel.is-active { display: grid; }
.awc-mega__col h4 {
  font-family: var(--awc-font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--awc-muted);
  margin-bottom: 14px;
}
.awc-mega__sublist li { margin-bottom: 9px; }
.awc-mega__sublist a { font-size: 14px; color: var(--awc-text); }
.awc-mega__sublist a:hover { color: var(--awc-primary); padding-left: 3px; }
.awc-mega__all {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--awc-primary);
}

.awc-mega__featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}
.awc-mega__product {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius-sm);
  transition: border-color var(--awc-transition), box-shadow var(--awc-transition);
}
.awc-mega__product:hover { border-color: var(--awc-accent); box-shadow: var(--awc-shadow); }
.awc-mega__product img,
.awc-mega__product-img {
  border-radius: 6px;
  background: var(--awc-light);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.awc-mega__product-img { display: block; background: var(--awc-accent); }
.awc-mega__product-title { font-size: 12px; font-weight: 500; color: var(--awc-text); line-height: 1.35; }
.awc-mega__product-price { font-size: 13px; font-weight: 700; color: var(--awc-primary); }

/* ---------- Quick view modal ---------- */
.awc-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--awc-transition), visibility var(--awc-transition);
}
.awc-modal.is-open { opacity: 1; visibility: visible; }
.awc-modal__overlay { position: absolute; inset: 0; background: rgba(31,31,31,0.55); }
.awc-modal__box {
  position: relative;
  background: #fff;
  border-radius: var(--awc-radius);
  width: 860px;
  max-width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(12px) scale(0.98);
  transition: transform var(--awc-transition);
}
.awc-modal.is-open .awc-modal__box { transform: translateY(0) scale(1); }
.awc-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--awc-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: var(--awc-text);
}
.awc-modal__close:hover { background: var(--awc-primary); color: #fff; }
.awc-modal__loading { padding: 60px; text-align: center; color: var(--awc-muted); }

.awc-qv { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 28px; }
.awc-qv__media { position: relative; }
.awc-qv__media img { width: 100%; border-radius: var(--awc-radius-sm); background: var(--awc-light); }
.awc-qv__title { font-size: 26px; margin-bottom: 10px; }
.awc-qv__price { color: var(--awc-primary); font-size: 24px; font-weight: 700; margin: 12px 0; }
.awc-qv__price del { color: var(--awc-muted); font-size: 16px; font-weight: 400; margin-left: 8px; }
.awc-qv__desc { color: #5a5a5a; font-size: 14px; margin-bottom: 16px; }
.awc-qv__stock { font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.awc-qv__stock.in { color: var(--awc-success); }
.awc-qv__stock.out { color: #ef4444; }
.awc-qv .quantity input { width: 70px; padding: 10px; border: 1px solid var(--awc-border); border-radius: var(--awc-radius-sm); }
.awc-qv__full { display: inline-block; margin-top: 16px; font-weight: 600; color: var(--awc-primary); }

/* ---------- Payment brand chips (checkout) ---------- */
.woocommerce-checkout .wc_payment_method > label { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.awc-pay {
  border: 1px solid var(--awc-border);
  border-radius: var(--awc-radius-sm);
  margin-bottom: 10px !important;
  padding: 4px 12px;
  transition: border-color var(--awc-transition), background var(--awc-transition);
}
.awc-pay:has(input:checked) { border-color: var(--awc-primary); background: var(--awc-accent); }
.awc-pay__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}
.awc-pay__chip--bkash  { background: #E2136E; }
.awc-pay__chip--nagad  { background: #F0821E; }
.awc-pay__chip--rocket { background: #8C3494; }
.awc-pay__chip--upay   { background: #E63946; }
.awc-pay__chip--cod    { background: #2e9e5b; }
.awc-pay__chip--bank   { background: #555; }
.awc-pay__chip--card   { background: #1a1f71; }

/* ---------- Responsive additions ---------- */
@media (max-width: 992px) {
  .awc-mega { width: 640px; }
  .awc-mega__featured { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 782px) {
  .awc-qv { grid-template-columns: 1fr; padding: 22px; }
  .awc-qv__title { font-size: 22px; }
}
