* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }



/* ==========================================================================
   Site Components CSS — .shah-ticker, .shah-header, .shah-mobile-menu, .shah-footer
   ========================================================================== */

/* ---------- ANNOUNCEMENT TICKER ---------- */
.shah-ticker {
  position: relative !important;
  z-index: 99999 !important;
  background: #f04f25 !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}
.shah-ticker__track {
  display: flex !important;
  width: max-content !important;
  animation: shahTickerScroll 22s linear infinite !important;
}
.shah-ticker__track:hover { animation-play-state: paused !important; }
.shah-ticker__content {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.shah-ticker__item {
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}
.shah-ticker__dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  background: #fff !important;
  border-radius: 50% !important;
  opacity: 0.7 !important;
  flex-shrink: 0 !important;
}
@keyframes shahTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SITE HEADER ---------- */
.shah-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99998 !important;
  background: #234190 !important;
  border-bottom: 3px solid #FE4A00 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  width: 100% !important;
}/* ---------- MOBILE MENU ---------- */
.shah-mobile-menu {
  position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
  z-index: 100000 !important; pointer-events: none !important; visibility: hidden !important;
}
.shah-mobile-menu.shah-mobile-menu--open { pointer-events: auto !important; visibility: visible !important; }
.shah-mobile-menu__overlay {
  position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
  background: rgba(0,0,0,0.6) !important; opacity: 0 !important; transition: opacity 0.3s ease !important;
}
.shah-mobile-menu--open .shah-mobile-menu__overlay { opacity: 1 !important; }
.shah-mobile-menu__panel {
  position: absolute !important; top: 0 !important; right: 0 !important; width: 320px !important; max-width: 85vw !important;
  height: 100% !important; background: #0a1628 !important; transform: translateX(100%) !important;
  transition: transform 0.3s ease !important; overflow-y: auto !important; -webkit-overflow-scrolling: touch !important;
  display: flex !important; flex-direction: column !important;
}
.shah-mobile-menu--open .shah-mobile-menu__panel { transform: translateX(0) !important; }
.shah-mobile-menu__top {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  padding: 16px 20px !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.shah-mobile-menu__logo img { width: 160px !important; height: auto !important; display: block !important; }
.shah-mobile-menu__close {
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 44px !important; height: 44px !important; background: none !important;
  border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 4px !important;
  color: #fff !important; font-size: 28px !important; line-height: 1 !important;
  cursor: pointer !important; padding: 0 !important; -webkit-appearance: none !important; appearance: none !important;
}
.shah-mobile-menu__close:hover { background: rgba(255,255,255,0.1) !important; }
.shah-mobile-menu__nav { flex: 1 !important; overflow-y: auto !important; padding: 8px 0 !important; }
.shah-mobile-menu__list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.shah-mobile-menu__item { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
.shah-mobile-menu__parent-row { display: flex !important; align-items: center !important; }
.shah-mobile-menu__link {
  display: block !important; flex: 1 !important; padding: 15px 20px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 18px !important; font-weight: 600 !important; color: #fff !important;
  text-decoration: none !important; line-height: 1.3 !important;
}
.shah-mobile-menu__link:hover { color: #f04f25 !important; }
.shah-mobile-menu__toggle {
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 48px !important; height: 48px !important; background: none !important; border: none !important;
  border-left: 1px solid rgba(255,255,255,0.1) !important; cursor: pointer !important; padding: 0 !important;
  -webkit-appearance: none !important; appearance: none !important; flex-shrink: 0 !important;
}
.shah-mobile-menu__toggle-icon {
  color: #f04f25 !important; font-size: 22px !important; font-weight: 700 !important;
  line-height: 1 !important; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  transition: transform 0.2s ease !important;
}
.shah-mobile-menu__toggle--open .shah-mobile-menu__toggle-icon { transform: rotate(45deg) !important; }
.shah-mobile-menu__submenu {
  list-style: none !important; margin: 0 !important; padding: 0 !important;
  max-height: 0 !important; overflow: hidden !important; transition: max-height 0.3s ease !important;
  background: rgba(0,0,0,0.2) !important;
}
.shah-mobile-menu__submenu--open { max-height: 2000px !important; }
.shah-mobile-menu__sublink {
  display: block !important; padding: 12px 20px 12px 36px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important; font-weight: 400 !important; color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important; border-bottom: 1px solid rgba(255,255,255,0.04) !important; line-height: 1.4 !important;
}
.shah-mobile-menu__sublink:hover { color: #f04f25 !important; background: rgba(255,255,255,0.03) !important; }
.shah-mobile-menu__cta {
  padding: 20px !important; border-top: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important; flex-direction: column !important; align-items: center !important; gap: 12px !important;
}
.shah-mobile-menu__phone {
  display: flex !important; align-items: center !important; gap: 8px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 20px !important; font-weight: 700 !important; color: #fff !important; text-decoration: none !important;
}
.shah-mobile-menu__phone:hover { color: #f04f25 !important; }
.shah-mobile-menu__badge {
  display: inline-block !important; background: #374151 !important; color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 11px !important; font-weight: 700 !important; text-transform: uppercase !important;
  letter-spacing: 0.5px !important; padding: 4px 10px !important; border-radius: 3px !important;
}
.shah-mobile-menu__schedule-btn {
  display: block !important; width: 100% !important; text-align: center !important;
  padding: 14px 24px !important; background: #f04f25 !important; color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important; font-weight: 700 !important; text-decoration: none !important;
  border-radius: 6px !important; transition: background 0.2s ease !important;
}
.shah-mobile-menu__schedule-btn:hover { background: #e53d22 !important; }

/* ---------- FOOTER ---------- */
/* ---------- FOOTER ---------- */
.shah-footer__container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}
.shah-footer__service-areas {
  background: #fff !important;
  padding: 56px 0 !important;
  width: 100% !important;
}
.shah-footer__areas-heading {
  text-align: left !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #f04f25 !important;
  margin: 0 0 20px 0 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}
.shah-footer__city-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}
.shah-footer__areas-tagline {
  text-align: left !important;
  margin-top: 24px !important;
  font-size: 0.85rem !important;
  color: #4b5563 !important;
  line-height: 1.6 !important;
  max-width: 900px !important;
}
.shah-footer__city-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  padding: 10px 14px !important;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, rgba(254,74,0,0.12) 50%, rgba(254,74,0,0.5) 75%, #FE4A00 100%) !important;
  border: 2px solid #FE4A00 !important;
  border-radius: 8px !important;
  color: #0a1628 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.shah-footer__city-link:hover {
  background: linear-gradient(to right, #fff 0%, rgba(254,74,0,0.35) 40%, #FE4A00 100%) !important;
}
.shah-footer__city-link span { display: flex; flex-direction: column; line-height: 1.2; }
.shah-footer__city-link span small { font-size: 10px; font-weight: 400; color: #4b5563; margin-top: 1px; }
.shah-footer__main {
  background: #234190 !important;
  padding: 64px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}
.shah-footer__columns {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
  gap: 48px !important;
}
.shah-footer__col--logo img { width: 180px !important; }
.shah-footer__tagline {
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.6 !important;
  margin-top: 12px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.shah-footer__social-icons {
  display: flex !important;
  gap: 12px !important;
  margin-top: 20px !important;
}
.shah-footer__social-icons a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 6px !important;
  background: #f04f25 !important;
  transition: transform 0.2s, opacity 0.2s !important;
}
.shah-footer__social-icons a:hover { transform: translateY(-2px) !important; opacity: 0.85 !important; }
.shah-footer__social-icons svg { width: 20px !important; height: 20px !important; }
.shah-footer__col-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 18px !important;
}
.shah-footer__links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.shah-footer__links li { margin-bottom: 11px !important; }
.shah-footer__links li a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.shah-footer__links li a:hover { color: #f04f25 !important; }
.shah-footer__contact-label {
  display: block !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 4px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.shah-footer__contact-phone {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.shah-footer__contact-phone:hover { color: #f04f25 !important; }
.shah-footer__contact-item { margin-bottom: 16px !important; }
.shah-footer__address {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
  font-style: normal !important;
  line-height: 1.5 !important;
}
.shah-footer__license {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.75) !important;
}
.shah-footer__emergency {
  display: inline-block !important;
  margin-top: 8px !important;
  padding: 8px 16px !important;
  background: #f04f25 !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.shah-footer__emergency:hover { opacity: 0.9 !important; }
.shah-footer__copyright {
  background: #f04f25 !important;
  padding: 14px 0 !important;
  text-align: center !important;
}
.shah-footer__copyright-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.95) !important;
  margin: 0 !important;
}
.shah-footer__copyright-text a { color: #fff !important; text-decoration: underline !important; }

/* ==========================================================================
   RESPONSIVE — Site Components
   ========================================================================== */
@media (max-width: 1024px) {
  .shah-header__nav { display: none !important; }
  .shah-header__location { display: none !important; }
  .shah-header__open-badge { display: none !important; }
  .shah-header__hamburger { display: flex !important; }
  .shah-header__inner { height: 60px !important; padding: 0 16px !important; }
  .shah-header__logo img { width: 150px !important; }
  .shah-header__phone-number { display: none !important; }
  .shah-header__phone svg { width: 24px !important; height: 24px !important; }
  .shah-ticker__item { font-size: 13px !important; padding: 0 12px !important; }
  .shah-ticker { height: 36px !important; }
}
@media (max-width: 900px) {
  .shah-footer__columns { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .shah-footer__city-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .shah-footer__service-areas { padding: 36px 0 !important; }
}
@media (max-width: 480px) {
  .shah-ticker__item { font-size: 12px !important; padding: 0 10px !important; }
  .shah-ticker { height: 32px !important; }
  .shah-ticker__dot { width: 4px !important; height: 4px !important; }
  .shah-header__inner { height: 56px !important; padding: 0 12px !important; }
  .shah-header__logo img { width: 130px !important; }
  .shah-mobile-menu__link { font-size: 16px !important; padding: 13px 16px !important; }
  .shah-mobile-menu__sublink { font-size: 14px !important; padding: 10px 16px 10px 30px !important; }
  .shah-mobile-menu__phone { font-size: 18px !important; }
  .shah-mobile-menu__panel { width: 290px !important; }
  .shah-footer__columns { grid-template-columns: 1fr !important; }
  .shah-footer__city-grid { grid-template-columns: 1fr !important; }
  .shah-footer__service-areas { padding: 28px 0 !important; }
}
@media (min-width: 1025px) {
  .shah-mobile-menu { display: none !important; }
  .shah-header__hamburger { display: none !important; }
}
body.shah-mobile-open { overflow: hidden !important; }

/* ==========================================================================
   SHOP PAGE — Unique Layout (sh- prefix)
   ========================================================================== */

/* ---- 1. HERO ---- */
.sh-hero {
  background: #ffffff;
  background: #ffffff;
  min-height: 500px;
  padding-top: 80px;
  padding-bottom: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sh-hero__watermark {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 380px;
  font-weight: 700;
  color: #0a1628;
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
  letter-spacing: -10px;
}
.sh-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px 24px;
}
.sh-hero__badge {
  display: inline-block;
  background: #f04f25;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.sh-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #234190;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sh-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.sh-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f04f25;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.5px;
}
.sh-hero__cta:hover { background: #e53d22; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
.sh-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.sh-hero-wave svg { display: block; width: 100%; }

/* ---- 2. STATS BAR ---- */
.sh-stats {
  background: #234190;
  padding: 0;
}
.sh-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sh-stat {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.sh-stat:last-child { border-right: none; }
.sh-stat__number {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.sh-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  display: block;
}

/* ---- 3. FEATURED — AIR FILTERS (two-column) ---- */
.sh-filters {
  background: #fff;
  padding: 90px 20px;
}
.sh-filters__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sh-filters__img-wrap {
  position: relative;
}
.sh-filters__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.sh-filters__img-fallback {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #f0f2f5 0%, #f0f2f5 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #f3f3f3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.sh-filters__img-fallback span {
  font-size: 72px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.4;
}
.sh-filters__img-fallback p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4b5563;
  text-align: center;
}
.sh-filters__badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f04f25;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 4px;
}
.sh-filters__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f04f25;
  margin-bottom: 14px;
  display: block;
}
.sh-filters h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.sh-filters__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 32px;
}
.sh-filters__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sh-filters__bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sh-filters__bullet-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #234190;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.sh-filters__bullet-icon span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.1;
}
.sh-filters__bullet-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #234190;
  margin-bottom: 2px;
}
.sh-filters__bullet-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}
.sh-filters__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f04f25;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.sh-filters__cta:hover { background: #e53d22; transform: translateY(-1px); }

/* ---- 4. PRODUCT CATEGORIES GRID ---- */
.sh-cats {
  background: #f0f2f5;
  padding: 90px 20px;
}
.sh-cats__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sh-cats__header {
  text-align: center;
  margin-bottom: 52px;
}
.sh-cats__header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sh-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sh-cat-card {
  background: #fff;
  border-top: 4px solid #f04f25;
  border-radius: 0 0 10px 10px;
  padding: 36px 24px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sh-cat-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.13); transform: translateY(-4px); }
.sh-cat-card__icon {
  width: 64px;
  height: 64px;
  background: #f0f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.sh-cat-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: #234190;
  fill: none;
  stroke-width: 2;
}
.sh-cat-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.sh-cat-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.sh-cat-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f04f25;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  align-self: center;
}
.sh-cat-card__link:hover { background: #e53d22; }

/* ---- 5. WHY BUY FROM US ---- */
.sh-why {
  background: #234190;
  padding: 90px 20px;
}
.sh-why__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sh-why__header {
  text-align: center;
  margin-bottom: 52px;
}
.sh-why__header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.sh-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sh-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 40px 32px;
  transition: background 0.2s;
}
.sh-why-card:hover { background: rgba(255,255,255,0.1); }
.sh-why-card__check {
  width: 48px;
  height: 48px;
  background: #f04f25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sh-why-card__check svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
}
.sh-why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.sh-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ---- 6. ORDER METHODS ---- */
.sh-order {
  background: #fff;
  padding: 90px 20px;
}
.sh-order__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sh-order__header {
  text-align: center;
  margin-bottom: 52px;
}
.sh-order__header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sh-order__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sh-order-step {
  border: 2px solid #f0f2f5;
  border-radius: 10px;
  padding: 44px 32px 40px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.sh-order-step:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.sh-order-step__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #f04f25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.sh-order-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.sh-order-step p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 28px;
}
.sh-order-step__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.sh-order-step__btn--orange { background: #f04f25; color: #fff; }
.sh-order-step__btn--orange:hover { background: #e53d22; transform: translateY(-1px); }
.sh-order-step__btn--blue { background: #234190; color: #fff; }
.sh-order-step__btn--blue:hover { background: #0a1628; transform: translateY(-1px); }
.sh-order-step__btn--navy { background: #234190; color: #fff; }
.sh-order-step__btn--navy:hover { background: #234190; transform: translateY(-1px); }

/* ---- 7. REVIEWS ---- */
.sh-reviews {
  background: #f0f2f5;
  padding: 80px 20px;
  text-align: center;
}
.sh-reviews__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.sh-reviews h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* ---- 8. ORANGE CTA ---- */
.sh-cta {
  background: #f04f25;
  padding: 80px 20px;
  text-align: center;
}
.sh-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.sh-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.05;
  letter-spacing: 0.5px;
}
.sh-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: 34px;
}
.sh-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #f04f25;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.sh-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ---- 9. SEO TEXT ---- */
.sh-seo {
  background: #f3f3f3;
  padding: 52px 20px;
}
.sh-seo__inner {
  max-width: 960px;
  margin: 0 auto;
}
.sh-seo h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #234190;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.sh-seo p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}
.sh-seo p:last-child { margin-bottom: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .sh-filters__inner { grid-template-columns: 1fr; gap: 40px; }
  .sh-filters__img-wrap img,
  .sh-filters__img-fallback { height: 300px; }
  .sh-why__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .sh-order__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .sh-cats__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .sh-stats__inner { grid-template-columns: 1fr 1fr; }
  .sh-hero { padding-top: 60px; }
  .sh-hero__watermark { font-size: 200px; }
  .sh-why__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sh-cats__grid { grid-template-columns: 1fr; }
  .sh-stat { padding: 20px 12px; }
  .sh-stat__number { font-size: 28px; }
  .sh-filters { padding: 60px 20px; }
  .sh-why { padding: 60px 20px; }
  .sh-order { padding: 60px 20px; }
  .sh-cta { padding: 60px 20px; }
  .sh-cats { padding: 60px 20px; }
  .sh-reviews { padding: 60px 20px; }
}

@media (max-width: 360px) {
  body { font-size: 15px; }
}/* Social icons — orange square */
.shah-footer__social-icons { display: flex !important; align-items: center !important; gap: 10px !important; margin-top: 20px !important; }
.shah-footer__social-icons a { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: 6px !important; background: #FE4A00 !important; transition: transform 0.2s, opacity 0.2s !important; text-decoration: none !important; }
.shah-footer__social-icons a:hover { transform: translateY(-2px) !important; opacity: 0.85 !important; background: #FE4A00 !important; }
.shah-footer__social-icons a svg { width: 17px !important; height: 17px !important; }