/* ============================================
   AQUA MODERN — Design System
   Minimal · Modern · Mobile First
   ============================================ */

:root {
  --aq-primary:   #0369a1;
  --aq-primary-d: #0c4a6e;
  --aq-accent:    #06b6d4;
  --aq-accent-l:  #22d3ee;
  --aq-bg:        #f8fafc;
  --aq-surface:   #ffffff;
  --aq-border:    #e2e8f0;
  --aq-text:      #1e293b;
  --aq-muted:     #64748b;
  --aq-radius:    12px;
  --aq-shadow:    0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.06);
  --aq-shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  font-family: 'Inter', system-ui, sans-serif;
}

/* ---- Reset essentials ---- */
*, *::before, *::after { box-sizing: border-box; }
body { background: var(--aq-bg); color: var(--aq-text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ============================================
   TOP ANNOUNCEMENT BAR
   ============================================ */
.aq-topbar {
  background: linear-gradient(90deg, var(--aq-primary-d), var(--aq-primary));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: .02em;
}
.aq-topbar a { color: var(--aq-accent-l); }
.aq-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   HEADER
   ============================================ */
.aq-header {
  background: var(--aq-surface);
  border-bottom: 1px solid var(--aq-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--aq-shadow);
}
.aq-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
.aq-logo img { height: 44px; width: auto; display: block; }
.aq-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--aq-primary);
  letter-spacing: -.02em;
}
.aq-logo-text span { color: var(--aq-accent); }

/* Search */
.aq-search {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.aq-search input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--aq-border);
  border-radius: 100px;
  padding: 0 52px 0 20px;
  font-size: 14px;
  font-family: inherit;
  background: var(--aq-bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.aq-search input:focus {
  border-color: var(--aq-accent);
  box-shadow: 0 0 0 3px rgba(6,182,212,.15);
  background: #fff;
}
.aq-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--aq-primary);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.aq-search-btn:hover { background: var(--aq-accent); }

/* Header actions */
.aq-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.aq-icon-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
  border: none;
  background: transparent;
  color: var(--aq-text);
  font-size: 11px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
}
.aq-icon-btn:hover { background: var(--aq-bg); }
.aq-icon-btn svg { width: 22px; height: 22px; stroke: var(--aq-primary); }
.aq-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--aq-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
}

/* ============================================
   MEGA MENU NAV
   ============================================ */
.aq-nav {
  background: var(--aq-primary-d);
  border-bottom: 2px solid var(--aq-accent);
  position: relative;
}
.aq-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
.aq-nav-item {
  position: static;
}
.aq-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 48px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.aq-nav-link svg { width: 14px; height: 14px; opacity: .7; transition: transform .2s; }
.aq-nav-item:hover .aq-nav-link {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.aq-nav-item:hover .aq-nav-link svg { transform: rotate(180deg); }

/* Mega dropdown — full-width panel */
.aq-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 var(--aq-radius) var(--aq-radius);
  box-shadow: var(--aq-shadow-lg);
  z-index: 200;
  border-top: 2px solid var(--aq-accent);
}
.aq-nav-item:hover .aq-mega { display: block; }
.aq-mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px;
}
.aq-mega-grid {
  display: grid;
  gap: 20px 16px;
}
.aq-mega-grid--6 { grid-template-columns: repeat(6, 1fr); }
.aq-mega-grid--5 { grid-template-columns: repeat(5, 1fr); }
.aq-mega-grid--4 { grid-template-columns: repeat(4, 1fr); }
.aq-mega-grid--1 { grid-template-columns: 1fr; }
.aq-mega-col h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--aq-accent);
  margin: 0 0 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--aq-border);
}
.aq-mega-col h4 a {
  color: inherit;
  text-decoration: none;
}
.aq-mega-col h4 a:hover { color: var(--aq-primary); }
.aq-mega-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--aq-muted);
  margin: 12px 0 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--aq-border);
}
.aq-mega-sub a {
  color: inherit;
  text-decoration: none;
}
.aq-mega-sub a:hover { color: var(--aq-primary); }
.aq-mega-link {
  display: block;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--aq-text);
  transition: background .12s, color .12s;
  line-height: 1.4;
}
.aq-mega-link:hover {
  background: var(--aq-bg);
  color: var(--aq-primary);
}

