/** Shopify CDN: Minification failed

Line 1845:0 Unexpected "}"

**/


/* ==========================================================================
   Unified Design Tokens - Global Starlink
   Single source of truth for all CSS custom properties.
   ========================================================================== */
:root {
  /* Brand Colors */
  --brand-primary: #FBC106;
  --brand-primary-rgb: 251, 193, 6;
  --brand-primary-hover: #D4A005;
  --brand-navy: #1e293b;
  --brand-soft-peach: #FFF9EE;
  --brand-accent-blue: #E0F2FE;
  --brand-accent-blue-rgb: 224, 242, 254;
  --brand-accent: #5B6ABF;
  --brand-accent-rgb: 91, 106, 191;
  --brand-accent-light: #E8EAFF;

  /* Text */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-soft: #faf8f5;
  --bg-page: #faf8f5;
  --bg-card: #fafbfd;

  /* Borders */
  --border-light: #f1f5f9;
  --border-default: #e8edf2;

  /* Semantic Colors */
  --color-success: #16a34a;
  --color-success-light: #dcfce7;
  --color-success-text: #065f46;
  --color-warning-bg: #fef3c7;
  --color-warning-border: #fde68a;
  --color-warning-text: #92400e;

  /* Icon Colors */
  --brand-icon-bg: #fffbeb;
  --brand-icon-color: #d97706;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-brand: 0 10px 25px -5px rgba(251, 193, 6, 0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 10px 40px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

.all-destinations {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.destination-header h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.destination-header p {
  text-align: center;
  font-size: 1rem;
  color: #555;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.destination-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}

.destination-card:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.destination-card .flag img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.destination-card .name {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

/* Search Megamenu */

/* Hide mega-menu dropdown on initial load to prevent flash of content */
.sf-menu-bar .sf-mega-menu-collections.sf-mega-menu-destinations {
  display: none;
  gap: 40px;
}

/* Show mega-menu when navigation is interacted with (hover, focus, active, mobile) */
.sf-header.sf-mega-active .sf-mega-menu-collections.sf-mega-menu-destinations,
.sf-menu-item--mega:hover .sf-mega-menu-collections.sf-mega-menu-destinations,
.sf-menu-item--mega:focus-within .sf-mega-menu-collections.sf-mega-menu-destinations,
.sf-menu-item--mega.sf-menu-item--active .sf-mega-menu-collections.sf-mega-menu-destinations,
.sf-menu-item--mega.sf-sub-menu-open .sf-mega-menu-collections.sf-mega-menu-destinations,
.mobile-search-popup .sf-mega-menu-collections.sf-mega-menu-destinations {
  display: flex;
}

.sf-mega-menu-collections.sf-mega-menu-destinations .search-column {
  width: 30%;
  min-width: 300px;
}

@media screen and (max-width: 1023px) {
  .sf-mega-menu-collections.sf-mega-menu-destinations {
    flex-direction: column;
  }

  .sf-mega-menu-collections.sf-mega-menu-destinations .search-column {
    width: 100%;
    min-width: 300px;
  }
}

predictive-search {
  float: left;
  width: 100%;
  padding: 0px;
}

.mega-menu-search {
  position: relative;
  color: #000;
}

.mega-menu-search input {
  color: #000;
}

.mega-popular-searches {
  color: #000;
  text-align: left;
  margin-top: 10px;
}

.predictive-results {
  display: none;
  border-radius: 5px;
  background-color: #fff;
  list-style: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 66px;
  max-height: 350px;
  overflow-x: hidden;
  overflow-y: scroll;
  box-shadow: 2px 4px 4px 0px #E0E0E0;
  z-index: 2;
}

.predictive-results.is-open {
  display: block;
}

.predictive-search-wrapper-container {
  float: left;
  width: 100%;
}

.more-results-container {
   float: left;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.predictive-search-wrapper-container .m-search-item .search-item {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  gap: 10px;
}

.predictive-search-wrapper-container .m-search-item .search-item .search-product-image {
  width: 80px;
  min-width: 80px;
}

.predictive-search-wrapper-container .m-search-item .search-item .search-product-details {
  text-align: left;
}

.predictive-search-wrapper-container .m-search-item .search-item .search-product-details p {
  width: 100%;
  margin-bottom: 0px;
}

.sf-mega-menu-destinations .popular-destinations-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations-title {
  width: 100%;
  padding: 0 8px;
  margin-bottom: 16px;
}

.sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations {
  max-width: 25%;
  width: 100%;
  padding: 0 8px;
  margin-bottom: 16px;
  text-align: center;
  border-radius: 6px;
}

@media screen and (max-width: 1023px) {
  .sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations {
    max-width: 50%;
    width: 100%;
  }
}

.sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations a {
  position: relative;
  display: block;
}

@media screen and (max-width: 1023px) {
  .sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations a {
    padding: 8px 4px;
    touch-action: pan-y;
  }
}

.sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations img {
    width: 100%;
    border-radius: 6px;
}

.sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations span.text {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: #000;
}

.sf-mega-menu-destinations .popular-destinations-wrapper .popular-destinations a:hover .text {
  text-decoration: underline;
}

/* Mobile search dropdown */

.mobile-search-popup {
  display: none;
  position: fixed;
  top: 0px;
  height: 100vh;
  height: 100svh;
  left: 0;
  width: 100%;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out 0.3s;
}

.mobile-search-popup .mobile-search-container {
  width: calc(100% - 40px);
  max-width: 450px;
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  background-color: #fff;
}

.mobile-search-popup.active {
  transform: translateX(0);
  background: rgba(0,0,0,0.3);
}

@media screen and (max-width: 1023px) {
  .mobile-search-popup {
    display: block;

  }
}

@media screen and (max-width: 767px) {
  .mobile-search-popup .mobile-search-container {
    width: calc(100% - 40px);
  }
}

.mobile-search-popup .mobile-search-container {
  padding: 40px 1rem;
}

/* Mobile search close button */
.mobile-search-close-btn {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fff;
  padding: 12px 0 4px;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #333;
}

.mobile-search-close-btn:hover {
  color: #000;
}

/* Hide floating buttons (e.g. foxkit) when navigation is open */
html.prevent-scroll .foxkit-widget,
html.prevent-scroll [id*="foxkit"],
html.prevent-scroll .m-cart-drawer-toggle {
  display: none !important;
}

/* Activation Dates Styling */

.scd__body .activation-date-container {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.scd__body .activation-date-container p {
  float: left;
  width: 100%;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
}

.scd__body .activation-date-container .active-date-item {
  margin-bottom: 5px;
}

.scd__body .sf-cart__item-property  span {
  font-size: .875rem;
  line-height: 1.25rem;
}

.scd__body .activation-date-container .active-date-item span {
  font-size: 14px;
}

.sf-cart .sf-cart__item  .activation-date-container {
  float: left;
  width: 100%;
}

.sf-cart .sf-cart__item  .activation-date-container p {
  float: left;
  width: 100%;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
}

.sf-cart .sf-cart__item  .activation-date-container .active-date-item {
  margin-bottom: 5px;
}

.sf-cart .sf-cart__item  .activation-date-container .active-date-item span {
  font-size: 14px;
}

.activation-date-text-wrap p a {
  text-decoration: underline;
}

/* Arrival Popup */


/* Popup container - initially hidden */
.arrival-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Black background with opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: auto; /* Enables scrolling on shallow screens */
}

/* Popup inner box */
.arrival-popup-inner {
  max-width: 500px;
  width: 90%;
  background-color: white;
  border-radius: 8px;
  padding: 40px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  display: inline-block;
}

.arrival-popup-text {
  width: 100%;
  float: left;
}

.arrival-popup-text p {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.arrival-popup-text ul {
  padding-left: 18px;
  width: 100%;
  margin-bottom: 10px;
}

.arrival-popup-text ul li {
  list-style: disc outside;
  width: 100%;
}

/* Close button */
.arrival-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.arrival-popup-close:hover {
  color: #f00;
}

#cart-drawer-container .scd-item {
  width: 100%;
  float: left;
}

.sf-cart__item {
  width: 100%;
}

#cart-drawer-container .scd__footer-actions {
  padding: 15px 1rem 5px;
}

#cart-drawer-container .scd__subtotal {
  font-size: 16px;
}

#cart-drawer-container .additional-checkout-buttons {
  padding: 10px 0 5px;
}

#cart-drawer-container .scd__footer-actions button span {
  font-size: 14px;
}


.agree-terms p {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 480px) {
  #cart-drawer-container .scd__body {
    overflow-x: visible;
    overflow-y:scroll;
  }

  #cart-drawer-container .mobile-body-container {
    overflow-y: auto;
  }
}

