/* =============================================================
   airbnb-modern.css — AWH Premium Design System v2
   Loaded last so it overrides style.css / awh-styles.css
   ============================================================= */

/* ─── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand */
  --awh-primary:        #FF385C;
  --awh-primary-dark:   #E31C5F;
  --awh-primary-light:  #FF5A5F;

  /* Premium accents */
  --awh-gold:           #C9A84C;
  --awh-gold-light:     #e8d5a0;
  --awh-navy:           #0f3460;
  --awh-navy-dark:      #081d3a;
  --awh-navy-mid:       #16213e;

  /* Text */
  --awh-text:           #222222;
  --awh-text-secondary: #717171;
  --awh-text-muted:     #b0b0b0;

  /* Surface */
  --awh-bg:             #ffffff;
  --awh-surface-soft:   #f7f7f7;
  --awh-border:         #DDDDDD;
  --awh-border-light:   #ebebeb;

  /* Shadows */
  --awh-shadow-xs:  0 1px 2px  rgba(0,0,0,.08);
  --awh-shadow-sm:  0 2px 10px rgba(0,0,0,.10);
  --awh-shadow-md:  0 6px 20px rgba(0,0,0,.12);
  --awh-shadow-lg:  0 14px 40px rgba(0,0,0,.16);
  --awh-shadow-xl:  0 24px 60px rgba(0,0,0,.20);
  --awh-shadow-search: 0 3px 12px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.10);

  /* Radius */
  --awh-radius-xs:  4px;
  --awh-radius-sm:  8px;
  --awh-radius-md:  12px;
  --awh-radius-lg:  16px;
  --awh-radius-xl:  24px;
  --awh-radius-pill: 999px;

  /* Spacing */
  --awh-space-xs:   4px;
  --awh-space-sm:   8px;
  --awh-space-md:   16px;
  --awh-space-lg:   24px;
  --awh-space-xl:   40px;
  --awh-space-2xl:  64px;

  /* Typography */
  --awh-font-family:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --awh-font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --awh-font-size-xs:   11px;
  --awh-font-size-sm:   13px;
  --awh-font-size-base: 14px;
  --awh-font-size-md:   16px;
  --awh-font-size-lg:   18px;
  --awh-font-size-xl:   22px;
  --awh-font-size-2xl:  28px;
  --awh-font-size-3xl:  40px;

  /* Transition */
  --awh-transition: 0.2s ease;
  --awh-transition-slow: 0.35s ease;
}

/* ─── 2. Global Base ────────────────────────────────────────── */
body.awh-site {
  font-family: var(--awh-font-family) !important;
  font-size: var(--awh-font-size-base);
  color: var(--awh-text);
  background: var(--awh-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Apply DM Sans to all elements but NOT icon pseudo-elements */
.awh-site * {
  font-family: var(--awh-font-family) !important;
}

/* ─── CRITICAL: Restore icon font families ─────────────────── */
/* Font Awesome — must come AFTER the wildcard override */
.awh-site .fa::before,
.awh-site .fas::before,
.awh-site .far::before,
.awh-site .fal::before,
.awh-site .fab::before,
.awh-site [class^="fa-"]::before,
.awh-site [class*=" fa-"]::before,
.awh-site .fa::after,
.awh-site .fas::after,
.awh-site .far::after,
.awh-site .fal::after,
.awh-site .fab::after,
.awh-site [class^="fa-"]::after,
.awh-site [class*=" fa-"]::after {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
}

/* Icomoon icon font */
.awh-site [class^="icon-"]::before,
.awh-site [class*=" icon-"]::before,
.awh-site [class^="icon-"]::after,
.awh-site [class*=" icon-"]::after {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

@supports (speak: never) {
  .awh-site [class^="icon-"]::before,
  .awh-site [class*=" icon-"]::before,
  .awh-site [class^="icon-"]::after,
  .awh-site [class*=" icon-"]::after {
    speak: never;
  }
}

.awh-site h1, .awh-site h2, .awh-site h3,
.awh-site h4, .awh-site h5, .awh-site h6 {
  font-family: var(--awh-font-family) !important;
  color: var(--awh-text);
  letter-spacing: -0.01em;
}

.awh-site a {
  color: var(--awh-text);
  text-decoration: none;
}

.awh-site a:hover { text-decoration: underline; }

/* ─── 3. Navbar / Header ────────────────────────────────────── */
.awh-site .awh-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--awh-border-light);
  transition: box-shadow var(--awh-transition);
}

.awh-site .awh-header__nav {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 80px;
  background: transparent !important;
}

/* Scrolled state — shadow emphasis */
.awh-site .awh-header__nav.scrolled,
.awh-site #mainNavbar.scrolled {
  box-shadow: var(--awh-shadow-sm) !important;
}

/* Logo */
.awh-site .awh-header__brand {
  font-size: 26px;
  font-weight: 700;
  color: var(--awh-primary) !important;
  letter-spacing: -0.5px;
  text-decoration: none !important;
}

.awh-site .awh-header__brand .logo-text {
  color: var(--awh-primary);
}

.awh-site .awh-header__brand img {
  max-height: 36px;
  width: auto;
}

/* ─── 4. Navbar Pill Search Bar ─────────────────────────────── */
.awh-site .awh-header__search {
  flex: 1;
  max-width: 560px;
  margin: 0 auto;
}

.awh-site .search-box,
.awh-site .awh-header__search-box {
  display: flex;
  align-items: center;
  background: var(--awh-bg);
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-pill) !important;
  box-shadow: var(--awh-shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--awh-transition);
  height: 48px;
}

.awh-site .search-box:focus-within,
.awh-site .awh-header__search-box:focus-within {
  box-shadow: var(--awh-shadow-search) !important;
  border-color: var(--awh-border) !important;
}

.awh-site .search-field,
.awh-site .awh-header__search-field {
  flex: 1;
  padding: 0 16px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.awh-site .search-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--awh-text);
  line-height: 1;
  margin-bottom: 2px;
  display: block;
}

.awh-site .search-field input,
.awh-site .awh-header__search-field input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: var(--awh-font-size-sm);
  color: var(--awh-text-secondary);
  width: 100%;
  font-family: var(--awh-font-family) !important;
}

.awh-site .search-field input::placeholder {
  color: var(--awh-text-secondary);
  font-size: var(--awh-font-size-sm);
}

.awh-site .search-divider {
  width: 1px;
  height: 24px;
  background: var(--awh-border);
  flex-shrink: 0;
}

.awh-site .search-submit,
.awh-site .awh-header__search-submit {
  background: var(--awh-primary) !important;
  border: none !important;
  border-radius: var(--awh-radius-pill) !important;
  color: #fff !important;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--awh-transition), transform var(--awh-transition);
  flex-shrink: 0;
}

.awh-site .search-submit:hover,
.awh-site .awh-header__search-submit:hover {
  background: var(--awh-primary-dark) !important;
  transform: scale(1.04);
}

/* ─── 5. Navbar Actions (right side) ───────────────────────── */
.awh-site .awh-header__host-link {
  font-size: var(--awh-font-size-sm);
  font-weight: 600;
  color: var(--awh-text) !important;
  padding: 10px 14px !important;
  border-radius: var(--awh-radius-pill);
  text-decoration: none !important;
  transition: background var(--awh-transition);
  white-space: nowrap;
}

.awh-site .awh-header__host-link:hover {
  background: var(--awh-surface-soft);
  text-decoration: none !important;
}

.awh-site .profile-btn {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: var(--awh-bg) !important;
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-pill) !important;
  padding: 7px 10px !important;
  font-size: 14px;
  color: var(--awh-text) !important;
  transition: box-shadow var(--awh-transition);
}

.awh-site .profile-btn:hover {
  box-shadow: var(--awh-shadow-md) !important;
}

.awh-site .dropdown-menu {
  border: 1px solid var(--awh-border-light) !important;
  border-radius: var(--awh-radius-md) !important;
  box-shadow: var(--awh-shadow-lg) !important;
  padding: 8px 0 !important;
  min-width: 220px;
  margin-top: 8px !important;
}

.awh-site .dropdown-item {
  font-size: var(--awh-font-size-sm);
  color: var(--awh-text);
  padding: 11px 18px !important;
  font-weight: 400;
  transition: background var(--awh-transition);
}

.awh-site .dropdown-item:hover,
.awh-site .dropdown-item:focus {
  background: var(--awh-surface-soft) !important;
  color: var(--awh-text) !important;
}

.awh-site .dropdown-divider {
  border-color: var(--awh-border-light) !important;
  margin: 4px 0 !important;
}

