/* ============================================================
   AWB Computing — Custom PrestaShop 9 Theme
   Child of "classic" theme
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand — 2026 refined palette */
  --awb-primary: #2563eb;
  --awb-primary-hover: #1d4ed8;
  --awb-primary-light: #dbeafe;
  --awb-primary-glow: rgba(37, 99, 235, 0.25);
  --awb-accent: #06b6d4;
  --awb-accent-light: rgba(6, 182, 212, 0.12);
  --awb-sale: #f6691e;
  --awb-success: #22c55e;

  /* Dark surfaces — refined depth */
  --awb-dark: #0f0f11;
  --awb-dark-2: #18181b;
  --awb-dark-3: #27272a;

  /* Text */
  --awb-text: #18181b;
  --awb-text-light: #71717a;
  --awb-text-inverse: #fafafa;

  /* Backgrounds */
  --awb-bg: #ffffff;
  --awb-bg-alt: #f9fafb;
  --awb-bg-gray: #f4f4f5;

  /* Borders */
  --awb-border: #e4e4e7;
  --awb-border-light: #f4f4f5;

  /* Typography */
  --awb-font: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  --awb-font-size-base: 15px;

  /* Layout */
  --awb-header-bg: rgba(15, 15, 17, 0.92);
  --awb-footer-bg: #0f0f11;
  --awb-container-max: 1280px;

  /* Shadows — 2026 layered system */
  --awb-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --awb-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --awb-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --awb-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --awb-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --awb-shadow-hover: var(--awb-shadow-lg);
  --awb-shadow-glow: 0 0 20px var(--awb-primary-glow);

  /* Frontpage sections */
  --awb-hero-overlay: rgba(15, 15, 17, 0.65);
  --awb-hero-bg: #0f0f11;
  --awb-service-card-bg: #ffffff;
  --awb-service-card-border: #e4e4e7;
  --awb-trust-bar-bg: #f9fafb;
  --awb-cta-bg: #ffffff;

  /* Spacing */
  --awb-section-py: 72px;
  --awb-section-py-mobile: 48px;

  /* Transitions */
  --awb-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --awb-transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* WCAG AA accessible text colors */
  --awb-text-body: #52525b;

  /* 2026 Header tokens */
  --awb-header-height: 64px;
  --awb-topbar-height: 48px;
  --awb-nav-item-gap: 4px;
  --awb-radius-sm: 6px;
  --awb-radius-md: 10px;
  --awb-radius-lg: 14px;
  --awb-radius-xl: 20px;
  --awb-radius-full: 9999px;
}

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Base ──────────────────────────────────────────────────── */
body {
  font-family: var(--awb-font);
  font-size: var(--awb-font-size-base);
  color: var(--awb-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

a {
  color: var(--awb-primary);
  transition: color 0.2s ease;
}
a:hover,
a:focus {
  color: var(--awb-primary-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--awb-font);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  background-color: var(--awb-primary);
  border-color: var(--awb-primary);
  color: var(--awb-text-inverse);
  font-family: var(--awb-font);
  font-weight: 600;
  border-radius: var(--awb-radius-md);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--awb-primary-hover);
  border-color: var(--awb-primary-hover);
  color: var(--awb-text-inverse);
  box-shadow: var(--awb-shadow-glow);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--awb-dark-3);
  border-color: var(--awb-dark-3);
  color: var(--awb-text-inverse);
  border-radius: var(--awb-radius-md);
}

/* ── Header — 2026 Modern Design ───────────────────────────── */

/* ── Top Utility Bar (.header-nav) ─────────────────────── */
/* Using #header prefix for specificity over classic theme */
#header .header-nav,
.header-nav {
  background: #18181b !important;
  background: linear-gradient(180deg, rgba(15, 15, 17, 0.97) 0%, rgba(24, 24, 27, 0.95) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  color: var(--awb-text-inverse);
  padding: 0 !important;
  height: var(--awb-topbar-height);
  max-height: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  font-size: 13px;
  position: relative;
}

/* Override classic theme blockcart gray background */
#header .header-nav .blockcart {
  background: transparent !important;
  height: auto !important;
  padding: 0 !important;
  margin-left: 0 !important;
}