/* Hide phone icon in product card spec */
.sf__pcard-spec svg {
  display: none !important;
}

/* ============================================
   Country List Modal - z-index & spacing fix
   ============================================ */
#modal-overlay {
  z-index: 99998 !important;
}
#country-modal {
  z-index: 99999 !important;
}
#country-list [style*="padding: 12px 16px"] {
  padding: 8px 16px !important;
}
#country-list [style*="padding: 10px 16px"] {
  padding: 8px 16px !important;
}

/* ============================================
   Mobile Navigation Optimization
   ============================================ */

/* Opt 1: Hamburger button - enlarge touch target to 44x44px */
.sf-header__mobile .sf-menu-button {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Opt 2: Search button - enlarge touch target */
.sf-header__mobile .mobile-search-btn {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Opt 6: Submenu GPU acceleration */
.sf-sub-links {
  will-change: transform;
}

@media (max-width: 1023px) {
  /* Opt 3: Menu item spacing & readability */
  .sf-menu-links .sf-link > a {
    padding: 14px 16px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }

  /* Opt 4: Reduce menu top padding */
  .sf-menu-links {
    padding-top: 16px !important;
  }

  /* Opt 5: Header height optimization */
  .sf-header__mobile {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}

/* ============================================
   Hide variant/plan spec text on product cards
   (collection pages, homepage, etc.)
   ============================================ */
.sf__pcard-spec {
  display: none !important;
}

/* ============================================
   Device Compatibility Modal - Full Styles
   ============================================ */

/* Button wrapper spacing */
.dc-button-wrap {
  margin: 12px 0 4px;
}

/* Modal overlay */
.dc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.dc-modal.active {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  animation: dcFadeIn .2s ease;
}
@keyframes dcFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes dcSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* Modal container */
.dc-modal-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  background: #fff;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  animation: dcSlideUp .3s ease;
  z-index: 1;
}

/* Modal header */
.dc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
  flex-shrink: 0;
}
.dc-modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
}
.dc-modal-close {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #666;
  border-radius: 50%;
  transition: background .2s;
}
.dc-modal-close:hover { background: #f0f0f0; }

/* Search bar */
.dc-modal-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid #eaeaea;
  transition: border-color .2s;
  flex-shrink: 0;
}
.dc-modal-search:focus-within {
  border-color: #FBC106;
}
#dc-search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: #333;
}
#dc-search-input::placeholder { color: #aaa; }
.dc-search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
}