/* ─── 6. Category Navigation Bar ───────────────────────────── */
.awh-category-nav {
  background: var(--awh-bg);
  border-bottom: 1px solid var(--awh-border-light);
  position: sticky;
  top: 80px;
  z-index: 1020;
  overflow: hidden;
}

.awh-category-nav__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  gap: 0;
  padding: 0 24px;
}

@supports (-webkit-overflow-scrolling: touch) {
  .awh-category-nav__inner {
    -webkit-overflow-scrolling: touch;
  }
}

@supports (scrollbar-width: none) {
  .awh-category-nav__inner {
    scrollbar-width: none;
  }
}

.awh-category-nav__inner::-webkit-scrollbar { display: none; }

.awh-category-nav__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color var(--awh-transition), color var(--awh-transition), opacity var(--awh-transition);
  text-decoration: none !important;
  color: var(--awh-text-secondary);
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

.awh-category-nav__item:hover {
  border-color: var(--awh-border);
  color: var(--awh-text);
  opacity: 1;
  text-decoration: none !important;
}

.awh-category-nav__item.active {
  border-color: var(--awh-text) !important;
  color: var(--awh-text) !important;
  opacity: 1;
}

.awh-category-nav__icon {
  font-size: 22px;
  display: block;
  line-height: 1;
}

.awh-category-nav__label {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.awh-category-nav__filters {
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 16px;
  border-left: 1px solid var(--awh-border-light);
}

.awh-category-nav__filters .btn-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-sm) !important;
  background: var(--awh-bg) !important;
  color: var(--awh-text) !important;
  font-size: var(--awh-font-size-sm);
  font-weight: 600;
  padding: 8px 16px;
  white-space: nowrap;
  transition: box-shadow var(--awh-transition);
}

.awh-category-nav__filters .btn-filters:hover {
  box-shadow: var(--awh-shadow-sm);
}

/* ─── 7. Hero Section ───────────────────────────────────────── */
.awh-site .hero-banner,
.awh-site .hero-banner-1 {
  position: relative !important;
  min-height: 520px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background-color: #0f3460 !important;
  padding: 80px 0 60px !important;
  margin-top: 0 !important;
}

/* Overlay on top of any bg-image */
.awh-site .hero-banner::before,
.awh-site .hero-banner-1::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(15,52,96,0.92) 0%, rgba(26,26,46,0.88) 50%, rgba(22,33,62,0.85) 100%) !important;
  z-index: 1 !important;
  pointer-events: none;
}

.awh-site .hero-banner .container,
.awh-site .hero-banner .container-lg-fluid,
.awh-site .hero-banner-1 .container,
.awh-site .hero-banner-1 .container-lg-fluid {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Full-width centered hero layout */
.awh-site .hero-banner--centered {
  text-align: center !important;
}

/* Hero titles — Playfair Display for editorial premium feel */
.awh-site .hero-banner--centered .hero-title,
.awh-site .hero-banner .hero-title {
  font-size: clamp(36px, 5vw, 62px) !important;
  font-weight: 700 !important;
  font-family: var(--awh-font-display) !important;
  color: #ffffff !important;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.awh-site .hero-banner--centered .hero-subtitle,
.awh-site .hero-banner .hero-subtitle {
  font-size: var(--awh-font-size-lg) !important;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Hero search bar (full-width pill inside hero) */
.awh-site .hero-search-bar {
  display: flex;
  align-items: center;
  background: var(--awh-bg);
  border-radius: var(--awh-radius-pill);
  box-shadow: var(--awh-shadow-lg);
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  height: 66px;
  border: none;
}

.awh-site .hero-search-bar .hero-search-field {
  flex: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--awh-border-light);
  height: 100%;
  cursor: pointer;
}

.awh-site .hero-search-bar .hero-search-field:last-of-type {
  border-right: none;
}

.awh-site .hero-search-bar .hero-search-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--awh-text);
  margin-bottom: 3px;
  display: block;
  letter-spacing: 0.01em;
}

.awh-site .hero-search-bar input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: var(--awh-font-size-base);
  color: var(--awh-text-secondary);
  background: transparent !important;
  width: 100%;
  font-family: var(--awh-font-family) !important;
}

.awh-site .hero-search-bar input::placeholder {
  color: var(--awh-text-muted);
}

.awh-site .hero-search-bar .hero-search-submit {
  background: var(--awh-primary) !important;
  border: none !important;
  border-radius: var(--awh-radius-pill) !important;
  color: #fff !important;
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--awh-transition), transform var(--awh-transition);
}

.awh-site .hero-search-bar .hero-search-submit:hover {
  background: var(--awh-primary-dark) !important;
  transform: scale(1.05);
}

/* Legacy hero (two-column) — still used in non-v1 */
.awh-site .banner-content .title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.awh-site .banner-content .text {
  color: rgba(255,255,255,0.85);
  font-size: var(--awh-font-size-md);
}

.awh-site .banner-filter-form .form-wrapper {
  border-radius: var(--awh-radius-xl) !important;
  border: none !important;
  box-shadow: var(--awh-shadow-lg) !important;
  padding: 20px 24px !important;
}

/* ─── 8. Listing / Service Cards ────────────────────────────── */

/* Remove all old-style card padding/border/shadow */
.awh-site .product-default {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: none;
}

.awh-site .product-default:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Image container — full-bleed square */
.awh-site .product-default .product-img,
.awh-site .product-default figure.product-img {
  position: relative !important;
  border-radius: var(--awh-radius-md) !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px !important;
  background: var(--awh-surface-soft);
}

.awh-site .product-default .product-img a,
.awh-site .product-default figure.product-img a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
}

.awh-site .product-default .product-img img,
.awh-site .product-default figure.product-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.35s ease;
  border-radius: 0 !important;
  display: block;
}

.awh-site .product-default:hover .product-img img,
.awh-site .product-default:hover figure.product-img img {
  transform: scale(1.04);
}