/* Override classic theme cart preview body hidden */
#header .header-nav .cart-preview .body {
  display: block;
}

/* Ensure header-nav row + container fill exactly */
.header-nav > .container,
.header-nav > .container > .row {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.header-nav .right-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-top: 0 !important;
}

/* Override classic theme dark link colors inside header */
#header .header-nav a,
.header-nav a {
  color: rgba(250, 250, 250, 0.75) !important;
}
.header-nav a:hover,
.header-nav a:focus {
  color: var(--awb-text-inverse) !important;
}

/* Override classic user-info margin */
#header .header-nav .user-info {
  margin-top: 0 !important;
  margin-left: 0 !important;
  text-align: inherit !important;
}

/* Top contact */
.awb-top-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.awb-top-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(250, 250, 250, 0.75) !important;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 4px 8px;
  border-radius: var(--awb-radius-sm);
  transition: all var(--awb-transition);
  white-space: nowrap;
  line-height: 1;
}
.awb-top-contact__item:hover {
  color: var(--awb-text-inverse) !important;
  background: rgba(255, 255, 255, 0.08);
}
.awb-top-contact__item svg.awb-icon {
  width: 15px;
  height: 15px;
  opacity: 0.75;
  transition: opacity var(--awb-transition);
}
.awb-top-contact__item:hover svg.awb-icon {
  opacity: 1;
}
.awb-top-contact__divider {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* ── Top bar: nav-actions (cart + login) ───────────────── */
.awb-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  height: 100%;
}
.awb-nav-actions > div {
  display: flex;
  align-items: center;
}

/* Navigation link base */
.awb-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(250, 250, 250, 0.75) !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--awb-radius-sm);
  transition: all var(--awb-transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.awb-nav-link:hover {
  color: var(--awb-text-inverse) !important;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.awb-nav-link:focus-visible {
  outline: 2px solid var(--awb-accent);
  outline-offset: 2px;
}

/* SVG icons in the top bar */
svg.awb-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
svg.awb-icon-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity var(--awb-transition);
}
.awb-nav-link:hover svg.awb-icon-sm {
  opacity: 1;
}

/* Cart in top bar */
.awb-cart-wrapper {
  display: flex;
  align-items: center;
}
.awb-cart-wrapper .blockcart > .header {
  margin: 0;
}
.awb-cart-wrapper .blockcart > .header a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(250, 250, 250, 0.75) !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--awb-radius-sm);
  transition: all var(--awb-transition);
  white-space: nowrap;
}
.awb-cart-wrapper .blockcart > .header a:hover {
  color: var(--awb-text-inverse) !important;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.awb-cart-label {
  letter-spacing: 0.01em;
}

/* Cart dropdown in dark bar */
.awb-cart-wrapper .blockcart .body {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--awb-bg);
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-radius-md);
  box-shadow: var(--awb-shadow-xl);
  min-width: 320px;
  z-index: 1100;
  color: var(--awb-text);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.awb-cart-wrapper .blockcart:hover .body {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Cart badge */
.awb-cart-badge {
  background: linear-gradient(135deg, var(--awb-sale) 0%, #ff8a4c 100%);
  color: var(--awb-text-inverse) !important;
  font-size: 11px !important;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: var(--awb-radius-full);
  box-shadow: 0 2px 6px rgba(246, 105, 30, 0.4);
  animation: awb-cart-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* User info links */
.awb-user-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.awb-user-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(250, 250, 250, 0.75) !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--awb-radius-sm);
  transition: all var(--awb-transition);
  white-space: nowrap;
}
.awb-user-info a:hover {
  color: var(--awb-text-inverse) !important;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

/* Nav divider between cart and login */
.awb-nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 4px;
  flex-shrink: 0;
}

/* Hide default blockcart body text (we only want badge count) */
.awb-cart-wrapper .blockcart .header a span:not(.awb-cart-badge):not(.awb-cart-label) {
  display: none;
}

/* Top bar icons */
.header-nav .material-icons {
  color: rgba(250, 250, 250, 0.75);
}

/* ── Main Header Area ─────────────────────────────────────── */
.awb-header-main,
.header-top {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border-bottom: 1px solid var(--awb-border-light);
  padding: 12px 0;
  position: relative;
  z-index: 100;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Remove old blue border, replace with gradient accent line */
.header-top::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--awb-primary) 0%,
    var(--awb-accent) 50%,
    var(--awb-primary) 100%
  );
  background-size: 200% 100%;
  animation: awb-gradient-slide 6s ease infinite;
  opacity: 0.7;
}
@keyframes awb-gradient-slide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Logo */
#_desktop_logo img {
  max-height: 52px;
  width: auto;
  transition: transform var(--awb-transition);
}
#_desktop_logo:hover img {
  transform: scale(1.02);
}