/* Hint text */
.dc-hint {
  padding: 0 20px 12px;
  font-size: 13px;
  color: #999;
  margin: 0;
  flex-shrink: 0;
}
.dc-hint strong { color: #666; }

/* Modal body - scrollable */
.dc-modal-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 20px;
}

/* Brand groups */
.dc-brand-group {
  border-bottom: 1px solid #f0f0f0;
}
.dc-brand-group:last-of-type { border-bottom: none; }
.dc-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
}
.dc-brand-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dc-brand-name {
  font-size: 15px;
  font-weight: 500;
  color: #111;
}
.dc-device-count {
  font-size: 13px;
  color: #999;
  font-weight: 400;
}
.dc-chevron {
  color: #ccc;
  transition: transform .2s;
  flex-shrink: 0;
}
.dc-brand-group.open .dc-chevron {
  transform: rotate(180deg);
  color: #666;
}

/* Device list - hidden by default */
.dc-brand-devices {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.dc-brand-group.open .dc-brand-devices {
  max-height: 2000px;
}
.dc-device-list {
  list-style: none;
  padding: 0 0 12px 30px;
  margin: 0;
  columns: 2;
  column-gap: 16px;
}
.dc-device-item {
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  break-inside: avoid;
}

/* No results */
.dc-no-results {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 15px;
}

/* Desktop: centered modal */
@media (min-width: 769px) {
  .dc-modal.active {
    align-items: center;
  }
  .dc-modal-container {
    border-radius: 16px;
    max-height: 70vh;
    animation: dcFadeIn .2s ease;
  }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .dc-button-wrap { margin: 8px 0 2px; }
  .dc-modal-container { max-height: 90vh; border-radius: 16px 16px 0 0; }
  .dc-device-list { columns: 1; padding-left: 20px; }
  .dc-device-item { font-size: 13px; }
}

/* ============================================
   Fix: Footer bottom layout for CJK languages
   Prevent currency/language selector overflow
   and ensure proper spacing for wider text
   ============================================ */

/* Ensure footer bottom selectors container doesn't overflow */
.sf__footer-bottom .sf-footer__right {
  overflow: visible;
}

.sf__footer-bottom .flex.items-center {
  flex-wrap: nowrap;
  overflow: visible;
  min-width: 0;
}

/* Give language switcher enough room for CJK text like 简体中文 */
.sf__footer-bottom .sf-language-switcher {
  min-width: 90px;
}

.sf__footer-bottom .sf-currency-switcher {
  min-width: 60px;
}

/* Prevent custom select text from overflowing */
.sf__footer-bottom .sf__custom-select .select-selected {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ensure dropdown opens above other footer content */
.sf__footer-bottom .sf__custom-select {
  z-index: 10;
}

.sf__footer-bottom .sf__custom-select .select-items {
  z-index: 20;
}

/* Push footer bottom content above the chat widget */
.sf__footer-bottom-inner {
  padding-bottom: 60px !important;
}

@media (min-width: 1024px) {
  .sf__footer-bottom-inner {
    padding-bottom: 32px !important;
  }
}

/* ============================================
   Footer bottom — deep blue background
   Payment icons, copyright, language switcher
   ============================================ */
.sf__footer-bottom {
  background-color: #1e293b !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sf__footer-bottom .sf-footer__left,
.sf__footer-bottom .sf-footer__center,
.sf__footer-bottom .sf-footer__right {
  color: rgba(255, 255, 255, 0.6) !important;
}
.sf__footer-bottom .sf-footer__left span,
.sf__footer-bottom .sf-footer__center span,
.sf__footer-bottom .sf-footer__center p,
.sf__footer-bottom .sf-footer__center a,
.sf__footer-bottom a {
  color: rgba(255, 255, 255, 0.6) !important;
}
/* Payment icons — white on dark bg */
.sf__footer-bottom .payment-icons svg {
  fill: rgba(255, 255, 255, 0.5) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}
.sf__footer-bottom .payment-icons img {
  filter: brightness(0) invert(1) opacity(0.5);
}
/* Language / currency selectors — light text on dark bg */
.sf__footer-bottom .sf__custom-select .select-selected,
.sf__footer-bottom .sf-language-switcher,
.sf__footer-bottom .sf-currency-switcher,
.sf__footer-bottom .sf__custom-select {
  color: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.sf__footer-bottom .sf__custom-select .select-items {
  background-color: #2d3a4d !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.sf__footer-bottom .sf__custom-select .select-items div {
  color: rgba(255, 255, 255, 0.7) !important;
}
.sf__footer-bottom .sf__custom-select .select-items div:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}


/* ==========================================================================
   Global Starlink - Brand Design System
   Merged from gstarlink-custom.css (was orphaned / not loaded by theme)

   Design tokens:
   - Brand Navy: #1e293b
   - Brand Gold: #FBC106 / #FBC106
   - Gold Light: #fef6e4
   - Text Primary: #1e293b
   - Text Secondary: #64748b
   - Text Muted: #94a3b8
   - Border: #e8edf2
   - Page BG (product/collection): #faf8f5
   ========================================================================== */

/* ==========================================================================
   1. GLOBAL / LAYOUT
   ========================================================================== */

/* Announcement bar — visible (controlled by theme settings) */

/* Navigation bar — match footer color (#1e293b) instead of pure black */
.sf-menu-bar,
.sf__header-sticky .sf-menu-bar {
  background-color: #1e293b !important;
}

/* Navigation hover — gold underline effect */
.sf-menu-bar .sf-menu-item > a {
  position: relative;
  transition: color 0.2s ease;
  font-weight: 600 !important;
}
.sf-header .sf-menu-bar .sf-menu-item > a::after,
.sf-header[data-header-design="logo-left__2l"] .sf-nav .sf-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50% !important;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 24px) !important;
  height: 3px;
  background: #FBC106;
  border-radius: 3px 3px 0 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sf-header .sf-menu-bar .sf-menu-item > a:hover::after,
.sf-header .sf-menu-bar .sf-menu-item.is-active > a::after,
.sf-header[data-header-design="logo-left__2l"] .sf-nav .sf-menu-item:hover > a::after,
.sf-header[data-header-design="logo-left__2l"] .sf-nav .sf-menu-item.is-active > a::after {
  transform: translateX(-50%) scaleX(1);
}
.sf-menu-bar .sf-menu-item > a:hover {
  color: #fff !important;
}

/* Mega menu dropdown hover link gold accent */
.sf-mega-menu a:hover,
.sf-menu__submenu a:hover {
  color: #FBC106 !important;
}

/* Footer link hover — gold accent */
.sf-footer a:hover {
  color: #FBC106 !important;
}

/* Footer subscribe button — gold */
.sf-footer .sf__footer-subscribe button,
.sf-footer .sf__footer-subscribe .sf__btn {
  background-color: #FBC106 !important;
  color: #1e293b !important;
  border-color: #FBC106 !important;
}
.sf-footer .sf__footer-subscribe button:hover,
.sf-footer .sf__footer-subscribe .sf__btn:hover {
  background-color: #e09c10 !important;
}

/* Footer subscribe input focus — gold border */
.sf-footer .sf__footer-subscribe input:focus {
  border-color: #FBC106 !important;
}

/* Prevent header slide/transition animations on page load (FOAOL fix) */
.sf-header:not(.animations-ready) header {
  transition: none !important;
}
.sf-header:not(.animations-ready) .sf-menu__inner {
  animation: none !important;
}
.sf-header:not(.animations-ready) .header__wrapper {
  transition: none !important;
}

/* Submenu (Support dropdown) — smooth transition matching mega menu style */
.sf-menu__submenu {
  visibility: hidden; opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
  border: 1px solid #f1f5f9;
  padding: 8px 0;
  min-width: 200px;
}
.sf-menu-item:hover > .sf-menu__submenu,
.sf-menu-item:focus-within > .sf-menu__submenu {
  visibility: visible; opacity: 1;
  transform: translateY(0);
}
.sf-menu__submenu a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s, background 0.2s;
}
.sf-menu__submenu a:hover {
  color: #FBC106 !important;
  background: #faf8f5;
}
.sf-header .sf-mega-menu-collections,
.sf-header .sf-mega-menu-destinations { display: none; }
.sf-menu-item--mega:hover .sf-mega-menu-collections,
.sf-menu-item--mega:hover .sf-mega-menu-destinations,
.sf-menu-item--mega:focus-within .sf-mega-menu-collections,
.sf-menu-item--mega:focus-within .sf-mega-menu-destinations,
.sf-menu-item--active .sf-mega-menu-collections,
.sf-menu-item--active .sf-mega-menu-destinations,
.sf-menu-item.is-active .sf-mega-menu-collections,
.sf-menu-item.is-active .sf-mega-menu-destinations { display: flex; }

/* Hide SIM Cards and Travel Accessories for non-AU markets (default) */
.sf-menu-wrapper__desktop .sf-nav > .sf-menu-item[data-index="2"],
.sf-menu-wrapper__desktop .sf-nav > .sf-menu-item[data-index="3"] {
  display: none !important;
}
/* Show them on AU market */
.market-au .sf-menu-wrapper__desktop .sf-nav > .sf-menu-item[data-index="2"],
.market-au .sf-menu-wrapper__desktop .sf-nav > .sf-menu-item[data-index="3"] {
  display: list-item !important;
}

/* Header topbar carousel — rotate messages */
.sf-topbar .topbar-msg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}
.sf-topbar .topbar-msg.topbar-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sf-topbar .topbar-msg.topbar-exit-up {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%);
}