/* Heart / wishlist button — overlaid on image */
.awh-site .product-default .btn-icon,
.awh-site .product-default .product-img .btn-icon {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: 20px !important;
  z-index: 3;
  padding: 0 !important;
  width: 28px;
  height: 28px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: color var(--awh-transition), transform var(--awh-transition);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.awh-site .product-default .btn-icon:hover {
  color: #ffffff !important;
  transform: scale(1.15) !important;
}

.awh-site .product-default .btn-icon.wishlist-active {
  color: var(--awh-primary) !important;
}

.awh-site .product-default .btn-icon.wishlist-active i::before {
  content: '\f004'; /* fa-heart solid */
}

/* Move the wishlist button inside the image */
.awh-site .product-default .product-details .btn-icon {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
}

/* Card details area */
.awh-site .product-default .product-details {
  padding: 0 2px;
}

.awh-site .product-default .product-details > .d-flex:first-child {
  margin-bottom: 6px;
}

.awh-site .product-default .product-title {
  font-size: var(--awh-font-size-base) !important;
  font-weight: 600 !important;
  color: var(--awh-text) !important;
  margin-bottom: 2px !important;
  line-height: 1.4;
}

.awh-site .product-default .product-title a {
  color: var(--awh-text) !important;
  text-decoration: none !important;
}

.awh-site .product-default .product-title a:hover {
  text-decoration: underline !important;
}

/* Tag / category label */
.awh-site .product-default .tag {
  font-size: var(--awh-font-size-xs);
  font-weight: 600;
  color: var(--awh-text-secondary);
  background: transparent;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Author / vendor row */
.awh-site .product-default .author {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 !important;
}

.awh-site .product-default .author img {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  object-fit: cover;
}

.awh-site .product-default .author .font-sm {
  font-size: var(--awh-font-size-xs) !important;
  color: var(--awh-text-secondary);
}

/* Location / address */
.awh-site .product-default .font-sm.icon-start {
  font-size: var(--awh-font-size-xs) !important;
  color: var(--awh-text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Price row */
.awh-site .product-default .product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.awh-site .product-default .new-price {
  font-size: var(--awh-font-size-base) !important;
  font-weight: 700 !important;
  color: var(--awh-text) !important;
}

.awh-site .product-default .prev-price {
  font-size: var(--awh-font-size-xs) !important;
  color: var(--awh-text-secondary);
  text-decoration: line-through;
}

/* Book Now button on card */
.awh-site .product-default .btn-outline-2 {
  font-size: var(--awh-font-size-xs) !important;
  font-weight: 600 !important;
  border-radius: var(--awh-radius-sm) !important;
  border-color: var(--awh-text) !important;
  color: var(--awh-text) !important;
  padding: 5px 12px !important;
  background: transparent !important;
  transition: background var(--awh-transition), color var(--awh-transition);
}

.awh-site .product-default .btn-outline-2:hover {
  background: var(--awh-text) !important;
  color: #fff !important;
}

/* Listings grid wrapper */
.awh-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

@media (max-width: 767px) {
  .awh-listings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .awh-listings-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Vendor card (same structure as service card) */
.awh-site .product-default .product-img .lazy-container {
  border-radius: var(--awh-radius-md) !important;
}

/* ─── 9. Section Titles ─────────────────────────────────────── */
.awh-site .section-title .title,
.awh-site .content-title .title {
  font-size: clamp(22px, 3vw, 32px) !important;
  font-weight: 700 !important;
  font-family: var(--awh-font-display) !important;
  color: var(--awh-text) !important;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Override DM Sans for all display headings */
.awh-site .section-title .title::before,
.awh-site .content-title .title::before,
.awh-site .hero-title::before {
  font-family: var(--awh-font-display) !important;
}

.awh-site .section-title.title-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* "Show all" / "View More" link style */
.awh-site .section-title.title-inline .btn,
.awh-site .section-title.title-inline a.btn {
  font-size: var(--awh-font-size-sm) !important;
  font-weight: 600;
  color: var(--awh-text) !important;
  background: transparent !important;
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-sm) !important;
  padding: 8px 16px !important;
  text-decoration: none !important;
  transition: box-shadow var(--awh-transition);
}

.awh-site .section-title.title-inline .btn:hover,
.awh-site .section-title.title-inline a.btn:hover {
  box-shadow: var(--awh-shadow-sm);
  text-decoration: none !important;
}

/* ─── 10. Buttons ───────────────────────────────────────────── */
.awh-site .btn-primary,
.awh-site .btn-gradient {
  background: var(--awh-primary) !important;
  border-color: var(--awh-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--awh-radius-sm) !important;
  transition: background var(--awh-transition), transform var(--awh-transition), box-shadow var(--awh-transition);
}

.awh-site .btn-primary:hover,
.awh-site .btn-gradient:hover {
  background: var(--awh-primary-dark) !important;
  border-color: var(--awh-primary-dark) !important;
  box-shadow: var(--awh-shadow-sm);
  transform: translateY(-1px);
}

.awh-site .btn-primary.btn-lg,
.awh-site .btn-gradient.btn-lg {
  padding: 14px 28px !important;
  font-size: var(--awh-font-size-md) !important;
  border-radius: var(--awh-radius-sm) !important;
}

/* ─── 11. Category Filter Tab Bar ───────────────────────────── */
.awh-site .tabs-navigation .nav-tabs {
  display: flex;
  gap: 4px;
  border-bottom: none !important;
  flex-wrap: wrap;
}

.awh-site .tabs-navigation .nav-link,
.awh-site .tabs-navigation .nav-link.hover-effect {
  font-size: var(--awh-font-size-sm) !important;
  font-weight: 600 !important;
  color: var(--awh-text-secondary) !important;
  background: transparent !important;
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-pill) !important;
  padding: 8px 16px !important;
  transition: all var(--awh-transition);
  margin-bottom: 8px;
}

.awh-site .tabs-navigation .nav-link:hover {
  background: var(--awh-surface-soft) !important;
  color: var(--awh-text) !important;
  border-color: var(--awh-text) !important;
}

.awh-site .tabs-navigation .nav-link.active {
  background: var(--awh-text) !important;
  color: #fff !important;
  border-color: var(--awh-text) !important;
}

/* ─── 12. Category Cards (original swiper cards) ────────────── */
.awh-site .category-area .card {
  border: 1px solid var(--awh-border-light) !important;
  border-radius: var(--awh-radius-md) !important;
  box-shadow: none !important;
  padding: 20px !important;
  transition: box-shadow var(--awh-transition), transform var(--awh-transition);
  background: var(--awh-bg);
  text-align: center;
}

.awh-site .category-area .card:hover {
  box-shadow: var(--awh-shadow-md) !important;
  transform: translateY(-3px);
}

.awh-site .category-area .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: var(--awh-radius-md) !important;
  color: #fff;
}

.awh-site .category-area .card-title {
  font-size: var(--awh-font-size-sm) !important;
  font-weight: 600 !important;
  color: var(--awh-text) !important;
  margin-bottom: 4px !important;
}

/* ─── 13. How It Works / Process Cards ─────────────────────── */
.awh-site .works-area .card {
  border-radius: var(--awh-radius-xl) !important;
  border: none !important;
}

/* ─── 14. Testimonial Cards ─────────────────────────────────── */
.awh-site .testimonial-area .slider-item {
  background: var(--awh-surface-soft);
  border-radius: var(--awh-radius-xl) !important;
  padding: 28px !important;
  border: none !important;
  box-shadow: none;
}

/* ─── 15. Service List Page Filter Bar ─────────────────────── */
.awh-service-filter-bar {
  background: var(--awh-bg);
  padding: 16px 0 0;
  margin-bottom: 24px;
}

.awh-service-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 16px;
}

@supports (scrollbar-width: none) {
  .awh-service-filter-pills {
    scrollbar-width: none;
  }
}

.awh-service-filter-pills::-webkit-scrollbar { display: none; }

.awh-service-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--awh-radius-pill);
  border: 1px solid var(--awh-border);
  background: var(--awh-bg);
  color: var(--awh-text);
  font-size: var(--awh-font-size-sm);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none !important;
  transition: all var(--awh-transition);
  flex-shrink: 0;
}

.awh-service-filter-pill:hover {
  border-color: var(--awh-text);
  background: var(--awh-bg);
  color: var(--awh-text);
  text-decoration: none !important;
}

.awh-service-filter-pill.active {
  background: var(--awh-text) !important;
  border-color: var(--awh-text) !important;
  color: #fff !important;
}

.awh-service-filter-pill i {
  font-size: 13px;
}

/* ─── 16. Breadcrumb / Page Title ───────────────────────────── */
/* base padding only — background/colors defined in rule §37 below */
.awh-site .page-title-area .content h2,
.awh-site .page-title-area .content h1 {
  margin-bottom: 8px;
}

.awh-site .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.awh-site .breadcrumb-item a {
  color: var(--awh-text-secondary) !important;
  text-decoration: none !important;
}

.awh-site .breadcrumb-item.active {
  color: var(--awh-text) !important;
  font-weight: 600;
}

.awh-site .breadcrumb-item + .breadcrumb-item::before {
  color: var(--awh-text-secondary) !important;
}

/* ─── 17. Sort / Filter Area (Listing page) ─────────────────── */
.awh-site .sort-area {
  margin-bottom: 24px;
}

.awh-site .sort-list {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.awh-site .sort-item .nice-select,
.awh-site .sort-item select {
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-sm) !important;
  font-size: var(--awh-font-size-sm) !important;
  font-weight: 600;
  color: var(--awh-text);
  background: var(--awh-bg);
  padding: 8px 36px 8px 12px !important;
  min-height: 40px;
}
.awh-site .sort-item .nice-select.open,
.awh-site .sort-item .nice-select:focus {
  border-color: var(--awh-border) !important;
  box-shadow: none !important;
}

/* ─── 18. Sidebar Widgets ───────────────────────────────────── */
.awh-site .widget {
  border: 1px solid var(--awh-border-light) !important;
  border-radius: var(--awh-radius-md) !important;
  box-shadow: none !important;
  padding: 20px !important;
  margin-bottom: 20px;
  background: var(--awh-bg);
}

.awh-site .widget-title {
  font-size: var(--awh-font-size-md) !important;
  font-weight: 700 !important;
  color: var(--awh-text) !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--awh-border-light);
}

/* Price range slider */
.awh-site .noUi-connect {
  background: var(--awh-primary) !important;
}

.awh-site .noUi-handle {
  border-color: var(--awh-primary) !important;
}

/* ─── 19. Pagination ────────────────────────────────────────── */
.awh-site .pagination .page-link {
  border-radius: var(--awh-radius-sm) !important;
  border-color: var(--awh-border-light) !important;
  color: var(--awh-text) !important;
  font-weight: 600;
  font-size: var(--awh-font-size-sm);
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  transition: all var(--awh-transition);
}

.awh-site .pagination .page-item.active .page-link {
  background: var(--awh-text) !important;
  border-color: var(--awh-text) !important;
  color: #fff !important;
}

.awh-site .pagination .page-link:hover {
  background: var(--awh-surface-soft) !important;
  border-color: var(--awh-border) !important;
  color: var(--awh-text) !important;
}