/* Search bar — 2026 pill style */
.header-top .widget-search {
  max-width: 560px;
  width: 100%;
}
.header-top .widget-search form {
  display: flex;
  border-radius: var(--awb-radius-full);
  overflow: hidden;
  box-shadow: var(--awb-shadow-xs);
  border: 1.5px solid var(--awb-border);
  transition: all var(--awb-transition);
}
.header-top .widget-search form:focus-within {
  border-color: var(--awb-primary);
  box-shadow: 0 0 0 3px var(--awb-primary-glow);
}
.header-top input[type="text"] {
  border: none;
  border-radius: var(--awb-radius-full) 0 0 var(--awb-radius-full);
  font-family: var(--awb-font);
  font-size: 14px;
  padding: 10px 18px;
  background: var(--awb-bg);
  color: var(--awb-text);
}
.header-top input[type="text"]:focus {
  outline: none;
}
.header-top input[type="text"]::placeholder {
  color: var(--awb-text-light);
}
.header-top .widget-search button {
  background-color: var(--awb-primary);
  border-color: var(--awb-primary);
  color: var(--awb-text-inverse);
  border-radius: 0 var(--awb-radius-full) var(--awb-radius-full) 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--awb-transition);
}
.header-top .widget-search button:hover {
  background-color: var(--awb-primary-hover);
}

/* Cart — 2026 floating badge */
.blockcart {
  position: relative;
}
.blockcart .cart-products-count {
  background: linear-gradient(135deg, var(--awb-sale) 0%, #ff8a4c 100%);
  color: var(--awb-text-inverse);
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--awb-radius-full);
  box-shadow: 0 2px 6px rgba(246, 105, 30, 0.4);
  animation: awb-cart-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes awb-cart-pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ── Navigation / Menu — 2026 Modern Nav ──────────────────── */

/* Remove old flat blue menu, use 2026 pill-style navigation */
#_desktop_top_menu,
#_desktop_top_menu .mainmenu {
  background: transparent !important;
}
#_desktop_top_menu .mainmenu {
  display: flex;
  align-items: center;
  gap: var(--awb-nav-item-gap);
  padding: 0;
}
#_desktop_top_menu .mainmenu > li {
  position: relative;
}
#_desktop_top_menu .mainmenu > li > a {
  color: var(--awb-text) !important;
  font-family: var(--awb-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 10px 16px;
  border-radius: var(--awb-radius-md);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hover: soft pill highlight */
#_desktop_top_menu .mainmenu > li > a:hover {
  background: var(--awb-primary-light);
  color: var(--awb-primary) !important;
}

/* Active state: filled pill */
#_desktop_top_menu .mainmenu > li.active > a,
#_desktop_top_menu .mainmenu > li.current > a {
  background: var(--awb-primary);
  color: var(--awb-text-inverse) !important;
  box-shadow: var(--awb-shadow-md), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