/* ==========================================================================
   2. PRODUCT PAGE
   ========================================================================== */

/* Global page background — warm off-white per DESIGN.md */
body {
  background-color: #faf8f5 !important;
}

/* Product page background — light grey like preview */
body.template-product {
  background-color: #faf8f5 !important;
}

/* Hide theme default breadcrumb on product pages */
body.template-product .sf-breadcrumb { display: none !important; }

/* Product title — bolder weight, tighter letter spacing */
body.template-product .sf__product-title {
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}

/* Product "eSIM" accent in title — gold color */
body.template-product .sf__product-title .product-title-accent {
  color: #FBC106;
}

/* Trust badges bar — white card with shadow (styled in product-v2.css) */

/* Plan selector — rounded corners, gold active state */
body.template-product .product-form__variants .sf__radio-visual,
body.template-product .product-form__variants .swatch__item {
  border-radius: 12px !important;
  border: 1.5px solid #e8edf2 !important;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
}
body.template-product .product-form__variants .sf__radio-visual:hover,
body.template-product .product-form__variants .swatch__item:hover {
  border-color: #c5cad4 !important;
}
body.template-product .product-form__variants .sf__radio-visual.selected,
body.template-product .product-form__variants .sf__radio-visual.active,
body.template-product .product-form__variants .swatch__item.selected,
body.template-product .product-form__variants .swatch__item.active,
body.template-product .product-form__variants input:checked + .sf__radio-visual,
body.template-product .product-form__variants input:checked + .swatch__item {
  border-color: #FBC106 !important;
  background-color: #fef9ee !important;
  box-shadow: 0 2px 10px rgba(212,160,23,0.15) !important;
}