/* ============================================
   HERO BANNER
   ============================================ */
.aq-hero {
  background: linear-gradient(135deg, var(--aq-primary-d) 0%, var(--aq-primary) 60%, #0891b2 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.aq-hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
.aq-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.aq-hero h1 span { color: var(--aq-accent-l); }
.aq-hero p {
  font-size: 18px;
  opacity: .85;
  margin: 0 0 32px;
  line-height: 1.6;
}
.aq-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.aq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}
.aq-btn-primary {
  background: var(--aq-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(6,182,212,.4);
}
.aq-btn-primary:hover {
  background: var(--aq-accent-l);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6,182,212,.5);
}
.aq-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.aq-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.aq-trust {
  background: #fff;
  border-bottom: 1px solid var(--aq-border);
  padding: 20px 24px;
}
.aq-trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aq-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.aq-trust-icon {
  width: 44px;
  height: 44px;
  background: var(--aq-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aq-trust-icon svg { width: 22px; height: 22px; color: var(--aq-primary); }
.aq-trust-item strong { display: block; font-size: 14px; font-weight: 600; }
.aq-trust-item span { font-size: 12px; color: var(--aq-muted); }

/* ============================================
   CATEGORY GRID
   ============================================ */
.aq-section { padding: 56px 24px; }
.aq-section-inner { max-width: 1400px; margin: 0 auto; }
.aq-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}
.aq-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--aq-text);
  letter-spacing: -.02em;
}
.aq-section-title span { color: var(--aq-accent); }
.aq-view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--aq-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.aq-view-all:hover { color: var(--aq-accent); }
.aq-view-all svg { width: 16px; height: 16px; }

.aq-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.aq-cat-card {
  background: #fff;
  border-radius: var(--aq-radius);
  border: 1px solid var(--aq-border);
  padding: 24px 16px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--aq-text);
  display: block;
}
.aq-cat-card:hover {
  border-color: var(--aq-accent);
  box-shadow: var(--aq-shadow-lg);
  transform: translateY(-4px);
}
.aq-cat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 16px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aq-cat-icon svg { width: 32px; height: 32px; color: var(--aq-primary); }
.aq-cat-card h3 { font-size: 14px; font-weight: 600; margin: 0 0 4px; }
.aq-cat-card span { font-size: 12px; color: var(--aq-muted); }

/* ============================================
   PRODUCT GRID
   ============================================ */
