/* Mobile Persistent Header Styles */
.mobile-persistent-header {
  display: none;
}
.mobile-only {
  display: none !important;
}

@media (max-width: 991px) {
  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }
  
  /* Topbar stacking */
  .topbar__inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 10px 15px !important;
    gap: 8px !important;
  }
  .topbar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .topbar-row--spaced {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Header adjustments */
  .site-header {
    position: relative;
    z-index: 100;
  }
  
  /* Show mobile persistent header */
  .mobile-persistent-header {
    display: block;
    background-color: var(--soft);
    padding: 15px 0;
  }
  
  /* Mobile Search Bar */
  .mobile-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 16px;
    height: 44px;
    margin-bottom: 12px;
  }
  .mobile-search-bar svg {
    color: var(--muted);
    margin-right: 12px;
  }
  .mobile-search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: var(--ink);
    background: transparent;
  }
  
  /* Mobile Toggles */
  .mobile-toggles {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-toggles details {
    width: 100%;
  }
  .mobile-toggles summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
  }
  .mobile-toggles summary::-webkit-details-marker {
    display: none;
  }
  .mobile-toggles .btn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mobile-btn-marine summary {
    background: linear-gradient(135deg, #0a192f, #1b2a4a);
    color: #fff;
  }
  .mobile-btn-fishing summary {
    background: linear-gradient(135deg, #006699, #0088cc);
    color: #fff;
  }
  .mobile-btn-lighting summary {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
  }
  .mobile-toggles .arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
  }
  .mobile-toggles details[open] .arrow {
    transform: rotate(180deg);
  }
  .mobile-toggles-links {
    background: #fff;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 10px;
    margin-top: -4px; /* Pull up to hide under rounded corners */
    display: flex;
    flex-direction: column;
  }
  .mobile-toggles-links a {
    padding: 10px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .mobile-toggles-links a:last-child {
    border-bottom: none;
  }
  
  /* Mobile Hero Banner */
  .hero-slide {
    margin: 10px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    height: auto !important;
    min-height: 160px !important;
    aspect-ratio: 3 / 1 !important;
    background-color: #05162a !important;
  }
  .hero-slide::after {
    border-radius: 12px !important;
  }
  .hero__media-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background-color: #05162a !important;
  }
  .hero__content {
    display: none !important;
  }
  .custom-hero-ui {
    display: none !important;
  }
  .hero__subtitle {
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }
  .hero__title {
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
  .hero__title span {
    font-size: 32px !important;
  }
  .hero__desc {
    font-size: 13px !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }
  
  /* Hide desktop search */
  .nav__actions .search-bar-container {
    display: none !important;
  }
  
  /* Mobile Popular Categories & Image */
  .category-tools {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 14px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .category-tools .search-field--styled {
    display: none !important;
  }
  .segmented--styled {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    background: rgba(255, 255, 255, 0.12) !important;
    padding: 4px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  .segmented--styled .segmented__button {
    flex: 1 !important;
    text-align: center !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
  }
  .segmented--styled .segmented__button.is-active {
    background: #00b4d8 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 8px rgba(0, 180, 216, 0.4) !important;
  }

  .categories-dark-header {
    background: #0a192f url('bg_catalogue_explorer.png') no-repeat center center !important;
    background-size: cover !important;
    padding: 24px 18px 20px 18px !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .categories-dark-header::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.80) 0%, rgba(10, 25, 47, 0.50) 50%, rgba(10, 25, 47, 0.80) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }
  .categories-dark-header .section__head {
    position: relative !important;
    z-index: 2 !important;
  }
  .categories-dark-header .eyebrow {
    color: #00b4d8 !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
  }
  .categories-dark-header .h2--white {
    color: #ffffff !important;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
  }
  .categories-dark-header .h2--white::after {
    content: 'View all →';
    font-size: 12px;
    font-weight: 600;
    color: #00b4d8;
    text-transform: none;
  }
  .categories-dark-header .subtitle--white {
    display: none !important;
  }
  
  .categories-white-body {
    background: #ffffff !important;
    border-radius: 0 0 16px 16px !important;
    padding: 18px !important;
    margin-top: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-top: none !important;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.08) !important;
  }
  
  .category-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .category-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 16px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 115px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
  }
  .category-card__bg {
    display: none !important;
  }
  .category-card__icon {
    position: static !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(0, 180, 216, 0.12) !important;
    border: 1px solid rgba(0, 180, 216, 0.25) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0077b6 !important;
    box-shadow: none !important;
    margin-bottom: 10px !important;
  }
  .category-card__icon svg {
    width: 22px !important;
    height: 22px !important;
  }
  .category-card__details {
    position: static !important;
    padding: 0 !important;
    text-align: center !important;
    color: var(--ink) !important;
    width: 100% !important;
  }
  .category-card__title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
    text-align: center !important;
  }
  .category-card__title a {
    color: inherit !important;
    text-decoration: none !important;
  }
  .category-card__subtitle {
    display: none !important;
  }
  .subcat-pills,
  .chip-row,
  .new-chip-row {
    display: none !important;
  }
  
  /* Mobile Load More Button */
  .section__foot {
    margin-top: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .button--loadmore {
    width: 100% !important;
    background-color: var(--ink) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 14px !important;
    font-weight: 700 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
  }
  .button--loadmore svg {
    width: 18px !important;
    height: 18px !important;
  }
  .category-count--styled {
    font-size: 12px !important;
    color: var(--muted) !important;
    font-weight: 500 !important;
    margin-top: 8px !important;
  }
  
  /* Mobile Drawer Menu Accordion Arrow Rotation */
  .mobile-section[open] .menu-arrow {
    transform: rotate(180deg) !important;
  }

  /* ========================================================
     1. MOBILE HERO STATS STRIP (Animated 2-Column Grid)
     ======================================================== */
  .stats-strip {
    padding: 24px 15px 12px !important;
    background: transparent !important;
  }
  .stats-strip__inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .stats-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid rgba(0, 180, 216, 0.22) !important;
    border-radius: 16px !important;
    padding: 14px 12px !important;
    box-shadow: 0 4px 16px rgba(10, 25, 47, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    position: relative !important;
    overflow: hidden !important;
    animation: mobileStatsPulse 4s infinite ease-in-out !important;
  }
  .stats-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00b4d8, #0077b6) !important;
  }
  .stats-item:nth-child(2) { animation-delay: 0.8s !important; }
  .stats-item:nth-child(3) { animation-delay: 1.6s !important; }
  .stats-item:nth-child(4) { animation-delay: 2.4s !important; }
  .stats-item:nth-child(5) {
    grid-column: span 2 !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #0a192f, #112240) !important;
    border-color: rgba(0, 180, 216, 0.45) !important;
    animation-delay: 3.2s !important;
  }
  .stats-item:nth-child(5) .stats-text strong,
  .stats-item:nth-child(5) .stats-text span {
    color: #ffffff !important;
  }
  .stats-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.25)) !important;
    color: #0077b6 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 180, 216, 0.18) !important;
  }
  .stats-text strong {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #0a192f !important;
    line-height: 1.1 !important;
    display: block !important;
    margin-bottom: 2px !important;
  }
  .stats-text span {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  @keyframes mobileStatsPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 16px rgba(10, 25, 47, 0.06); }
    50% { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0, 180, 216, 0.15); }
  }

  /* ========================================================
     2. MOBILE TRUST MARKERS STRIP (Swipeable Marquee Ribbon)
     ======================================================== */
  .trust-markers-strip {
    margin: 8px 0 20px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .trust-markers-strip__inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding: 6px 15px 14px 15px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .trust-markers-strip__inner::-webkit-scrollbar {
    display: none !important;
  }
  .trust-marker {
    flex: 0 0 auto !important;
    scroll-snap-align: start !important;
    background: linear-gradient(135deg, #0a192f, #15284b) !important;
    color: #ffffff !important;
    padding: 10px 16px !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    border: 1px solid rgba(0, 180, 216, 0.35) !important;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15) !important;
    min-height: auto !important;
  }
  .trust-marker svg {
    color: #00b4d8 !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    animation: trustIconPulse 2s infinite ease-in-out !important;
  }
  @keyframes trustIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
  }
  .trust-marker-text {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .trust-marker-text strong {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
  }
  .trust-marker-text span {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #00b4d8 !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }
  /* Hide duplicate 15+ years card in trust ribbon on mobile */
  .trust-markers-strip__inner .trust-marker:nth-child(5) {
    display: none !important;
  }

  /* ========================================================
     3. ULTRA-PREMIUM PRODUCT DETAIL PAGE (Mobile & Responsive)
     ======================================================== */
  .breadcrumbs {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    color: #64748b !important;
    margin-bottom: 20px !important;
  }
  .breadcrumbs a {
    color: #0077b6 !important;
    font-weight: 600 !important;
  }
  .breadcrumbs span {
    color: #0a192f !important;
    font-weight: 700 !important;
  }

  .product-detail-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin-top: 0 !important;
  }

  .product-detail-image {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 180, 216, 0.2) !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05) !important;
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .main-image-wrapper {
    width: 100% !important;
    min-height: 260px !important;
    max-height: 380px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
  }
  .main-image-wrapper img {
    max-width: 100% !important;
    max-height: 340px !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
  }

  .product-gallery-strip {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 180, 216, 0.15) !important;
  }
  .product-gallery-strip .gallery-thumb {
    width: 64px !important;
    height: 64px !important;
    aspect-ratio: 1 !important;
    object-fit: contain !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    padding: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .product-gallery-strip .gallery-thumb.is-active-thumb,
  .product-gallery-strip .gallery-thumb:active {
    border-color: #00b4d8 !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25) !important;
  }

  .product-detail-info h1 {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: #0a192f !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
  }
  .product-detail-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
    margin-bottom: 20px !important;
  }
  .product-detail-meta .badge {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 119, 182, 0.2)) !important;
    color: #0077b6 !important;
    border: 1px solid rgba(0, 180, 216, 0.3) !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
  .product-detail-meta .stock-status {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #059669 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
  }
  .price-notice {
    background: linear-gradient(135deg, #0a192f, #112240) !important;
    color: #ffffff !important;
    padding: 16px 18px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    border-left: 4px solid #00b4d8 !important;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.12) !important;
    margin-bottom: 24px !important;
  }
  .quote-form-box {
    background: #ffffff !important;
    border: 1px solid rgba(0, 180, 216, 0.25) !important;
    border-radius: 20px !important;
    padding: 24px 18px !important;
    box-shadow: 0 12px 30px rgba(10, 25, 47, 0.08) !important;
  }
  .quote-form-box h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0a192f !important;
    margin-bottom: 16px !important;
  }

  /* Footer Transparent Logo & Brand Styling for Mobile (3X Larger & Centered) */
  .footer__brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 28px !important;
  }
  .footer__brand-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    text-decoration: none !important;
    margin-bottom: 14px !important;
    width: 100% !important;
  }
  .footer__logo-badge {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .footer__logo-img {
    height: 160px !important;
    width: auto !important;
    max-width: 90% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 6px 20px rgba(0, 180, 216, 0.45)) !important;
    margin: 0 auto !important;
  }
  .footer__brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer__wordmark {
    font-size: 24px !important;
    font-weight: 950 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    text-align: center !important;
  }
  .footer__tagline {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #8da4c4 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    line-height: 1.3 !important;
    display: block !important;
    margin-top: 4px !important;
    text-align: center !important;
  }
  .footer__brand .button--line {
    margin: 14px auto 0 auto !important;
    display: inline-flex !important;
  }
}