/* Variant picker labels — clean typography */
body.template-product .product-form__option-label {
  font-size: 11px !important;
  color: #858281 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Price — gold accent */
body.template-product .sf__product-price .price-item--sale,
body.template-product .sf__product-price .price-item--regular {
  color: #FBC106 !important;
  font-weight: 800 !important;
}

/* Add to Cart button — gold with navy text */
body.template-product .sf__btn-atc,
body.template-product .product-form__submit,
body.template-product button[name="add"] {
  background-color: #FBC106 !important;
  color: #1e293b !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
body.template-product .sf__btn-atc:hover,
body.template-product .product-form__submit:hover,
body.template-product button[name="add"]:hover {
  background-color: #D4910F !important;
  box-shadow: 0 4px 16px rgba(255,204,102,0.4) !important;
}

/* Buy Now button — navy with white text */
body.template-product .sf__btn-buy-now,
body.template-product .shopify-payment-button__button {
  background-color: #1e293b !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
}
body.template-product .sf__btn-buy-now:hover,
body.template-product .shopify-payment-button__button:hover {
  background-color: #334155 !important;
}

/* Product tabs — gold bottom border on active */
body.template-product .product-tab__link.active,
body.template-product .product-tabs .tab-link.active,
body.template-product .sf__product-tabs-nav .active {
  border-bottom-color: #FBC106 !important;
  color: #1e293b !important;
}

/* Product details card — rounded, subtle shadow */
body.template-product .sf__product-details,
body.template-product .product-details-tabs .sf__tab-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* Discount hint — green badge */
body.template-product .pd-discount-hint,
body.template-product .sf__product-discount-hint {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  color: #065f46;
}

/* Quantity selector — rounded */
body.template-product .sf__product-qty,
body.template-product .quantity-selector {
  border-radius: 12px !important;
  border: 1.5px solid #e8edf2 !important;
  overflow: hidden;
}

/* Feature icons — gold background circles */
body.template-product .sf__product-feature-icon {
  background: #fef6e4 !important;
  border-radius: 50% !important;
}


/* ==========================================================================
   3. COLLECTION PAGE
   ========================================================================== */

/* Collection page background */
body.template-collection {
  background-color: #faf8f5 !important;
}

/* Collection header/hero — warm gradient */
body.template-collection .sf__collection-header,
body.template-collection .collection-hero {
  background: linear-gradient(135deg, #FFF9EE 0%, #fff5e0 50%, #ffffff 100%) !important;
  border-radius: 0 !important;
  padding: 2.5rem 1.5rem !important;
}

/* Collection title — bold, tight */
body.template-collection .sf__collection-title {
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}

/* Product cards — rounded, shadow, hover lift (all pages) */
.sf__product-card {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  border: 1px solid #e8edf2 !important;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.sf__product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
  transform: translateY(-4px);
}

/* Product card images — respect top border-radius */
.sf__product-card .sf-image,
.sf__product-card .sf__product-card-image,
.sf__product-card img {
  border-radius: 16px 16px 0 0 !important;
  overflow: hidden;
}

/* Product card "Select Plan" button — gold */
body.template-collection .sf__product-card .sf__btn,
body.template-collection .sf__product-card .btn {
  background-color: #FBC106 !important;
  color: #1e293b !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
}
body.template-collection .sf__product-card .sf__btn:hover,
body.template-collection .sf__product-card .btn:hover {
  background-color: #D4910F !important;
}

/* Filter tabs — pill style with gold active */
body.template-collection .sf__collection-filter-tab,
body.template-collection .facets__tab {
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}
body.template-collection .sf__collection-filter-tab.active,
body.template-collection .sf__collection-filter-tab.is-active,
body.template-collection .facets__tab.active {
  background: #fff !important;
  color: #FBC106 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
}

/* Sort dropdown — rounded */
body.template-collection .sf__collection-sort select,
body.template-collection .facets__sort select {
  border-radius: 999px !important;
  border: 1px solid #e8edf2 !important;
  padding: 8px 14px !important;
}


/* ==========================================================================
   4. CART PAGE
   ========================================================================== */

/* Hide breadcrumb on cart page */
body.template-cart .sf-breadcrumb,
body.template-cart .sf__page-title .breadcrumb,
body.template-cart .sf__breadcrumb { display: none !important; }

/* Hide original cart-addons Note/Coupon/Shipping icons — replaced by inline fields */
.sf-cart .scd__footer-actions { display: none !important; }
.sf-cart .scd__addon { display: none !important; }

/* Hide Shopify dynamic checkout (Shop Pay) button on cart page */
.sf-cart .additional-checkout-buttons { display: none !important; }

/* Cart page checkout button — gold */
.sf-cart .cart__submit,
.sf-cart .sf__btn-primary {
  background-color: #FBC106 !important;
  color: #1e293b !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease !important;
}
.sf-cart .cart__submit:hover,
.sf-cart .sf__btn-primary:hover {
  background-color: #D4910F !important;
  box-shadow: 0 4px 16px rgba(255,204,102,0.4) !important;
}

/* Cart continue shopping button — navy outline */
.sf-cart .sf__btn-secondary {
  background-color: transparent !important;
  color: #1e293b !important;
  border: 1.5px solid #1e293b !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
}
.sf-cart .sf__btn-secondary:hover {
  background-color: #1e293b !important;
  color: #fff !important;
}

/* Cart item cards — cleaner styling */
.sf-cart .scd__item {
  border-radius: 12px !important;
  border: 1px solid #e8edf2 !important;
  margin-bottom: 12px !important;
  overflow: hidden;
}

/* Cart note & coupon inputs — rounded */
.sf-cart__note textarea,
.sf-cart__coupon input[type="text"] {
  border-radius: 12px !important;
  border: 1px solid #e8edf2 !important;
  transition: border-color 0.2s ease !important;
}
.sf-cart__note textarea:focus,
.sf-cart__coupon input[type="text"]:focus {
  border-color: #FBC106 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(251,193,6,0.15) !important;
}

/* Cart coupon apply button */
.sf-cart__coupon [data-apply-discount] {
  background-color: #1e293b !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
}
.sf-cart__coupon [data-apply-discount]:hover {
  background-color: #334155 !important;
}

/* Cart subtotal price — gold accent */
.sf-cart-subtotal__price {
  color: #FBC106 !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
}


/* ==========================================================================
   5. SEARCH PAGE
   ========================================================================== */

body.template-search {
  background-color: #faf8f5 !important;
}

/* Search input — gold focus */
body.template-search .sf-search__input,
body.template-search .search__input {
  border-radius: 16px !important;
  border: 1px solid #e8edf2 !important;
  font-size: 1rem !important;
  padding: 16px 20px 16px 50px !important;
}
body.template-search .sf-search__input:focus,
body.template-search .search__input:focus {
  border-color: #FBC106 !important;
  box-shadow: 0 0 0 4px rgba(255,204,102,0.2) !important;
}

/* Search results product cards */
body.template-search .sf__product-card {
  border-radius: 16px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  border: 1px solid #e8edf2 !important;
}


/* ==========================================================================
   6. HOMEPAGE SECTIONS
   ========================================================================== */

/* Hero section — gold accents on search focus */
.sf__hero-search input:focus {
  border-color: #FBC106 !important;
  box-shadow: 0 0 0 4px rgba(255,204,102,0.2) !important;
}

/* Homepage tabs — pill style with gold active */
.sf__collection-tabs .tab-btn.active,
.sf__collection-tabs .sf__tab.active,
.hp-tabs__btn--active {
  background: #fff !important;
  color: #FBC106 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
}

/* Homepage "Most Loved Destinations" — product cards */
.sf__pcard-button,
.sf__product-card .sf__btn {
  border-radius: 12px !important;
}

/* How it works section — icon background circles */
.sf__steps-icon,
.sf__icon-box-icon {
  background: #fef6e4 !important;
  border-radius: 50% !important;
  color: #FBC106 !important;
}

/* "Check My Device" CTA button — navy */
.sf__cta-btn,
.sf__icon-box .sf__btn-primary {
  background-color: #1e293b !important;
  color: #fff !important;
  border-radius: 12px !important;
}
.sf__cta-btn:hover,
.sf__icon-box .sf__btn-primary:hover {
  background-color: #334155 !important;
}

/* Why choose features — icon circle */
.sf__icon-box {
  text-align: center;
}


/* ==========================================================================
   7. ACCOUNT / LOGIN / WISHLIST PAGES
   ========================================================================== */

/* Login page — centered card */
body.template-customers-login .sf__account-card,
body.template-customers-login .customer-login {
  background: #fff;
  border-radius: 20px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
  max-width: 480px;
  margin: 2rem auto;
  padding: 2.5rem;
}

/* Login submit button — gold */
body.template-customers-login .sf__btn-primary,
body.template-customers-login button[type="submit"] {
  background-color: #FBC106 !important;
  color: #1e293b !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  width: 100%;
  padding: 14px !important;
}
body.template-customers-login .sf__btn-primary:hover,
body.template-customers-login button[type="submit"]:hover {
  background-color: #D4910F !important;
}

/* Login input focus — gold */
body.template-customers-login input:focus {
  border-color: #FBC106 !important;
  box-shadow: 0 0 0 3px rgba(251,193,6,0.15) !important;
}

/* Account page */
body.template-customers-account {
  background-color: #faf8f5 !important;
}

/* Wishlist page */
body.template-page-wishlist {
  background-color: #faf8f5 !important;
}


/* ==========================================================================
   8. CONTENT PAGES (FAQ, Help Center, How It Works, etc.)
   ========================================================================== */

/* Content page general */
body.template-page {
  background-color: #faf8f5 !important;
}

/* Page title — clean styling */
body.template-page .sf__page-title h1 {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

/* FAQ accordion — gold active indicator */
body.template-page .sf__accordion-item.active .sf__accordion-header,
body.template-page .sf__accordion-item.open .sf__accordion-header {
  background: #fef6e4 !important;
}
body.template-page .sf__accordion-item.active .sf__accordion-icon,
body.template-page .sf__accordion-item.open .sf__accordion-icon {
  color: #FBC106 !important;
}

/* Content cards — rounded */
body.template-page .sf__card,
body.template-page .page-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 2rem;
}


/* ==========================================================================
   9. BLOG PAGES
   ========================================================================== */

body.template-blog,
body.template-article {
  background-color: #faf8f5 !important;
}

/* Blog post featured image — constrain size */
body.template-article .sf__page-blog-single-post responsive-image.sf-image {
  max-height: 400px !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  display: block !important;
}
body.template-article .sf__page-blog-single-post responsive-image.sf-image img {
  max-height: 400px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  width: 100% !important;
}
@media (max-width: 768px) {
  body.template-article .sf__page-blog-single-post responsive-image.sf-image,
  body.template-article .sf__page-blog-single-post responsive-image.sf-image img {
    max-height: 280px !important;
  }
}

/* Blog article cards — rounded */
body.template-blog .sf__article-card {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
body.template-blog .sf__article-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
  transform: translateY(-2px);
}

/* Blog "Read More" link — gold */
body.template-blog .sf__article-card a:hover,
body.template-article .sf__article-back:hover {
  color: #FBC106 !important;
}


/* ==========================================================================
   10. MOBILE RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 767px) {
  /* Mobile nav items — smaller, scrollable */
  .sf-menu-bar .sf-menu-item > a {
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
  }

  /* Hide nav hover underline on mobile (touch devices) */
  .sf-menu-bar .sf-menu-item > a::after {
    display: none;
  }

  /* Product page — single column */
  body.template-product .sf__product-media-wrapper {
    margin-bottom: 1.5rem;
  }

  /* Product title — smaller on mobile */
  body.template-product .sf__product-title {
    font-size: 1.5rem !important;
  }

  /* Cart items — tighter spacing */
  .sf-cart .scd__item {
    margin-bottom: 8px !important;
  }

  /* Cart extras (note + coupon) — stack vertically */
  .sf-cart__extras {
    flex-direction: column !important;
  }

  /* Content page cards — less padding */
  body.template-page .sf__card,
  body.template-page .page-content {
    padding: 1.25rem;
    border-radius: 16px;
  }

  /* Login card — less padding on mobile */
  body.template-customers-login .sf__account-card,
  body.template-customers-login .customer-login {
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 16px !important;
  }

  /* Collection cards — smaller radius */
  body.template-collection .sf__product-card {
    border-radius: 12px !important;
  }

  /* Footer — single column */
  .sf-footer .sf__footer-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet — 2 column footer */
  .sf-footer .sf__footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Nav items — slightly smaller */
  .sf-menu-bar .sf-menu-item > a {
    padding: 10px 12px !important;
    font-size: 0.8125rem !important;
  }
}


/* ==========================================================================
   11. ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Smooth fade-slide for dynamic content */
@keyframes gsl-fade-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gold pulse for promotional elements */
@keyframes gsl-gold-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 193, 6, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(251, 193, 6, 0); }
}

