/* AL-AQSA Borkha House — Premium Homepage Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --aq-navy: #0b1c2c;
  --aq-navy-2: #132a3f;
  --aq-gold: #c4a35a;
  --aq-gold-soft: #d9c08a;
  --aq-ivory: #f7f3ec;
  --aq-ivory-2: #efe8dc;
  --aq-rose: #c9a3a8;
  --aq-charcoal: #1c242d;
  --aq-muted: #6b7280;
  --aq-white: #ffffff;
  --aq-border: rgba(11, 28, 44, 0.08);
  --aq-shadow: 0 12px 40px rgba(11, 28, 44, 0.08);
  --aq-radius: 14px;
  --aq-font-display: 'Cormorant Garamond', Georgia, serif;
  --aq-font-body: 'Outfit', system-ui, sans-serif;
}

body.aq-premium {
  font-family: var(--aq-font-body);
  color: var(--aq-charcoal);
  background: var(--aq-ivory);
  /* Safety net only — root overflow causes fixed in premium-layout-fix.css */
  overflow-x: clip;
}

body.aq-premium #content {
  background: var(--aq-ivory);
}

/* ========== Utility Top Bar ========== */
.aq-topbar {
  background: var(--aq-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.aq-topbar .aq-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.aq-topbar-left {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.aq-topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.aq-topbar-left i { color: var(--aq-gold); font-size: 11px; }
.aq-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.aq-topbar-right a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color .2s ease;
}
.aq-topbar-right a:hover { color: var(--aq-gold); }
.aq-topbar-social { display: inline-flex; gap: 10px; }
.aq-topbar-social a {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); font-size: 11px;
}

/* ========== Main Header ========== */
.aq-header {
  background: var(--aq-white);
  border-bottom: 1px solid var(--aq-border);
  position: relative;
  z-index: 100;
}
.aq-header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.aq-logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}
.aq-search {
  position: relative;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.aq-search form {
  display: flex;
  align-items: center;
  background: var(--aq-ivory);
  border: 1px solid var(--aq-border);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.aq-search form:focus-within {
  border-color: var(--aq-gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.18);
}
.aq-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
  color: var(--aq-charcoal);
  min-width: 0;
}
.aq-search button {
  border: 0;
  background: var(--aq-navy);
  color: #fff;
  width: 46px;
  height: 42px;
  margin: 3px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.aq-search button:hover { background: var(--aq-gold); color: var(--aq-navy); }
.aq-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.aq-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 64px;
  padding: 6px 8px;
  color: var(--aq-charcoal);
  text-decoration: none;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.aq-action i { font-size: 18px; color: var(--aq-navy); }
.aq-action span { font-size: 11px; font-weight: 500; letter-spacing: .02em; }
.aq-action:hover { background: var(--aq-ivory); color: var(--aq-navy); }
.aq-action .aq-badge {
  position: absolute;
  top: 0; right: 8px;
  background: var(--aq-gold);
  color: var(--aq-navy);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========== Navy Navigation ========== */
.aq-nav {
  background: var(--aq-navy);
}
.aq-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.aq-nav-inner::-webkit-scrollbar { display: none; }
.aq-nav-item {
  position: relative;
  flex: 0 0 auto;
}
.aq-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 14px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: color .2s ease, background .2s ease;
}
.aq-nav-link:hover,
.aq-nav-item:hover > .aq-nav-link {
  color: var(--aq-gold);
  background: rgba(255,255,255,.04);
}
.aq-nav-link i { font-size: 10px; opacity: .7; }
.aq-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--aq-shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  z-index: 200;
}
.aq-nav-item:hover > .aq-nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.aq-nav-dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--aq-charcoal);
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
}
.aq-nav-dropdown a:hover {
  background: var(--aq-ivory);
  color: var(--aq-navy);
}
.aq-nav-hot { color: var(--aq-gold) !important; }

/* ========== Mobile Header ========== */
.aq-mobile-header {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--aq-border);
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 120;
}
.aq-mobile-header .aq-m-logo img { max-height: 36px; width: auto; }
.aq-mobile-header .aq-m-actions {
  display: flex; align-items: center; gap: 8px;
}
.aq-m-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--aq-ivory); color: var(--aq-navy); border: 0;
  text-decoration: none; position: relative;
}
.aq-m-btn .aq-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--aq-gold); color: var(--aq-navy);
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ========== Hero ========== */
.aq-hero {
  padding: 28px 0 10px;
}
.aq-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  align-items: stretch;
}
.aq-hero-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 460px;
  background:
    linear-gradient(115deg, rgba(11,28,44,.88) 0%, rgba(11,28,44,.45) 48%, rgba(11,28,44,.2) 100%),
    var(--aq-hero-image, linear-gradient(135deg, #1a3348, #0b1c2c)) center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  box-shadow: var(--aq-shadow);
}
.aq-hero-content {
  padding: 48px 44px;
  max-width: 560px;
}
.aq-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aq-gold-soft);
  margin-bottom: 14px;
}
.aq-hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px; background: var(--aq-gold);
}
.aq-hero h1 {
  font-family: var(--aq-font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -.01em;
}
.aq-hero p.aq-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.84);
  margin: 0 0 26px;
  max-width: 440px;
}
.aq-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.aq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.aq-btn:hover { transform: translateY(-1px); }
.aq-btn-primary {
  background: var(--aq-gold);
  color: var(--aq-navy);
}
.aq-btn-primary:hover { background: #d4b56d; color: var(--aq-navy); }
.aq-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.aq-btn-secondary:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: #fff;
}
.aq-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.aq-hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.82);
}
.aq-hero-features i { color: var(--aq-gold); }