@media (max-width: 1080px) {
  .hero {
    height: clamp(360px, 112vw, 560px) !important;
    min-height: 360px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    margin: 8px 0 28px !important;
    background: #05162a !important;
  }

  .hero__media-link,
  .hero__media-img {
    height: 100% !important;
  }

  .hero__media-img {
    object-fit: cover !important;
    object-position: center !important;
    opacity: 0.96 !important;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(3, 20, 45, 0.82) 0%, rgba(7, 65, 112, 0.38) 45%, rgba(2, 12, 28, 0.88) 100%),
      linear-gradient(90deg, rgba(3, 20, 45, 0.78), rgba(24, 183, 222, 0.14)) !important;
  }

  .hero__inner,
  .custom-hero-ui {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;
  }

  .custom-hero-ui {
    display: none !important;
    padding: 0 !important;
  }

  .hero--slide-0 .custom-ui-seaguard,
  .hero--slide-1 .custom-ui-sunglasses,
  .hero--slide-2 .custom-ui-boatseats,
  .hero--slide-3 .custom-ui-mflex,
  .hero--slide-4 .custom-ui-spotlights {
    display: block !important;
  }

  .custom-hero-ui .desktop-only {
    display: none !important;
  }

  .custom-hero-ui .mobile-only {
    display: flex !important;
  }

  .seaguard-header,
  .sunglasses-header,
  .mflex-header,
  .bs-header,
  .sl-header {
    top: 22px !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-width: none !important;
    text-align: left !important;
  }

  .custom-hero-ui .sg-title,
  .sg-title-1,
  .sg-title-2,
  .mflex-title,
  .custom-hero-ui .bs-title,
  .custom-hero-ui .sl-title {
    font-size: clamp(34px, 10.5vw, 58px) !important;
    line-height: 0.98 !important;
    margin: 10px 0 8px !important;
    padding-left: 0 !important;
    letter-spacing: 0 !important;
  }

  .sg-subtitle,
  .sunglasses-header .sg-subtitle,
  .mflex-subtitle,
  .bs-subtitle,
  .sl-subtitle {
    margin: 0 !important;
    padding-left: 10px !important;
    font-size: clamp(12px, 3.1vw, 16px) !important;
    line-height: 1.35 !important;
    letter-spacing: 1px !important;
    max-width: 78vw !important;
  }

  .sg-mobile-top {
    padding: 18px 18px 0 !important;
  }

  .sunglasses-action,
  .bs-action,
  .sl-action {
    left: 18px !important;
    right: auto !important;
    bottom: 24px !important;
    align-items: flex-start !important;
  }

  .btn-shop,
  .btn-explore {
    min-height: 42px !important;
    padding: 11px 18px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
  }

  .sg-mobile-trust-bar,
  .sunglasses-trust-bar,
  .mflex-trust-bar,
  .bs-features,
  .sl-features,
  .mflex-product-labels,
  .mflex-hp-badges {
    display: none !important;
  }

  .hero__controls {
    bottom: 12px !important;
    z-index: 20 !important;
  }
}