/* ─── 20. Footer (generic) ──────────────────────────────────── */
.awh-site .footer:not(.awh-footer--main),
.awh-site .awh-footer:not(.awh-footer--main) {
  background: #ffffff !important;
  border-top: 1px solid var(--awh-border) !important;
  padding-top: 48px !important;
  padding-bottom: 24px !important;
  margin-bottom: 0;
}

/* Main layout footer — dark theme */
.awh-site .footer.awh-footer--main {
  padding: 52px 0 0 !important;
}

/* Extra space for mobile bottom nav bar */
@media (max-width: 991px) {
  .awh-site .footer,
  .awh-site .awh-footer {
    padding-bottom: 80px !important;
  }
}

.awh-site .footer-heading {
  font-size: var(--awh-font-size-xs) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--awh-text) !important;
  margin-bottom: 16px !important;
}

.awh-site .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.awh-site .footer-links li {
  margin-bottom: 10px;
}

.awh-site .footer-links a {
  font-size: var(--awh-font-size-sm) !important;
  color: var(--awh-text-secondary) !important;
  text-decoration: none !important;
  transition: color var(--awh-transition), text-decoration var(--awh-transition);
}

.awh-site .footer-links a:hover {
  color: var(--awh-text) !important;
  text-decoration: underline !important;
}

.awh-site .footer-divider {
  border-color: var(--awh-border-light) !important;
  margin: 32px 0 24px !important;
}

.awh-site .footer-bottom .copyright {
  font-size: var(--awh-font-size-sm);
  color: var(--awh-text-secondary);
  margin: 0;
}

.awh-site .footer-bottom .copyright a {
  color: var(--awh-text-secondary) !important;
  text-decoration: none;
}

.awh-site .footer-bottom .copyright a:hover {
  color: var(--awh-text) !important;
  text-decoration: underline;
}

.awh-site .social-links a {
  color: var(--awh-text-secondary) !important;
  font-size: 18px;
  transition: color var(--awh-transition);
}

.awh-site .social-links a:hover {
  color: var(--awh-text) !important;
  text-decoration: none !important;
}

/* ─── 21. Mobile Menu Panel ─────────────────────────────────── */
.awh-site .mobile-menu-panel {
  font-family: var(--awh-font-family) !important;
  border-radius: var(--awh-radius-xl) var(--awh-radius-xl) 0 0;
}

.awh-site .mobile-menu-item {
  border-radius: var(--awh-radius-md);
  transition: background var(--awh-transition);
}

.awh-site .mobile-menu-item:hover {
  background: var(--awh-surface-soft);
}

.awh-site .mobile-footer-search {
  background: var(--awh-primary) !important;
}

.awh-site .mobile-footer-item.active .mobile-footer-icon,
.awh-site .mobile-footer-item.active .mobile-footer-text {
  color: var(--awh-primary) !important;
}

/* ─── 22. Forms / Inputs ────────────────────────────────────── */
.awh-site .form-control {
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-sm) !important;
  font-size: var(--awh-font-size-base);
  color: var(--awh-text);
  padding: 12px 16px;
  font-family: var(--awh-font-family) !important;
  background: var(--awh-bg);
  transition: border-color var(--awh-transition), box-shadow var(--awh-transition);
}

.awh-site .form-control:focus {
  border-color: var(--awh-text) !important;
  box-shadow: 0 0 0 2px rgba(34,34,34,0.1) !important;
  outline: none;
}

.awh-site .form-label,
.awh-site label {
  font-size: var(--awh-font-size-sm);
  font-weight: 600;
  color: var(--awh-text);
  margin-bottom: 6px;
}

/* ─── 23. Ratings / Stars ───────────────────────────────────── */
.awh-site .product-default .rating-area,
.awh-site .product-default .ratings {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.awh-site .ratings-total {
  font-size: var(--awh-font-size-xs);
  color: var(--awh-text-secondary);
}

/* ─── 24. Action Banner (CTA section) ───────────────────────── */
.awh-site .action-banner .wrapper {
  border-radius: var(--awh-radius-xl) !important;
  overflow: hidden;
}

/* ─── 25. Spacing helpers ───────────────────────────────────── */
.awh-site .ptb-100 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.awh-site .pt-100 {
  padding-top: 80px !important;
}

.awh-site .pb-100 {
  padding-bottom: 80px !important;
}

.awh-site .pb-60 {
  padding-bottom: 48px !important;
}

.awh-site .mt-40 { margin-top: 32px !important; }
.awh-site .mb-50 { margin-bottom: 32px !important; }
.awh-site .mb-40 { margin-bottom: 28px !important; }

/* ─── 26. Accessibility ─────────────────────────────────────── */
.awh-site *:focus-visible {
  outline: 2px solid var(--awh-primary) !important;
  outline-offset: 2px;
}

/* ─── 27. Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
  .awh-site .hero-banner,
  .awh-site .hero-banner-1 {
    min-height: 400px;
    padding: 60px 0 40px;
  }

  .awh-site .hero-search-bar {
    height: 56px;
  }

  .awh-category-nav {
    top: 0;
  }
}

@media (max-width: 767px) {
  .awh-site .hero-banner--centered .hero-title {
    font-size: 30px !important;
  }

  .awh-site .hero-search-bar {
    flex-direction: column;
    height: auto;
    border-radius: var(--awh-radius-xl);
    padding: 8px;
    gap: 0;
  }

  .awh-site .hero-search-bar .hero-search-field {
    border-right: none;
    border-bottom: 1px solid var(--awh-border-light);
    padding: 12px 16px;
    width: 100%;
    height: auto;
  }

  .awh-site .hero-search-bar .hero-search-submit {
    width: 100%;
    border-radius: var(--awh-radius-sm) !important;
    margin: 8px 0 0;
    height: 46px;
  }

  .awh-site .awh-header__nav {
    min-height: 64px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM DESIGN EXTENSIONS — v2
   ═══════════════════════════════════════════════════════════════ */

/* ─── 28. Enhanced Card Hover & Service Cards ───────────────── */
.awh-site .product-default {
  transition: transform var(--awh-transition-slow), box-shadow var(--awh-transition-slow) !important;
  border-radius: var(--awh-radius-md);
}

.awh-site .product-default:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--awh-shadow-md) !important;
}

/* Gradient placeholder for missing images */
.awh-site .product-default .product-img,
.awh-site .product-default figure.product-img {
  background: linear-gradient(135deg, #f0e6ff 0%, #ffe6ee 50%, #fff0e6 100%) !important;
}

/* Featured badge overlay on service image */
.awh-site .product-default .product-img .featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--awh-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--awh-radius-xs);
  z-index: 3;
}

/* Category tag pill style */
.awh-site .product-default .tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: var(--awh-text-secondary) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Location row with icon */
.awh-site .product-default .font-sm.icon-start i {
  color: var(--awh-text-muted);
  font-size: 11px;
}

/* Rating stars */
.awh-site .product-default .rating-star i,
.awh-site .product-default .ratings i {
  color: #f5a623;
  font-size: 12px;
}

/* ─── 29. Vendor Cards ──────────────────────────────────────── */
.awh-site .vendor-card,
.awh-site .vendor-item {
  border: 1px solid var(--awh-border-light) !important;
  border-radius: var(--awh-radius-lg) !important;
  overflow: hidden;
  transition: transform var(--awh-transition-slow), box-shadow var(--awh-transition-slow);
  background: var(--awh-bg);
}

.awh-site .vendor-card:hover,
.awh-site .vendor-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--awh-shadow-md) !important;
}

/* Vendor avatar: larger, softer gradient background */
.awh-site .vendor-card .vendor-avatar,
.awh-site .vendor-item .vendor-img {
  background: linear-gradient(135deg, var(--awh-navy) 0%, var(--awh-primary) 100%);
  border-radius: 50%;
  padding: 4px;
}

/* ─── 30. Primary Button Polish ─────────────────────────────── */
.awh-site .btn-primary,
.awh-site .btn-gradient {
  background: linear-gradient(135deg, var(--awh-primary) 0%, var(--awh-primary-dark) 100%) !important;
  border: none !important;
  border-color: transparent !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--awh-radius-sm) !important;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform var(--awh-transition), box-shadow var(--awh-transition);
}

.awh-site .btn-primary::after,
.awh-site .btn-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}