/* Animated underline indicator on hover */
#_desktop_top_menu .mainmenu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--awb-primary);
  border-radius: 1px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#_desktop_top_menu .mainmenu > li > a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
#_desktop_top_menu .mainmenu > li.active > a::after,
#_desktop_top_menu .mainmenu > li.current > a::after {
  display: none;
}

/* Dropdown menus — 2026 frosted glass cards */
#_desktop_top_menu .mainmenu .dropdown-menu,
#_desktop_top_menu .mainmenu .popover.sub-menu {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(228, 228, 231, 0.6);
  border-top: none;
  border-radius: 0 0 var(--awb-radius-lg) var(--awb-radius-lg);
  box-shadow: var(--awb-shadow-xl);
  padding: 8px;
  min-width: 220px;
  animation: awb-dropdown-in 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes awb-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#_desktop_top_menu .mainmenu .dropdown-menu a,
#_desktop_top_menu .mainmenu .popover.sub-menu a {
  color: var(--awb-text) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--awb-radius-sm);
  transition: all 0.15s ease;
}
#_desktop_top_menu .mainmenu .dropdown-menu a:hover,
#_desktop_top_menu .mainmenu .popover.sub-menu a:hover {
  background: var(--awb-primary-light);
  color: var(--awb-primary) !important;
  padding-left: 18px;
}

/* ── Sticky Menu — 2026 compact frosted glass ────────────── */
@media (min-width: 768px) {
  .header-top.sticky,
  .header-top.awb-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px) saturate(2);
    -webkit-backdrop-filter: blur(24px) saturate(2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 8px 0;
    animation: awb-sticky-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .header-top.sticky #_desktop_logo img,
  .header-top.awb-sticky #_desktop_logo img {
    max-height: 40px;
  }
  .header-top.sticky::after,
  .header-top.awb-sticky::after {
    opacity: 0.4;
  }
  @keyframes awb-sticky-in {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ── Mobile menu — 2026 slide-in drawer ──────────────────── */
@media (max-width: 767px) {
  .awb-top-bar {
    height: auto;
    padding: 6px 0;
  }
  .header-top {
    padding: 10px 0;
  }
  .header-top::after {
    height: 1.5px;
  }
  #_desktop_logo img,
  #menu-icon img,
  .top-logo img {
    max-height: 40px;
  }
}

/* ── Homepage ──────────────────────────────────────────────── */

/* Slider */
#carousel,
.images-slider {
  margin-bottom: 30px;
}

/* Section titles */
section .h1,
section .title {
  font-family: var(--awb-font);
  font-weight: 600;
  color: var(--awb-dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
section .h1::after,
section .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--awb-primary);
}

/* Featured / New / Specials tabs */
.home-tabs {
  margin-bottom: 30px;
}
.home-tabs .nav-link {
  color: var(--awb-text);
  font-family: var(--awb-font);
  font-weight: 500;
  border: none;
  padding: 10px 25px;
  border-bottom: 3px solid transparent;
}
.home-tabs .nav-link.active {
  color: var(--awb-primary);
  border-bottom-color: var(--awb-primary);
}

/* ── Product Cards ─────────────────────────────────────────── */
.product-miniature {
  background: var(--awb-bg);
  border: 1px solid var(--awb-border-light);
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
}
.product-miniature:hover {
  box-shadow: var(--awb-shadow-hover);
  border-color: var(--awb-primary);
  transform: translateY(-3px);
}
.product-miniature .product-title a {
  color: var(--awb-text);
  font-weight: 500;
  font-size: 14px;
}
.product-miniature .product-title a:hover {
  color: var(--awb-primary);
}
.product-miniature .price {
  color: var(--awb-primary);
  font-weight: 700;
  font-size: 18px;
}
.product-miniature .regular-price {
  color: var(--awb-text-light);
  text-decoration: line-through;
  font-size: 14px;
}
.product-miniature .discount-percentage {
  background-color: var(--awb-sale);
  color: var(--awb-text-inverse);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Product thumbnail */
.product-miniature .thumbnail-container {
  text-align: center;
  margin-bottom: 10px;
}
.product-miniature .thumbnail-container img {
  max-width: 100%;
  height: auto;
}

/* Quick add-to-cart hover */
.product-miniature .product-add-cart {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.product-miniature:hover .product-add-cart {
  opacity: 1;
}

/* ── Category Page ─────────────────────────────────────────── */
#left-column {
  border-right: 1px solid var(--awb-border-light);
  padding-right: 20px;
}

/* Category tree */
.category-tree .category-item a {
  color: var(--awb-text);
  font-family: var(--awb-font);
  padding: 6px 0;
}
.category-tree .category-item a:hover,
.category-tree .category-item.active a {
  color: var(--awb-primary);
}

/* Faceted search */
#search_filters .facet {
  border-bottom: 1px solid var(--awb-border-light);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#search_filters .facet-title {
  font-weight: 600;
  color: var(--awb-dark);
}

/* ── Product Page ──────────────────────────────────────────── */
.product-cover {
  border: 1px solid var(--awb-border-light);
  border-radius: 4px;
  overflow: hidden;
}
.product-prices .current-price .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--awb-primary);
}
.product-prices .discount {
  display: inline-block;
  background-color: var(--awb-sale);
  color: var(--awb-text-inverse);
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
}
.product-add-to-cart .add-to-cart {
  background-color: var(--awb-primary);
  border-color: var(--awb-primary);
  color: var(--awb-text-inverse);
  font-family: var(--awb-font);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 3px;
}
.product-add-to-cart .add-to-cart:hover {
  background-color: var(--awb-primary-hover);
}

