/* ==========================================================================
   ARGUSA MENU ANIMATION (SALIENT SLIDE-OUT OFFCANVAS WITH DEDICATED X CLOSE)
   ========================================================================== */

/* --- OVERLAY BACKDROP --- */
.arg-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18, 19, 22, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.arg-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* --- FULLSCREEN SLIDE-OUT OFFCANVAS CONTAINER --- */
.arg-menu-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height — respects mobile browser chrome */
  background-color: #121316;
  z-index: 999995;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.arg-menu-container.is-open {
  transform: translateX(0%);
}

/* --- DEDICATED SALIENT 'X' CLOSE BUTTON --- */
.arg-menu-close-btn {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000005;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.arg-menu-close-btn:hover {
  background-color: var(--brand-red, #e63946);
  border-color: var(--brand-red, #e63946);
  transform: rotate(90deg) scale(1.05);
}

.arg-menu-close-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.arg-menu-close-line {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.arg-menu-close-line:nth-child(1) {
  transform: rotate(45deg);
}

.arg-menu-close-line:nth-child(2) {
  transform: rotate(-45deg);
}

/* --- SPLIT PANEL LAYOUT --- */
.arg-menu-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .arg-menu-content {
    flex-direction: column;
  }
  .arg-menu-close-btn {
    top: 20px;
    right: 20px;
  }
}

/* --- LEFT PANEL: FEATURED PREVIEW IMAGE --- */
.arg-menu-preview-panel {
  width: 45%;
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  border-right: 1px solid #26292e;
}

@media (max-width: 991px) {
  .arg-menu-preview-panel {
    display: none;
  }
}

.arg-menu-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18,19,22,0.3) 0%, rgba(18,19,22,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--arg-space-xl);
  box-sizing: border-box;
}

.arg-menu-preview-tag {
  color: var(--brand-red, #e63946);
  font-size: var(--arg-text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: var(--arg-space-xs);
}

.arg-menu-preview-title {
  color: #ffffff;
  font-size: var(--arg-text-xl);
  font-weight: 700;
  margin: 0;
  line-height: var(--arg-lh-s);
}

/* --- RIGHT PANEL: NAVIGATION & LINKS --- */
.arg-menu-nav-panel {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px var(--arg-space-2xl) var(--arg-space-2xl) var(--arg-space-2xl);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .arg-menu-content {
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    flex: 1 1 auto;
    height: 100%;
  }

  .arg-menu-nav-panel {
    width: 100%;
    flex: 1 1 auto;
    min-height: calc(100dvh - 30px);
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 80px var(--arg-space-m) var(--arg-space-l) var(--arg-space-m) !important;
    box-sizing: border-box;
  }

  .arg-menu-nav-link,
  .arg-menu-nav-panel .brxe-nav-menu a {
    font-size: clamp(22px, 5vw, 34px);
  }

  .arg-menu-footer {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
    width: 100% !important;
    padding-top: var(--arg-space-m) !important;
  }
}

@media (max-width: 767px) {
  .arg-menu-nav-panel {
    padding: 70px var(--arg-space-s) var(--arg-space-m) var(--arg-space-s) !important;
    min-height: calc(100dvh - 20px);
  }

  .arg-menu-nav-link,
  .arg-menu-nav-panel .brxe-nav-menu a {
    font-size: clamp(19px, 5.5vw, 25px) !important;
    font-weight: 700 !important;
  }

  .arg-menu-nav-item,
  .arg-menu-nav-panel .brxe-nav-menu li {
    margin-bottom: var(--arg-space-xs) !important;
  }

  .arg-menu-footer {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
    width: 100% !important;
    padding-top: var(--arg-space-s) !important;
    padding-bottom: 4px !important;
  }

  .arg-menu-contact-info {
    font-size: 11px !important;
  }
}

/* --- STAGGERED NAV ITEMS --- */
.arg-menu-nav-list,
.arg-menu-nav-panel .brxe-nav-menu .bricks-nav-menu {
  list-style: none;
  padding: 0;
  margin: auto 0;
}

.arg-menu-nav-item,
.arg-menu-nav-panel .brxe-nav-menu li {
  overflow: hidden;
  margin-bottom: var(--arg-space-s);
}

.arg-menu-nav-link,
.arg-menu-nav-panel .brxe-nav-menu a {
  display: inline-block;
  width: fit-content !important;
  color: #ffffff;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.15;
  letter-spacing: -0.5px;
  transform: translateY(40px);
  opacity: 0;
  transition: color 0.3s ease;
  position: relative;
}

.arg-menu-nav-link::after,
.arg-menu-nav-panel .brxe-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--brand-red, #e63946);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.arg-menu-nav-link:hover,
.arg-menu-nav-panel .brxe-nav-menu a:hover {
  color: var(--brand-red, #e63946);
}

.arg-menu-nav-link:hover::after,
.arg-menu-nav-panel .brxe-nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* --- MENU FOOTER --- */
.arg-menu-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--arg-space-l);
  border-top: 1px solid #26292e;
  transform: translateY(30px);
  opacity: 0;
}

.arg-menu-lang-switcher {
  display: flex;
  gap: var(--arg-space-s);
}

.arg-menu-lang-link {
  color: #888888;
  font-size: var(--arg-text-s);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.arg-menu-lang-link.is-active,
.arg-menu-lang-link:hover {
  color: var(--brand-red, #e63946);
}

.arg-menu-contact-info {
  color: #aaaaaa;
  font-size: var(--arg-text-s);
}

/* --- HEADER TRIGGER BUTTON --- */
.arg-menu-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100000;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.arg-menu-trigger-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.arg-menu-trigger-label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.arg-menu-trigger-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.arg-menu-trigger-bar {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* ==========================================================================
   BRICKS BUILDER EDITOR OVERRIDES
   .brx-body.iframe is the wrapper Bricks adds inside the builder iframe
   (see bricks/includes/builder.php line 1075)
   ========================================================================== */

/* Force the offcanvas container to be visible and in-flow inside the editor ONLY when editing the header template */
.brx-body.iframe.bricks-editing-header .arg-menu-container {
  position: relative !important;
  transform: none !important;
  z-index: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  height: auto !important;
  min-height: 500px !important;
  background-color: #121316 !important;
}

/* Hide the overlay backdrop in editor — not needed */
.bricks-is-builder.bricks-editing-header .arg-menu-overlay {
  display: none !important;
}

/* Force all nav links visible (GSAP sets opacity:0 + translateY:40px by default) */
.bricks-is-builder.bricks-editing-header .arg-menu-nav-link,
.bricks-is-builder.bricks-editing-header .arg-menu-nav-panel .brxe-nav-menu a,
.bricks-is-builder.bricks-editing-header .arg-menu-nav-panel .bricks-nav-menu a {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  color: #ffffff !important;
}

.bricks-is-builder.bricks-editing-header .arg-menu-nav-panel .brxe-nav-menu a:hover,
.bricks-is-builder.bricks-editing-header .arg-menu-nav-panel .bricks-nav-menu a:hover {
  color: var(--brand-red, #e63946) !important;
}

/* Force the footer visible (GSAP sets opacity:0 + translateY:30px by default) */
.bricks-is-builder.bricks-editing-header .arg-menu-footer {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Make the split content layout work in editor */
.bricks-is-builder.bricks-editing-header .arg-menu-content {
  min-height: 500px !important;
}

/* Make close button visible in editor */
.bricks-is-builder.bricks-editing-header .arg-menu-close-btn {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  align-self: flex-end !important;
  margin: 16px 16px 0 0 !important;
}

/* SAFEGUARD: Comprehensive builder protection — hide overlays and restore all interactivity */
.bricks-is-builder .arg-menu-overlay,
.bricks-is-builder:not(.bricks-editing-header) .arg-menu-container,
.bricks-is-builder:not(.bricks-editing-header) .arg-menu-close-btn {
  pointer-events: none !important;
  display: none !important;
}

/* Restore cursor and pointer-events for all elements in builder iframe */
.bricks-is-builder,
.bricks-is-builder * {
  cursor: auto !important;
}

/* ==========================================================================
   LANGUAGE SWITCHER UNIVERSAL STYLING (DESKTOP HEADER, MOBILE & OFFCANVAS)
   ========================================================================== */
.arg-lang-switcher,
#brx-header .arg-lang-switcher,
#Mb_header .arg-lang-switcher,
.arg-menu-footer .arg-lang-switcher {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.arg-lang-link,
#brx-header .arg-lang-link,
#Mb_header .arg-lang-link,
.arg-menu-footer .arg-lang-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.arg-lang-flag,
#brx-header .arg-lang-flag,
#Mb_header .arg-lang-flag,
.arg-menu-footer .arg-lang-flag {
  font-size: 26px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
}

.arg-lang-text,
#brx-header .arg-lang-text,
#Mb_header .arg-lang-text,
.arg-menu-footer .arg-lang-text {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

/* ==========================================================================
   MOBILE HEADER COMPACT LAYOUT & ALIGNMENT
   ========================================================================== */
@media (max-width: 991px) {
  #Mb_header,
  .brxe-section#Mb_header {
    display: block !important;
    background-color: var(--bricks-color-col-cwkedk, #161e2d) !important;
    padding: 10px 20px !important;
    box-sizing: border-box !important;
  }

  #Mb_header .brxe-container,
  #brxe-kqnbny {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #Mb_header_container_logo,
  #brxe-198a49 {
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  #brxe-38a7bc,
  #brxe-38a7bc img,
  #Mb_header_container_logo .Header_logo_argusa,
  #Mb_header_container_logo .Header_logo_argusa img,
  #Mb_header_container_logo .bricks-site-logo {
    width: 50px !important;
    max-width: 50px !important;
    min-width: 50px !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #Mb_header_container_menu,
  #brxe-d70424 {
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #brxe-arg_menu_btn_mb,
  #Mb_header .arg-menu-trigger-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 2px 4px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    margin: 0 !important;
  }

  #brxe-arg_btn_label_mb,
  #Mb_header .arg-menu-trigger-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    color: #ffffff !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  #brxe-arg_btn_icon_mb,
  #Mb_header .arg-menu-trigger-icon {
    width: 22px !important;
    height: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    margin: 0 !important;
  }

  #Mb_header .arg-menu-trigger-bar {
    width: 100% !important;
    height: 2px !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
  }

  #Mb_header .arg-lang-switcher {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  #Mb_header .arg-lang-link {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  #Mb_header .arg-lang-flag {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  #Mb_header .arg-lang-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
  }
}

/* ==========================================================================
   FOOTER CONTACT OUTLINED BIG TITLE (HOLLOW RED TEXT STROKE EFFECT)
   ========================================================================== */
.arg-footer__contact-title-big,
h2.arg-footer__contact-title-big,
h3.arg-footer__contact-title-big,
#brxe-ifaejn,
.brxe-heading.arg-footer__contact-title-big {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 3.5px var(--brand-red, #e63946) !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  letter-spacing: 3px !important;
  font-weight: 800 !important;
  font-size: clamp(48px, 6vw, 110px) !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-align: center !important;
  display: block !important;
}

@media (max-width: 767px) {
  .arg-footer__contact-title-big,
  h2.arg-footer__contact-title-big,
  h3.arg-footer__contact-title-big,
  #brxe-ifaejn,
  .brxe-heading.arg-footer__contact-title-big {
    -webkit-text-stroke: 2px var(--brand-red, #e63946) !important;
    font-size: clamp(30px, 8vw, 54px) !important;
    letter-spacing: 1.5px !important;
  }
}

:root {
    --width-xs: 12rem;
    --width-s: 16rem;
    --action: var(--brand-red, #e63946);
}

.transition-pixel-grid {
    background-color: #0d0d0d;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pixel-row {
    display: flex;
    width: 100%;
    flex-direction: row;
}
.pixel-cell {
    flex: 1;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    opacity: 0;
    transform: scale(0.3);
    will-change: opacity, transform;
}
.pixel-cell.color-white {
    background-color: #ffffff;
}
.pixel-cell.color-red {
    background-color: var(--brand-red, #e63946);
}
.pixel-cell.color-silver {
    background-color: #e5e5e5;
}

/* Events Grid Entrance CSS pre-hide */
body:not([data-builder-window="iframe"]) .arg-events-grid__card {
    opacity: 0;
    transform: translateY(50px);
    will-change: opacity, transform;
}
body:not([data-builder-window="iframe"]).gsap-fallback .arg-events-grid__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Contact Form Legal Scrollbox (argu.local style) */
.arg-contact-form__legal-box {
    height: 80px;
    overflow-y: auto;
    border: 1px solid #2d3138;
    padding: 12px var(--arg-space-3xs);
    background-color: rgba(255, 255, 255, 0.02);
    color: #a1a1aa;
    font-size: var(--arg-text-xs);
    border-radius: 6px;
    line-height: 1.5;
    margin-top: var(--arg-space-3xs);
    margin-bottom: var(--arg-space-3xs);
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-red, #e63946) rgba(255, 255, 255, 0.05);
}

/* Custom scrollbar for webkit browsers */
.arg-contact-form__legal-box::-webkit-scrollbar {
    width: 6px;
}
.arg-contact-form__legal-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}
.arg-contact-form__legal-box::-webkit-scrollbar-thumb {
    background: var(--brand-red, #e63946);
    border-radius: 6px;
}
.arg-contact-form__legal-box::-webkit-scrollbar-thumb:hover {
    background: #c12e3e;
}

/* Our Products Cards Hover Cursor Follower */
.arg-product-hover-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    width: 90px;
    height: 90px;
    background-color: var(--brand-red, #e63946);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 10px;
    box-sizing: border-box;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    text-transform: uppercase;
    font-family: 'Inter Tight', sans-serif;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
}

.arg-product-hover-cursor.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Hide default cursor on product cards when hover is active (only in the text area) */
body:not([data-builder-window="iframe"]) .arg-product-card.arg-hide-cursor {
    cursor: none !important;
}

body:not([data-builder-window="iframe"]) .arg-product-card.arg-hide-cursor * {
    cursor: none !important;
}

/* Homepage Slider Number Box Styles */
.slider__card_num {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: var(--width-s) !important;
    height: 150px !important;
    margin-left: var(--space-xl) !important;
    margin-right: var(--space-xl) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    
    background: linear-gradient(45deg, var(--action) 0%, #bc4e9c 50%, #861d31 100%) !important;
    background-size: 200% 200% !important;
    animation: gradient-shift 3s ease alternate infinite !important;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.slider__card_num .brxe-heading {
    color: var(--white) !important;
    font-size: 110px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

@media (max-width: 478px) {
    .slider__card_num {
        width: var(--width-xs) !important;
        height: 100px !important;
        margin-left: var(--space-xs) !important;
        margin-right: var(--space-xs) !important;
    }
    .slider__card_num .brxe-heading {
        font-size: 80px !important;
    }
}

@media (max-width: 767px) {
    /* Section 35 Years Mobile Layout */
    #brxe-Home-35-years .arg-stats__container,
    #brxe-brxe-pmhcsu {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        row-gap: var(--arg-space-m, 24px) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #brxe-brxe-axqouu {
        width: 56% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #brxe-brxe-khlqti {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        line-height: 1 !important;
    }

    #brxe-brxe-keyofn,
    #brxe-brxe-opifro {
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #brxe-brxe-wiyysx,
    #brxe-brxe-plvaeq,
    #brxe-brxe-khlqti .arg-stats__bracket {
        font-size: clamp(44px, 12vw, 56px) !important;
        font-weight: 300 !important;
        color: var(--bricks-color-col-sezalt, #d4ff32) !important;
        line-height: 1 !important;
        display: block !important;
    }

    #brxe-brxe-bwapaz {
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #brxe-brxe-uqlfjc,
    #brxe-brxe-bwapaz .arg-stats__number {
        font-size: clamp(38px, 10vw, 48px) !important;
        font-weight: 900 !important;
        color: #ffffff !important;
        line-height: 1 !important;
        display: block !important;
    }

    #brxe-brxe-snwrrx {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 6px !important;
    }

    #brxe-brxe-ojffws,
    #brxe-brxe-snwrrx .arg-stats__label {
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        color: var(--brand-red, #e63946) !important;
        text-align: center !important;
        line-height: 1.2 !important;
        display: block !important;
    }

    #brxe-brxe-emljnl {
        width: 40% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    #brxe-brxe-ewjfcy,
    #brxe-brxe-emljnl img {
        width: clamp(95px, 26vw, 120px) !important;
        height: auto !important;
        display: block !important;
    }

    #brxe-brxe-xjxsbg {
        width: 100% !important;
        padding-left: var(--arg-space-xs, 16px) !important;
        padding-right: var(--arg-space-xs, 16px) !important;
        box-sizing: border-box !important;
    }

    #brxe-brxe-heepwf,
    #brxe-brxe-xjxsbg .arg-stats__desc {
        font-size: var(--arg-text-s, 15px) !important;
        line-height: var(--arg-lh-m, 1.5) !important;
        color: #ffffff !important;
        display: block !important;
    }
}

/* ==========================================================================
   COMMITMENTS SECTION HOVER ANIMATION (ICON TURNS GOLD var(--gold))
   ========================================================================== */
.arg-commitments__card {
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.arg-commitments__card:hover {
    transform: translateY(-4px);
}

.arg-commitments__icon {
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.arg-commitments__card:hover .arg-commitments__icon {
    transform: scale(1.08);
}

.arg-commitments__icon path,
.arg-commitments__icon circle,
.arg-commitments__icon g {
    transition: stroke 0.3s ease, fill 0.3s ease;
}

.arg-commitments__card:hover .arg-commitments__icon path[style*="stroke"],
.arg-commitments__card:hover .arg-commitments__icon circle[style*="stroke"] {
    stroke: var(--gold, hsl(46 100% 50%)) !important;
}

.arg-commitments__card:hover .arg-commitments__icon path[style*="fill:#fff"],
.arg-commitments__card:hover .arg-commitments__icon path[style*="fill: #fff"],
.arg-commitments__card:hover .arg-commitments__icon path[style*="fill:#ffffff"],
.arg-commitments__card:hover .arg-commitments__icon path[style*="fill: #ffffff"],
.arg-commitments__card:hover .arg-commitments__icon circle[style*="fill:#fff"],
.arg-commitments__card:hover .arg-commitments__icon circle[style*="fill: #fff"] {
    fill: var(--gold, hsl(46 100% 50%)) !important;
}

/* ==========================================================================
   ABOUT US TIMELINE CARDS & ICONS HOVER ANIMATION (GOLD var(--gold))
   ========================================================================== */
/* Keep background artboard rect completely invisible / no fill */
.arg-about-timeline__col-icon rect,
.arg-about-timeline__col-icon svg rect,
.arg-about-timeline__column:hover .arg-about-timeline__col-icon rect,
.arg-about-timeline__column:hover .arg-about-timeline__col-icon svg rect {
    fill: none !important;
    stroke: none !important;
    opacity: 0 !important;
}

.arg-about-timeline__column {
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.arg-about-timeline__column:hover {
    transform: translateY(-5px);
}

.arg-about-timeline__col-icon {
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.arg-about-timeline__column:hover .arg-about-timeline__col-icon {
    transform: scale(1.08);
}

/* Only change vector path lines to gold */
.arg-about-timeline__col-icon path {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.arg-about-timeline__column:hover .arg-about-timeline__col-icon path {
    fill: var(--gold, hsl(46 100% 50%)) !important;
}



/* ==========================================================================
   BRICKS BUILDER EDITOR SAFEGUARDS
   Only disable OUR custom overlays/cursors. Never touch pointer-events globally.
   ========================================================================== */

/* 1. Hide all our custom overlays/cursors inside the builder iframe */
.brx-body.iframe .arg-menu-overlay,
.brx-body.iframe .arg-menu-container,
.brx-body.iframe .arg-menu-close-btn,
.brx-body.iframe .arg-play-cursor-follower,
.brx-body.iframe .arg-eq-slider-cursor,
.brx-body.iframe .arg-blueprints-cursor,
.brx-body.iframe .arg-blueprint-modal,
.brx-body.iframe .arg-product-hover-cursor {
  display: none !important;
  pointer-events: none !important;
}

/* 2. Restore cursor to auto everywhere inside the builder iframe
      (overrides any cursor:none coming from our custom CSS).
      NOTE: We intentionally do NOT set pointer-events here — that would
      conflict with Bricks Builder's own selection/hover system. */
.brx-body.iframe,
.brx-body.iframe * {
  cursor: auto !important;
}

/* ==========================================================================
   FOOTER CONTACT OUTLINED BIG TITLE (HOLLOW RED TEXT STROKE EFFECT)
   ========================================================================== */
.arg-footer__contact-title-big,
h2.arg-footer__contact-title-big,
h3.arg-footer__contact-title-big,
#brxe-ifaejn,
.brxe-heading.arg-footer__contact-title-big {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 3.5px var(--brand-red, #e63946) !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  letter-spacing: 3px !important;
  font-weight: 800 !important;
  font-size: clamp(48px, 6vw, 110px) !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-align: center !important;
  display: block !important;
}

@media (max-width: 767px) {
  .arg-footer__contact-title-big,
  h2.arg-footer__contact-title-big,
  h3.arg-footer__contact-title-big,
  #brxe-ifaejn,
  .brxe-heading.arg-footer__contact-title-big {
    -webkit-text-stroke: 2px var(--brand-red, #e63946) !important;
    font-size: clamp(30px, 8vw, 54px) !important;
    letter-spacing: 1.5px !important;
  }
}

/* ==========================================================================
   ACCESSIBILITY & WCAG CONTRAST ENHANCEMENTS
   ========================================================================== */
.arg-lang-link.is-active,
.arg-lang-link.is-active .arg-lang-text {
  color: #ff5770 !important;
  font-weight: 700 !important;
}

.arg-stats__label,
#brxe-brxe-ojffws {
  color: #ff5770 !important;
}

.arg-commitments__title,
.brxe-heading.arg-commitments__title {
  color: #ff5770 !important;
}



/* ==========================================================================
   ARGUSA SALIENT CORPORATE EQUIPMENT CARDS HOVER ANIMATION
   ========================================================================== */

/* --- CARD CONTAINER --- */
#brxe-ptweal .splide__slide > div,
#brxe-ptweal .arg-equipments__card,
.arg-equipments__card {
  position: relative !important;
  height: 480px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background-color: #121316 !important;
  border: 1px solid #26292e !important;
  box-sizing: border-box !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease !important;
}

#brxe-ptweal .splide__slide > div:hover,
.arg-equipments__card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5) !important;
}

/* --- PRODUCT IMAGE (SCALE ZOOM ON HOVER) --- */
#brxe-ptweal .arg-equipments__card-img,
#brxe-ptweal .arg-equipments__card-img img,
#brxe-ptweal .brxe-image img,
.arg-equipments__card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

#brxe-ptweal .splide__slide > div:hover .arg-equipments__card-img img,
#brxe-ptweal .splide__slide > div:hover .brxe-image img,
.arg-equipments__card:hover .arg-equipments__card-img img {
  transform: scale(1.08) !important;
}

/* --- OVERLAY BLOCK (ALWAYS ATTACHED TO FULL CARD) --- */
#brxe-ptweal .arg-equipments__card-hide-block,
.arg-equipments__card-hide-block {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.25) 0%, rgba(18, 19, 22, 0.95) 80%) !important;
  padding: 32px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: background 0.4s ease !important;
  z-index: 10 !important;
}

#brxe-ptweal .splide__slide > div:hover .arg-equipments__card-hide-block,
.arg-equipments__card:hover .arg-equipments__card-hide-block {
  background: rgba(18, 19, 22, 0.88) !important;
}

/* --- TITLE HEADING (ALWAYS VISIBLE AT BOTTOM IN WHITE) --- */
#brxe-ptweal .arg-equipments__card-title,
#brxe-ptweal .arg-equipments__card-hide-block h4,
#brxe-ptweal .arg-equipments__card-hide-block .brxe-heading,
.arg-equipments__card-title {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.3px !important;
  text-transform: uppercase !important;
}

/* --- DESCRIPTION TEXT (HIDDEN IN DEFAULT -> SLIDES UP ON HOVER) --- */
#brxe-ptweal .arg-equipments__card-desc,
#brxe-ptweal .arg-equipments__card-hide-block .brxe-text-basic,
.arg-equipments__card-desc {
  color: #dddddd !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  opacity: 0 !important;
  transform: translateY(25px) !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), max-height 0.4s ease !important;
  margin: 0 !important;
}

#brxe-ptweal .splide__slide > div:hover .arg-equipments__card-desc,
#brxe-ptweal .splide__slide > div:hover .brxe-text-basic,
.arg-equipments__card:hover .arg-equipments__card-desc {
  opacity: 1 !important;
  transform: translateY(0) !important;
  max-height: 140px !important;
  margin-bottom: 16px !important;
}

/* --- WHITE OUTLINE BUTTON (HIDDEN IN DEFAULT -> SLIDES UP ON HOVER) --- */
#brxe-ptweal .arg-equipments__card-btn,
#brxe-ptweal .arg-equipments__card-hide-block .brxe-button,
.arg-equipments__card-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

#brxe-ptweal .splide__slide > div:hover .arg-equipments__card-btn,
#brxe-ptweal .splide__slide > div:hover .brxe-button,
.arg-equipments__card:hover .arg-equipments__card-btn {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#brxe-ptweal .arg-equipments__card-btn:hover,
#brxe-ptweal .arg-equipments__card-hide-block .brxe-button:hover,
.arg-equipments__card-btn:hover {
  background-color: #ffffff !important;
  color: #121316 !important;
  border-color: #ffffff !important;
}

/* --- EQUIPMENT SLIDER RED ARROW CURSOR FOLLOWER --- */
.arg-eq-slider-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--brand-red, #e63946);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, background-color 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.45);
}

.arg-eq-slider-cursor svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.arg-eq-slider-cursor.is-active {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* Hide red drag follower and show pointer hand when hovering link or button */
.arg-eq-btn,
.arg-eq-card a,
.arg-eq-slider-root a,
.arg-eq-slider-root button,
#brxe-kkxcgz a,
#brxe-kkxcgz button {
  cursor: pointer !important;
}

.arg-eq-slider-root:has(a:hover) .arg-eq-slider-cursor,
.arg-eq-slider-root:has(button:hover) .arg-eq-slider-cursor,
.arg-eq-slider-root:has(.arg-eq-btn:hover) .arg-eq-slider-cursor,
body:has(.arg-eq-btn:hover) .arg-eq-slider-cursor,
body:has(#brxe-kkxcgz a:hover) .arg-eq-slider-cursor,
body:has(#brxe-argusa_eq_slider_01 a:hover) .arg-eq-slider-cursor,
body:has(.arg-eq-slider-root a:hover) .arg-eq-slider-cursor,
.arg-eq-slider-cursor.is-hidden-on-interactive {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate(-50%, -50%) scale(0) !important;
  pointer-events: none !important;
}

/* CLICK / DRAG STATE (mousedown): Shrinks scale to 0.72 like Salient Architect */
.arg-eq-slider-cursor.is-grabbing {
  transform: translate(-50%, -50%) scale(0.72) !important;
  background-color: #c92a2a !important;
  box-shadow: 0 5px 15px rgba(201, 42, 42, 0.6) !important;
}

.arg-eq-slider-cursor.is-grabbing .arg-arrow-left {
  transform: translateX(-2px);
}
.arg-eq-slider-cursor.is-grabbing .arg-arrow-right {
  transform: translateX(2px);
}

/* --- BLUEPRINTS RED VIEW CURSOR FOLLOWER --- */
.arg-eq-blueprints__item,
.arg-eq-blueprints__img,
.brxe-eqcard5,
.brxe-eqimg5 {
  cursor: pointer !important;
}
.arg-blueprints-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--brand-red, #e63946);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5);
}
.arg-blueprints-cursor.is-active {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* --- BLUEPRINTS CUSTOM LIGHTBOX MODAL --- */
.arg-blueprint-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 11, 14, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 40px;
  box-sizing: border-box;
}
.arg-blueprint-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.arg-blueprint-modal-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.arg-blueprint-modal.is-open .arg-blueprint-modal-img {
  transform: scale(1);
}
.arg-blueprint-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.arg-blueprint-modal-close:hover {
  background: var(--brand-red, #e63946);
  border-color: var(--brand-red, #e63946);
  transform: scale(1.1);
}

/* ==========================================================================
   ARGUSA BLURRY BUTTON SYSTEM (EXACT NEXTBRICKS LINEAR ELASTIC SPRING EASE)
   ========================================================================== */
:root {
  --arg-elastic-ease: linear( 0, 0.2178 2.1%, 1.1144 8.49%, 1.2959 10.7%, 1.3463 11.81%, 1.3705 12.94%, 1.3726, 1.3643 14.48%, 1.3151 16.2%, 1.0317 21.81%, 0.941 24.01%, 0.8912 25.91%, 0.8694 27.84%, 0.8698 29.21%, 0.8824 30.71%, 1.0122 38.33%, 1.0357, 1.046 42.71%, 1.0416 45.7%, 0.9961 53.26%, 0.9839 57.54%, 0.9853 60.71%, 1.0012 68.14%, 1.0056 72.24%, 0.9981 86.66%, 1 100% );
  --arg-elastic-ease-out: linear( 0, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%, 1.0011 81.26%, 1 );
  --arg-opacity-ease: ease-out;
  --arg-blur-ease: cubic-bezier(0.83, 0, 0.17, 1);
}

.arg-btn,
.arg-btn--blurry-red,
.arg-btn--blurry-dark,
.arg-btn--blurry-mint {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  padding: 16px 36px !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  background: rgba(230, 57, 70, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
  transition: transform 0.6s var(--arg-elastic-ease-out), background-color 0.4s var(--arg-blur-ease), border-color 0.4s ease, box-shadow 0.5s ease !important;
  cursor: pointer !important;
  overflow: visible !important;
  z-index: 1 !important;
  -webkit-tap-highlight-color: #fff0 !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

.arg-btn::before,
.arg-btn--blurry-red::before,
.arg-btn--blurry-dark::before,
.arg-btn--blurry-mint::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50px !important;
  transform: scale(0.85) !important;
  opacity: 0 !important;
  filter: blur(15px) !important;
  transition: transform 0.7s var(--arg-elastic-ease-out), opacity 0.4s var(--arg-opacity-ease) !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

/* 1. BRAND RED BLURRY BUTTON (.arg-btn--blurry-red) */
.arg-btn--blurry-red {
  background: rgba(230, 57, 70, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.2) !important;
}

.arg-btn--blurry-red::before {
  background: radial-gradient(circle, var(--brand-red, #e63946) 0%, rgba(230, 57, 70, 0.85) 50%, rgba(230, 57, 70, 0) 100%) !important;
}

.arg-btn--blurry-red:hover {
  transform: translateY(-4px) scale(1.05) !important;
  transition: transform 0.6s var(--arg-elastic-ease), background-color 0.4s var(--arg-blur-ease) !important;
  background: rgba(230, 57, 70, 0.98) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 7px 16px rgba(230, 57, 70, 0.3), 0 0 12px rgba(230, 57, 70, 0.2) !important;
}

.arg-btn--blurry-red:hover::before {
  opacity: 1 !important;
  transform: scale(1.3) !important;
  transition: transform 0.7s var(--arg-elastic-ease), opacity 0.4s var(--arg-opacity-ease) !important;
}

.arg-btn--blurry-red:active {
  transform: translateY(-1px) scale(0.96) !important;
  transition: transform 0.15s ease !important;
}

/* 2. DARK GLASS BLURRY BUTTON (.arg-btn--blurry-dark) */
.arg-btn--blurry-dark {
  background: rgba(18, 19, 22, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
}

.arg-btn--blurry-dark::before {
  background: radial-gradient(circle, rgba(230, 57, 70, 0.6) 0%, rgba(18, 19, 22, 0) 70%) !important;
}

.arg-btn--blurry-dark:hover {
  transform: translateY(-3px) scale(1.02) !important;
  background: rgba(26, 28, 33, 0.95) !important;
  border-color: rgba(230, 57, 70, 0.5) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

.arg-btn--blurry-dark:hover::before {
  opacity: 1 !important;
  transform: scale(1.3) !important;
}

/* 3. MINT ACCENT BLURRY BUTTON (.arg-btn--blurry-mint) */
.arg-btn--blurry-mint {
  background: rgba(82, 229, 181, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #121316 !important;
  box-shadow: 0 4px 10px rgba(82, 229, 181, 0.2) !important;
}

.arg-btn--blurry-mint::before {
  background: radial-gradient(circle, #52e5b5 0%, rgba(82, 229, 181, 0) 70%) !important;
}

.arg-btn--blurry-mint:hover {
  transform: translateY(-3px) scale(1.02) !important;
  background: rgba(82, 229, 181, 1) !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(82, 229, 181, 0.3) !important;
}

.arg-btn--blurry-mint:hover::before {
  opacity: 1 !important;
  transform: scale(1.3) !important;
}

/* 4. ELEGANT OUTLINE BUTTON (.arg-btn--outline) */
.arg-btn--outline {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 32px !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  background: transparent !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  cursor: pointer !important;
}

.arg-btn--outline:hover {
  transform: translateY(-3px) !important;
  border-color: var(--brand-red, #e63946) !important;
  color: #ffffff !important;
  background: rgba(230, 57, 70, 0.15) !important;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.15) !important;
}

/* 5. LINE CRISTAL BUTTON (.arg-btn--line-cristal) */
.arg-btn--line-cristal {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 34px !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35), 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  cursor: pointer !important;
  overflow: hidden !important;
}

.arg-btn--line-cristal::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transition: left 0.6s ease !important;
}

.arg-btn--line-cristal:hover {
  transform: translateY(-3px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--brand-red, #e63946) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5), 0 5px 14px rgba(230, 57, 70, 0.2) !important;
}

.arg-btn--line-cristal:hover::before {
  left: 100% !important;
}

/* ==========================================================================
   BRICKS BUILDER EDITOR SAFEGUARDS
   Only disable OUR custom overlays/cursors. Never touch pointer-events globally.
   ========================================================================== */

/* Hide ALL our custom overlays and cursors inside the builder iframe */
.brx-body.iframe .arg-equipments__card-hide-block,
.brx-body.iframe .arg-eq-slider-cursor,
.brx-body.iframe .arg-blueprints-cursor,
.brx-body.iframe .arg-blueprint-modal {
  display: none !important;
  pointer-events: none !important;
}

/* Restore cursor to auto (overrides cursor:none from play-cursor CSS) */
.brx-body.iframe,
.brx-body.iframe * {
  cursor: auto !important;
}