.awh-site .btn-primary:hover,
.awh-site .btn-gradient:hover {
  background: linear-gradient(135deg, var(--awh-primary-dark) 0%, #c0143c 100%) !important;
  box-shadow: 0 4px 16px rgba(255,56,92,.35) !important;
  transform: translateY(-2px);
}

.awh-site .btn-primary:hover::after,
.awh-site .btn-gradient:hover::after {
  background: rgba(255,255,255,0.06);
}

/* Large primary CTA buttons */
.awh-site .btn-primary.btn-lg,
.awh-site .btn-gradient.btn-lg {
  padding: 15px 32px !important;
  font-size: var(--awh-font-size-md) !important;
  border-radius: 10px !important;
}

/* ─── 31. Category Nav Improvements ────────────────────────── */
.awh-category-nav {
  background: var(--awh-bg);
  border-bottom: 1px solid var(--awh-border-light);
  position: sticky;
  top: 80px;
  z-index: 1020;
}

.awh-category-nav__item {
  position: relative;
  transition: color var(--awh-transition), opacity var(--awh-transition);
}

.awh-category-nav__item.active {
  color: var(--awh-primary) !important;
  border-color: var(--awh-primary) !important;
}

.awh-category-nav__icon i {
  font-size: 22px;
  transition: transform var(--awh-transition);
}

.awh-category-nav__item:hover .awh-category-nav__icon i {
  transform: scale(1.15);
}

/* ─── 32. Hero Search Bar Polish ────────────────────────────── */
.awh-site .hero-search-bar {
  box-shadow: 0 8px 32px rgba(0,0,0,.22) !important;
  height: 70px !important;
}

.awh-site .hero-banner--centered .hero-subtitle,
.awh-site .hero-banner .hero-subtitle {
  font-size: 18px !important;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── 33. Stats Trust Bar ───────────────────────────────────── */
.awh-stats-bar {
  background: var(--awh-navy);
  padding: 28px 0;
}

.awh-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.awh-stats-bar__item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.awh-stats-bar__item:last-child {
  border-right: none;
}

.awh-stats-bar__number {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--awh-font-display) !important;
  color: #fff;
  line-height: 1;
}

.awh-stats-bar__number .stat-accent {
  color: var(--awh-gold);
}

.awh-stats-bar__label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .awh-stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .awh-stats-bar__item {
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .awh-stats-bar__item:nth-child(2n) {
    border-right: none;
  }

  .awh-stats-bar__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ─── 34. Category Showcase Grid ────────────────────────────── */
.awh-category-showcase {
  padding: 72px 0 64px;
  background: var(--awh-bg);
}

.awh-category-showcase__heading {
  text-align: center;
  margin-bottom: 40px;
}

.awh-category-showcase__subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--awh-primary);
  display: block;
  margin-bottom: 10px;
}

.awh-category-showcase__title {
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 700;
  font-family: var(--awh-font-display) !important;
  color: var(--awh-text) !important;
  margin-bottom: 12px;
}

.awh-category-showcase__desc {
  color: var(--awh-text-secondary);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.awh-category-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .awh-category-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .awh-category-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.awh-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 24px;
  border-radius: var(--awh-radius-lg);
  text-decoration: none !important;
  transition: transform var(--awh-transition-slow), box-shadow var(--awh-transition-slow);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--awh-border-light);
  background: var(--awh-bg);
  gap: 14px;
  cursor: pointer;
}

.awh-cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--awh-transition);
  border-radius: inherit;
}

.awh-cat-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--awh-shadow-md);
  text-decoration: none !important;
  border-color: transparent;
}

.awh-cat-tile:hover::before {
  opacity: 1;
}

/* Colour variants for each category tile */
.awh-cat-tile--1 { --cat-bg: linear-gradient(135deg,#fff0f3,#fff); --cat-icon-bg: linear-gradient(135deg,#FF385C,#ff6b8a); }
.awh-cat-tile--2 { --cat-bg: linear-gradient(135deg,#f0f7ff,#fff); --cat-icon-bg: linear-gradient(135deg,#0f3460,#1a6faf); }
.awh-cat-tile--3 { --cat-bg: linear-gradient(135deg,#fff8f0,#fff); --cat-icon-bg: linear-gradient(135deg,#f5a623,#ff8c00); }
.awh-cat-tile--4 { --cat-bg: linear-gradient(135deg,#f0fff4,#fff); --cat-icon-bg: linear-gradient(135deg,#2ecc71,#16a085); }
.awh-cat-tile--5 { --cat-bg: linear-gradient(135deg,#f8f0ff,#fff); --cat-icon-bg: linear-gradient(135deg,#9b59b6,#6c3483); }
.awh-cat-tile--6 { --cat-bg: linear-gradient(135deg,#fff0fb,#fff); --cat-icon-bg: linear-gradient(135deg,#e91e8c,#c0134e); }
.awh-cat-tile--7 { --cat-bg: linear-gradient(135deg,#f0fbff,#fff); --cat-icon-bg: linear-gradient(135deg,#00bcd4,#006064); }
.awh-cat-tile--8 { --cat-bg: linear-gradient(135deg,#fffaf0,#fff); --cat-icon-bg: linear-gradient(135deg,#C9A84C,#a07832); }

.awh-cat-tile::before { background: var(--cat-bg, linear-gradient(135deg,#f7f7f7,#fff)); }

.awh-cat-tile__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--awh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: var(--cat-icon-bg, linear-gradient(135deg,var(--awh-primary),var(--awh-primary-dark)));
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform var(--awh-transition), box-shadow var(--awh-transition);
}

.awh-cat-tile:hover .awh-cat-tile__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

.awh-cat-tile__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--awh-text);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.awh-cat-tile__count {
  font-size: 11px;
  color: var(--awh-text-secondary);
  position: relative;
  z-index: 1;
}

/* ─── 35. How It Works Section ──────────────────────────────── */
.awh-how-it-works {
  background: var(--awh-surface-soft);
  padding: 72px 0;
}

.awh-how-it-works__heading {
  text-align: center;
  margin-bottom: 52px;
}

.awh-how-it-works__subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--awh-primary);
  display: block;
  margin-bottom: 10px;
}

.awh-how-it-works__title {
  font-size: clamp(24px, 3vw, 34px) !important;
  font-family: var(--awh-font-display) !important;
  font-weight: 700;
  color: var(--awh-text) !important;
}

.awh-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
}

@media (max-width: 767px) {
  .awh-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .awh-step-connector { display: none; }
}

.awh-step {
  background: var(--awh-bg);
  border-radius: var(--awh-radius-xl);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--awh-border-light);
  transition: transform var(--awh-transition-slow), box-shadow var(--awh-transition-slow);
}

.awh-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--awh-shadow-md);
}

.awh-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--awh-border);
}

.awh-step-connector i {
  color: var(--awh-primary) !important;
  opacity: 0.4;
}

.awh-step__number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--awh-primary), var(--awh-primary-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(255,56,92,.3);
}

.awh-step__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  color: var(--awh-navy);
}

.awh-step__icon i { color: inherit !important; }

.awh-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--awh-text);
  margin-bottom: 10px;
}

.awh-step__desc {
  font-size: 13px;
  color: var(--awh-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ─── 36. Vendor CTA Banner ─────────────────────────────────── */
.awh-vendor-cta {
  background: linear-gradient(135deg, var(--awh-navy-dark) 0%, var(--awh-navy) 50%, #1a1a4e 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.awh-vendor-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,56,92,.15) 0%, transparent 70%);
  pointer-events: none;
}

.awh-vendor-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.awh-vendor-cta__badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--awh-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--awh-radius-pill);
  margin-bottom: 14px;
}

.awh-vendor-cta__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-family: var(--awh-font-display) !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.15;
  margin-bottom: 12px;
}

.awh-vendor-cta__desc {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  line-height: 1.6;
}

.awh-vendor-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.awh-vendor-cta .btn-cta-primary {
  background: var(--awh-primary) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 15px 32px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  white-space: nowrap;
  transition: background var(--awh-transition), box-shadow var(--awh-transition), transform var(--awh-transition);
  text-decoration: none !important;
}

.awh-vendor-cta .btn-cta-primary:hover {
  background: var(--awh-primary-dark) !important;
  box-shadow: 0 6px 20px rgba(255,56,92,.4) !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}

.awh-vendor-cta .btn-cta-secondary {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  color: rgba(255,255,255,.9) !important;
  font-weight: 600 !important;
  padding: 15px 28px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  white-space: nowrap;
  transition: background var(--awh-transition), border-color var(--awh-transition);
  text-decoration: none !important;
}

.awh-vendor-cta .btn-cta-secondary:hover {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.6) !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .awh-vendor-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .awh-vendor-cta__actions {
    justify-content: center;
  }
}

/* ─── 37. Breadcrumb / Page Header — Navy Gradient ──────────── */
.awh-site .page-title-area {
  padding: 52px 0 44px !important;
  background: linear-gradient(135deg, var(--awh-navy-dark) 0%, var(--awh-navy) 50%, var(--awh-navy-mid) 100%) !important;
  position: relative;
  overflow: hidden;
}

.awh-site .page-title-area::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='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.awh-site .page-title-area::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--awh-primary) 50%, transparent);
}

.awh-site .page-title-area .content {
  position: relative;
  z-index: 2;
}

.awh-site .page-title-area .content h2,
.awh-site .page-title-area .content h1 {
  font-size: clamp(22px, 3vw, 34px) !important;
  font-weight: 700 !important;
  font-family: var(--awh-font-display) !important;
  color: #ffffff !important;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.awh-site .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.awh-site .breadcrumb-item a {
  color: rgba(255,255,255,.65) !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: color var(--awh-transition);
}

.awh-site .breadcrumb-item a:hover {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
}

.awh-site .breadcrumb-item.active {
  color: rgba(255,255,255,.9) !important;
  font-weight: 600;
  font-size: 13px;
}

.awh-site .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.4) !important;
}

/* ─── 38. Service Detail Page ───────────────────────────────── */
.awh-service-gallery {
  background: var(--awh-surface-soft);
  border-radius: var(--awh-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 28px;
}

.awh-service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awh-service-gallery--placeholder {
  background: linear-gradient(135deg, #f0e6ff 0%, #ffe6ee 50%, #fff0e6 100%);
}

.awh-service-gallery--placeholder .placeholder-icon {
  font-size: 48px;
  color: rgba(255,56,92,.25);
}

/* Booking CTA box — sticky sidebar */
.awh-booking-box {
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-lg) !important;
  padding: 28px !important;
  box-shadow: var(--awh-shadow-md) !important;
  background: var(--awh-bg);
  position: sticky;
  top: 100px;
}

.awh-booking-box__price {
  font-size: 26px;
  font-weight: 800;
  color: var(--awh-text);
  font-family: var(--awh-font-display) !important;
  margin-bottom: 4px;
}

.awh-booking-box__price .price-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--awh-text-secondary);
  font-family: var(--awh-font-family) !important;
}