/* Product tabs */
.product-tabs .nav-link {
  color: var(--awb-text);
  font-family: var(--awb-font);
  font-weight: 500;
  border: none;
  padding: 12px 20px;
  border-bottom: 3px solid transparent;
}
.product-tabs .nav-link.active {
  color: var(--awb-primary);
  border-bottom-color: var(--awb-primary);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer-container {
  background-color: var(--awb-footer-bg);
  color: var(--awb-text-inverse);
  padding-top: 40px;
}
.footer-container a {
  color: #b0b0b0;
}
.footer-container a:hover {
  color: var(--awb-text-inverse);
}
.footer-container h3,
.footer-container .h3 {
  color: var(--awb-text-inverse);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Newsletter */
#footer .block_newsletter {
  border-top: none;
  padding-top: 0;
}
#footer .block_newsletter input[type="email"] {
  background-color: var(--awb-dark-3);
  border: 1px solid var(--awb-dark-3);
  color: var(--awb-text-inverse);
  border-radius: 3px 0 0 3px;
}
#footer .block_newsletter input[type="email"]::placeholder {
  color: #999;
}
#footer .block_newsletter button {
  background-color: var(--awb-primary);
  border-color: var(--awb-primary);
  color: var(--awb-text-inverse);
  border-radius: 0 3px 3px 0;
}

/* Social follow */
.ps-socialfollow a {
  color: var(--awb-text-inverse);
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.2s ease;
}
.ps-socialfollow a:hover {
  color: var(--awb-accent);
}

/* Bottom copyright bar */
.bottom-footer {
  background-color: var(--awb-dark);
  padding: 15px 0;
  margin-top: 30px;
  text-align: center;
  color: #999;
  font-size: 13px;
}

/* ── Trust Badges / Reassurance ────────────────────────────── */
.blockreassurance {
  padding: 15px 0;
}
.blockreassurance .blockreassurance-item {
  text-align: center;
}
.blockreassurance .blockreassurance-item .material-icons {
  color: var(--awb-primary);
  font-size: 32px;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  background: transparent;
  padding: 10px 0;
  font-size: 13px;
}
.breadcrumb-item a {
  color: var(--awb-text-light);
}
.breadcrumb-item.active {
  color: var(--awb-primary);
}

