/**
 * Viewport-based mobile polish for Green Dot frontend.
 * Loaded on all devices so DevTools narrow width AND real phones both get fixes.
 */

/* Desktop: never show the text email chip (image email is enough) */
.topbar-area .narrow-email-chip {
  display: none !important;
}

@media (max-width: 991px) {
  /* ---- Contact strip scrolls away; logo bar sticks ---- */
  html,
  body {
    /* overflow-x:hidden breaks position:sticky in many mobile browsers */
    overflow-x: clip;
  }

  .product-home-header-wrapper {
    overflow: visible !important;
  }

  .topbar-area {
    position: relative !important;
    top: auto !important;
    z-index: 1;
    background: #eef2f0;
    /* scrolls out of view naturally — do NOT sticky */
  }

  .topbar-area .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .topbar-inner {
    padding: 6px 0 !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .mobile-contact-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 2px 0;
    margin: 0 !important;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left !important;
  }

  .mobile-contact-link {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    min-width: 0;
    max-width: 48%;
    padding: 0;
    margin: 0 !important;
    border: none !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    color: var(--heading-color, #1b2b1f) !important;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
  }

  .mobile-contact-email {
    justify-content: flex-start !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .mobile-contact-phone {
    justify-content: flex-end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: right !important;
  }

  .mobile-contact-ico {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--secondary-color, #2e7d32);
    display: block;
  }

  .mobile-contact-link i {
    flex-shrink: 0;
    color: var(--secondary-color, #2e7d32) !important;
    font-size: 12px;
    line-height: 1;
  }

  .mobile-contact-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-contact-sep {
    display: none !important;
  }

  .mobile-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 48%;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    color: var(--heading-color, #1b2b1f) !important;
  }

  a.mobile-contact-chip:active,
  a.mobile-contact-chip:hover,
  a.mobile-contact-link:active,
  a.mobile-contact-link:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 0.85;
  }

  .mobile-contact-chip .chip-icon {
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    color: var(--secondary-color, #2e7d32) !important;
    font-size: 11px !important;
  }

  .mobile-contact-chip .chip-icon i {
    color: var(--secondary-color, #2e7d32) !important;
    line-height: 1;
    font-size: 11px !important;
  }

  .mobile-contact-chip .chip-text {
    flex: 1;
    min-width: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-contact-chip .chip-text a {
    color: inherit !important;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
  }

  .topbar-area .block-full-area {
    letter-spacing: 0.06em;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    line-height: 1.3;
  }

  /* Fallback: old stacked contact list if strip markup missing */
  .topbar-area .social-icon.mobile-legacy,
  .topbar-inner > .social-icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }

  /* Logo bar stays on screen via JS class (parent wrapper is too short for sticky) */
  .topbar-area .block-full-area.is-mobile-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1052 !important;
    margin: 0 !important;
  }

  .navbar-area.is-mobile-fixed,
  nav.navbar.navbar-area.is-mobile-fixed {
    position: fixed !important;
    top: 0 !important; /* JS sets top under ISO when ISO is present */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  }

  #mobile-nav-spacer,
  #mobile-iso-spacer {
    width: 100%;
    flex-shrink: 0;
  }

  /* Logo + search + burger: sticky after topbar hides */
  .navbar-area,
  nav.navbar.navbar-area {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
  }

  .navbar-area .nav-container {
    background: #fff !important;
  }

  .navbar-area .navbar-collapse {
    background: #fff;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  /* ---- Top bar layout ---- */
  .topbar-area {
    overflow-x: clip;
    overflow-y: visible;
  }

  .topbar-area .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topbar-inner {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    align-items: center;
    gap: 6px;
    padding: 6px 0 !important;
    text-align: left !important;
    width: 100%;
  }

  .topbar-inner > .mobile-contact-strip {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .topbar-area .left-contnet,
  .topbar-area .right-contnet {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-area .left-contnet .social-icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .topbar-area .left-contnet .social-icon > li {
    margin: 0 !important;
    font-size: 12px;
    line-height: 1.3;
  }

  /* Search in topbar is too wide on tablets/phones — hide; logo-row search remains for mobile UA */
  .topbar-area .left-contnet .top-search {
    display: none !important;
  }

  .topbar-area .right-contnet .info-items-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .topbar-area .right-contnet .info-items-two > li {
    margin: 0 !important;
  }

  .topbar-area .right-contnet img {
    max-width: min(220px, 70vw);
    height: auto;
  }

  .topbar-area .narrow-email-chip {
    display: none;
  }

  .topbar-area .single-info-item .content,
  .topbar-area .single-info-item .details {
    font-size: 13px;
  }

  /* ---- Navbar: logo LEFT, hamburger RIGHT ---- */
  .navbar-area .nav-container {
    min-height: 64px;
    padding: 6px 0;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .responsive-mobile-menu {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    position: relative;
  }

  .logo-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 8px;
    position: relative;
  }

  .logo-wrapper .logo {
    order: 1;
    margin-right: auto !important;
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
  }

  .logo-wrapper .logo img {
    max-height: 48px;
    width: auto;
    display: block;
  }

  .logo-wrapper #mobile_search_btn {
    order: 2;
    width: 40px !important;
    font-size: 20px !important;
    flex-shrink: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: var(--secondary-color) !important;
  }

  .logo-wrapper #mobile_search_btn i,
  .logo-wrapper #mobile_search_btn .fa-search {
    color: var(--secondary-color) !important;
  }

  .logo-wrapper .navbar-toggler,
  .responsive-mobile-menu .navbar-toggler {
    order: 3;
    position: static !important;
    right: auto !important;
    top: auto !important;
    left: auto !important;
    float: none !important;
    margin: 0 0 0 4px !important;
    flex-shrink: 0;
    margin-left: 4px !important;
  }

  #mobile_search_btn {
    width: 40px !important;
    font-size: 20px !important;
    flex-shrink: 0;
    color: var(--secondary-color) !important;
  }

  #mobile_search.show {
    width: 100%;
    margin-bottom: 10px;
    order: -1;
  }

  .top-search .search-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  .top-search .search-form #search_terms,
  .top-search .search-form #search_term {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ---- Hero: readable, less cramped ---- */
  .product-home-header-area .container .col-lg-6,
  .product-home-header-area .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-home-header-area.style-03 .header-inner {
    padding: 18px 16px 22px !important;
    margin: 0;
    background: none !important;
    border-radius: 0;
  }

  .product-home-header-area.style-03 .header-inner .title,
  .product-home-header-area.style-03 .title {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.02em;
    color: #878a95 !important;
    padding-right: 0 !important;
  }

  .product-home-header-area.style-03 .header-inner p {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #878a95 !important;
    margin-bottom: 14px !important;
    max-width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }

  .product-home-header-area.style-03 .btn-wrapper {
    padding-top: 4px !important;
  }

  .product-home-header-area.style-03 .boxed-btn.btn-rounded.white {
    display: inline-block;
    padding: 11px 22px;
    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.02em;
  }

  .product-home-header-area .right-image-wrap {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 4px;
  }

  .product-home-header-area .right-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ---- Floating share: two separate buttons (FB + WA) ---- */
  .fixed-social-share {
    top: auto !important;
    bottom: 88px !important;
    right: 10px !important;
    left: auto !important;
    width: 46px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 90;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .fixed-social-share > small {
    display: none !important;
  }

  .fixed-social-share > a,
  .fixed-social-share > button {
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .fixed-social-share > a.facebook {
    display: inline-flex !important;
    background: #1877f2 !important;
  }

  .fixed-social-share > a.whatsapp {
    display: inline-flex !important;
    background: #25d366 !important;
  }

  .fixed-social-share > a.facebook svg,
  .fixed-social-share > a.whatsapp svg {
    fill: #fff !important;
    width: 18px;
    height: auto;
  }

  /* Keep only FB + WA on mobile; hide the rest */
  .fixed-social-share > a.twitter,
  .fixed-social-share > a.linkedin,
  .fixed-social-share > a.email,
  .fixed-social-share > button,
  .fixed-social-share > button#more-option,
  .more-fixed-social-share {
    display: none !important;
  }

  .more-fixed-social-share {
    display: none !important;
  }

  .back-to-top {
    right: 12px !important;
    bottom: 24px !important;
  }

  /* ---- Slider next/prev: both visible, left + right ---- */
  .header-area-wrapper.csslider,
  .header-area-wrapper {
    position: relative;
    overflow: visible;
  }

  .header-area-wrapper > .header-arrows.arrows {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 6px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    margin: 0 !important;
    z-index: 6 !important;
    transform: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    pointer-events: none;
  }

  /* Absolute left/right stacked into one spot — use flex instead */
  .header-area-wrapper > .header-arrows.arrows label {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    float: none !important;
    pointer-events: auto;
    padding: 11px !important;
    margin: 0 !important;
    box-shadow: inset 2px -2px 0 1px var(--secondary-color) !important;
    cursor: pointer;
  }

  /* First slide: goto-last is prev but comes later in DOM — pull it left */
  .header-area-wrapper > .header-arrows.arrows label.goto-last {
    order: -1;
  }

  .header-area-wrapper > .header-arrows.arrows label:hover {
    box-shadow: inset 3px -3px 0 2px var(--secondary-color) !important;
  }

  .header-area-wrapper > .header-arrows.arrows label:before {
    top: -10px !important;
    left: -10px !important;
    height: calc(100% + 20px) !important;
    width: calc(100% + 20px) !important;
  }
}

@media (max-width: 767px) {
  .topbar-area .block-full-area {
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 5px 10px;
  }

  /* Desktop-UA narrow: one flat row (not buttons) */
  .topbar-area .left-contnet {
    display: none !important;
  }

  .topbar-area .right-contnet {
    display: flex !important;
    width: 100%;
    justify-content: space-between !important;
  }

  .topbar-area .right-contnet .info-items-two {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between !important;
    gap: 8px;
    width: 100%;
  }

  .topbar-area .right-contnet .info-items-two > li {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 48%;
    width: auto;
    margin: 0 !important;
  }

  .topbar-area .right-contnet .info-items-two > li > img,
  .topbar-area .right-contnet .desktop-email-img {
    display: none !important;
  }

  .topbar-area .right-contnet .narrow-email-chip {
    display: block !important;
    width: auto;
    max-width: 100%;
  }

  .topbar-area .right-contnet .narrow-email-chip .mobile-contact-chip,
  .topbar-area .right-contnet .narrow-email-chip .mobile-contact-link,
  .topbar-area .right-contnet .single-info-item {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    width: auto;
    max-width: 100%;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0;
  }

  .topbar-area .right-contnet .single-info-item .icon {
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: none !important;
    color: var(--secondary-color, #2e7d32) !important;
    font-size: 11px !important;
    margin: 0 !important;
  }

  .topbar-area .right-contnet .single-info-item .icon i {
    color: var(--secondary-color, #2e7d32) !important;
    font-size: 11px !important;
  }

  .topbar-area .right-contnet .single-info-item .content,
  .topbar-area .right-contnet .single-info-item .details,
  .topbar-area .right-contnet .single-info-item .title {
    font-size: 11px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topbar-area .right-contnet .narrow-email-chip::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 8px;
    background: rgba(0, 0, 0, 0.18);
    vertical-align: middle;
  }

  .topbar-area .right-contnet .info-items-two {
    position: relative;
  }

  .product-home-header-area.style-03 .header-inner {
    padding: 16px 14px 20px !important;
  }

  .product-home-header-area.style-03 .header-inner .title,
  .product-home-header-area.style-03 .title {
    font-size: 1.05rem !important;
  }

  .product-home-header-area.style-03 .header-inner p {
    -webkit-line-clamp: 4;
    font-size: 12.5px !important;
  }

  /* Minimal share: Facebook + WhatsApp only */
  .fixed-social-share > a:not(.facebook):not(.whatsapp),
  .fixed-social-share > button {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .logo-wrapper .logo img {
    max-height: 40px;
  }

  .product-home-header-area.style-03 .header-inner {
    padding: 14px 12px 18px !important;
  }
}

/* ==== Sticky portal (must win over earlier sticky rules) ==== */
#gd-sticky-portal {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2147483000 !important;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

#gd-sticky-portal.is-active {
  display: block !important;
}

#gd-sticky-portal .block-full-area,
#gd-sticky-portal .gd-iso-bar {
  background: var(--secondary-color, #2e7d32) !important;
  color: #fff !important;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  line-height: 1.3;
  margin: 0 !important;
}

#gd-sticky-portal .navbar-area,
#gd-sticky-portal nav.navbar.navbar-area {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  margin: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  z-index: auto !important;
}

#gd-sticky-portal .navbar-area .nav-container {
  background: #fff !important;
}

.gd-sticky-placeholder {
  width: 100%;
  flex-shrink: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hero must not pull up under sticky ISO/nav on mobile */
@media (max-width: 991px) {
  .product-home-header-wrapper > .container.home-hero-wrap,
  .product-home-header-wrapper > .container.home-hero-wrap[style],
  .home-hero-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .product-home-header-area {
    padding: 0 !important;
  }

  .product-home-header-area .right-image-wrap {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
  }

  /* ==== Mobile footer: professional layout ==== */
  .footer-area {
    margin-top: 32px;
    background: #f3f5f4;
  }

  .footer-area .footer-top {
    padding: 36px 0 12px !important;
    background: linear-gradient(180deg, #eef5f0 0%, #f3f5f4 100%) !important;
    border-top: 3px solid var(--secondary-color);
  }

  .footer-area .footer-top .container,
  .footer-area .footer-bottom-left .container,
  .footer-area .copyright-area .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-area .footer-top .row > [class*="col-"],
  .footer-area .footer-bottom-left .row > [class*="col-"],
  .footer-area .copyright-area .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-area .widget.footer-widget {
    margin-bottom: 0 !important;
    padding: 0 !important;
    text-align: left;
    background: transparent !important;
  }

  .footer-area .widget.footer-widget .widget-title,
  .footer-area .locations-widget .section-title .title {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--heading-color) !important;
    margin: 0 0 16px !important;
    padding: 0 0 10px !important;
    border-bottom: none !important;
    display: block !important;
    width: 100%;
    line-height: 1.3;
    text-align: left !important;
    position: relative;
  }

  .footer-area .widget.footer-widget .widget-title::after,
  .footer-area .locations-widget .section-title .title::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
  }

  .footer-area .locations-widget .section-title {
    margin-bottom: 4px;
  }

  .footer-area .locations-widget > .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .footer-area .locations-widget > .row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 12px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-area .locations-widget > .row > .col-sm-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-area .locations-widget > .row > .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-area .locations-widget .address-item.box {
    height: 100%;
    margin: 0;
    padding: 14px 14px 14px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(20, 40, 30, 0.04);
    text-align: left !important;
  }

  .footer-area .locations-widget .address-item.box p {
    margin: 0 0 8px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #5a616c !important;
  }

  .footer-area .locations-widget .address-item.box p:last-child {
    margin-bottom: 0 !important;
  }

  .footer-area .locations-widget .address-item.box strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--heading-color);
  }

  .footer-area .locations-widget .address-item.box i {
    color: var(--secondary-color);
    margin-right: 4px;
  }

  .footer-area .footer-bottom-left {
    background: #f3f5f4 !important;
    padding: 8px 0 28px !important;
  }

  .footer-area .footer-bottom-left > .container > .row {
    display: flex;
    flex-direction: column;
  }

  .footer-area .footer-bottom-left > .container > .row > .col-lg-8 {
    order: 2;
  }

  .footer-area .footer-bottom-left > .container > .row > .col-lg-4 {
    order: 1;
    margin-bottom: 20px;
  }

  .footer-area .footer-bottom-left .footer-widget + .footer-widget {
    margin-top: 22px !important;
  }

  .footer-area .footer-social,
  .footer-area .contact_info_list.social-icon {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
  }

  .footer-area .footer-social a,
  .footer-area .contact_info_list.social-icon a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.2);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .footer-area .footer-social a:hover,
  .footer-area .contact_info_list.social-icon a:hover {
    background: var(--heading-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  }

  .footer-area .footer-social a svg {
    display: inline-block !important;
    vertical-align: middle;
    color: #fff !important;
    fill: currentColor;
  }

  .footer-area .footer-widget .contact_info_list:not(.social-icon) {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    list-style: none;
  }

  .footer-area .footer-widget .contact_info_list:not(.social-icon) li.single-info-item {
    display: block !important;
    margin: 0 0 10px !important;
    padding: 12px 14px !important;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
  }

  .footer-area .footer-widget .contact_info_list:not(.social-icon) li.single-info-item .content {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-area .footer-widget .contact_info_list li.single-info-item .icon,
  .footer-area .contact_info_list li.single-info-item .icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.12) !important;
    color: var(--secondary-color) !important;
    font-size: 14px;
    line-height: 1;
  }

  .footer-area .footer-widget .contact_info_list li.single-info-item .icon .footer-contact-ico,
  .footer-area .footer-widget .contact_info_list li.single-info-item .icon svg {
    display: block !important;
    width: 16px;
    height: 16px;
    fill: currentColor;
    color: var(--secondary-color) !important;
  }

  .footer-area .footer-widget .contact_info_list li.single-info-item .icon i {
    display: none !important;
  }

  .footer-area .footer-widget .contact_info_list li.single-info-item .details {
    flex: 1;
    min-width: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #5a616c;
  }

  .footer-area .footer-widget .contact_info_list li.single-info-item .details .widget-title {
    font-size: 11px !important;
    letter-spacing: 0.06em;
    margin: 0 0 2px !important;
    padding: 0 !important;
    color: #8a9099 !important;
    text-transform: uppercase;
  }

  .footer-area .footer-widget .contact_info_list li.single-info-item .details .widget-title::after {
    display: none !important;
  }

  .footer-area .footer-widget .contact_info_list li.single-info-item .details img {
    max-width: 100%;
    height: auto !important;
    display: block;
  }

  .footer-area .map-widget .map-widget-frame {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(20, 40, 30, 0.08);
    background: #fff;
  }

  .footer-area .map-widget .map-widget-frame iframe,
  .footer-area .footer-bottom-left .footer-widget iframe {
    width: 100% !important;
    max-width: 100%;
    height: 220px !important;
    border: 0 !important;
    display: block;
    margin: 0 !important;
    border-radius: 0;
    box-shadow: none;
  }

  .footer-area .mobile-divider {
    display: none !important;
  }

  .footer-area .copyright-area {
    background: #163528 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    padding: 18px 0 !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-area .copyright-area-inner {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    margin: 0 0 12px !important;
  }

  .footer-area .copyright-area-inner a {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .footer-area .footer-nav {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-area .footer-nav li {
    display: inline-flex !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 12px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .footer-area .footer-nav li:last-child {
    border-right: none !important;
  }

  .footer-area .footer-nav li a {
    color: rgba(255, 255, 255, 0.88) !important;
  }

  .footer-area .footer-nav li a:hover {
    color: #fff !important;
  }
}

@media (max-width: 380px) {
  .footer-area .locations-widget > .row > .col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Desktop: hide mobile ISO strip (desktop still has ISO in left content) */
@media (min-width: 992px) {
  .topbar-area > .block-full-area.gd-iso-bar,
  .topbar-area > .gd-iso-bar {
    display: none !important;
  }

  #gd-sticky-portal {
    display: none !important;
  }
}

/* Narrow desktop-UA: hide duplicate ISO text in left social row */
@media (max-width: 991px) {
  .gd-iso-desktop-only {
    display: none !important;
  }
}