.aq-promo-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}
.aq-promo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 140px;
  background: var(--aq-navy);
  color: #fff;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: var(--aq-shadow);
}
.aq-promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(11,28,44,.85) 100%);
  z-index: 1;
}
.aq-promo-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.aq-promo-card:hover img { transform: scale(1.06); }
.aq-promo-body {
  position: relative;
  z-index: 2;
  padding: 18px;
  width: 100%;
}
.aq-promo-body .label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aq-gold);
  margin-bottom: 4px;
}
.aq-promo-body h3 {
  font-family: var(--aq-font-display);
  font-size: 1.45rem;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}
.aq-promo-body .aq-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========== Trust Bar ========== */
.aq-trust {
  padding: 18px 0 8px;
}
.aq-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #fff;
  border: 1px solid var(--aq-border);
  border-radius: 18px;
  padding: 18px 10px;
  box-shadow: 0 4px 20px rgba(11,28,44,.04);
}
.aq-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-right: 1px solid var(--aq-border);
}
.aq-trust-item:last-child { border-right: 0; }
.aq-trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--aq-ivory);
  color: var(--aq-navy);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.aq-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--aq-navy);
  margin-bottom: 2px;
}
.aq-trust-item span {
  font-size: 12px;
  color: var(--aq-muted);
}

/* ========== Sections ========== */
.aq-section {
  padding: 28px 0 8px;
}
.aq-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.aq-section-head h2 {
  font-family: var(--aq-font-display);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  color: var(--aq-navy);
  margin: 0;
  line-height: 1.15;
}
.aq-section-head p {
  margin: 4px 0 0;
  color: var(--aq-muted);
  font-size: 13px;
}
.aq-view-all {
  color: var(--aq-navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: .2s ease;
}
.aq-view-all:hover {
  color: var(--aq-gold);
  border-bottom-color: var(--aq-gold);
}

/* ========== Categories — compact square carousel ========== */
.aq-cats-wrap {
  position: relative;
}
.aq-cats-wrap .owl-nav {
  position: absolute;
  top: -46px;
  right: 0;
}
.aq-cats-wrap .owl-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid var(--aq-border) !important;
  color: var(--aq-navy) !important;
  margin-left: 6px;
  line-height: 34px !important;
}
.aq-cats-wrap .owl-dots {
  text-align: center;
  margin-top: 12px;
}
.aq-cats-wrap .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 0 4px;
  background: #d8d0c4;
  display: block;
  border-radius: 50%;
  transition: .2s ease;
}
.aq-cats-wrap .owl-dots .owl-dot.active span,
.aq-cats-wrap .owl-dots .owl-dot:hover span {
  background: var(--aq-navy);
}
.aq-cat-slider .owl-stage-outer {
  overflow: hidden;
}
.aq-cat-slider .owl-item {
  min-width: 0;
}
.aq-cat-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 3px 14px rgba(11,28,44,.05);
  border: 1px solid var(--aq-border);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
  height: 100%;
}
.aq-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--aq-shadow);
}
.aq-cat-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--aq-ivory-2);
}
.aq-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.aq-cat-card:hover .aq-cat-img img { transform: scale(1.04); }
.aq-cat-meta {
  padding: 10px 12px 12px;
}
.aq-cat-meta h3 {
  font-family: var(--aq-font-display);
  font-size: 1.05rem;
  margin: 0 0 2px;
  color: var(--aq-navy);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aq-cat-meta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--aq-gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.aq-cat-meta span i { font-size: 10px; }

/* ========== Product Cards — compact 4-up ========== */
.aq-products-wrap {
  position: relative;
}
.aq-products-wrap .owl-nav {
  position: absolute;
  top: -46px; right: 0;
}
.aq-products-wrap .owl-nav button {
  width: 34px; height: 34px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid var(--aq-border) !important;
  color: var(--aq-navy) !important;
  margin-left: 6px;
  line-height: 34px !important;
}
.aq-products-wrap .owl-stage-outer {
  overflow: hidden;
}
.aq-product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--aq-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.aq-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--aq-shadow);
}
.aq-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--aq-ivory-2);
}
.aq-product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.aq-product-card:hover .aq-product-media img { transform: scale(1.03); }
.aq-sale-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--aq-navy);
  color: var(--aq-gold);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  z-index: 2;
}
.aq-product-body {
  padding: 10px 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.aq-product-body h3 {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aq-product-body h3 a {
  color: var(--aq-charcoal);
  text-decoration: none;
}
.aq-product-body h3 a:hover { color: var(--aq-navy); }
.aq-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.aq-price .now {
  font-size: 14px;
  font-weight: 700;
  color: var(--aq-navy);
}
.aq-price .was {
  font-size: 11px;
  color: var(--aq-muted);
  text-decoration: line-through;
}
.aq-product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: auto;
}
.aq-product-actions .aq-buy,
.aq-product-actions .aq-cart-icon {
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}
.aq-product-actions .aq-buy {
  background: var(--aq-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 6px;
  text-transform: uppercase;
}
.aq-product-actions .aq-buy:hover { background: var(--aq-gold); color: var(--aq-navy); }
.aq-product-actions .aq-cart-icon {
  width: 36px;
  background: var(--aq-ivory);
  color: var(--aq-navy);
}
.aq-product-actions .aq-cart-icon:hover {
  background: var(--aq-navy);
  color: #fff;
}
.aq-product-actions form { margin: 0; display: contents; }

/* ========== Brand Section ========== */
.aq-brand {
  margin: 28px 0 16px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(11,28,44,.92), rgba(19,42,63,.75)),
    var(--aq-brand-image, linear-gradient(135deg,#0b1c2c,#1a3348)) center/cover no-repeat;
  color: #fff;
  padding: 40px 32px;
  position: relative;
}
.aq-brand-inner { max-width: 620px; }
.aq-brand h2 {
  font-family: var(--aq-font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 14px;
  font-weight: 600;
}
.aq-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.84);
  margin: 0 0 22px;
}
.aq-brand-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 8px;
}
.aq-brand-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
}
.aq-brand-points i { color: var(--aq-gold); }