/* ── Pagination ────────────────────────────────────────────── */
.pagination .page-item .page-link {
  color: var(--awb-text);
  border-radius: 3px;
  margin: 0 2px;
}
.pagination .page-item.active .page-link {
  background-color: var(--awb-primary);
  border-color: var(--awb-primary);
  color: var(--awb-text-inverse);
}

/* ── Accessibility: Focus & Skip ──────────────────────── */
.awb-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--awb-primary);
  color: var(--awb-text-inverse);
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--awb-radius-md) 0;
  transition: top 0.2s;
}
.awb-skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 3px solid var(--awb-primary);
  outline-offset: 2px;
}
.awb-service-card:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 3px var(--awb-primary);
}
.btn:focus-visible {
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--awb-primary);
}
/* Menu focus states */
#_desktop_top_menu .mainmenu > li > a:focus-visible {
  outline: 2px solid var(--awb-primary);
  outline-offset: 2px;
  background: var(--awb-primary-light);
  border-radius: var(--awb-radius-md);
}

/* ── Responsive ────────────────────────────────────────────── */

/* Large tablets & small desktops */
@media (max-width: 1199px) {
  .product-miniature {
    padding: 10px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  #left-column {
    border-right: none;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .header-nav {
    padding: 0;
  }
  .header-top {
    padding: 10px 0;
  }
  .product-miniature .product-add-cart {
    opacity: 1;
    position: static;
  }
  .product-prices .current-price .price {
    font-size: 22px;
  }
}

/* ── Scroll-to-top ─────────────────────────────────────────── */
#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--awb-primary);
  color: var(--awb-text-inverse);
  border: none;
  border-radius: var(--awb-radius-lg);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--awb-shadow-lg), var(--awb-shadow-glow);
  cursor: pointer;
  z-index: 999;
  transition: all var(--awb-transition);
}
#scroll-to-top:hover {
  background-color: var(--awb-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--awb-shadow-xl), var(--awb-shadow-glow);
}
#scroll-to-top.visible {
  display: flex;
}

/* ── Utility ───────────────────────────────────────────────── */
.text-accent { color: var(--awb-accent) !important; }
.bg-dark-surface { background-color: var(--awb-dark-2) !important; }
.awb-section { padding: var(--awb-section-py) 0; }
.awb-section-alt { background-color: var(--awb-bg-alt); padding: var(--awb-section-py) 0; }

/* ============================================================
   HOMEPAGE — Hero Section
   ============================================================ */

.awb-hero {
  position: relative;
  background: var(--awb-hero-bg) url('../img/hero-bg.jpg') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtle gradient vignette on top of the image, behind the overlay */
.awb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    rgba(0, 0, 0, 0.50) 100%
  );
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .awb-hero {
    background-image: url('../img/hero-bg-mobile.jpg');
    min-height: 440px;
  }
}

.awb-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 26, 27, 0.55);
  z-index: 1;
}

.awb-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--awb-text-inverse);
  padding: 70px 20px;
  max-width: 820px;
}

.awb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  animation: awb-hero-fadeIn 0.8s ease-out;
}
.awb-hero__badge .material-icons {
  font-size: 16px;
  color: var(--awb-accent);
}

.awb-hero__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.4),
    0 3px 10px rgba(0, 0, 0, 0.25);
  animation: awb-hero-fadeIn 0.8s ease-out;
}

.awb-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2);
  animation: awb-hero-fadeIn 0.8s ease-out 0.2s both;
}

.awb-hero__cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: awb-hero-fadeIn 0.8s ease-out 0.4s both;
}
@keyframes awb-hero-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.awb-hero__btn-primary {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--awb-primary);
  border-color: var(--awb-primary);
  box-shadow: 0 4px 14px rgba(27, 130, 214, 0.4);
  transition: all 0.25s ease;
}
.awb-hero__btn-primary:hover {
  background-color: var(--awb-primary-hover);
  border-color: var(--awb-primary-hover);
  box-shadow: 0 6px 20px rgba(27, 130, 214, 0.5);
  transform: translateY(-1px);
}
.awb-hero__btn-primary .material-icons {
  font-size: 20px;
}