.awh-booking-box .btn-book {
  width: 100% !important;
  padding: 16px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: var(--awh-radius-sm) !important;
  background: var(--awh-primary) !important;
  color: #fff !important;
  border: none !important;
  margin-top: 16px;
  transition: background var(--awh-transition), box-shadow var(--awh-transition), transform var(--awh-transition);
}

.awh-booking-box .btn-book:hover {
  background: var(--awh-primary-dark) !important;
  box-shadow: 0 4px 16px rgba(255,56,92,.3) !important;
  transform: translateY(-1px);
}

/* Service features as pills */
.awh-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.awh-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--awh-radius-pill);
  background: var(--awh-surface-soft);
  border: 1px solid var(--awh-border-light);
  font-size: 12px;
  font-weight: 600;
  color: var(--awh-text);
}

.awh-feature-pill i {
  color: var(--awh-primary);
  font-size: 11px;
}

/* ─── 39. Vendor Profile ─────────────────────────────────────── */
.awh-vendor-cover {
  height: 220px;
  background: linear-gradient(135deg, var(--awh-navy-dark) 0%, var(--awh-navy) 40%, var(--awh-primary) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--awh-radius-lg) var(--awh-radius-lg);
}

.awh-vendor-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='30' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='40' cy='40' r='15' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.awh-vendor-profile-header {
  position: relative;
  padding-bottom: 20px;
}

.awh-vendor-profile-header .vendor-avatar-wrap {
  margin-top: -50px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.awh-vendor-profile-header .vendor-avatar-wrap img {
  width: 96px !important;
  height: 96px !important;
  border-radius: 50% !important;
  border: 4px solid #fff !important;
  box-shadow: var(--awh-shadow-md) !important;
  object-fit: cover;
  background: var(--awh-surface-soft);
}

.awh-vendor-stats-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--awh-border-light);
  border-radius: var(--awh-radius-md);
  overflow: hidden;
  margin-top: 16px;
}

.awh-vendor-stats-strip__item {
  flex: 1;
  padding: 16px;
  text-align: center;
  border-right: 1px solid var(--awh-border-light);
}

.awh-vendor-stats-strip__item:last-child {
  border-right: none;
}

.awh-vendor-stats-strip__value {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--awh-font-display) !important;
  color: var(--awh-text);
  display: block;
  line-height: 1;
}

.awh-vendor-stats-strip__label {
  font-size: 11px;
  color: var(--awh-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* Vendor tabs */
.awh-vendor-tabs .nav-tabs {
  border-bottom: 2px solid var(--awh-border-light) !important;
  gap: 4px;
}

.awh-vendor-tabs .nav-link {
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--awh-text-secondary) !important;
  margin-bottom: -2px !important;
  transition: color var(--awh-transition), border-color var(--awh-transition);
}

.awh-vendor-tabs .nav-link.active {
  color: var(--awh-text) !important;
  border-bottom-color: var(--awh-text) !important;
  background: transparent !important;
}

.awh-vendor-tabs .nav-link:hover {
  color: var(--awh-text) !important;
  background: transparent !important;
}

/* ─── 40. Auth / Login Split-screen ─────────────────────────── */
.awh-auth-layout {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.awh-auth-brand {
  flex: 0 0 44%;
  background: linear-gradient(145deg, var(--awh-navy-dark) 0%, var(--awh-navy) 45%, #1e1b5e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
}

.awh-auth-brand::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,56,92,.18) 0%, transparent 65%);
  pointer-events: none;
}

.awh-auth-brand::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 65%);
  pointer-events: none;
}

.awh-auth-brand__logo {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.awh-auth-brand__logo span {
  color: var(--awh-primary);
}

.awh-auth-brand__tagline {
  font-size: clamp(22px, 2.5vw, 30px);
  font-family: var(--awh-font-display) !important;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.awh-auth-brand__desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  text-align: center;
  max-width: 320px;
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.awh-auth-brand__features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
}

.awh-auth-brand__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.awh-auth-brand__features li:last-child {
  border-bottom: none;
}

.awh-auth-brand__features li i {
  color: var(--awh-gold) !important;
  font-size: 14px;
  flex-shrink: 0;
}

.awh-auth-form-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--awh-bg);
}

.awh-auth-form-inner {
  width: 100%;
  max-width: 420px;
}

.awh-auth-form-inner .form-title {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--awh-font-display) !important;
  color: var(--awh-text) !important;
  margin-bottom: 8px;
}

.awh-auth-form-inner .form-subtitle {
  font-size: 14px;
  color: var(--awh-text-secondary);
  margin-bottom: 32px;
}

.awh-auth-form-inner .form-control {
  padding: 14px 16px !important;
  font-size: 15px !important;
  border-radius: var(--awh-radius-sm) !important;
}

.awh-auth-form-inner .btn-auth-submit {
  width: 100%;
  padding: 15px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: var(--awh-radius-sm) !important;
  background: var(--awh-primary) !important;
  border: none !important;
  color: #fff !important;
  transition: background var(--awh-transition), box-shadow var(--awh-transition), transform var(--awh-transition);
  margin-top: 8px;
}

.awh-auth-form-inner .btn-auth-submit:hover {
  background: var(--awh-primary-dark) !important;
  box-shadow: 0 4px 16px rgba(255,56,92,.35) !important;
  transform: translateY(-1px);
}

.awh-auth-form-inner .auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 13px;
}

.awh-auth-form-inner .auth-links a {
  color: var(--awh-text-secondary) !important;
  text-decoration: none !important;
  transition: color var(--awh-transition);
}

.awh-auth-form-inner .auth-links a:hover {
  color: var(--awh-text) !important;
  text-decoration: underline !important;
}

.awh-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--awh-text-muted);
  font-size: 12px;
}

.awh-auth-divider::before,
.awh-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--awh-border-light);
}

@media (max-width: 767px) {
  .awh-auth-brand { display: none; }
  .awh-auth-form-panel { padding: 40px 24px; }
}