/* ========== Footer ========== */
.aq-footer {
  background: var(--aq-navy);
  color: rgba(255,255,255,.82);
  margin-top: 40px;
  padding-top: 48px;
}
.aq-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.aq-footer a:hover { color: var(--aq-gold); }
.aq-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}
.aq-footer-brand img {
  max-height: 48px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.aq-footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,.72);
}
.aq-footer h4 {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--aq-gold);
  margin: 0 0 14px;
  font-weight: 600;
}
.aq-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aq-footer ul li { margin-bottom: 8px; }
.aq-footer ul li a,
.aq-footer .aq-contact-line {
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.aq-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.aq-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: .2s ease;
}
.aq-footer-social a:hover {
  background: var(--aq-gold);
  color: var(--aq-navy);
}
.aq-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.6);
}
.aq-footer-bottom a { color: var(--aq-gold); }

/* Hide old mission strip when premium active */
body.aq-premium > section.py-5 { display: none !important; }
body.aq-premium .main-header,
body.aq-premium header#navbar_top > .main-header { display: none !important; }
body.aq-premium .mobile-header.sticky { display: none !important; }

/* Cart dropdown reuse */
.aq-header .cshort-summary {
  right: 0;
  left: auto;
}

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

/* ========== Responsive ========== */
@media (max-width: 1199px) {
  .aq-hero-content { padding: 36px 28px; }
}
@media (max-width: 991px) {
  .aq-topbar { display: none; }
  .aq-desktop-only { display: none !important; }
  .aq-mobile-header { display: flex; }
  .aq-hero-grid { grid-template-columns: 1fr; }
  .aq-promo-stack {
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
  }
  .aq-promo-card { min-height: 160px; }
  .aq-hero-main { min-height: 420px; }
  .aq-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .aq-trust-item { border-right: 0; border-bottom: 1px solid var(--aq-border); }
  .aq-trust-item:nth-child(3),
  .aq-trust-item:nth-child(4) { border-bottom: 0; }
  .aq-footer-grid { grid-template-columns: 1fr 1fr; }
  .aq-cats-wrap .owl-nav { top: -42px; }
}
@media (max-width: 767px) {
  .aq-promo-card { min-height: 120px; }
  .aq-hero-main { min-height: 380px; border-radius: 16px; }
  .aq-hero-content { padding: 28px 22px; }
  .aq-hero h1 { font-size: 2.1rem; }
  .aq-section { padding: 22px 0 4px; }
  .aq-section-head { margin-bottom: 12px; }
  .aq-brand { padding: 36px 22px; border-radius: 18px; margin: 24px 0 10px; }
  .aq-footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .aq-promo-stack { grid-template-columns: 1fr; gap: 10px; }
  .aq-promo-card { min-height: 140px; }
  .aq-cat-meta { padding: 8px 10px 10px; }
  .aq-cat-meta h3 { font-size: .98rem; }
}
.aq-mobile-search-bar.intro { display: none; }
.aq-mobile-search-bar.activebtn { display: block !important; padding: 0 12px 10px; background: #fff; }

@media (max-width: 480px) {
  .aq-trust-grid { gap: 0; padding: 8px; }
  .aq-trust-item { padding: 10px; }
  .aq-product-body h3 { min-height: 0; }
  .aq-hero h1 { font-size: 1.85rem; }
  .aq-hero-main { min-height: 340px; }
}

/* Images only — do NOT constrain every descendant (breaks fixed UI / carousels) */
.aq-premium img,
.aq-premium video,
.aq-premium svg {
  max-width: 100%;
}
.aq-product-media img,
.aq-cat-img img,
.aq-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