.awb-hero__btn-secondary {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.awb-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-1px);
}
.awb-hero__btn-secondary .material-icons {
  font-size: 20px;
}

.awb-hero__status {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: awb-hero-fadeIn 0.8s ease-out 0.6s both;
}
.awb-hero__hours {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.awb-hero__hours.awb-open {
  color: var(--awb-success);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.awb-hero__hours.awb-closed {
  color: #e74c3c;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.awb-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero responsive */
@media (max-width: 991px) {
  .awb-hero {
    min-height: 460px;
  }
  .awb-hero__title {
    font-size: 2.4rem;
  }
  .awb-hero__subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .awb-hero {
    min-height: 420px;
  }
  .awb-hero__content {
    padding: 45px 20px;
  }
  .awb-hero__title {
    font-size: 1.85rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }
  .awb-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.55;
  }
  .awb-hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .awb-hero__btn-primary,
  .awb-hero__btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .awb-hero__status {
    font-size: 0.85rem;
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   HOMEPAGE — Trust Bar
   ============================================================ */
.awb-trust {
  background-color: var(--awb-trust-bar-bg);
  padding: 20px 0;
  border-bottom: 1px solid var(--awb-border-light);
}
.awb-trust__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.awb-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  white-space: nowrap;
}
.awb-trust__icon {
  color: var(--awb-primary);
  font-size: 24px;
}
.awb-trust__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--awb-dark);
}

/* Trust bar mobile — horizontal scroll */
@media (max-width: 767px) {
  .awb-trust__list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 15px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .awb-trust__list::-webkit-scrollbar {
    display: none;
  }
  .awb-trust__item {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .awb-trust__text {
    font-size: 0.8rem;
  }
  .awb-trust__icon {
    font-size: 20px;
  }
}

/* ============================================================
   HOMEPAGE — Section Title (shared)
   ============================================================ */
.awb-section__title {
  font-family: var(--awb-font);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--awb-dark);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.awb-section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--awb-primary);
  border-radius: 2px;
}

/* ============================================================
   HOMEPAGE — Service Cards
   ============================================================ */
.awb-service-card {
  display: block;
  background: var(--awb-service-card-bg);
  border: 1px solid var(--awb-service-card-border);
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--awb-text);
  transition: all var(--awb-transition);
  margin-bottom: 20px;
  height: 100%;
}
.awb-service-card:hover,
.awb-service-card:focus {
  box-shadow: var(--awb-shadow-hover);
  border-color: var(--awb-primary);
  transform: translateY(-4px);
  color: var(--awb-text);
  text-decoration: none;
}
.awb-service-card__icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #e8f4fd 0%, #d1ecfa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awb-service-card__icon-wrap .material-icons {
  font-size: 32px;
  color: var(--awb-primary);
}
.awb-service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--awb-dark);
  margin-bottom: 12px;
}
.awb-service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  text-align: left;
}
.awb-service-card__features li {
  font-size: 0.85rem;
  color: var(--awb-text-body);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
.awb-service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--awb-primary);
}
.awb-service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--awb-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.awb-service-card__link .material-icons {
  font-size: 16px;
  transition: transform var(--awb-transition);
}
.awb-service-card:hover .awb-service-card__link .material-icons {
  transform: translateX(4px);
}

/* Service cards mobile */
@media (max-width: 767px) {
  .awb-service-card {
    padding: 20px 15px;
  }
  .awb-service-card__icon-wrap {
    width: 56px;
    height: 56px;
  }
  .awb-service-card__icon-wrap .material-icons {
    font-size: 26px;
  }
  .awb-service-card__title {
    font-size: 0.95rem;
  }
}

/* ============================================================
   HOMEPAGE — Products Section
   ============================================================ */
.awb-products {
  /* Extends awb-section-alt via the class in the template */
}
.awb-products .tab-content {
  margin-top: 10px;
}

/* ============================================================
   HOMEPAGE — CTA Split Section
   ============================================================ */