.aq-products-bg { background: var(--aq-bg); }
.aq-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aq-product-card {
  background: #fff;
  border-radius: var(--aq-radius);
  border: 1px solid var(--aq-border);
  overflow: hidden;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.aq-product-card:hover {
  box-shadow: var(--aq-shadow-lg);
  transform: translateY(-3px);
}
.aq-product-img {
  aspect-ratio: 1;
  background: var(--aq-bg);
  overflow: hidden;
  position: relative;
}
.aq-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.aq-product-card:hover .aq-product-img img { transform: scale(1.04); }
.aq-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--aq-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}
.aq-product-badge.sale { background: #ef4444; }
.aq-product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.aq-product-cat { font-size: 11px; color: var(--aq-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.aq-product-name { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; color: var(--aq-text); flex: 1; }
.aq-product-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.aq-price-current { font-size: 18px; font-weight: 700; color: var(--aq-primary); }
.aq-price-old { font-size: 13px; color: var(--aq-muted); text-decoration: line-through; }
.aq-product-btn {
  width: 100%;
  padding: 10px;
  background: var(--aq-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.aq-product-btn:hover { background: var(--aq-accent); }
.aq-product-btn svg { width: 16px; height: 16px; }

/* ============================================
   PROMO BANNER
   ============================================ */
.aq-promo {
  background: linear-gradient(90deg, #0c4a6e 0%, #0369a1 50%, #0891b2 100%);
  border-radius: var(--aq-radius);
  padding: 40px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.aq-promo h2 { font-size: 28px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.02em; }
.aq-promo p { font-size: 16px; opacity: .85; margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.aq-footer {
  background: var(--aq-primary-d);
  color: rgba(255,255,255,.8);
  padding: 64px 24px 0;
  margin-top: 56px;
}
.aq-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.aq-footer-brand { }
.aq-footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.aq-footer-logo span { color: var(--aq-accent-l); }
.aq-footer-desc { font-size: 14px; line-height: 1.7; margin: 0 0 20px; }
.aq-footer-socials { display: flex; gap: 10px; }
.aq-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s;
  text-decoration: none;
}
.aq-social-btn:hover { background: var(--aq-accent); }
.aq-social-btn svg { width: 16px; height: 16px; }

.aq-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin: 0 0 16px;
}
.aq-footer-links { list-style: none; margin: 0; padding: 0; }
.aq-footer-links li { margin-bottom: 10px; }
.aq-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  text-decoration: none;
}
.aq-footer-links a:hover { color: var(--aq-accent-l); }

.aq-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.aq-footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--aq-accent-l); }

.aq-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.aq-footer-payments { display: flex; gap: 8px; align-items: center; }
.aq-payment-badge {
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .aq-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .aq-product-grid { grid-template-columns: repeat(3, 1fr); }
  .aq-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .aq-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .aq-header-inner { grid-template-columns: auto auto; height: 60px; }
  .aq-search { display: none; }
  .aq-nav { display: none; }
  .aq-hero { padding: 48px 20px; }
  .aq-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .aq-product-grid { grid-template-columns: repeat(2, 1fr); }
  .aq-trust-inner { grid-template-columns: 1fr; }
  .aq-promo { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .aq-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .aq-section { padding: 36px 16px; }
}
@media (max-width: 480px) {
  .aq-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .aq-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============================================
   HIDE DEFAULT THEME ELEMENTS (override)
   ============================================ */
.ty-header__top-panel,
.ut2-header,
.ut2-header__top,
.ty-footer__menu,
#footer_block_container,
.ty-footer { display: none !important; }

.aq-content { min-height: 60vh; }

/* ============================================
   BANNER CAROUSEL
   ============================================ */

/* Responsive visibility classes (ensure hidden-desktop/phone/tablet work) */
.hidden-desktop { display: none !important; }
.hidden-phone   { }
.hidden-tablet  { }

@media (max-width: 979px) {
  .hidden-desktop { display: block !important; }
  .hidden-tablet  { display: none !important; }
}
@media (max-width: 767px) {
  .hidden-desktop { display: block !important; }
  .hidden-phone   { display: none !important; }
}

/* Desktop carousel: override height to 480px */
.homepage-banners.hidden-phone.hidden-tablet .ut2-banner,
.homepage-banners.hidden-phone.hidden-tablet .ut2-banner .ut2-a__bg-banner {
  --ab-banner-height: 480px !important;
  height: 480px !important;
}

/* Ensure carousel container doesn't overflow */
.homepage-banners .banners.owl-carousel {
  overflow: hidden;
}

/* Owl carousel: ensure slides stack as slider, not block */
.homepage-banners .owl-wrapper-outer {
  overflow: hidden;
}

/* ============================================
   NATIVE BANNER SLIDER (overrides Owl Carousel)
   ============================================ */

/* Container: fixed height, clip overflow */
.homepage-banners .banners.owl-carousel {
  position: relative !important;
  height: 480px !important;
  overflow: hidden !important;
  display: block !important;
}

@media (max-width: 767px) {
  .homepage-banners.hidden-desktop .banners.owl-carousel {
    height: 320px !important;
  }
}

/* All slides: fill container, stacked, invisible by default */
.homepage-banners .banners.owl-carousel > .ut2-banner {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  transition: opacity 0.9s ease !important;
  pointer-events: none !important;
  --ab-banner-height: 480px !important;
}

/* Active slide */
.homepage-banners .banners.owl-carousel > .ut2-banner.aq-active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Background image fill */
.homepage-banners .banners.owl-carousel > .ut2-banner .ut2-a__bg-banner {
  height: 480px !important;
  --ab-banner-height: 480px !important;
}

/* Dot indicators */
.aq-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.aq-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
}
.aq-slider-dot.aq-dot-active {
  background: #fff;
}



/* ============================================
   BANNER TEXT OVERLAY STYLING
   ============================================ */

/* The bg-banner image container */
.homepage-banners .ut2-a__bg-banner {
  height: 480px !important;
  --ab-banner-height: 480px !important;
  position: relative !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Content wrapper: centered absolutely over the image */
.homepage-banners .ut2-a__content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 24px 40px !important;
  box-sizing: border-box !important;
  z-index: 3 !important;
}

/* Override any half-width / align classes from UniTheme2 */
.homepage-banners .ut2-a__content.width-half,
.homepage-banners .ut2-a__content.width-full {
  max-width: none !important;
}
.homepage-banners .ut2-a__content > div {
  max-width: 680px !important;
  width: 100% !important;
}

/* Text description box */
.homepage-banners .ut2-a__description {
  padding: 24px 32px !important;
  background: rgba(0,0,0,0.38) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  text-align: center !important;
}

/* Title text */
.homepage-banners .ut2-a__title,
.homepage-banners .ut2-a__title * {
  font-family: 'Inter', sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
  margin: 0 0 10px 0 !important;
  text-align: center !important;
}

/* Description / subtitle text */
.homepage-banners .ut2-a__descr,
.homepage-banners .ut2-a__descr * {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.90) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
  margin: 0 !important;
  text-align: center !important;
}

/* Dark gradient over image for readability */
.homepage-banners .ut2-a__bg-banner::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(160deg, rgba(0,0,0,0.08) 0%, rgba(0,0,50,0.35) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Dots above the gradient */
.aq-slider-dots {
  z-index: 10 !important;
}

/* ══════════════════════════════════════════════════════════════
   Red-line fix: override UniTheme2 orange accent (#ff5722)
   ══════════════════════════════════════════════════════════════ */
:root {
  --color-main:       #06b6d4 !important;
  --fill-color:       #06b6d4 !important;
  --color-decorative: #06b6d4 !important;
}
/* strikethrough price line colour */
.ty-strike span[id*="price"]:after {
  border-top-color: #06b6d4 !important;
}
/* any remaining red skeleton or indicator lines */
.abt__ut2_hover_gallery_indicators div,
[style*="#ff5722"] {
  border-color: #06b6d4 !important;
  background-color: #06b6d4 !important;
  color: #06b6d4 !important;
}

/* ══════════════════════════════════════════════════════════════
   Category banners 2+2+3+3 grid
   ══════════════════════════════════════════════════════════════ */
.aq-banners-section { padding-top: 48px; }
.aq-banner-row       { display: grid; gap: 12px; margin-bottom: 12px; }
.aq-banner-row--2    { grid-template-columns: 1fr 1fr; }
.aq-banner-row--3    { grid-template-columns: 1fr 1fr 1fr; }
.aq-banner-row--5    { grid-template-columns: repeat(5, 1fr); }

.aq-banner-card {
  position: relative;
  display: block;
  border-radius: var(--aq-radius);
  overflow: hidden;
  text-decoration: none;
  background: #0c4a6e;
}
.aq-banner-row--2 .aq-banner-card { height: 340px; }
.aq-banner-row--3 .aq-banner-card { height: 240px; }
.aq-banner-row--5 .aq-banner-card { height: 240px; }

.aq-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.aq-banner-card:hover .aq-banner-bg { transform: scale(1.06); }

.aq-banner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.22) 45%,
    transparent 100%);
  z-index: 1;
}
.aq-banner-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 26px;
  z-index: 2;
  color: #fff;
}
.aq-banner-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
  line-height: 1.2;
}
.aq-banner-info span {
  font-size: 0.82rem;
  opacity: .88;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.aq-banner-info span::after { content: '→'; transition: transform .2s; }
.aq-banner-card:hover .aq-banner-info span::after { transform: translateX(4px); }

@media (max-width: 767px) {
  .aq-banner-row--2,
  .aq-banner-row--3    { grid-template-columns: 1fr; }
  .aq-banner-row--5    { grid-template-columns: repeat(2, 1fr); }
  .aq-banner-row--2 .aq-banner-card,
  .aq-banner-row--3 .aq-banner-card { height: 210px; }
  .aq-banner-row--5 .aq-banner-card { height: 160px; }
}
@media (min-width: 768px) and (max-width: 979px) {
  .aq-banner-row--3 { grid-template-columns: 1fr 1fr; }
  .aq-banner-row--3 .aq-banner-card:last-child {
    grid-column: 1 / -1;
    height: 190px;
  }
}

/* ── Hide UniTheme2 hover gallery indicator bar (causes full-width line) ── */
.abt__ut2_hover_gallery_indicators,
.abt__ut2_hover_gallery_indicators div {
  display: none !important;
}