/* ─── 41. Pricing Cards ─────────────────────────────────────── */
.awh-site .pricing-area .card.active {
  background: linear-gradient(145deg, var(--awh-navy) 0%, #1e1b5e 100%) !important;
  border-color: transparent !important;
  box-shadow: var(--awh-shadow-xl) !important;
  transform: translateY(-8px) scale(1.02);
}

.awh-site .pricing-area .card {
  border-radius: var(--awh-radius-lg) !important;
  padding: 36px !important;
  border: 1px solid var(--awh-border-light) !important;
  transition: transform var(--awh-transition-slow), box-shadow var(--awh-transition-slow);
}

.awh-site .pricing-area .card:hover:not(.active) {
  box-shadow: var(--awh-shadow-md) !important;
  transform: translateY(-4px);
}

.awh-site .pricing-area .card.active .card_title,
.awh-site .pricing-area .card.active h3,
.awh-site .pricing-area .card.active h4,
.awh-site .pricing-area .card.active p,
.awh-site .pricing-area .card.active li,
.awh-site .pricing-area .card.active span {
  color: #fff !important;
}

.awh-site .pricing-area .card.active .label span {
  background: rgba(255,56,92,.3) !important;
  color: rgba(255,255,255,.9) !important;
  border-radius: var(--awh-radius-pill) !important;
  padding: 3px 10px !important;
  font-size: 11px !important;
}

.awh-site .pricing-area .card.active .card_subtitle h4 {
  font-size: 32px !important;
  font-family: var(--awh-font-display) !important;
  font-weight: 800 !important;
}

.awh-site .pricing-area .card .card_icon {
  width: 52px;
  height: 52px;
  border-radius: var(--awh-radius-md) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--awh-surface-soft);
  color: var(--awh-primary);
  margin-bottom: 4px;
}

.awh-site .pricing-area .card.active .card_icon {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
}

/* Billing toggle */
.awh-site .pricing-area .tabs-navigation .nav-tabs {
  background: var(--awh-surface-soft) !important;
  border-radius: var(--awh-radius-pill) !important;
  padding: 5px !important;
  gap: 2px !important;
  display: inline-flex !important;
  margin: 0 auto;
}

.awh-site .pricing-area .tabs-navigation .nav-link {
  border-radius: var(--awh-radius-pill) !important;
  border: none !important;
  padding: 8px 24px !important;
  font-size: 13px !important;
}

.awh-site .pricing-area .tabs-navigation .nav-link.active {
  background: var(--awh-bg) !important;
  color: var(--awh-text) !important;
  box-shadow: var(--awh-shadow-xs) !important;
}

/* Pricing feature list */
.awh-site .pricing-area .card ul.package-feature li,
.awh-site .pricing-area .card ul.card_list li,
.awh-site .pricing-area .card ul.toggle-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--awh-border-light);
  font-size: 13px;
}

.awh-site .pricing-area .card.active ul.package-feature li,
.awh-site .pricing-area .card.active ul.card_list li {
  border-bottom-color: rgba(255,255,255,.1) !important;
}

/* Override icon colour in pricing lists */
.awh-site .pricing-area .card ul.card_list li i.fal,
.awh-site .pricing-area .card ul.card_list li i.fas,
.awh-site .pricing-area .card ul.card_list li i.far {
  color: var(--awh-primary);
  font-size: 12px;
  flex-shrink: 0;
}

.awh-site .pricing-area .card.active ul.card_list li i.fal,
.awh-site .pricing-area .card.active ul.card_list li i.fas,
.awh-site .pricing-area .card.active ul.card_list li i.far {
  color: var(--awh-gold) !important;
}

/* "fa-times" icon show as muted red */
.awh-site .pricing-area .card ul.card_list li i.fa-times {
  color: #e53e3e;
  opacity: 0.5;
}

.awh-site .pricing-area .card.active ul.card_list li i.fa-times {
  color: rgba(255,255,255,.35) !important;
}

/* ─── 42. Footer — 4-column ─────────────────────────────────── */
/* Main layout footer (dark) */
.awh-site .footer-area,
.awh-site footer.footer-area,
.awh-site .awh-footer--main,
.awh-site footer.awh-footer--main {
  background: #0a0a0a !important;
  border-top: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Override the white footer rule specifically for main footer */
.awh-site .footer.awh-footer--main,
.awh-site .awh-footer.awh-footer--main {
  background: #0a0a0a !important;
  border-top: none !important;
}

.awh-site .awh-footer--main .footer-heading {
  color: rgba(255,255,255,.9) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
  margin-bottom: 18px !important;
}

.awh-site .awh-footer--main .footer-links a {
  color: rgba(255,255,255,.5) !important;
  font-size: 13px !important;
  transition: color var(--awh-transition);
}

.awh-site .awh-footer--main .footer-links a:hover {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
}

.awh-site .awh-footer--main .footer-divider {
  border-color: rgba(255,255,255,.08) !important;
  margin: 24px 0 20px !important;
}

.awh-site .awh-footer--main .copyright {
  color: rgba(255,255,255,.35) !important;
  font-size: 12px !important;
}

.awh-site .awh-footer--main .copyright a {
  color: rgba(255,255,255,.5) !important;
}

.awh-site .awh-footer--main .copyright a:hover {
  color: rgba(255,255,255,.8) !important;
}

.awh-site .awh-footer--main .social-links a {
  color: rgba(255,255,255,.5) !important;
  font-size: 16px;
  transition: color var(--awh-transition);
  margin-right: 12px;
}

.awh-site .awh-footer--main .social-links a:hover {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
}

.awh-footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.awh-footer-brand {
  margin-bottom: 20px;
}

.awh-footer-brand__logo {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  text-decoration: none !important;
  letter-spacing: -0.5px;
}

.awh-footer-brand__logo span {
  color: var(--awh-primary);
}

.awh-footer-brand__desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}

.awh-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.awh-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.6) !important;
  text-decoration: none !important;
  transition: background var(--awh-transition), color var(--awh-transition), border-color var(--awh-transition);
}

.awh-footer-social a:hover {
  background: var(--awh-primary);
  border-color: var(--awh-primary);
  color: #fff !important;
  text-decoration: none !important;
}

.awh-footer-col-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: rgba(255,255,255,.9) !important;
  margin-bottom: 20px !important;
  display: block;
}

.awh-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.awh-footer-links li {
  margin-bottom: 10px;
}

.awh-footer-links a {
  font-size: 13px !important;
  color: rgba(255,255,255,.5) !important;
  text-decoration: none !important;
  transition: color var(--awh-transition);
}

.awh-footer-links a:hover {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
}

.awh-footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.awh-footer-bottom .copyright {
  font-size: 12px !important;
  color: rgba(255,255,255,.35) !important;
  margin: 0;
}

.awh-footer-bottom .copyright a {
  color: rgba(255,255,255,.5) !important;
}

.awh-footer-bottom .copyright a:hover {
  color: rgba(255,255,255,.8) !important;
}

.awh-footer-newsletter {
  margin-top: 16px;
}

.awh-footer-newsletter .input-group {
  border-radius: var(--awh-radius-sm);
  overflow: hidden;
}

.awh-footer-newsletter input {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-right: none !important;
  color: #fff !important;
  font-size: 13px !important;
  padding: 10px 14px !important;
  border-radius: var(--awh-radius-sm) 0 0 var(--awh-radius-sm) !important;
}

.awh-footer-newsletter input::placeholder {
  color: rgba(255,255,255,.35) !important;
}

.awh-footer-newsletter input:focus {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.25) !important;
  box-shadow: none !important;
}

.awh-footer-newsletter .btn-subscribe {
  background: var(--awh-primary) !important;
  border: none !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  border-radius: 0 var(--awh-radius-sm) var(--awh-radius-sm) 0 !important;
  white-space: nowrap;
}

/* ─── 43. Blog Cards ─────────────────────────────────────────── */
.awh-site .blog-card,
.awh-site .journal-card {
  border: 1px solid var(--awh-border-light) !important;
  border-radius: var(--awh-radius-lg) !important;
  overflow: hidden;
  transition: transform var(--awh-transition-slow), box-shadow var(--awh-transition-slow);
  background: var(--awh-bg);
}

.awh-site .blog-card:hover,
.awh-site .journal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--awh-shadow-md) !important;
}

/* Blog image gradient fallback */
.awh-site .blog-img,
.awh-site .blog-card .blog-img {
  min-height: 200px;
  background: linear-gradient(135deg, #ffeef6 0%, #f0f4ff 50%, #fff7ee 100%);
  position: relative;
  overflow: hidden;
}

.awh-site .blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--awh-transition-slow);
}

.awh-site .blog-card:hover .blog-img img {
  transform: scale(1.04);
}

/* "Continue Reading" button style */
.awh-site .blog-card .blog-read-more,
.awh-site .continue-reading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--awh-text) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--awh-text);
  transition: color var(--awh-transition), border-color var(--awh-transition);
}