.awb-cta {
  background-color: var(--awb-cta-bg);
}
.awb-cta__image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.awb-cta__image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--awb-shadow);
}
.awb-cta__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.awb-cta__text-col {
  padding: 20px 0;
}
.awb-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--awb-dark);
  margin-bottom: 15px;
}
.awb-cta__desc {
  font-size: 1.05rem;
  color: var(--awb-text-body);
  line-height: 1.7;
  margin-bottom: 25px;
}
.awb-cta__text-col .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 16px;
}
.awb-cta__text-col .btn .material-icons {
  font-size: 20px;
}

/* CTA responsive */
@media (max-width: 767px) {
  .awb-cta__title {
    font-size: 1.5rem;
  }
  .awb-cta__desc {
    font-size: 0.95rem;
  }
  .awb-cta__image {
    max-width: 280px;
  }
}

/* ============================================================
   HOMEPAGE — Why AWB Section
   ============================================================ */
.awb-why__card {
  text-align: center;
  padding: 30px 20px;
}
.awb-why__icon {
  font-size: 48px;
  color: var(--awb-primary);
  margin-bottom: 18px;
  display: block;
}
.awb-why__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--awb-dark);
  margin-bottom: 12px;
}
.awb-why__text {
  font-size: 0.95rem;
  color: var(--awb-text-body);
  line-height: 1.6;
}

/* ============================================================
   HOMEPAGE — Footer Enhancements
   ============================================================ */
.awb-footer-info {
  margin-bottom: 20px;
}
.awb-footer-info p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.6;
}
.awb-footer-contact {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
.awb-footer-contact li {
  padding: 4px 0;
  font-size: 0.9rem;
}
.awb-footer-contact li .material-icons {
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
  color: var(--awb-primary);
}
.awb-footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.awb-footer-hours li {
  padding: 4px 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.awb-footer-hours li:last-child {
  border-bottom: none;
}
.awb-footer-hours .day {
  color: #b0b0b0;
}
.awb-footer-hours .time {
  color: var(--awb-text-inverse);
  font-weight: 500;
}
.awb-footer-links {
  list-style: none;
  padding: 0;
}
.awb-footer-links li {
  padding: 5px 0;
}
.awb-footer-links a {
  font-size: 0.9rem;
  transition: color var(--awb-transition);
}
.awb-footer-links a:hover {
  color: var(--awb-accent);
  padding-left: 4px;
}

/* ============================================================
   HOMEPAGE — Page-level adjustments
   ============================================================ */

/* ── Full-width homepage layout ────────────────────────────── */
/* The PrestaShop layout wraps #content inside .container > .row > #content-wrapper
   which constrains everything to ~1170px max-width. On the homepage we want edge-to-edge
   hero and trust bar, while inner sections have their own .container already.
   Solution: neutralise the ancestor wrappers on the homepage only.
   NOTE: PrestaShop adds body class "page-index" (not "page-home") on the homepage.
   "page-home" is used on the inner <section id="content">. */

.page-index #wrapper > .container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.page-index #wrapper > .container > .row {
  margin-left: 0;
  margin-right: 0;
}
.page-index #content-wrapper {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  flex: 0 0 100% !important;
  -ms-flex: 0 0 100% !important;
  width: 100%;
}

/* Remove default page-content card on homepage */
.page-index #content,
.page-home #content {
  padding: 0;
  background: transparent;
  border: none;
  overflow-x: hidden;
}
.page-index .page-content.card.card-block,
.page-home .page-content.card.card-block {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Ensure products section gets proper spacing */
.page-home .awb-products .tab-content .row,
.page-home .awb-products #products .row {
  margin: 0 -10px;
}

/* Hide left column on homepage (full-width layout) */
.page-index #left-column,
.page-home #left-column {
  display: none;
}

/* Hide breadcrumb on homepage — no parent path needed */
.page-index .breadcrumb,
.page-home .breadcrumb {
  display: none;
}