/* Apply to promotional badges */
.sf__product-badge--sale,
.sf__badge--promo {
  animation: gsl-gold-pulse 2s infinite;
}

/* Remove white gap between content and footer on specific pages */
/* Hide default page content on contact page (blue illustration + old contact form) */
.page-contact [data-section-type="hero"],
.page-contact [data-section-type="contact-page"],
.page-contact #MainContent,
.page-partner-with-us #MainContent,
.page-how-it-works #MainContent,
.page-shipping-returns #MainContent,
.page-faq #MainContent,
.page-faqs #MainContent,
.page-about-us #MainContent,
.page-device-compatibility-list #MainContent {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* ========== Mobile nav fixes ========== */
/* Fix 2: Increase top padding so announcement bar doesn't cover Destinations */
@media (max-width: 1023px) {
  .sf-menu-wrapper-mobile .sf-menu-links {
    padding-top: 1rem !important;
  }
  /* Push menu content below announcement bar + header */
  .sf-menu-wrapper-mobile .sf-menu__content {
    top: 0;
    padding-top: 0;
  }
  /* Raise mobile menu z-index above announcement bar and header */
  .sf-menu-wrapper-mobile {
    z-index: 9990 !important;
  }
}

.page-about-us #MainContent > .shopify-section:last-child,
.page-about-us #MainContent .shopify-section,
.page-about-us .section-my,
.page-about-us .sf__page-about {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ========== Global footer fixes ========== */
/* Remove white gap between footer sections */
#shopify-section-footer,
.shopify-section--footer {
  background: #1e293b !important;
  margin-top: 0 !important;
}
#shopify-section-footer > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Kill the white gap inside footer between blocks and bottom bar */
.sf__footer-bottom,
.footer-layout.sf__footer-bottom {
  margin-top: 0 !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  background: #1e293b !important;
}
/* Ensure payment icons area has dark bg */
.sf__footer-bottom-inner {
  background: #1e293b !important;
}
/* Kill any gap between main content and footer */
#MainContent {
  margin-bottom: 0 !important;
}
#MainContent > .shopify-section:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ========== Mobile: 2 product cards per row ========== */
@media (max-width: 767px) {
  /* MINIMOG product grid — force 2 columns on mobile */
  .sf__pcard-grid,
  .sf-collection__products .grid,
  .grid--product,
  [data-products-container] .grid,
  .sf__collection-products .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  /* Also handle flex-based grids */
  .sf__pcard-grid > *,
  .grid--product > * {
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
    flex: 0 0 calc(50% - 6px) !important;
  }
  /* Slider/swiper product grids */
  .sf-collection__products .swiper-slide,
  .sf__collection-products .swiper-slide {
    width: calc(50% - 6px) !important;
  }
  /* Product card image — smaller on 2-col */
  .sf__pcard .sf-image,
  .sf__pcard-img {
    aspect-ratio: 1 / 1;
  }

  /* Hide homepage hero decorative elements on mobile (keep Judge.me bar) */
  .hp-hero__float,
  .hp-hero__float--flight,
  .hp-hero__float--globe,
  .hp-hero__shape,
  .hp-hero__shape--1,
  .hp-hero__shape--2,
  .hp-hero__illustration {
    display: none !important;
  }
}

/* ========== Homepage Check Device button — dark style ========== */
.hp-steps__compat-btn,
.hp-compat-btn,
button[class*="compat-btn"],
.sec-steps__compat-btn,
.dc-check-btn {
  background: #1e293b !important;
  color: #fff !important;
  border: none !important;
}
.hp-steps__compat-btn:hover,
.hp-compat-btn:hover,
button[class*="compat-btn"]:hover,
.sec-steps__compat-btn:hover,
.dc-check-btn:hover {
  background: #334155 !important;
}
}