.awh-site .blog-card .blog-read-more:hover,
.awh-site .continue-reading:hover {
  color: var(--awh-primary) !important;
  border-bottom-color: var(--awh-primary);
  text-decoration: none !important;
}

/* ─── 44. FAQ Accordion ──────────────────────────────────────── */
.awh-site .faq-area .accordion-item,
.awh-site .faq-list .accordion-item {
  border: 1px solid var(--awh-border-light) !important;
  border-radius: var(--awh-radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--awh-transition);
}

.awh-site .faq-area .accordion-item:hover,
.awh-site .faq-list .accordion-item:hover {
  box-shadow: var(--awh-shadow-sm);
}

.awh-site .faq-area .accordion-button,
.awh-site .faq-list .accordion-button {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--awh-text) !important;
  background: var(--awh-bg) !important;
  padding: 18px 20px !important;
  border-left: 3px solid transparent;
  transition: background var(--awh-transition), border-color var(--awh-transition);
}

.awh-site .faq-area .accordion-button:not(.collapsed),
.awh-site .faq-list .accordion-button:not(.collapsed) {
  background: var(--awh-surface-soft) !important;
  color: var(--awh-text) !important;
  border-left-color: var(--awh-primary) !important;
  box-shadow: none !important;
}

.awh-site .faq-area .accordion-body,
.awh-site .faq-list .accordion-body {
  padding: 16px 20px !important;
  font-size: 14px !important;
  color: var(--awh-text-secondary) !important;
  line-height: 1.7;
  border-left: 3px solid var(--awh-primary);
  background: var(--awh-surface-soft);
}

/* ─── 45. Contact Page Info Boxes ───────────────────────────── */
.awh-contact-info-box {
  border: 1px solid var(--awh-border-light);
  border-radius: var(--awh-radius-lg);
  padding: 32px 24px;
  text-align: center;
  background: var(--awh-bg);
  transition: transform var(--awh-transition-slow), box-shadow var(--awh-transition-slow);
}

.awh-contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--awh-shadow-md);
}

.awh-contact-info-box__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--awh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 16px;
}

.awh-contact-info-box__icon--blue   { background: linear-gradient(135deg,#4a90e2,#1a6faf); }
.awh-contact-info-box__icon--red    { background: linear-gradient(135deg,var(--awh-primary),var(--awh-primary-dark)); }
.awh-contact-info-box__icon--green  { background: linear-gradient(135deg,#2ecc71,#16a085); }

.awh-contact-info-box__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--awh-text);
  margin-bottom: 8px;
}

.awh-contact-info-box__value {
  font-size: 14px;
  color: var(--awh-text-secondary);
  line-height: 1.5;
}

/* Contact form styling */
.awh-contact-form-wrap {
  background: var(--awh-bg);
  border: 1px solid var(--awh-border-light);
  border-radius: var(--awh-radius-lg);
  padding: 40px;
  box-shadow: var(--awh-shadow-sm);
}

/* ─── 46. Service List Sidebar ───────────────────────────────── */
.awh-site .widget-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--awh-text) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px !important;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--awh-border-light);
}

/* Radio/Checkbox as pill toggles in sidebar */
.awh-site .widget .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  margin: 0;
  border-bottom: 1px solid var(--awh-border-light);
  cursor: pointer;
}

.awh-site .widget .form-check:last-child {
  border-bottom: none;
}

.awh-site .widget .form-check-label {
  font-size: 13px;
  color: var(--awh-text-secondary);
  cursor: pointer;
  flex: 1;
  transition: color var(--awh-transition);
}

.awh-site .widget .form-check-input:checked ~ .form-check-label {
  color: var(--awh-text);
  font-weight: 600;
}

.awh-site .widget .form-check-input:checked {
  background-color: var(--awh-primary) !important;
  border-color: var(--awh-primary) !important;
}

/* Sort dropdown */
.awh-site select.form-select,
.awh-site select.nice-select {
  border: 1px solid var(--awh-border) !important;
  border-radius: var(--awh-radius-sm) !important;
  padding: 10px 36px 10px 14px !important;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--awh-text);
  background-color: var(--awh-bg) !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* ─── 47. Page-level enhancements ───────────────────────────── */

/* About page: section background alternation */
.awh-site .about-area {
  background: var(--awh-bg);
}

.awh-site .feature-card {
  border-radius: var(--awh-radius-lg) !important;
  border: 1px solid var(--awh-border-light) !important;
  box-shadow: none !important;
  transition: box-shadow var(--awh-transition-slow), transform var(--awh-transition-slow);
  padding: 28px !important;
}

.awh-site .feature-card:hover {
  box-shadow: var(--awh-shadow-md) !important;
  transform: translateY(-4px);
}

/* ─── 48. Mobile footer fix (bottom nav spacing) ────────────── */
@media (max-width: 991px) {
  .awh-site .footer-area,
  .awh-site footer.footer-area {
    padding-bottom: 80px !important;
  }
}

/* ─── 49. Vendor Page header area ─────────────────────────── */
.awh-site .page-title-area.vendor-header {
  background: transparent !important;
  padding: 0 !important;
}

.awh-site .page-title-area.vendor-header::before,
.awh-site .page-title-area.vendor-header::after {
  display: none;
}

/* ─── 50. General hover link fix ────────────────────────────── */
.awh-site a:hover {
  text-decoration: none;
}

.awh-site a.btn:hover {
  text-decoration: none !important;
}

/* ─── 51. Go-top button ─────────────────────────────────────── */
.awh-site .go-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--awh-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--awh-shadow-sm);
  z-index: 999;
  transition: background var(--awh-transition), transform var(--awh-transition);
  font-size: 16px;
}

.awh-site .go-top:hover {
  background: var(--awh-primary-dark);
  transform: translateY(-3px);
}

@media (min-width: 992px) {
  .awh-site .go-top {
    bottom: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR & MOBILE UX FIX — v3
   ═══════════════════════════════════════════════════════════════ */

/* ─── 52. Remove body padding from fixed-top era ────────────── */
body.awh-site {
  padding-top: 0 !important;
}

/* ─── 53. Header wrapper: plain block, no visual styles ─────── */
.awh-site .awh-header,
.awh-site .awh-header--main {
  position: relative !important;
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  min-height: 0 !important;
}

/* ─── 54. Nav: sticky with solid white background ───────────── */
.awh-site .awh-header__nav,
.awh-site #mainNavbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  background: #ffffff !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid var(--awh-border-light) !important;
  box-shadow: none;
  min-height: 64px !important;
  width: 100% !important;
  left: auto !important;
  right: auto !important;
  transition: box-shadow 0.2s ease;
}

/* Scroll shadow */
.awh-site .awh-header__nav.scrolled,
.awh-site #mainNavbar.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,.10) !important;
}

/* ─── 55. Mobile hero search bar — show stacked fields ──────── */
@media (max-width: 767px) {
  .awh-site .hero-search-bar {
    height: auto !important;
    min-height: 0 !important;
    flex-direction: column !important;
    padding: 12px !important;
    gap: 10px !important;
  }
  .awh-site .hero-banner,
  .awh-site .hero-banner-1 {
    min-height: 460px !important;
    padding: 48px 0 36px !important;
  }
}

/* ─── 56. Mobile navbar — tighter on small screens ─────────── */
@media (max-width: 991px) {
  .awh-site .awh-header__nav,
  .awh-site #mainNavbar {
    min-height: 60px !important;
    padding: 0 16px !important;
  }
  .awh-site .awh-header__brand {
    font-size: 22px !important;
  }
}

/* ─── 57. Mobile auth form — reduce excessive padding ───────── */
@media (max-width: 767px) {
  .awh-auth-form-panel {
    padding: 32px 20px !important;
    align-items: flex-start !important;
    padding-top: 40px !important;
  }
  .awh-auth-layout {
    flex-direction: column !important;
    min-height: 100vh !important;
  }
  .awh-auth-brand {
    min-height: 180px !important;
    padding: 32px 24px !important;
  }
}

/* ─── 58. Mobile content — clearance above bottom nav bar ───── */
@media (max-width: 991px) {
  .awh-site main.main-content {
    padding-bottom: 80px;
  }
}

/* ─── 59. Mobile bottom nav — always visible on mobile ──────── */
@media (max-width: 991px) {
  .mobile-footer-menu {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .mobile-footer-menu {
    display: none !important;
  }
}

/* ─── 60. Mobile card grid — single column on phones ────────── */
@media (max-width: 480px) {
  .awh-listings-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* ─── 61. Mobile pricing card — prevent recommended overflow ── */
@media (max-width: 767px) {
  .awh-site .pricing-area .card.active {
    transform: none !important;
  }
}
