/** Shopify CDN: Minification failed

Line 7764:12 Unexpected "{"
Line 7764:21 Expected ":"

**/
/* =============================================================================
   Make Believe Ideas — layout.css
   Maintainer notes:
   - This is the main custom layout/theme stylesheet.
   - Sections are grouped by site area, then app overrides, then responsive rules.
   - Prefer using the :root tokens below for new colours.
   - Keep third-party app overrides in their labelled sections so future app/theme
     updates are easier to compare.
   - Avoid adding new one-off rules at the very bottom unless they are temporary.

   Quick section map:
   1. Fonts, tokens, base styles and typography
   2. Header, navigation, Shopify Markets selector and banners
   3. Content sections, cards, product pages and collection pages
   4. App overrides: Boost, Yotpo, Wishlist, filters and predictive search
   5. Cart, footer, miscellaneous rules and responsive breakpoints
   ========================================================================== */

/* =============================================================================
   Font loading
   Purpose:
   - Loads Shopify-hosted brand fonts. Keep font-display: swap for performance.
   ========================================================================== */
@font-face {
    font-family: "Truculenta";
    src: url('/cdn/shop/files/Truculenta_regular_a385f271-bdee-4987-9049-89eb1dabecdf.ttf?v=1756208864') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Naughty dogs';
    src: url('/cdn/shop/files/naughtydogs.ttf?v=1739517970') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    ascent-override: 105%;
}
@font-face {
    font-family: 'Figtree';
    src: url('/cdn/shop/files/Figtree_Regular.ttf?v=1749029500') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    ascent-override: 105%;
}
@font-face {
    font-family: 'Figtree';
    src: url('/cdn/shop/files/Figtree_Medium.ttf?v=1749119757') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    ascent-override: 105%;
}
@font-face {
    font-family: 'Figtree';
    src: url('/cdn/shop/files/Figtree_bold.ttf?v=1749028952') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    ascent-override: 105%;
}
/* =============================================================================
   Theme tokens / colour system
   Purpose:
   - Keep frequently used brand colours in one place.
   - Use tokens for new code, and gradually tokenise older rules when editing them.
   - The values below preserve the original visual palette from the theme file.
   ========================================================================== */

:root {
  /* Core brand colours */
  --mbi-blue: #495BC9;
  --mbi-blue-alt: #495BC8;
  --mbi-blue-soft: #495ac9;
  --mbi-blue-dark: #293372;
  --mbi-navy: #232C6B;

  --mbi-pink: #ED4198;
  --mbi-pink-light: #FF82FF;
  --mbi-pink-bright: #ff83fe;

  --mbi-red: #FF4C31;
  --mbi-red-alt: #FF4B30;
  --mbi-red-strike: #f83a3a;

  --mbi-green: #6ACBB1;
  --mbi-yellow: #FFB41B;
  --mbi-yellow-bright: #FFE500;

  /* Neutrals */
  --mbi-white: #FFFFFF;
  --mbi-black: #000000;
  --mbi-text: #1D1D1D;
  --mbi-heading-dark: #132B36;
  --mbi-muted: #919191;
  --mbi-placeholder: #B8BFC3;
  --mbi-teal-muted: #5F757F;
  --mbi-cream: #FFF9F5;

  /* Surfaces, borders and utility colours */
  --mbi-grey-light: #F3F3F3;
  --mbi-grey-menu: #f4f4f4;
  --mbi-grey-hover: #f2f2f2;
  --mbi-grey-line: #eeeeee;
  --mbi-border: #E1E1E1;
  --mbi-success: #07c793;
}

/* =============================================================================
   Base layout and global utilities
   Purpose:
   - Site-wide defaults, containers, spacing helpers, alignment helpers and global heading/body typography.
   ========================================================================== */

body {
    display: block;
    margin: 0;
    background: var(--mbi-white);
    padding: 0 !important;
}
#main-content {
    overflow: hidden;
}
.footer-sections {
    width: 100%;
    overflow: hidden;
}
img {
    vertical-align: top;
}
.space_above {
    padding-top: 80px;
}
.space_below {
    padding-bottom: 80px;
}
.add_padding {
    padding-top: 20px;
    padding-bottom: 20px;
}
.contain {
    position: relative;
    width: 85%;
    margin: 0 auto;
    z-index: 1;
}
.contain_half {
    position: relative;
    width: 95%;
    margin: 0 auto;
}
.contain_full {
  position: relative;
  width: 100%;
}
.mb_0 {
    margin-bottom: 0px !important;
}
.text_left {
    text-align: left;
}
.text_center {
    text-align: center;
}
.text_right {
    text-align: right;
}
.align_left {
    align-items: start;
}
.align_center {
    align-items: center;
}
.align_right {
    align-items: end;
}
.justify_left {
    justify-content: start;
}
.justify_center {
    justify-content: center;
}
.justify_right {
    justify-content: end;
}
.hide {
    display: none;
}
.disp_none {
  display: none !important;
}
a:hover {
  opacity: 1 !important;
}
body h1, body h2, body h3 {
    font-family: 'Truculenta', sans-serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0;
    margin-bottom: 10px;
}
body h4, body h5, body h6 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
}
body h1 strong,
body h2 strong,
body h3 strong {
    font-family: 'Naughty dogs';
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0px;
    margin: 0;
}
body h1 {
  font-size: clamp(44px, 4.5vw, 60px);
}
body h2 {
  font-size: clamp(34px, 4.5vw, 48px);
}
body h3 {
  font-size: clamp(24px, 4.5vw, 36px);
}

/* === Utility: Unstyled link === */
.link--no-style {
  text-decoration: none;
  color: inherit;
  border: 0;
}
.link--no-style:hover,
.link--no-style:focus {
  text-decoration: none!important;   /* keep it clean even on hover/focus */
  color: inherit;          /* prevent theme hover overrides */
}

/* =============================================================================
   MBI Native Wavy Text Links
   Purpose:
   - Replaces repeated embedded SVG underline graphics with native CSS.
   - Much lighter and easier to maintain than repeated data:image SVG blocks.
   - To opt out for a specific link, add/use a more specific selector with
     text-decoration: none;
   ========================================================================== */

.figtree_para_sm a,
.mcontent_sec .mcontent_inner p a,
.page_sec .page_inner p a,
.prodinfo_content .prodinfo_cont_lists .prodinfo_cont_list > span a,
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-label span,
.maincollect_inner #gf-tree .gf-filter-header .gf-close-canvas {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: currentColor;
}

/* H1 strong: 70 → 53 */
body h1 strong, body h2 strong, body h3 strong {
  font-size: 1.1667em;
}

body h4 {
    font-size: 24px;
    line-height: 1.167;
}
body h5 {
    font-size: 18px;
    line-height: 1.167;
}
body h6 {
    font-size: 16px;
    line-height: 1.167;
}

body, body p, body ul, body ul li {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: currentcolor;
}
body p strong {
    font-weight: 600;
    line-height: 1;
}
body p span {
    line-height: 1;
}

body .para_lg p {
    font-size: 1.25em;
    margin-bottom: 15px;
  }

body .para_intro p, p.para_intro {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

@media screen and (min-width: 1025px) {
 .desk_none {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
 .desk_none {
    display: block;
  } 
  .mob_none {
    display: none !important;
  } 
}
/* =============================================================================
   Typography helpers
   Purpose:
   - Legacy helper classes and text/link patterns. Keep this section for typography-only rules.
   ========================================================================== */


.figtree_para_sm a {
    position: relative;
    font-family: Figtree;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
    padding-bottom: 0;
    color: var(--mbi-blue);
    display: inline-block;
    border: 0;
}
.avenir_btn, .figtree_btn {
    position: relative;
    display: inline-block;
    font-family: Figtree;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    width: max-content;
    padding: 10px 30px;
    border-radius: 15px;
    border: 2px solid;
    overflow: hidden;
    transition: .5s all ease;
}
.figtree_btn {
    font-family: 'Figtree';
    font-weight: 700;
}

.avenir_btn:hover,
.figtree_btn:hover {
  background: var(--mbi-white) !important;
}
.avenir_btn span,
.figtree_btn span {
    position: relative;
    z-index: 1;
}
.figtree_text_btn {
    position: relative;
    font-family: Figtree;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    background-color: transparent !important;
}
.figtree_secondary_btn {
    position: relative;
    font-family: Figtree;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    padding-bottom: 20px;
}
.figtree_secondary_btn .secondary_btn_icon {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transition: .5s all ease;
}
.figtree_secondary_btn:hover .secondary_btn_icon {
    opacity: 0;
    visibility: hidden;
}
/* =============================================================================
   Layout defaults
   Purpose:
   - Reusable grid column helpers, image mask/border helpers and generic image-cover utilities.
   ========================================================================== */
.desk_col_1 {
    grid-template-columns: repeat(1, 1fr);
}
.desk_col_2 {
    grid-template-columns: repeat(2, 1fr);
}
.desk_col_3 {
    grid-template-columns: repeat(3, 1fr);
}
.desk_col_4 {
    grid-template-columns: repeat(4, 1fr);
}
.border_img_top {
    position: absolute;
    width: 100%;
    height: auto;
    line-height: 0;
    transform: translateY(calc(-100% + 1px));
    overflow: hidden;
}
.border_img_top img {
    width: 100%;
    min-width: 1500px;
    height: 100%;
    object-fit: cover;
}
.border_img_bottom {
    transform: scaleY(-1);
    position: relative;
    height: auto;
    margin-top: -1px;
    line-height: 0;
    overflow: hidden;
}
.border_img_bottom img {
    width: 100%;
    min-width: 1500px;
    height: 100%;
    object-fit: cover;
}
.head_bdr_img {
    max-width: 300px;
    margin: 0;
}
.text_center .head_bdr_img {
    margin: 0 auto;
}
.text_right .head_bdr_img {
    margin: 0 0 0 auto;
}
.head_bdr_img img {
    width: 100%;
}
.border_img {
    width: 100%;
    overflow: hidden;
}
.border_img img {
    width: 100%;
}
.section_image {
    position: absolute;
    width: 100%;
}
.imagradius_none {
    border-radius: 0 !important;
}
.image_cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
#nav-wrapper {
    padding: 0 !important;
}

/* =============================================================================
   Announcement bar
   Purpose:
   - Top announcement strip and rotating mobile announcement behaviour.
   ========================================================================== */
.announce_inner {
    display: flex;
    justify-content: center;
    gap: 28px;
}
.announce_sec {
    padding: 5px 0 5px 0;
}
.announce_inner .announce_list {
    position: relative;
}
.announce_inner .announce_list:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--mbi-white);
    right: -15px;
    top: 0;
}
.announce_inner .announce_list:last-child:after {
    display: none;
}
.announce_list .announce_box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.announce_list .announce_box .announce_icon {
    line-height: 1;
    margin-top: -3px;
}
/* =============================================================================
   Header, navigation and market selector
   Purpose:
   - Desktop/mobile header, logo, search, icons, mega-menu dropdowns and Shopify Markets country selector.
   ========================================================================== */
.mainheader_sec {
    border-bottom: 1px solid var(--mbi-grey-light);
}
.header_inner {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    position: relative;
}
.header_inner .header_logo {
    display: flex;
    width: 112px;
    margin-top: -40px;
    margin-right: 20px;
}
.header_inner .header_logo a {
    width: 100%;
}
.header_inner .header__search .form__input-wrapper {
    box-shadow: none;
    border: 1px solid var(--mbi-grey-light);
    border-radius: 15px;
    min-width: 400px;
}
.header_inner .header__search .form__input-wrapper input {
    outline: 0;
    font-family: Figtree;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 84px 10px 40px;
}
.header_inner .header__search .form__input-wrapper input::placeholder {
    color: var(--mbi-muted);
}
.header_inner .header__search .form__input-wrapper input:focus {
    border: 1px solid var(--mbi-blue);
}
.header_inner .header__search .form__input-wrapper .button {
    background: var(--mbi-blue);
    border: none;
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
}
.header_inner .header__search .form__input-wrapper .button:hover {
    background: var(--mbi-blue-dark);
}
.header_inner .header_search_icon {
    display: none;
    cursor: pointer;
}
.header_inner .header_search_icon svg {
    width: 22px;
    height: 22px;
}
.header_icons .header_icon_list {
    display: flex;
    gap: 10px;
}
.header_icons .header_icon_list .header_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    aspect-ratio: 1;
}
.header_icons .header_icon_list .header_icon a:hover {
    color: var(--mbi-teal-muted);
}
.header_icons .header_icon_list .header__icons--cart-open:hover .icon, 
.header_icons .header_icon_list .header__icons--cart-open:active .icon, 
.header_icons .header_icon_list .header__icons--cart-open:focus .icon {
    color: var(--mbi-teal-muted);
}
/*.header_icons .header_icon.header_icon_localize details[open]:before {
    content: '';
    position: absolute;
    right: 2px;
    top: calc(100% + 4px);
    width: 15px;
    border: 1px solid var(--mbi-border);
    background: var(--mbi-white);
    height: 15px;
    transform: rotate(45deg);
}
.header_icons .header_icon.header_icon_localize ul {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    overflow: auto;
    right: -10px;
    top: calc(100% + 10px) !important;
    width: 200px;
    background: var(--mbi-white);
    border: 1px solid var(--mbi-border);
}
.header_icons .header_icon.header_icon_localize ul li a.active {
    font-size: 14px;
    font-weight: 600 !important;
}*/
/* =============================================================================
   Header Country / Market Selector
   Purpose:
   - Styles the Shopify Markets country selector in the header.
   - Uses Shopify country flag images cropped into circular roundels.
   - Buttons submit the localization form directly, so the switcher does not rely
     on the theme's old href="#" JavaScript behaviour.
   - Keeps the dropdown compact and prevents long country/currency text wrapping.
   ========================================================================== */

.header_icon_localize {
  position: relative;
}

.header_icon_localize localization-form,
.header_icon_localize .localization-form,
.header_icon_localize details {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_icon_localize summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  border-radius: 8px;
}

.header_icon_localize summary::-webkit-details-marker {
  display: none;
}

/* Remove the mouse-click focus ring, but keep a clear keyboard focus state. */
.header_icon_localize summary:focus:not(:focus-visible) {
  outline: 0;
}

.header_icon_localize summary:focus-visible {
  outline: 2px solid var(--mbi-blue);
  outline-offset: 2px;
}

.localization-form__flag-roundel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mbi-white);
  flex-shrink: 0;
}

/* Main flag shown in the header icon row. Kept smaller than the 30px icon slot
   so it balances with the wishlist, account and cart icons. */
.localization-form__flag-roundel--trigger {
  width: 20px;
  height: 20px;
}

/* Flags shown inside the dropdown options. Slightly larger for readability. */
.localization-form__flag-roundel--option {
  width: 22px;
  height: 22px;
}

.localization-form__flag-roundel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dropdown panel. This is intentionally scoped to the localisation component and
   forced to a real width so mobile header icon sizing cannot squash the menu. */
.header_icon_localize .localization-form__dropdown-list,
.header_icon_localize ul.localization-form__dropdown-list {
  position: absolute;
  top: calc(100% + 10px) !important;
  right: -10px;
  left: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 180px !important;
  min-width: 180px !important;
  max-width: min(220px, calc(100vw - 32px));
  max-height: min(360px, calc(100vh - 120px));
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: var(--mbi-white);
  border: 1px solid var(--mbi-border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  line-height: 1.2;
}

.header_icon_localize .localization-form__dropdown-list li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Small pointer triangle for the dropdown. */
.header_icon_localize details[open]::before {
  content: "";
  position: absolute;
  right: 7px;
  top: calc(100% + 4px);
  width: 15px;
  height: 15px;
  border: 1px solid var(--mbi-border);
  background: var(--mbi-white);
  transform: rotate(45deg);
  z-index: 999;
  pointer-events: none;
}

/* Button version of the old dropdown links. */
.localization-form__country-button {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  padding: 8px 10px;
  white-space: nowrap;
}

.localization-form__country-button:hover,
.localization-form__country-button.active,
.header_icons .header_icon.header_icon_localize ul li .localization-form__country-button.active {
  background: var(--mbi-grey-light);
  text-decoration: none;
}

.localization-form__country-button.active,
.header_icons .header_icon.header_icon_localize ul li .localization-form__country-button.active {
  font-weight: 700 !important;
}

.localization-form__country-label {
  flex: 1 1 auto;
  min-width: 0;
}

.localization-form__currency {
  flex: 0 0 auto;
  color: var(--mbi-muted);
  font-size: 12px;
  white-space: nowrap;
}

/* Mobile header country selector
   - In Liquid the mobile selector is placed after the cart icon so it sits far right.
   - These rules keep the dropdown full-width enough and anchored to the right edge. */
.header_inner.desk_none .header_icon_localize--mobile {
  order: 99;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_inner.desk_none .header_icon_localize--mobile .localization-form__dropdown-list {
  right: 0 !important;
  left: auto !important;
  width: 180px !important;
  min-width: 180px !important;
}

.header_inner.desk_none .header_icon_localize--mobile details[open]::before {
  right: 7px;
}

/* Give the mobile right icon group enough room for four icons, while keeping the
   logo centred against the left menu/search group. */
@media screen and (max-width: 1024px) {
  .header_inner .right {
    width: 150px;
  }

  .header_inner .left {
    width: 150px;
  }
}

@media screen and (max-width: 480px) {
  .header_inner .right,
  .header_inner .left {
    width: 125px;
    gap: 6px;
  }

  .header_inner .right .header__icons {
    width: 26px;
  }

  .header_inner.desk_none .header_icon_localize--mobile .localization-form__dropdown-list {
    width: 170px !important;
    min-width: 170px !important;
  }
}

.header_inner .header__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
}
.header_inner .header__menu > navigation-item-primary {
    position: relative;
}
.header_inner .header__menu.header_megamenu {
    flex: unset;
    position: relative;
}
.header_inner .header__menu .main-nav-item {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 16px;
    /* font-size: clamp(1.43125rem, 0.7698rem + 0.6453vw, 2.125rem); */
    line-height: 1.4;
    color: var(--mbi-text);
    position: static;
    padding: 2rem 0;
}
.header_inner .header__menu details.main-nav-item summary:before {
    content: '';
    position: absolute;
    left: calc(50% - 8px);
    top: calc(100% + 5px);
    width: 15px;
    border: 1px solid var(--mbi-border);
    background: var(--mbi-white);
    height: 15px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) rotate(45deg);
    transition: .1s all ease;
}
.header_inner .header__menu details.main-nav-item[open="true"] summary:before {
    opacity: 1;
    visibility: visible;
}
.header_inner .header__menu details.main-nav-item > .nav {
    /* width: max-content; */
    top: calc(100% - 30.5px);
    /* left: 0% !important;
    transform: translateX(0%) !important; */
    cursor: auto;
}
.header_inner .header__menu .main-nav-item.simple_dropdown .nav {
    top: calc(100% - 7.5px);
}
.header_inner .header__menu details.main-nav-item > .nav.mega_nav {
    top: calc(100% - 7.5px);
}
@media screen and (min-width: 1201px) {
  .header_inner .header__menu details.main-nav-item > .nav.mega_nav {
    left: 0 !important;
  }  
}
.header__menu details.main-nav-item > .nav .nav__main-menu--simple_dropdown {
    padding: 20px;
}
.header__menu details.main-nav-item > .nav .container {
    background: var(--mbi-white);
    border: 1px solid var(--mbi-border);
    border-radius: 16px;
    /* width: max-content; */
}
.header_inner .header__menu details.main-nav-item > .nav ul {
    display: flex;
    gap: 20px;
    max-width: 80vw;
}
.header__menu details.main-nav-item>.nav ul li {
    position: relative;
    border: 1px solid var(--mbi-text);
    border-radius: 16px;
    overflow: hidden;
}
.header__menu details.main-nav-item > .nav ul li .nav__main-menu-link--simple {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 250px;
    /* height: 140px; */
    aspect-ratio: 2 / 1.2;
    max-width: 100%;
    white-space: normal;
    font-size: 24px;
    line-height: 1.2;
    padding: 15px 15px;
}
.header__menu details.main-nav-item > .nav ul li .nav__main-menu-link--simple:before {
    display: none;
}
.header__menu details.main-nav-item > .nav .nav__tip {
    display: none;
}

.header__menu details.main-nav-item>.nav ul li:nth-child(2n+1):after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -6px;
    width: 109%;
    height: 44px;
    background: url(/cdn/shop/files/orange_dots.png) repeat-x;
    background-size: 100% auto;
    background-position: center;
    transform: rotate(-3deg);
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease;
}
.header__menu details.main-nav-item>.nav ul li:nth-child(2n+1):hover:after {
    bottom: -6px;
    visibility: visible;
    opacity: 1;
}
.header__menu details.main-nav-item>.nav ul li:nth-child(2n):before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0px;
    width: 100%;
    height: 30px;
    background: url(/cdn/shop/files/zigzag.png) repeat-x;
    background-size: auto 100%;
    background-position: center;
    transform: scaleY(-1);
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease;
}
.header__menu details.main-nav-item>.nav ul li:nth-child(2n):hover:before {
    top: -2px;
    visibility: visible;
    opacity: 1;
}
.header__menu details.main-nav-item>.nav ul li:nth-child(2n):after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0px;
    width: 100%;
    height: 30px;
    background: url(/cdn/shop/files/zigzag.png) repeat-x;
    background-size: auto 100%;
    background-position: center;
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease;
}
.header__menu details.main-nav-item>.nav ul li:nth-child(2n):hover:after {
    bottom: -2px;
    visibility: visible;
    opacity: 1;
}
.header_megamenu .mega_nav {
    padding: 0px;
    background: transparent;
    border: 0px solid var(--mbi-border);
    width: max-content;
}
.header_megamenu .mega_nav .mega_nav_box {
    position: relative;
    width: max-content;
}
.header_megamenu .mega_nav .mega_nav_inner {
    display: flex;
    gap: 60px;
    padding: 40px 32px 32px;
    align-items: flex-start;
    width: max-content;
    background: var(--mbi-white);
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--mbi-border);
    border-bottom: none; 
}
.mega_nav_inner .mega_nav_lists {
    display: flex;
    gap: 60px;
    flex: 1;
}
.mega_nav_inner .mega_nav_lists .mega_nav_list {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
}
.mega_nav_lists .mega_nav_list .mega_nav_list_li {
    border: none !important;
    font-size: 16px;
    font-size: clamp(1.4rem, .7698rem + .6453vw, 1.8rem);
    border-radius: 0 !important;
}
.mega_nav_lists .mega_nav_list .mega_nav_list_li:before,
.mega_nav_lists .mega_nav_list .mega_nav_list_li:after {
    display: none !important;
}
.mega_nav_lists .mega_nav_list .mega_nav_list_li.mega_nav_list_head {
    font-weight: 700;
    font-size: 18px;
    color: var(--mbi-heading-dark);
}
.header__menu details.main-nav-item>.nav ul li a {
    color: var(--mbi-teal-muted);
}
.header__menu details.main-nav-item>.nav ul li a:hover {
    color: var(--mbi-text);
}
.mega_nav_lists .mega_nav_list .mega_nav_list_li.mega_nav_list_head a {
    color: var(--mbi-heading-dark);
}
.mega_nav_inner .mega_nav_image {
    position: relative;
    width: 320px;
    aspect-ratio: 1;
}
.mega_nav_image .mega_nav_imgbox {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.mega_nav_image .mega_nav_imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega_nav_image .mega_nav_btn {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: max-content;
    background: var(--mbi-blue);
    color: var(--mbi-cream);
    border-color: var(--mbi-blue);
}
.mega_nav_image .mega_nav_btn:hover {
    color: var(--mbi-blue);
}
.mega_nav_image .mega_nav_btn .visually-hidden {
    display: none;
}
.header_megamenu .mega_nav .featurebar_sec {
    position: absolute;
    bottom: -50px;
    height: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}
.featurebar_sec .featurebar_lists {
    width: 100%;
}
.featurebar_sec .featurebar_lists .slick-list {
    width: 100%;
}
.featurebar_sec .featurebar_lists .slick-track:before,
.featurebar_sec .featurebar_lists .slick-track:after {
    display: none;
}
.featurebar_sec .featurebar_lists .slick-list .slick-slide > div {
    display: flex;
    justify-content: center;
}
.featurebar_sec .featurebar_lists .featurebar_list {
    display: flex !important;
    align-items: center;
    width: auto !important;
    gap: 10px;
    color: currentColor;
}
.featurebar_sec .slick_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.featurebar_sec .slick_arrow.feature_prev {
    left: 15px;
}
.featurebar_sec .slick_arrow.feature_next {
    right: 15px;
}
.featurebar_sec .slick_arrow.feature_prev svg {
    transform: scaleX(-1);
}
/* =============================================================================
   Breadcrumbs
   Purpose:
   - Breadcrumb spacing and text sizing.
   ========================================================================== */
.breadcrumb_sec {
    position: relative;
    padding: 20px 0;
}
.breadcrumb_inner .breadcrumbs li,
.breadcrumb_inner .breadcrumbs p, 
.breadcrumb_inner .breadcrumbs a {
    font-size: 16px;
    color: currentColor;
    max-width: unset !important;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}

.breadcrumbs li {
  flex: 0 0 auto;
}

.breadcrumbs .breadcrumb-current {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.breadcrumbs .breadcrumb-current > p,
.breadcrumbs .breadcrumb-current > a {
  display: block;
  max-width: 100%;
  white-space: nowrap;

  overflow-x: auto;
  overflow-y: hidden;

  text-overflow: unset;

  scrollbar-width: none;
  -ms-overflow-style: none;

  -webkit-overflow-scrolling: touch;
}

.breadcrumbs .breadcrumb-current > p::-webkit-scrollbar,
.breadcrumbs .breadcrumb-current > a::-webkit-scrollbar {
  display: none;
}
/* =============================================================================
   Homepage/advanced banner
   Purpose:
   - Hero banner layout, overlays, optional logos, text shadow and advanced MBI banner additions.
   ========================================================================== */
.banner_sec {
    position: relative;
    display: flex;
    width: 100%;
    height: calc(100vh - 150px);
    max-height: 960px;
}
.banner_sec .banner_image {
    position: absolute;
    width: 100%;
    height: 100%;
}
.banner_sec .contain {
    position: relative;
}
.banner_sec .banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner_sec .banner_overlay, .banner_sec .banner_overlay_img {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner_sec .banner_inner {
    display: flex;
    width: 100%;
    height: 100%;
}
.banner_inner .banner_text_box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 10px;
}
.banner_inner .banner_text_box .banner_head {
    width: 100%;
}
.banner_inner .banner_text_box .banner_para {
    width: 100%;
}
.banner_inner .banner_text_box .banner_btn {
    width: max-content;
    margin: 0;
}


/* ===== MBI Banner Advanced additions ===== */

.banner_sec .banner_inner {
  /* your CSS already sets display:flex; this adds horizontal positioning */
  justify-content: center; /* default; overridden by justify_* utility classes */
}

.banner_sec .banner_inner.justify_left { justify-content: flex-start; }
.banner_sec .banner_inner.justify_center { justify-content: center; }
.banner_sec .banner_inner.justify_right { justify-content: flex-end; }

/* Make the text box behave nicely with logo + multi elements */
.mbi-banner__text-box {
  max-width: var(--mbi-banner-max-width);
}

/* Logo block */
.mbi-banner__logo {
  width: 100%;
  line-height: 0;
  margin-bottom: 10px;
}
.mbi-banner__logo img {
  width: 100%;
  height: auto;
  max-width: 220px; /* fallback if inline max-width is missing */
}

/* Subheading defaults */
.banner_sec .banner_subhead {
  width: 100%;
  margin: 0;
  line-height: 1.1;
}

/* Text shadow option */
.mbi-banner__text-shadow .banner_head,
.mbi-banner__text-shadow .banner_subhead,
.mbi-banner__text-shadow .banner_para {
  text-shadow: 0 2px 16px rgba(0, 0, 0, var(--mbi-shadow-opacity));
}

/* Overlay images should behave like a cover layer */
.mbi-banner__overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* If a banner has no bg image, keep layout still looking "banner-ish" */
.banner_sec .mbi-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================================
   Page banner
   Purpose:
   - Generic page header/banner layout.
   ========================================================================== */
.pgbanner_sec {
    position: relative;
}
.pgbanner_sec .pgbanner_inner {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.pgbanner_inner .pgbanner_content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}
/* =============================================================================
   Article banner
   Purpose:
   - Blog/article hero layout with image and text columns.
   ========================================================================== */
.articlebanner_sec {
    position: relative;
}
.articlebanner_sec .articlebanner_inner {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}
.articlebanner_inner .articlebanner_content {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
}
.articlebanner_inner .articlebanner_image {
    width: 50%;
}
.articlebanner_inner .articlebanner_image .articlebanner_img {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
/* =============================================================================
   Featured collection list
   Purpose:
   - Circular collection cards used for featured collection sections.
   ========================================================================== */
.feature_collec_sec {
    position: relative;
}
.feature_collec_inner {
    position: relative;
    margin: 0 auto;
    z-index: 1;
}
.feature_collec_head {
    margin-bottom: 20px;
}
.feature_collec_inner .feature_collec_para {
    max-width: 540px;
    margin: 0 auto 20px;
}
.feature_collec_inner .feature_collec_lists {
    display: grid;
    gap: 20px;
    padding: 40px 0;
}
.feature_collec_inner .feature_collec_lists:last-child {
    padding-bottom: 0;
}
.feature_collec_lists .feature_collec_list {
    padding: 0;
}
.feature_collec_lists .feature_collec_list .fcollec_list_img {
    display: block;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    border: 8px solid;
    border-radius: 50%;
    overflow: hidden;
}
.feature_collec_lists .feature_collec_list:nth-child(4n + 1) .fcollec_list_img {
    border-color: var(--mbi-red);
}
.feature_collec_lists .feature_collec_list:nth-child(4n + 2) .fcollec_list_img {
    border-color: var(--mbi-yellow);
}
.feature_collec_lists .feature_collec_list:nth-child(4n + 3) .fcollec_list_img {
    border-color: var(--mbi-pink-light);
}
.feature_collec_lists .feature_collec_list:nth-child(4n) .fcollec_list_img {
    border-color: var(--mbi-green);
}
.feature_collec_lists .feature_collec_list .fcollec_list_img img {
    object-fit: cover;
    transition: .5s all ease;
}
.feature_collec_lists .feature_collec_list .fcollec_list_img:hover img {
    transform: scale(1.03);
}
.feature_collec_lists .feature_collec_list .fcollec_list_para {
    margin-bottom: 12px;
}
.feature_collec_list .fcollec_list_btn {
    color: var(--mbi-white);
}
/* =============================================================================
   Main collection list
   Purpose:
   - Main collection card grid and colour cycling for buttons/images.
   ========================================================================== */
.main_collec_sec {
    position: relative;
}
.main_collec_inner {
    position: relative;
    z-index: 1;
}
.main_collec_head {
    margin-bottom: 20px;
}
.main_collec_inner .main_collec_para {
    max-width: 500px;
    margin: 0 auto 20px;
}
.main_collec_inner .main_collec_lists {
    display: grid;
    gap: 20px;
    row-gap: 40px;
    padding: 40px 0;
}
.main_collec_inner .main_collec_lists:last-child {
    padding-bottom: 0;
}
.main_collec_lists .main_collec_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
}
.main_collec_lists .main_collec_list .main_list_img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    margin: 0 auto;
    border: 8px solid;
    border-radius: 50%;
    overflow: hidden;
}
.main_collec_lists .main_collec_list:nth-child(5n+1) .main_list_img {
    border-color: var(--mbi-green);
}
.main_collec_lists .main_collec_list:nth-child(5n + 2) .main_list_img {
    border-color: var(--mbi-yellow);
}
.main_collec_lists .main_collec_list:nth-child(5n + 3) .main_list_img {
    border-color: var(--mbi-pink);
}
.main_collec_lists .main_collec_list:nth-child(5n + 4) .main_list_img {
    border-color: var(--mbi-blue);
}
.main_collec_lists .main_collec_list:nth-child(5n) .main_list_img {
    border-color: var(--mbi-red);
}
.main_collec_lists .main_collec_list .main_list_img img {
    object-fit: cover;
    transition: .5s all ease;
}
.main_collec_lists .main_collec_list .main_list_img:hover img {
    transform: scale(1.03);
}
.main_collec_lists .main_collec_list .main_list_para {
    margin-bottom: 12px;
}
.main_collec_list .main_list_btn {
    color: var(--mbi-white);
}
.main_collec_lists .main_collec_list:nth-child(5n+1) .main_list_btn {
    border-color: var(--mbi-green);
    background: var(--mbi-green);
}
.main_collec_lists .main_collec_list:nth-child(5n + 2) .main_list_btn {
    border-color: var(--mbi-yellow);
    background: var(--mbi-yellow);
}
.main_collec_lists .main_collec_list:nth-child(5n + 3) .main_list_btn {
    border-color: var(--mbi-pink);
    background: var(--mbi-pink);
}
.main_collec_lists .main_collec_list:nth-child(5n + 4) .main_list_btn {
    border-color: var(--mbi-blue);
    background: var(--mbi-blue);
}
.main_collec_lists .main_collec_list:nth-child(5n) .main_list_btn {
    border-color: var(--mbi-red);
    background: var(--mbi-red);
}
.main_collec_lists .main_collec_list:nth-child(5n+1) .main_list_btn:hover {
    color: var(--mbi-green);
}
.main_collec_lists .main_collec_list:nth-child(5n + 2) .main_list_btn:hover {
    color: var(--mbi-yellow);
}
.main_collec_lists .main_collec_list:nth-child(5n + 3) .main_list_btn:hover {
    color: var(--mbi-pink);
}
.main_collec_lists .main_collec_list:nth-child(5n + 4) .main_list_btn:hover {
    color: var(--mbi-blue);
}
.main_collec_lists .main_collec_list:nth-child(5n) .main_list_btn:hover {
    color: var(--mbi-red);
}
/* =============================================================================
   Featured product carousel
   Purpose:
   - Product card carousel styling, arrows and progress bar.
   ========================================================================== */
.feature_prod_sec {
    position: relative;
}
.feature_prod_head {
    margin-bottom: 20px;
}
.feature_prod_arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}
.feature_prod_arrows .slick_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mbi-white);
    cursor: pointer;
}
.feature_prod_arrows .slick_arrow.slick-disabled {
    opacity: .5;
    cursor: auto;
}
.feature_prod_arrows .slick_arrow.slick_prev svg {
    transform: scaleX(-1);
}
.feature_prod_lists {
    margin: 60px 0;
    position: relative;
    z-index: 1;
}
.feature_progress {
    position: absolute;
    bottom: -34px;
    top: unset !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: block !important;
    width: 85% !important;
    margin: 0 auto;
    height: 4px !important;
    overflow: hidden;
    background-color: rgb(255 255 255 / 25%);
    background-image: linear-gradient(to right, var(--mbi-blue), var(--mbi-blue));
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: .2s opacity !important;
}
.feature_progress .swiper-pagination-progressbar-fill {
    background-image: linear-gradient(to right, var(--mbi-blue), var(--mbi-blue)) !important;
}
.feature_prod_lists .feature_prod_slider .slick-list {
   padding: 0 7.5%;
}
.feature_prod_lists .feature_prod_slider .swiper-wrapper {
    padding: 0 7.5%;
}
.feature_prod_lists .feature_prod_slider .slick-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
}
.feature_prod_lists .feature_prod_slider .slick-track:before,
.feature_prod_lists .feature_prod_slider .slick-track:after {
    display: none;
}
.feature_prod_lists .feature_prod_slider .slick-slide {
    height: auto;
}
.feature_prod_lists .feature_prod_slider .slick-slide > div {
    height: 100%;
}
.feature_prod_lists .feature_prod_slider product-card {
    height: 100%;
}
.product_card {
    position: relative;
    height: 100%;
    background: var(--mbi-white);
    border: 2px solid var(--mbi-grey-light);
    border-radius: 16px;
    overflow: hidden;
    padding: 20px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 4px 0px #00000005;
}
.product_card .product_card_media {
    margin-bottom: 20px;
}
.product_card .product_card_info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}
.product_card .product_card_info .product_card_media {
    width: 100%;
    aspect-ratio: 1;
}
.product_card .product_card_info .product_card_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    min-height: 2.85em;
}
.product_card .product_card_info .product_card_title a {
    text-decoration: none;
    border: 0;
}
.product_card .product_card_info .product_card_price {
    font-size: 18px;
    font-weight: 500;
}
.product_card .product_card_info .product_card_price .price__sale {
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: flex-end;
}
.product_card .product_card_info .product_card_price .price__sale .price-item--regular {
    color: var(--mbi-muted);
    font-size: 18px;
    font-weight: 500;
}
.product_card .product_card_info .product_card_price .price__sale .price-item--sale {
    color: var(--mbi-red);
}
.product_card .product_card_form {
    display: flex;
    align-items: flex-end;
    flex: 1;
}
.product_card .product_card_form form {
    display: flex;
    justify-content: space-between;
}
.product_card .product_card_form .button, 
.product_card .product_card_form .button--card {
    display: flex;
    gap: 5px;
    margin: 0;
    background: var(--mbi-blue);
    color: var(--mbi-white);
    border: 1px solid var(--mbi-blue);
    outline: 0;
    padding: 10px 30px;
}
.product_card .product_card_form .button:hover,
.product_card .product_card_form .button--card:hover {
    color: var(--mbi-blue);
}
.product_card .product_card_form .button--card .cart-icon {
    display: inline-block;
    height: auto;
}
.product_card .product_card_form .button--card .cart-icon svg {
    display: inline-block;
    height: auto;
}
.product_card .product_card_form .button span,
.product_card .product_card_form .button--card span{
    font-size: 18px;
    display: block !important;
}
.product_card .product_card_badge {
    color: var(--mbi-white);
    width: max-content;
    border: 1px solid var(--mbi-border);
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
}
.product_card .product_card_info .product_card_badge {
    display: none;
}
.product_card .product_card_badge.card__badge--out-of-stock {
    background: var(--mbi-muted);
}
.product_card .product_card_badge.card__badge--on-sale {
    background: var(--mbi-red);
}
.product_card .product_card_badge.card__badge--on-bestseller {
    background: var(--mbi-yellow);
}
.product_card .product_card_badge.card__badge--on-stfiller {
    background: var(--mbi-green);
}
.product_card > .product_card_badge {
    position: absolute;
    right: -1px;
    border-radius: 20px 0 0 20px;
}
.product_card .zoomywishid {
    position: absolute;
    right: 20px;
    bottom: 26px;
    width: 36px;
    height: 36px;
    border: 2px solid var(--mbi-pink);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    float: none;
}
.product_card .zoomywishid .zoomywishidheart {
    width: 100%;
    height: 100%;
    float: none;
}
.product_card .zoomywishid label {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.product_card .zoomywishid label p {
    line-height: 1;
    margin-top: 3px;
}
.product_card .zoomywishid:has( .zoomywishidheart label .zadbg) {
    background: var(--mbi-pink);
}
.product_card .zoomywishid .zoomywishidheart label .fa {
    font-family: FontAwesome !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    line-height: 1 !important;
    padding:0;
}
.product_card .zoomywishid .zoomywishidheart label .fa.fa-heart:before {
    content: "\f004" !important;
    color: var(--mbi-white);
}
/* =============================================================================
   Recommended products carousel
   Purpose:
   - Product recommendation slider, arrows and progress state.
   ========================================================================== */
.recomm_prod_sec {
    position: relative;
}
.recomm_prod_sec:not(:has(product-card)) .contain,
.recomm_prod_sec:not(:has(product-card)) .section_image {
   display: none;
}

.recomm_prod_inner:has(.recomm_prod_head) {
    margin-bottom: 60px;
}
.recomm_prod_head {
    margin-bottom: 20px;
}
.recomm_prod_arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}
.recomm_prod_arrows .slick_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--mbi-pink);
    border-radius: 12px;
    border: 2px solid var(--mbi-pink);
    cursor: pointer;
}
.recomm_prod_arrows .slick_arrow svg {
    width: 20px;
    height: 14px;
}
.recomm_prod_arrows .slick_arrow.slick_prev svg {
    transform: scaleX(-1);
}
.recomm_prod_lists {
    margin: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.recomm_progress {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: block !important;
  width: 85%;
  margin: 0 auto;
  height: 4px;
  overflow: hidden;
  background-color: rgb(255 255 255 / 25%);
  background-image: linear-gradient(to right, var(--mbi-blue), var(--mbi-blue));
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .8s ease;
}
.recomm_progress.progress_hide {
    display: none !important;
}
.recomm_prod_lists .recomm_prod_slider:not(.slick-slider) {
  opacity: 0;  
}
.recomm_prod_lists .recomm_prod_slider .slick-list {
   padding: 0 7.5%;
}
.recomm_prod_lists .recomm_prod_slider .slick-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
}
.recomm_prod_lists .recomm_prod_slider .slick-track:before,
.recomm_prod_lists .recomm_prod_slider .slick-track:after {
    display: none;
}
.recomm_prod_lists .recomm_prod_slider .slick-slide {
    height: auto;
}
.recomm_prod_lists .recomm_prod_slider .slick-slide > div {
    height: 100%;
}
.recomm_prod_lists .recomm_prod_slider product-card {
    height: 100%;
}
/* =============================================================================
   FAQ sections
   Purpose:
   - FAQ two-column layout, accordion headings and answer text.
   ========================================================================== */
.faq_sec {
    position: relative;
}
.faq_sec .faq_inner {
    display: flex;
    gap: 60px;
    margin: 0 auto;
}
.faq_inner .faq_col {
    width: 50%;
}
.faq_inner .faq_col.faq_content_col {
    width: 40%;
}
.faq_inner .faq_col.faq_list_col {
    width: 60%;
}
.faq_inner .faq_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq_inner .faq_content .faq_head {
    width: 100%;
}
.faq_inner .faq_content .faq_para {
    width: 100%;
}
.faq_inner .faq_content .faq_btn {
    margin: 0;
}
.faq_lists .faq_list {
    padding: 0;
}
.faq_lists .faq_list .faq_list_head {
    position: relative;
    padding: 15px 15px 15px 45px;
    cursor: pointer;
    margin: 0;
    font-size: 36px;
}
.faq_lists .faq_list .faq_list_head .faq_list_icon {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid;
    border-radius: 10px;
    left: 0;
    top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s all ease;
}
.faq_lists .faq_list .faq_list_head .faq_list_icon svg {
    width: 100%;
}
.faq_lists .faq_list .faq_list_head .faq_list_icon.faq_list_minus {
    opacity: 0;
    visibility: hidden;
}
.faq_lists .faq_list.faq_list_active .faq_list_head .faq_list_icon.faq_list_plus {
    opacity: 0;
    visibility: hidden;
}
.faq_lists .faq_list.faq_list_active .faq_list_head .faq_list_icon.faq_list_minus {
    opacity: 1;
    visibility: visible;
}
.faq_lists .faq_list .faq_list_answer {
    padding: 0px 15px 0px 45px;
}
.faq_lists .faq_list .faq_list_answer p {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.48px;
    color: currentColor;
}
.faq_lists .faq_list .faq_list_answer a {
    color: currentColor;
    font-weight: 600;
    text-decoration: underline;
}
/* =============================================================================
   Variable columns
   Purpose:
   - Circular number/stat blocks and hover behaviour.
   ========================================================================== */
.variablecol_sec {
    position: relative;
}
.variablecol_inner {
    position: relative;
    z-index: 1;
}
.variablecol_head {
    margin-bottom: 20px;
}
.variablecol_inner .variablecol_boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
}
.variablecol_boxes .variablecol_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 160px;
    border: 4px solid;
    transition: .5s all ease;
}
.variablecol_boxes .variablecol_box:hover {
    background: var(--mbi-white) !important;
    /* transform: scale(1.05); */
    transform-origin: left top;
}
.variablecol_boxes .variablecol_box .variablecol_box_head {
    font-size: 75px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: -10px;
}
.variablecol_boxes .variablecol_box .variablecol_box_para {
    font-size: 21.94px;
}
.variablecol_boxes .variablecol_box .variablecol_box_head,
.variablecol_boxes .variablecol_box .variablecol_box_para {
    transition: .5s all ease;
}
/* =============================================================================
   General content block
   Purpose:
   - Reusable rich text content section and inline link treatment.
   ========================================================================== */
.mcontent_sec {
    position: relative;
}
.mcontent_sec .mcontent_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}
.mcontent_sec .mcontent_inner p a {
    position: relative;
    font-weight: 600;
    padding-bottom: 0;
    color: var(--mbi-blue);
    display: inline-block;
    border: 0;
}
/* =============================================================================
   Blank spacer section
   Purpose:
   - Placeholder/spacing section that intentionally renders as a block.
   ========================================================================== */
.blank_sec {
    position: relative;
    display: block !important;
}
/* =============================================================================
   Standard page content
   Purpose:
   - Default page/article content rules, tables, lists, blockquotes and rich text media.
   ========================================================================== */
.page_sec {
    position: relative;
}
.centred .page_inner {
    /* Template needs the CSS Class 'centred' added */
    margin: 0 auto;
}
.page_sec .page_inner p a {
    position: relative;
    font-weight: 600;
    padding-bottom: 0;
    color: var(--mbi-blue);
    display: inline-block;
    border: 0;
}
.page_sec .page_inner ul {
    margin-bottom: 10px;
}
.page_sec .page_inner ul li {
    position: relative;
    padding-left: 25px;
}
.page_sec .page_inner ul li:before {
    content: '';
    background: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="black" ><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>') no-repeat;
    background-size: auto 100%;
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
}
.page_inner .mainpage_content {
    width: 100%;
    color: var(--mbi-text);
}
.page_inner.marticle_withproduct .mainpage_content {
    width: calc(100% - 360px);
}
.mainpage_content h2 {
    max-width: 800px;
    color: currentColor;
    margin-bottom: 20px;
}
.mainpage_content h3 {
    max-width: 800px;
    color: currentColor;
    margin-bottom: 20px;
}
.mainpage_content h4 {
    max-width: 800px;
    color: currentColor;
    margin-bottom: 20px;
}
.mainpage_content p {
    color: currentColor;
    margin-bottom: 20px;
}
.mainpage_content strong {
    font-weight: 700;
}
.mainpage_content span {
    line-height: 1;
}
.mainpage_content ul {
    list-style: disc;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 800px;
    color: currentColor;
}
.page_sec .page_inner .list_type_dot ul li {
    padding: 0;
}
.page_sec .page_inner .list_type_dot ul li:before {
    display: none;
}
.mainpage_content .table-2 {
  display: block;
  min-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
}
.mainpage_content .table-2 > table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
.mainpage_content table {
    width: 100%;
    margin-bottom: 20px;
}
.mainpage_content table > thead > tr {
    background: var(--mbi-pink) !important;
    color: var(--mbi-white);
}
.mainpage_content table tr th {
    width: 50%;
    padding: 20px 15px;
}
.mainpage_content table tr {
    display: flex;
}
.mainpage_content table tr:nth-child(2n + 1) {
    background: var(--mbi-grey-light);
}
.mainpage_content table tr td {
    width: 50%;
    padding: 20px 15px;
}
.mainpage_content img {
    max-width: 100%;
    margin-bottom: 20px;
}
.mainpage_content blockquote {
    position: relative;
    max-width: 700px;
    color: var(--mbi-navy);
    margin-bottom: 20px;
    padding-left: 60px;
    padding-bottom: 40px;
}
.mainpage_content blockquote:before {
    content: '';
    background: url('/cdn/shop/files/blockquote.png?v=1750837838') no-repeat;
    background-size: auto 100%;
    position: absolute;
    left: 0;
    height: 100%;
    width: 20px;
} 
/* =============================================================================
   Content with image
   Purpose:
   - Two-column content/image layouts, reverse layout and product key-benefit hiding.
   ========================================================================== */
.contimg_sec {
    position: relative;
}
.contimg_inner {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}
.contimg_inner.contimg_inner_rev {
    flex-direction: row-reverse;
}
.contimg_inner .contimg_col {
    width: 50%;
}
.contimg_inner .contimg_content {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.contimg_inner .contimg_content .contimg_head {
    margin-bottom: 24px;
}
.contimg_inner .contimg_content .head_bdr_img {
    margin-bottom: 24px;
}
.contimg_inner .contimg_content .contimg_list {
    display: flex;
    gap: 6px;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    max-width: max-content;
    padding: 10px 15px;
    border-radius: 16px;
    margin-bottom: 16px;
}
.contimg_inner .contimg_content .contimg_list svg {
  width: 20px;
  height: 18px;
}
.contimg_inner .contimg_content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
    padding: 0 20px;
}
.contimg_content .contimg_script > img {
    max-width: 190px;
}
.contimg_inner .contimg_content .contimg_listing {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
    max-width: max-content;
    border-radius: 16px;
    margin: 0;
}
.contimg_inner .contimg_content .contimg_listing .contimg_icon {
    margin-top: 3px;
}
.contimg_inner .contimg_content .contimg_listing .contimg_icon svg  {
  width: 20px;
  height: 18px;
}
.contimg_inner .contimg_content .contimg_para {
    margin-bottom: 16px;
}
.contimg_inner .contimg_content .contimg_btn {
    margin-bottom: 16px;
}
.contimg_inner .contimg_content .contimg_btn:last-child, 
.contimg_inner .contimg_content div:last-child {
    margin-bottom: 0px;
}
.contimg_inner .contimg_image {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contimg_inner .contimg_img {
    width: 100%;
    overflow: hidden;
}
.contimg_inner .contimg_img img {
    width: 100%;
}
.product_keybenefit_sec:has( .contimg_para:empty),
.product_keybenefit_sec:has( .contimg_para:empty) ~ .border_img_bottom {
    display: none;
}
/* =============================================================================
   Two-column content
   Purpose:
   - Reusable two-column content layout and list styling.
   ========================================================================== */
.colcont_sec {
    position: relative;
}
.colcont_inner {
    display: flex;
    gap: 60px;
    margin: 0 auto;
    align-items: center;
}
.colcont_inner_top {
    align-items: start;
}
.colcont_inner_bottom {
    align-items: end;
}
.colcont_inner .colcont_col {
    width: calc(50% - 30px);
}
.colcont_inner .colcont_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.colcont_inner .colcont_content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
    padding: 0 20px;
}
/* =============================================================================
   Multi-column cards
   Purpose:
   - Icon/image/text cards used for feature grids.
   ========================================================================== */
.multicol_sec {
    position: relative;
}
.multicol_inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}
.multicol_head {
    margin-bottom: 20px;
}
.multicol_inner .multicol_boxes {
    display: grid;
    gap: 20px;
    width: 100%;
}
.multicol_boxes .multicol_box {
    display: flex;
    flex-direction: column;
}
.multicol_box .multicol_icon {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.multicol_boxes .multicol_box .multicol_boximg {
    width: 100%;
    max-width: 360px;
    height: fit-content;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid;
    padding: 15px;
    overflow: hidden;
}
.multicol_boxes .multicol_box .multicol_boximg img {
    object-fit: contain;
}
.multicol_boxes .multicol_box .multicol_boxcont {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.multicol_boxes .multicol_box .multicol_box_head {
    max-width: 280px;
    margin: 0 auto 12px;
}
.multicol_boxes .multicol_box .multicol_box_para {
    max-width: 380px;
    margin: 0 auto 12px;
}
.multicol_boxes .multicol_box .multicol_box_btn {
    color: var(--mbi-white);
}
.multicol_inner .multicol_btn {
    margin-top: 20px;
}
/* =============================================================================
   Multi-column background cards
   Purpose:
   - Image-led multi-column blocks with centred overlay text.
   ========================================================================== */
.multicolbg_sec {
    position: relative;
}
.multicolbg_inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.multicolbg_head {
    margin-bottom: 20px;
}
.multicolbg_inner .multicolbg_btn {
    margin-top: 20px;
}
.multicolbg_inner .multicolbg_boxes {
    display: grid;
    gap: 20px;
    width: 100%;
}
.multicolbg_boxes .multicolbg_box {
    display: flex;
    flex-direction: column;
    position: relative;
}
.multicolbg_boxes .multicolbg_box .multicolbg_boximg {
    margin: 0 auto;
}
.multicolbg_boxes .multicolbg_box .multicolbg_box_head {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* =============================================================================
   Review sections
   Purpose:
   - Review/testimonial section layout and Yotpo review widget styling.
   ========================================================================== */
.script_review_sec {
    position: relative;
    z-index: 1;
}
.script_review_inner {
    position: relative;
    z-index: 1;
}
.script_review_inner .quote_icon {
    position: absolute;
    height: 180px;
    transform: rotate(195deg)
}
.script_review_inner .quote_icon.quote_icon_top {
    left: 0;
    top: -180px;
    transform: rotate(195deg) scaleX(-1);
}
.script_review_inner .quote_icon.quote_icon_bottom {
    right: 0;
    bottom: -180px;
}
.script_review_inner .quote_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.script_review_inner .script_review_head {
    margin-bottom: 30px;
}
.script_review_inner .script_review {
    position: relative;
    display: block !important;
    min-height: 200px;
    margin: 30px 0;
}
.script_review_inner .script_review_para {
    margin-bottom: 10px;
}
.script_review_inner .script_review_logo {
    margin-bottom: 30px;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-head {
    margin: 30px 0;
}
.script_review_inner #yotpo-reviews-main-widget #yotpo-headline-reviews {
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-empty-state {
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-empty-state .yotpo-title-text {
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-empty-state .yotpo-body-text {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-new-review-btn-wrapper #yotpo-main-widget-btn {
    position: relative;
    display: inline-block;
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    width: max-content;
    padding: 10px 30px;
    min-height: auto;
    border-radius: 15px;
    margin: 0 auto;
    background: var(--mbi-blue);
    border: 2px solid var(--mbi-blue);
    overflow: hidden;
    transition: .5s all ease;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-new-review-btn-wrapper #yotpo-main-widget-btn:hover {
    background: var(--mbi-white);
    color: var(--mbi-blue);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-head {
    margin: 30px 0;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-layout-header-wrapper {
    margin: 0;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-layout-header-wrapper .yotpo-bottom-line {
    align-items: center;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-layout-header-wrapper .yotpo-bottom-line .yotpo-bottom-line-score {
    font-family: 'Figtree' !important;
    font-weight: 600 !important;
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-layout-header-wrapper .yotpo-bottom-line .yotpo-bottom-line-text {
    font-family: 'Figtree' !important;
    font-weight: 400 !important;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-white) !important;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-star-distribution {
    padding: 0 20px !important;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-star-distribution .yotpo-star-distribution-index,
.script_review_inner #yotpo-reviews-main-widget .yotpo-star-distribution .yotpo-star-distribution-value {
    font-family: 'Figtree' !important;
    font-weight: 600 !important;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-white) !important;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review {
    background: var(--mbi-white);
    margin: 0;
    padding: 20px;
    border-radius: 16px;
    height: 100%;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review .yotpo-reviewer {
    margin-top: 20px;
}

.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review .yotpo-reviewer .yotpo-reviewer-name {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--mbi-teal-muted);
    text-transform: capitalize;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review .yotpo-review-center-panel {
    padding: 0 !important;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review .yotpo-review-center-panel .yotpo-review-rating-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review .yotpo-review-center-panel .yotpo-review-rating-title .yotpo-review-title {
    margin: 0;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review .yotpo-review-center-panel .yotpo-review-content {
    margin: 0;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review .yotpo-review-center-panel .yotpo-review-content .yotpo-read-more-text {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review-votes-wrapper .yotpo-review-votes-text {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review-votes-wrapper .yotpo-review-votes-icons svg path {
    fill: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-reviews-list .yotpo-review-votes-wrapper .yotpo-review-votes-number {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-filters-right-panel span {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-filters-right-panel .yotpo-selected-value {
    color: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-filters-right-panel svg path {
    stroke: var(--mbi-white);
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-filters-right-panel .yotpo-dropdown-content-wrapper span {
    color: var(--mbi-text) !important;
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-filters-right-panel .yotpo-dropdown-content-wrapper span[aria-selected="true"] {
   color: var(--mbi-white) !important;
   font-weight: 600 !important;
}
.script_review_inner #yotpo-reviews-main-widget .yotpo-filters-right-panel .yotpo-dropdown-content-wrapper span:hover {
   color: var(--mbi-white) !important; 
}
/* =============================================================================
   Yotpo review carousel
   Purpose:
   - Home/review carousel overrides for Yotpo-generated markup.
   ========================================================================== */
.home_review_sec .yotpo-base-layout .yotpo-head {
    display: none !important;
}
.home_review_sec .ugc-storefront-widgets-tabs-container {
    display: none;
}
.home_review_sec .yotpo-seo-page-layout {
    margin: 0 !important;
}
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list .slick-list {
    width: 100%;
}
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list .slick-track {
    display: flex;
}
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list .slick-track:before,
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list .slick-track:after {
    display: none;
}
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list .slick-slide {
    padding: 0px 15px;
    height: auto;
}
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list .slick-slide > div {
    height: 100%;
}
.home_review_sec .yotpo-seo-reviews-container .yotpo-reviews-seo-list .yotpo-review {
    position: relative;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    background: var(--mbi-white);
    margin: 0;
    padding: 20px;
    border-radius: 16px;
    width: 25%;
    height: 100%;
}
.home_review_sec .script_review .yotpo-seo-page-layout .yotpo-reviews-seo-pagination-container {
    display: none !important;
}
.home_review_sec .yotpo-review .yotpo-reviewer {
    margin-top: 20px;
}
.home_review_sec .yotpo-review .yotpo-reviewer .yotpo-reviewer-image {
    display: none;
}
.home_review_sec .yotpo-review .yotpo-reviewer .yotpo-reviewer-name {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--mbi-teal-muted);
    text-transform: capitalize;
}
.home_review_sec .yotpo-review .yotpo-review-center-panel {
    padding: 0 !important;
}
.home_review_sec .yotpo-review .yotpo-review-center-panel .yotpo-review-rating-title {
    display: flex;
    flex-direction: column-reverse !important;
    gap: 12px;
    width: 100%;
}

.home_review_sec .yotpo-review .yotpo-review-center-panel .yotpo-read-more-text {
    color: var(--mbi-text);
}
.home_review_sec .yotpo-review .yotpo-review-right-panel {
    position: absolute;
    bottom: 16px;
    right: 16px;
}
.home_review_sec .yotpo-review .yotpo-review-right-panel .yotpo-date-format {
    font-size: 14px !important;
    color: var(--mbi-text);
}
.script_review .script_review_arrows {
    position: absolute;
    right: 15px;
    top: -66px;
    display: flex;
    gap: 10px;
}
.script_review .script_review_arrows .slick_arrow {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--mbi-white);
    cursor: pointer;
}
.script_review .script_review_arrows .slick_arrow.slick-arrow {
    display: flex;
}
.script_review .script_review_arrows .slick_arrow.slick-arrow.slick-hidden {
    display: none;
}
.script_review .script_review_arrows .slick_arrow.slick-disabled {
    opacity: .5;
    cursor: auto;
}
.script_review .script_review_arrows .slick_arrow.slick_prev svg {
    transform: scaleX(-1);
}
/* =============================================================================
   Social image carousel
   Purpose:
   - Social/UGC image slider with icon overlay and navigation arrows.
   ========================================================================== */
.socialimg_sec {
    position: relative;
}
.socialimg_inner .socialimg_header {
    position: relative;
    margin-bottom: 0px;
}
.socialimg_header .socialimg_head {
    margin-bottom: 10px;
}
.socialimg_header .socialimg_head strong {
    font-weight: 400;
}
.socialimg_header .socialimg_para a {
    font-weight: 700;
    text-decoration: none;
    border: none;
    color: var(--mbi-blue);
}
.socialimg_header .socialimg_para strong:nth-child(2n+1) {
  color: var(--mbi-green);  
}
.socialimg_header .socialimg_para strong:nth-child(2n) {
  color: var(--mbi-pink);  
}
.socialimg_header .socialimg_arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}
.socialimg_arrows .slick_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--mbi-blue);
    border-radius: 12px;
    border: 2px solid var(--mbi-blue);
    cursor: pointer;
}
.socialimg_arrows .slick_arrow svg {
    width: 20px;
    height: 14px;
}
.socialimg_arrows .slick_arrow.socialimg_prev svg {
    transform: scaleX(-1);
}
.socialimg_boxes .slick-list {
    padding: 0 7.5%;
}
.socialimg_boxes .slick-track {
    display: flex;
    gap: 20px;
}
.socialimg_boxes .slick-track:before,
.socialimg_boxes .slick-track:after {
    display: none;
}
.socialimg_boxes .socialimg_slide {
    position: relative;
}
.socialimg_boxes .socialimg_slide .socialimg_slide_box {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}
.socialimg_boxes .socialimg_slide .socialimg_slide_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.socialimg_boxes .socialimg_slide .socialimg_slide_box .socialimg_slide_icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--mbi-white);
    color: var(--mbi-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.socialimg_boxes .socialimg_slide .socialimg_slide_box .socialimg_slide_icon svg {
    width: 20px;
    height: 20px;
}
/* =============================================================================
   Newsletter and popup
   Purpose:
   - Newsletter form, popup box and close-button styling.
   ========================================================================== */
.newsletter_sec {
    position: relative;
}
.newsletter_inner {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.newsletter_sec .popup-overlay {
    background: rgba(0,0,0,0.5);
}
.newsletter_inner.popup-box {
    padding: 40px 40px;
    overflow: hidden;
    width: calc(100% - 40px);
    max-width: 800px;
    border-radius: 0;
    box-shadow: none;
}
.newsletter_inner .newsletter_left_img {
    min-width: 110px;
}
.newsletter_inner .newsletter_box {
    z-index:999;
}
.newsletter_inner .newsletter_box .newsletter_para {
    max-width: 660px;
    margin: 0 auto;
}
.newsletter_inner .newsletter_box .newsletter_form {
    width: 100%;
    max-width: 650px;
    margin: 20px auto;
}
.newsletter_inner .newsletter_box .newsletter_form .form__input-wrapper {
    border-radius: 18px;
    background: var(--mbi-green);  
    padding: 0;
    border: 0;
}
.newsletter_inner .newsletter_box .newsletter_form .form__input-wrapper input {
    font-family: Figtree;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    outline: 0;
    padding: 12px 15px;
    color: var(--mbi-text);
}
.newsletter_inner .newsletter_box .newsletter_form .form__input-wrapper input::placeholder {
    color: var(--mbi-text);
}
.newsletter_inner .newsletter_box .newsletter_form .form__input-wrapper .button {
    position: relative;
    font-weight: 700;
    background: var(--mbi-pink-light);
    color: var(--mbi-white);
    border-radius: 18px;
    border: 0;
    top: 0px;
    right: 0px;
    height: 100%;
    transform: none;
    padding: 12px 15px;
}
.newsletter_inner .newsletter_box .newsletter_form .form__output-wrapper {
    text-align: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}
.newsletter_inner .newsletter_box .newsletter_form .form__output-wrapper svg {
    width: 20px;
    height: 20px;
}
.newsletter_inner .newsletter_box .newsletter_form .form__output-wrapper.error {
    color: var(--mbi-red-alt);
}
.newsletter_inner .newsletter_box .newsletter_form .form__output-wrapper.success {
    color: var(--mbi-success);
}
.newsletter_inner.popup-box .newsletter_box .newsletter_para {
    max-width: 400px;
}
.newsletter_inner.popup-box .newsletter_box .newsletter_form {
    margin-bottom: 0;
    max-width: 500px;
}
.newsletter_inner.popup-box .newsletter_box .newsletter_form form.contact-form {
    margin-bottom: 20px;
}
.newsletter_inner.popup-box .newsletter_box .newsletter_form .form__input-wrapper {
    flex-direction: column;
    gap: 12px;
    box-shadow: none;
    width: 100%;
    background: transparent;
}
.newsletter_inner.popup-box .newsletter_box .newsletter_form .form__input-wrapper input[type="email"] {
    background: var(--mbi-white);
    color: var(--mbi-black);
    font-size: 16px;
    font-weight: 500;
}
.newsletter_inner.popup-box .newsletter_box .newsletter_form .form__input-wrapper input::placeholder {
    color: var(--mbi-black);
    opacity: .6;
}
.newsletter_inner .newsletter_box .newsletter_form .form__input-wrapper .button {
    right: unset;
    left: unset;
    margin: 0 auto;
    /*padding: 10px 35px;*/
    background: var(--mbi-pink);
}
.newsletter_inner.popup-box .popup-close {
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    color: var(--mbi-white);
    right: 14px;
    top: 14px;
}
.newsletter_inner.popup-box .newsletter_box .newsletter_form .popup_close_button {
    color: var(--mbi-white);
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 6px;
    text-decoration-color: var(--mbi-white);
}
/* =============================================================================
   Product information panel
   Purpose:
   - Product detail information rows, description lists and product metadata.
   ========================================================================== */
.prodinfo_sec {
    position: relative;
}
.prodinfo_inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 0 auto;
    color: var(--mbi-white);
}
.prodinfo_inner .prodinfo_col {
    width: 50%;
}
.prodinfo_inner .prodinfo_col.prodinfo_info_col {
    width: 45%;
}
.prodinfo_inner .prodinfo_col.prodinfo_desc_col {
    width: 55%;
}
.prodinfo_inner .prodinfo_content .prodinfo_cont_head {
    color: var(--mbi-white);
    margin-bottom: 20px;
}
.prodinfo_content .prodinfo_cont_lists {
    display: flex;
    flex-direction: column;
}
.prodinfo_content .prodinfo_cont_lists .prodinfo_cont_list {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    margin: 0;
    color: currentColor;
    border-bottom: 1px solid var(--mbi-white);
}
.prodinfo_content .prodinfo_cont_lists .prodinfo_cont_list > strong {
    width: 40%;
}
.prodinfo_content .prodinfo_cont_lists .prodinfo_cont_list > span {
    width: 60%;
    line-height: 1.3;
}
.prodinfo_content .prodinfo_cont_lists .prodinfo_cont_list > span a {
    line-height: 1.3;
    position: relative;
    font-family: Figtree;
    font-weight: 700;
    padding-bottom: 0;
    display: inline-block;
    border: 0;
    color: var(--mbi-white);
}
.prodinfo_inner .prodinfo_descript .prodinfo_descript_head {
    color: var(--mbi-white);
    margin-bottom: 20px;
}
.prodinfo_inner .prodinfo_descript .prodinfo_descript_headbdr {
    margin: 0;
    margin-bottom: 20px;
}
.prodinfo_inner .prodinfo_descript .prodinfo_description, 
.prodinfo_inner .prodinfo_descript .prodinfo_description p {
    color: currentColor;
}
.prodinfo_descript .prodinfo_description ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: disc;
    padding-left: 35px;
    margin-bottom: 10px;
}
.prodinfo_descript .prodinfo_description p {
    margin-bottom: 10px;
}
.prodinfo_descript .prodinfo_description hr {
    margin: 20px 0;
}
/* =============================================================================
   Product page main layout
   Purpose:
   - PDP gallery, thumbnail slider, product info, tags, quantity, add-to-cart and wishlist.
   ========================================================================== */
.mainprod_sec {
    position: relative;
}
.mainprod_sec .mainprod_inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.mainprod_inner .mainprod_gallery {
    display: flex;
    gap: 20px;
    width: calc(50% - 30px);
}
.mainprod_inner .mainprod_info {
    width: calc(50% - 30px);
}
.mainprod_gallery .mainprod_gthumbnail {
    width: 100px;
}
.mainprod_gallery .mainprod_gslider {
    width: calc(100% - 120px);
}
.mainprod_gallery .mainprod_gthumbnail .slick-list {
    /* height: 100% !important; */
}
.mainprod_gallery .mainprod_gthumbnail .slick-track {
    /* display: flex;
    flex-direction: column;
    gap: 10px; */
    /* height: 100% !important; */
}
.mainprod_gallery .mainprod_gthumbnail .slick-track:before,
.mainprod_gallery .mainprod_gthumbnail .slick-track:after {
    display: none;
}
.mainprod_gallery .mainprod_gthumbnail .slick-arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 40px;
    height: 20px;
    cursor: pointer;
}
.mainprod_gallery .mainprod_gthumbnail .slick-arrow.prev_slick svg {
    transform: rotate(-90deg);
    color: var(--mbi-pink);
}
.mainprod_gallery .mainprod_gthumbnail .slick-arrow.next_slick svg {
    transform: rotate(90deg);
    color: var(--mbi-pink);
}
.mainprod_gallery .mainprod_gthumbnail .slick-slide {
    display: flex;
    /* aspect-ratio: 1; */
}
.mainprod_gallery .mainprod_gthumbnail .mainprod_thumb {
    border: 1px solid var(--mbi-border);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
    cursor: pointer;
}
.mainprod_gallery .mainprod_gthumbnail .mainprod_thumb figure {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mainprod_gallery .mainprod_gslider .slick-track:before,
.mainprod_gallery .mainprod_gslider .slick-track:after {
    display: none;
}
.mainprod_gallery .mainprod_gslider .slick-slide {
    padding: 0px 1px;
}
.mainprod_gallery .mainprod_gslider .mainprod_slide {
    border: 1px solid var(--mbi-border);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 20px;
}
.mainprod_inner .mainprod_info .mainprod_infoblock {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.mainprod_info .mainprod_infoblock .mainprod_infotitle {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.mainprod_info .mainprod_infotitle .more_info {
    width: max-content;
    position: relative;
    padding-bottom: 2px;
    color: var(--mbi-blue);
    cursor: pointer;
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0px;
}
.mainprod_info .mainprod_infotitle .more_info .icon {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    margin: 0;
    transition: .5s all ease;
    color: var(--mbi-blue);
}
.mainprod_info .mainprod_infotitle .more_info .icon svg {
    width: 230%;
    height: 10px;
    overflow: clip;
}
.mainprod_info .mainprod_infoprice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.mainprod_info .mainprod_infoprice .mainprod_pricestock {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mainprod_info .mainprod_infoprice .product__tax {
    width: 100%;
}
.mainprod_info .mainprod_infoprice .mainprod_pricestock .price.price--on-sale .price__sale {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}
.mainprod_info .mainprod_infoprice .mainprod_pricestock .price .price__sale span {
    display: flex;
    line-height: 1;
}
.mainprod_info .mainprod_infoprice .price .price-item {
    font-size: 24px;
}
.mainprod_info .mainprod_infoprice .price .price__sale .price-item.price-item--sale {
    color: var(--mbi-blue);
}
.mainprod_info .mainprod_infoprice .price .price-item.price-item--regular {
    text-decoration: none;
    color: var(--mbi-blue);
    position: relative;
}
.mainprod_info .mainprod_infoprice .price .price__sale .price-item.price-item--regular {
    color: #a5a5a5;
    font-weight: 500;
}
.mainprod_info .mainprod_infoprice .price .price__sale .price-item.price-item--regular:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    border-top: 2px solid;
    border-color: var(--mbi-red-strike);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
.mainprod_info .mainprod_infotags {
    width: 100%;
}
.mainprod_info .mainprod_infotags .mainprod_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.mainprod_info .mainprod_infotags .mainprod_tags li {
    color: var(--mbi-white);
    background: #495bc8;
    width: max-content;
    border: 1px solid var(--mbi-border);
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
}
.mainprod_info .mainprod_infotags .mainprod_tags li a {
    color: var(--mbi-white);
}
.mainprod_info .mainprod_infotags .mainprod_tags li a:after {
    display: none;
}


 .mainprod_info .mainprod_infotags .mainprod_tags li.tag_red {
    background: var(--mbi-red);
}
.mainprod_info .mainprod_infotags .mainprod_tags li.tag_blue {
    background: #495bc8;
}
.mainprod_info .mainprod_infotags .mainprod_tags li.tag_yellow {
    background: var(--mbi-yellow);
}
.mainprod_info .mainprod_infotags .mainprod_tags li.tag_pink {
    background: var(--mbi-pink);
}
.mainprod_info .mainprod_infotags .mainprod_tags li.tag_green {
    background: var(--mbi-green);
}
.mainprod_info .mainprod_infoquantity {
    width: 100%;
}
.mainprod_info .mainprod_infoquantity .quantity-picker {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mainprod_info .mainprod_infoquantity .quantity-picker legend {
    font-size: 18px;
    color: var(--mbi-text);
}
.mainprod_infoquantity .quantity-picker .quantity {
    border-radius: 16px;
    border: 2px solid var(--mbi-blue);
    color: var(--mbi-blue-soft);
}
.mainprod_infoquantity .quantity-picker .quantity button {
    position: relative;
    width: 35px;
    color: var(--mbi-blue-soft);
}
.mainprod_infoquantity .quantity-picker .quantity input {
    color: var(--mbi-blue-soft);
    font-weight: 700;
    outline: 0;
    width: 30px;
}
.mainprod_info .main-product__add-to-cart {
    width: 100%;
}
.mainprod_info .main-product__add-to-cart form {
    margin: 0;
}
.main-product__add-to-cart .button--add-to-cart {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--mbi-blue);
    color: var(--mbi-white);
    border-color: var(--mbi-blue);
    padding: 15px 30px;
}
.main-product__add-to-cart .button--add-to-cart:hover {
    color: var(--mbi-blue);
}
.main-product__add-to-cart #ZooomyList {
    width: 100%;
    margin-top: 14px;
}
.main-product__add-to-cart #ZooomyList label {
    width: 100%;
}
.mainprod_info .usp-product {
    display: flex;
    gap: 10px;
    color: var(--mbi-blue);
    margin-top: 20px !important;
}
.mainprod_info .usp-product svg {
    height: unset;
    width: auto;
    margin: 0;
    color: var(--mbi-blue);
}
.mainprod_info .usp-product p {
    position: relative;
    font-size: 18px;
    font-weight: 700;
}
.usp-product a {
    color: inherit;
}
.mainprod_info .usp-product p .icon {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    margin: 0;
    transition: .5s all ease;
    color: var(--mbi-blue);
}
.mainprod_info .usp-product p .icon svg {
    width: 100%;
}
.mainprod_pricestock .stock-status p {
    display: flex;
    gap: 10px;
}
.mainprod_info #ZlistWishlist {
    margin: 0;
}
.mainprod_info .shopify-app-block {
    width: 100%;
}
.mainprod_info #ZlistWishlist .zooomypwishmsg {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: Figtree;
    font-weight: 700;
    line-height: 1;
    padding: 15px 30px;
    margin: 0;
    transition: .5s all ease;
}
.mainprod_info #ZlistWishlist .zooomypwishmsg:hover {
    background: var(--mbi-white) !important;
    color: var(--mbi-pink) !important;
}
/* =============================================================================
   Sticky add-to-cart bar
   Purpose:
   - Sticky PDP add-to-cart controls shown after scrolling.
   ========================================================================== */
.sticky-add-to-cart {
    z-index: 21;
}
.sticky-add-to-cart.active .sticky-add-to-cart__inner {
    background: var(--mbi-white);
    border-bottom: 1px solid var(--mbi-grey-light);
    box-shadow: 4px 4px 4px 0px #00000005;
}
.sticky-add-to-cart .sticky-add-to-cart__inner .container {
    width: 85%;
    padding: 5px 0;
}
.sticky-add-to-cart__inner .sticky-add-to-cart__meta img {
    width: 50px;
    padding: 8px;
    border: 1px solid var(--mbi-border);
}
.sticky-add-to-cart__inner .sticky-add-to-cart__meta .sticky-add-to-cart__title {
    font-family: Figtree;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}
.sticky-add-to-cart__inner .sticky-add-to-cart__controls .quantity {
    border-radius: 12px;
    border: 2px solid var(--mbi-blue);
    color: var(--mbi-blue-soft);
}
.sticky-add-to-cart__inner .sticky-add-to-cart__controls .quantity input {
    color: var(--mbi-blue-soft);
    font-weight: 700;
    outline: 0;
    width: 30px;
    padding: 9px 0;
    height: 42px;
}
.sticky-add-to-cart__inner .sticky-add-to-cart__controls .quantity button {
    position: relative;
    width: 35px;
    color: var(--mbi-blue-soft);
}
.sticky-add-to-cart__inner .price {
    font-family: Figtree;
    font-size: 16px;
    font-weight: 700;
}
.sticky-add-to-cart__inner .price span {
    line-height: 1;
}
.sticky-add-to-cart__inner .price .price__sale {
    flex-direction: column;
    gap: 5px;
}
.sticky-add-to-cart__inner .price .price__sale .price-item--regular {
    color: var(--mbi-text);
    font-size: 13px;
    font-weight: 500;
}
.sticky-add-to-cart__inner .price .price__sale .price-item--sale {
    color: var(--mbi-blue);
}
.quantity_label {
    display: none;
}
.sticky-add-to-cart__inner  .sticky-add-to-cart__controls {
    display: flex;
    flex-wrap: wrap;
}
.sticky-add-to-cart__inner .sticky-add-to-cart__controls .quantity_label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    color: var(--mbi-text);
}
.sticky-add-to-cart__inner .sticky-add-to-cart__controls .button--add-to-cart {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--mbi-blue);
    color: var(--mbi-white);
    border-color: var(--mbi-blue);
    padding: 12px 30px;
    height: 46px;
}
.sticky-add-to-cart__inner .sticky-add-to-cart__controls .button--add-to-cart:hover {
    color: var(--mbi-blue);
}
/* =============================================================================
   Team carousel
   Purpose:
   - Circular team cards and carousel controls.
   ========================================================================== */
.team_sec {
    position: relative;
}
.team_sec .team_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.team_inner .team_header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.team_arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}
.team_arrows .slick_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--mbi-white);
    border-radius: 12px;
    border: 2px solid var(--mbi-white);
    cursor: pointer;
}
.team_arrows .slick_arrow svg {
    width: 20px;
    height: 14px;
}
.team_arrows .slick_arrow.team_prev svg {
    transform: scaleX(-1);
}
.team_lists {
    margin: 40px 0 0;
    position: relative;
    z-index: 1;
    width: 100%;
}
.team_progress {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: block !important;
  width: 100%;
  margin: 0 auto;
  height: 4px;
  overflow: hidden;
  background-color: rgb(255 255 255 / 25%);
  background-image: linear-gradient(to right, var(--mbi-yellow-bright), var(--mbi-yellow-bright));
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .8s ease;
}
.team_lists .team_lists_slider .slick-list {
   padding: 0;
}
.team_lists .team_lists_slider .slick-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
}
.team_lists .team_lists_slider .slick-track:before,
.team_lists .team_lists_slider .slick-track:after {
    display: none;
}
.team_lists .team_lists_slider .slick-slide {
    height: auto;
}
.team_lists .team_lists_slider .slick-slide > div {
    height: 100%;
}
.team_lists .team_list {
    padding: 0;
}
.team_lists .team_list .team_list_img {
    width: 100%;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    border: 8px solid;
    border-radius: 50%;
    overflow: hidden;
}
.team_lists .team_list h3, .team_lists .team_list h5 {
    margin: 0;
}
.team_lists .team_list .team_list_img img {
    object-fit: cover;
    transition: .5s all ease;
}
.team_lists .team_list .team_list_img:hover img {
    transform: scale(1.03);
}
.team_lists .team_list .team_list_para {
    margin-bottom: 12px;
    max-width: 400px;
    margin: 10px auto;
    padding: 0 20px;
}
.team_lists .team_list .team_list_subhead {
    font-weight: 700;
    margin-bottom: 12px;
}
/* =============================================================================
   Video list section
   Purpose:
   - Video grid/list layout and pagination. Section name kept to match existing theme naming.
   ========================================================================== */
.lvideo_sec {
    position: relative;
}
.lvideo_sec .lvideo_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.lvideo_inner .lvideo_lists {
    display: grid;
    gap: 20px;
    padding: 0;
    width: 100%;
}
.lvideo_lists .lvideo_list .video_box_media {
    margin-bottom: 16px;
}
.lvideo_lists .lvideo_list .video_media {
    border-radius: 30px;
    overflow: hidden;
}
.lvideo_lists .lvideo_list .video_media iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
#videos_pagination {
    display: flex;
    gap: 20px;
}
.pagination_vid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--mbi-blue);
    border-radius: 12px;
    border: 2px solid var(--mbi-blue);
    cursor: pointer;
}
.pagination_vid svg {
    width: 20px;
    height: 14px;
}
.pagination_vid#prev_page svg{
    transform: scaleX(-1);
}
/* =============================================================================
   Blog list cards
   Purpose:
   - Blog/article card grid and read-more styling.
   ========================================================================== */
.lblog_sec {
    position: relative;
}
.lblog_sec .lblog_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lblog_inner .lblog_lists {
    display: grid;
    gap: 20px;
    padding: 40px 0;
}
.lblog_lists .article_list {
    background: var(--mbi-white);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    padding: 15px;
    border: 1px solid var(--mbi-border);
}
.lblog_lists .article_list .article_img {
    display: block;
    width: 100%;
    aspect-ratio: 2/1.3;
    margin-bottom: 16px;
    overflow: hidden;
}
.lblog_lists .article_list .article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lblog_lists .article_list .article_data {
    flex-grow: 1;
}
.lblog_lists .article_list .article_info {
    color: var(--mbi-teal-muted);
}
.lblog_lists .article_list .article_title {
    color: var(--mbi-text);
}
.lblog_lists .article_list .article_desc {
    color: var(--mbi-teal-muted);
    margin-bottom: 20px;
}
.lblog_lists .article_list .article_readmore {
    color: var(--mbi-blue);
    display: flex;
    gap: 8px;
    align-items: center;
}
/* =============================================================================
   Main article content
   Purpose:
   - Blog article typography, product blocks, tables and mobile stacking.
   ========================================================================== */
.mainarticle_sec {
    position: relative;
}
.mainarticle_sec .mainarticle_inner {
    display: flex;
    gap: 60px;
    width: 100%;
}
    .mainarticle_inner {
        margin: 0 auto;
    }
    
.mainarticle_inner .mainarticle_content {
    width: 100%;
    color: var(--mbi-text);
}
.mainarticle_inner.marticle_withproduct .mainarticle_content {
    width: calc(100% - 360px);
}

    .mainarticle_content h2,
    .mainarticle_content h3 {
        font-family: figtree;
        font-weight: bold;
    }
    .mainarticle_content h2 {
        font-size: 2.8rem;
        margin: 0 0 20px 0;
    }
    .mainarticle_content h3 {
        margin: 20px 0 10px 0;
        font-size: 1.8rem;
    }
    .mainarticle_content h4 {
        font-size: 2.8rem;
        font-weight: 300;
        margin: 0 0 30px 0;
    }
    .mainarticle_content p {
        margin: 0 0 10px 0;
    }
    .mainarticle_content p:last-of-type {
        margin: 0 0 30px 0;
    }
    hr {
        margin: 40px 0;
    }
    .mainarticle_content img {
        max-width: 100%;
        margin: 40px 0 20px 0!important;
    }


.mainarticle_content strong {
    font-weight: 700;
}
.mainarticle_content span {
    line-height: 1;
}
.mainarticle_content ul {
    list-style: disc;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    margin-bottom: 30px;
    max-width: 800px;
    color: currentColor;
    /* font-family: Figtree;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5; */
}
.mainarticle_content table {
    width: 100%;
    /* font-family: Figtree;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5; */
    margin-bottom: 20px;
}
.mainarticle_content table tr {
    display: flex;
}
.mainarticle_content table tr:nth-child(2n + 1) {
    background: var(--mbi-grey-light);
}
.mainarticle_content table tr td {
    width: auto !important;
    flex-grow: 1;
    padding: 20px 15px;
}

.mainarticle_content blockquote {
    position: relative;
    /* font-family: Figtree;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5; */
    max-width: 700px;
    color: var(--mbi-navy);
    margin-bottom: 20px;
    padding-left: 60px;
    padding-bottom: 40px;
}
.mainarticle_content blockquote:before {
    content: '';
    background: url('/cdn/shop/files/blockquote.png?v=1750837838') no-repeat;
    background-size: auto 100%;
    position: absolute;
    left: 0;
    height: 100%;
    width: 20px;
}
.mainarticle_inner .mainarticle_products {
    display: block;
    width: 300px;
}
.mainarticle_inner .mainarticle_products .marticle_products_head {
    margin-bottom: 20px;
}
.mainarticle_inner .mainarticle_products .mainarticle_products_lists {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Custom Default Blog Post Changes */
  .product-block {
    display: flex;
    align-items: center;       /* vertically centres text beside image */
    gap: 30px;                 /* space between image and text */
    flex-wrap: wrap;           /* allows stacking on smaller screens */
    border-bottom: 1px solid rgb(220, 220, 220);
    padding: 15px 0;
}
  .product-block.last, .product-block:last-of-type {
    margin-bottom: 40px; /* adjust this value to taste */
    border: none;
  }

  .product-block img {
    max-width: 300px;
    height: auto;
    flex-shrink: 0;
    border-radius: 4px;        /* optional – gives a softer look */
    margin: 10px 0!important;
  }

  .product-text {
    flex: 1;                   /* lets text take remaining width */
  }

  .mainarticle_content .product-text p {
    margin: 0;
}

  /* Stack image above text on mobile */
  @media (max-width: 750px) {

    .product-block {
      flex-direction: column;  /* stack vertically on mobile */
      align-items: flex-start; /* align text left when stacked */
      gap: 0px;                 /* space between image and text */
    }
    .product-block img {
      margin-bottom: 5px;
    }
  }


/* =============================================================================
   Job posts
   Purpose:
   - Job listing cards, footer meta and expandable job content.
   ========================================================================== */
.jobpost_sec {
    position: relative;
}
.jobpost_sec .jobpost_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}
.jobpost_inner .jobpost_lists {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    width: 100%;
}
.jobpost_lists .jobpost_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--mbi-border);
}
.jobpost_lists .jobpost_list .jobpost_list_footer {
    display: flex;
    gap: 20px;
    align-items: center;
}
.jobpost_lists .jobpost_list .jobpost_list_footer .job_buttonbox {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}
.jobpost_lists .jobpost_list .job_buttonbox .job_apply {
    cursor: pointer;
}
.jobpost_lists .jobpost_list .job_buttonbox .job_apply span {
    display: none;
}
.jobpost_lists .jobpost_list .jobpost_list_footer .job_iconbox {
    display: flex;
    gap: 8px;
    align-items: center;
}
.jobpost_lists .jobpost_list .job_iconbox .job_icon svg {
    width: 20px;
}
.jobpost_inner .jobpost_lists .no_job_para {
    border: 1px solid var(--mbi-border);
    padding: 20px;
    width: 100%;
    text-align: center;
}
.jobpost_list .job_maincont {
    border-top: 1px solid var(--mbi-border);
    padding-top: 20px;
}
.jobpost_list .job_maincont .job_maincont_btm {
    margin-top: 16px;
    font-size: 1.25em;
    font-weight: bold;
}
.jobpost_list .job_maincont ul {
    list-style: disc;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    color: currentColor;
}
.jobpost_list .job_maincont a {
    font-weight: 500;
    border: none;
    color: var(--mbi-pink);
}
/* =============================================================================
   Downloads
   Purpose:
   - Download grid layout and filter-pill interactions.
   ========================================================================== */
.downloads_sec {
    position: relative;
}
.downloads_sec .downloads_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}
.downloads_inner .downloads_mimg {
    width: 100%;
}
.downloads_inner .downloads_mimg img {
    width: 100%;
}
.downloads_inner .downloads_lists {
    display: grid;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}
/* =============================================================================
   Contact form
   Purpose:
   - Form fields, success/error alerts and contact info cards.
   ========================================================================== */
.contact_sec {
    position: relative;
}
.contact_sec .contact_inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 0 auto;
}
.contact_inner.form_inner_rev {
    flex-direction: row-reverse;
}
.contact_inner .contact_col {
    width: 50%;
}
.contact_inner .contact_form_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact_form_box .contact_form .form-contact__fields {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.contact_form_box .contact_form #order_fields {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.contact_form_box .contact_form .form_field {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    margin-bottom: 20px;
}
.contact_form_box .contact_form .form_field select {
    width: 100%;
    color: var(--mbi-text);
    padding: 13px 20px;
    border: 1px solid var(--mbi-muted);
    border-radius: 16px;
    outline: 0;
    -moz-appearance: inherit;
    -webkit-appearance: auto;
}
.contact_form_box .contact_form .form_field.form_field_half {
    width: calc(50% - 10px);
}
.contact_form_box .contact_form .form_field.mb_0 {
    margin-bottom: 10px !important;
}
.contact_form_box .contact_form .form_field label {
    width: 100%;
    color: var(--mbi-text);
}
.contact_form_box .contact_form .form-contact__fields .form-contact__alerts {
    margin-bottom: 10px;
}
.contact_form_box .contact_form .form-contact__fields .form-contact__alerts div {
    display: flex;
    gap: 6px;
}
.contact_form_box .contact_form .form-contact__fields .form-contact__alerts svg {
    width: 20px;
    height: 20px;
}
.contact_form_box .contact_form .form-contact__fields .form-contact__alerts.error,
.contact_form_box .contact_form .form-contact__fields .form-contact__alerts.error p {
    color: var(--mbi-red-alt);
}
.contact_form_box .contact_form .form-contact__fields .form-contact__alerts.success {
    color: var(--mbi-success);
}
.contact_form_box .contact_form .form_field .mandatory {
    color: var(--mbi-red);
}
.contact_form_box .contact_form .form_field input {
    width: 100%;
    color: var(--mbi-text);
    padding: 13px 20px;
    border: 1px solid var(--mbi-muted);
    border-radius: 16px;
    outline: 0;
}
.contact_form_box .contact_form .form_field textarea {
    width: 100%;
    color: var(--mbi-text);
    padding: 13px 20px;
    border: 1px solid var(--mbi-muted);
    border-radius: 16px;
    outline: 0;
}
.contact_form_box .contact_form .form_field input::placeholder,
.contact_form_box .contact_form .form_field textarea::placeholder {
    opacity: 1;
    color: var(--mbi-placeholder);
}
.contact_form_box .contact_form .form_field button {
    background: var(--mbi-pink);
    border-color: var(--mbi-pink);
    color: var(--mbi-white);
}
.contact_form_box .contact_form .form_field button:hover {
    color: var(--mbi-pink);
}
.contact_inner .contimg_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact_inner .contact_cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact_inner .contact_cont .contact_infobox {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 30px;
    border-radius: 24px;
}
.contact_infobox .contactinfo_para a {
    color: currentColor;
    border: none;
}
/* =============================================================================
   Collection banner
   Purpose:
   - Collection hero/header with responsive image fade and NCI variant.
   ========================================================================== */
.collectbanner_sec {
    position: relative;
}
.collectbanner_sec.collectbanner_nci_sec:before {
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--mbi-white) 55%, transparent 100%);
    z-index: 1;
}
.collectbanner_sec .collectbanner_inner {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}
.collectbanner_inner .collectbanner_content {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
}
.collectbanner_inner .collectbanner_content .collectbanner_para {
    max-width: 440px;
}
.collectbanner_inner .collectbanner_content .collectbanner_para span {
    line-height: 1;
}
.collectbanner_sec .collectbanner_image {
    width: 70%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}
.collectbanner_sec .collectbanner_image .collectbanner_img {
    width: 100%;
    height: 100%;
}
.collectbanner_sec .collectbanner_image .collectbanner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =============================================================================
   Collection ad cards
   Purpose:
   - Promotional cards injected into collection grids.
   ========================================================================== */
.product_card_banner {
    position: relative;
    height: 100%;
    border: 2px solid var(--mbi-grey-light);
    border-radius: 16px;
    overflow: hidden;
    padding: 20px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 4px 4px 4px #00000005;
}
.product_card_banner .prodcard_bheader {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    z-index: 1;
}
.product_card_banner .prodcard_btn {
    z-index: 1;
}
.product_card_banner .prodcard_bimg {
    position: absolute;
}
.product_card .swym-wishlist-collections-v2-container {
    right: 20px;
    left: unset;
    top: unset;
    bottom: 23px;
    padding: 0;
}
.product_card .swym-wishlist-collections-v2-container .swym-wishlist-collections-v2 {
    transform: none !important;
    width: 34px !important;
    height: 34px !important;
}
.product_card .swym-wishlist-collections-v2-container .swym-wishlist-collections-v2 img {
    width: 34px !important;
    height: 34px !important;
}
/* =============================================================================
   Collection product cards
   Purpose:
   - Native/Globo product card grid styling and wishlist controls.
   ========================================================================== */
.grid-archive__content product-card {
    visibility: visible !important;
    opacity: 1 !important;
}
.spf-product-card .spf-product__info .zoomywishid {
    position: absolute;
    right: 20px;
    bottom: 22px;
    width: 36px;
    height: 36px;
    border: 2px solid var(--mbi-pink);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    float: none;
}
.spf-product-card .spf-product__info .zoomywishid .zoomywishidheart {
    width: 100%;
    height: 100%;
    float: none;
}
.spf-product-card .spf-product__info .zoomywishid label {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.spf-product-card .spf-product__info .zoomywishid label p {
    line-height: 1;
}
.spf-product-card .spf-product__info .zoomywishid:has( .zoomywishidheart label .zadbg) {
    background: var(--mbi-pink);
}
.spf-product-card .spf-product__info .zoomywishid .zoomywishidheart label .fa {
    font-family: FontAwesome !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    line-height: 1 !important;
}
.spf-product-card .spf-product__info .zoomywishid .zoomywishidheart label .fa.fa-heart:before {
    content: "\f004" !important;
}

/* Judge.me Adjustments */
.jdgm-widget.jdgm-cards-carousel {
  --width-xs: clamp(260px, 30vw, 340px)!important;
}


/* =============================================================================
   Boost app overrides
   Purpose:
   - Boost AI Search & Discovery collection grid, filters, sorting, pagination and cart drawer overrides.
   ========================================================================== */
.boost-sd-layout:not(:has(.boost-product-listing-column .product_outer)) .boost-filter-tree-column {
   display: none; 
}
.boost-sd-layout .boost-sd__product-list-pagination-in-collection-search-empty-message p em {
    font-style: normal;
}
.boost-sd__filter-product-list .boost-sd-container {
    position: relative;
    width: 85%;
    margin: 0 auto;
    z-index: 1;
    max-width: 1900px;
}
.boost-sd__filter-product-list .boost-sd-layout {
    margin: 0;
    padding: 0;
    gap: 40px;
}
.boost-sd__filter-product-list .boost-product-listing-column {
    margin: 0 !important;
    padding: 0 !important;
}
.boost-sd__filter-product-list .boost-product-listing-column .boost-sd__product-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    width: 100% !important;
    row-gap: 20px !important;
    column-gap: 20px !important;
    margin: 0 !important;
    margin-top: 20px !important;
}
.boost-sd__product-list .product_outer {
    position: relative;
    height: 100%;
    background: var(--mbi-white);
    border: 2px solid var(--mbi-grey-light);
    border-radius: 16px;
    overflow: hidden;
    padding: 20px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 4px 0px #00000005;
}
.boost-sd__product-list .product_outer .boost-sd__product-item {
    width: 100% !important;
    margin: 0 !important;
    background: var(--mbi-white);
    gap: 0;
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-item-grid-view-layout-image {
    margin-bottom: 20px;
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-info-wrapper .boost-sd__product-link .boost-sd__product-title {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-price {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-price .boost-sd__product-price-content {
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end;
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-price .boost-sd__product-price--compare {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: var(--mbi-muted);
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-price .boost-sd__product-price--sale {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: var(--mbi-red);
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-price .boost-sd__product-price--default {
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    color: var(--mbi-muted);
}
.boost-sd__product-price--saving .boost-sd__format-currency {
    font-family: 'Figtree';
    font-weight: bold;
    color: var(--mbi-white);
    font-size: 1.2rem;
    text-transform: uppercase;
    background:  var(--mbi-green);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}
.boost-sd__product-list .product_outer .boost-sd__button {
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 0;
    background: var(--mbi-blue);
    color: var(--mbi-white);
    border: 1px solid var(--mbi-blue);
    outline: 0;
    padding: 10px 20px;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    text-transform: none;
    transition: .5s all ease;
}
.boost-sd__product-list .product_outer button.boost-sd__button span {
    line-height: 1;
    margin: 0;
    text-overflow: unset;
    overflow: unset;
    white-space: unset;
}
.boost-sd__product-list .product_outer .boost-sd__button span.icon.button--view-product__icon {
    color: var(--mbi-white);
    font-size: 20px;
}
.boost-sd__product-info-wrapper .boost-sd__product-info .product_card_badge {
    color: var(--mbi-white);
    width: max-content;
    border: 1px solid var(--mbi-border);
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
}
.boost-sd__product-info-wrapper .boost-sd__product-info .product_card_badge.card__badge--on-sale {
    background: var(--mbi-red);
}
.boost-sd__product-list .product_outer .boost-sd__button a {
    color: var(--mbi-white);
}
.boost-sd__product-list .product_outer .btns_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-grow: 1;
    margin-top: 10px;
}
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid {
    width: 36px;
    height: 36px;
    border: 2px solid var(--mbi-pink);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    float: none;
}
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid .zoomywishidheart {
    width: 100%;
    height: 100%;
    float: none;
}
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid label {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid label p {
    line-height: 1;
    margin-top: 3px;
}
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid:has( .zoomywishidheart label .zadbg),
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid:has( .fa.fa-heart) {
    background: var(--mbi-pink);
}
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid .zoomywishidheart label .fa {
    font-family: FontAwesome !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    line-height: 1 !important;
}
.boost-sd__product-list .product_outer .btns_wrapper .zoomywishid .zoomywishidheart label .fa.fa-heart:before {
    content: "\f004" !important;
    color: var(--mbi-white);
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-label {
    position: absolute;
    right: -20px;
    top: 0;
    border-radius: 20px 0 0 20px !important;
    color: var(--mbi-white);
    width: max-content;
    border: 1px solid var(--mbi-border);
    font-family: 'Figtree';
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    margin: 0;
    text-transform: uppercase;
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-label.boost-sd__product-label--sale {
    background: var(--mbi-red);
}
.boost-sd__product-list .product_outer .boost-sd__product-item .boost-sd__product-label.boost-sd__product-label--soldout {
    background: var(--mbi-muted);
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-tree-vertical-option-list {
    display: flex;
    flex-direction: column;
    padding-top: 45px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-label span {
    color: var(--mbi-blue);
    font-family: Figtree;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.4;
    position: relative;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-label .boost-sd__filter-option-title {
    font-family: Figtree;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 1.4;
    text-transform: capitalize !important;
    color: var(--mbi-black) !important;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-tree-vertical-content {
    padding: 0 !important;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-label .boost-sd__filter-option-title:before {
    display: none;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-listitem {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-content-inner--scrollbar {
    max-height: max-content;
    padding: 0 0 2px;
    overflow: hidden;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-listitem li {
    margin: 0;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button {
    padding: 0;
    display: flex;
    align-items: center;
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: var(--mbi-black);
    line-height: 1.4;
    gap: 8px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button:before {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--mbi-border);
    border-radius: 12px;
    background-size: 35px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button span {
    margin: 0;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button:after {
    width: 30px;
    height: 30px;
    background: var(--mbi-black);
    transform: none;
    left: 5px;
    top: 7px;
    border-radius: 10px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option.boost-sd__filter-option-range-slider .noUi-value {
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 1.2;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option.boost-sd__filter-option-range-slider .noUi-base .noUi-handle {
    background: var(--mbi-blue);
    border: 0;
    top: -6px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option.boost-sd__filter-option-range-slider .noUi-base .noUi-connects {
    height: 10px;
    background: var(--mbi-border);
    border-radius: 20px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option.boost-sd__filter-option-range-slider .boost-sd__filter-option-range-slider-input-wrapper {
    border-radius: 6px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option.boost-sd__filter-option-range-slider .boost-sd__filter-option-range-slider-input-wrapper span,
.boost-sd__filter-tree-wrapper .boost-sd__filter-option.boost-sd__filter-option-range-slider .boost-sd__filter-option-range-slider-input-wrapper input{
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 1.4;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option:has(#pf_st_in_stock-toggle-target-label) {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    border: 0;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option:has(#pf_ps_on_sale-toggle-target-label) {
    position: absolute;
    top: 0;
    left: 180px;
    padding: 0;
    border: 0;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_st_in_stock-toggle-target-label,
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_ps_on_sale-toggle-target-label {
    display: none;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_st_in_stock-toggle-target li.in_stock_label,
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_ps_on_sale-toggle-target li.on_sale_label  {
    border-radius: 16px;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_st_in_stock-toggle-target li.in_stock_label button {
    width: 160px;
    color: var(--mbi-blue);
    font-weight: 600 !important;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_ps_on_sale-toggle-target li.on_sale_label button {
    width: 160px;
    color: var(--mbi-red-alt);
    font-weight: 600 !important;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_st_in_stock-toggle-target li.in_stock_label button:before {
    width: 24px;
    height: 24px;
    border: 2px solid var(--mbi-blue);
    border-radius: 6px;
    top: 0;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_st_in_stock-toggle-target li.in_stock_label button:after {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    top: 4px;
    left: 4px;
    background: var(--mbi-blue);
    border: 0;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_ps_on_sale-toggle-target li.on_sale_label button:before {
    width: 24px;
    height: 24px;
    border: 2px solid var(--mbi-red-alt);
    border-radius: 6px;
    top: 0;
}
.boost-sd__filter-tree-wrapper .boost-sd__filter-option #pf_ps_on_sale-toggle-target li.on_sale_label button:after {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    top: 4px;
    left: 4px;
    background: var(--mbi-red-alt);
    border: 0;
}
.boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content {
    padding: 0;
    justify-content: flex-end;
}
.boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting {
    padding: 0;
}
.boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-button {
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 400;
    word-break: unset;
    max-width: unset;
    white-space: nowrap;
    gap: 10px;
}
.boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-button .boost-sd__sorting-value {
    display: inline-block;
    font-family: Figtree;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 1;color: var(--mbi-blue);
    padding: 11px 26px 11px 10px;
    white-space: nowrap;
    border: 2px solid var(--mbi-blue);
    border-radius: 16px;
    margin: 0;
    width: 100%;
}
.boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-button:after {
    position: absolute;
    right: 10px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--mbi-blue);
    border-bottom: 2px solid var(--mbi-blue);
}
.boost-sd__filter-product-list .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-list {
    padding: 0;
}
.boost-sd__filter-product-list .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-option .boost-sd__sorting-option-item {
    font-family: 'Figtree';
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid var(--mbi-grey-line);
    text-decoration: none;
}
.boost-sd__filter-product-list .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-option:last-child .boost-sd__sorting-option-item {
    border-bottom: none;
}
.boost-sd__filter-product-list .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-option.boost-sd__sorting-option--active .boost-sd__sorting-option-item,
.boost-sd__filter-product-list .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-option .boost-sd__sorting-option-item:hover {
    background: var(--mbi-grey-hover);
}
.boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail {
    display: none;
}
.boost-sd__product-info-wrapper .boost-sd__product-info .product_card_badge {
    color: var(--mbi-white);
    width: max-content;
    border: 1px solid var(--mbi-border);
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    display: none;
}
.boost-sd__product-info-wrapper .boost-sd__product-info .product_card_badge.card__badge--on-sale {
    background: var(--mbi-red);
}
.boost-sd__pagination {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    border-radius: 12px;
    border: 1px solid var(--mbi-border);
}
.boost-sd__pagination .boost-sd__pagination-number {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-blue);
    background: transparent;
    box-shadow: none;
    align-items: center;
    width: auto;
    opacity: 1;
    margin: 0;
}
.boost-sd__pagination .boost-sd__pagination-number.boost-sd__pagination-number--active {
    border-bottom: 2px solid var(--mbi-blue);
}
.boost-sd__pagination .boost-sd__pagination-button {
    margin: 0;
    padding: 0;
}
.boost-sd__pagination .boost-sd__pagination-button svg {
    width: 16px;
    height: 16px;
    color: var(--mbi-blue);
}

.on_sale_label span.boost-sd__filter-option-item-amount, .in_stock_label span.boost-sd__filter-option-item-amount {
    display: none;
}

.maincollect_inner #gf-tree .gf-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Figtree;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
}
.maincollect_inner #gf-tree .gf-filter-header .gf-close-canvas {
    position: relative;
    width: max-content;
    height: auto;
    flex: unset;
    font-size: 18px;
    padding: 0;
    color: var(--mbi-blue);
}
.maincollect_inner #gf-tree .gf-filter-header .gf-close-canvas:before {
    content: 'Clear filters'
}
.maincollect_inner #gf-tree .gf-filter-header .gf-close-canvas svg {
    display: none;
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-block-title > .h3 {
    font-family: Figtree;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 1.4;
    text-transform: capitalize !important;
    color: var(--mbi-black) !important;
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-block-title .gf-clear {
    display: none;
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-option-box .gf-range-inputs {
    display: none;
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-range-slider .noUi-connects {
    background: var(--mbi-border);
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-range-slider .noUi-connects .noUi-connect {
    background: var(--mbi-green);
    display: block;
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-range-slider .noUi-handle {
    background: var(--mbi-blue);
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-range-slider .noUi-pips {
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1.4;
    color: var(--mbi-black);
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-range-slider .noUi-pips > div {
    font-size: 18px !important;
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-option-box button {
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: var(--mbi-black);
    line-height: 1.4;
    gap: 8px;
}
.maincollect_inner #gf-tree .gf-filter-contents .gf-option-box button .gf-Checkbox {
    width: 40px;
    height: 40px;
    border: 1px solid var(--mbi-border);
    flex: unset;
    border-radius: 12px;
    background-size: 35px;
}
.maincollect_inner #gf-grid .gf-summary {
    margin: 0;
}
.maincollect_inner #gf-grid .gf-actions {
    margin: 0;
}
.maincollect_inner #gf-grid .gf-actions .globo-selected-items-wrapper {
    display: none;
}
.gf-filter-selection {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: Figtree;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 0px !important;
}
.gf-filter-selection:before {
    content: 'Sort by:';
}
.gf-filter-selection .sort-by {
    font-family: Figtree;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    background: transparent;
}
.gf-filter-selection .sort-by .sort-by-toggle {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 16px;
    border: 2px solid var(--mbi-blue);
    color: var(--mbi-blue-soft);
    padding: 0 30px 0 16px;
}
/* =============================================================================
   Globo/filter app product cards
   Purpose:
   - Product-card styling for the alternate collection filter/grid app output.
   ========================================================================== */
.maincollect_inner #gf-grid #gf-products {
    display: grid !important;
    width: 100% !important;
    row-gap: 20px !important;
    column-gap: 20px !important;
    margin: 0 !important;
    margin-top: 20px !important;
}
.grid-archive__content > div {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.grid-archive__content .spf-product-card {
    position: relative;
    height: 100%;
    background: var(--mbi-white);
    border: 2px solid var(--mbi-grey-light);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 4px #00000005;
}
.grid-archive__content .spf-product-card .open-quick-view {
    display: none !important;
}
.grid-archive__content .spf-product-card .spf-product-card__inner {
    position: static;
    padding: 20px;
}
.spf-product-card .spf-product-card__inner .spf-product-card__image-wrapper {
    padding: 0 !important;
    aspect-ratio: 1;
    overflow: hidden;
}
.spf-product-card .spf-product-card__inner .spf-product-card__image-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.spf-product-card .spf-product-card__inner .spf-product-card__image-wrapper img.spf-product-card__image-secondary {
    position: absolute;
    top: 0;
    left: 0;
}
.grid-archive__content .spf-product-card .spf-product-card__images-navigation {
    display: none;
}
.spf-product-card .swym-wishlist-collections-v2-container {
    right: 20px;
    left: unset;
    top: unset;
    bottom: 23px;
    padding: 0;
}
.spf-product-card .swym-wishlist-collections-v2-container .swym-wishlist-collections-v2 {
    transform: none !important;
    width: 34px !important;
    height: 34px !important;
}
.spf-product-card .swym-wishlist-collections-v2-container .swym-wishlist-collections-v2 img {
    width: 34px !important;
    height: 34px !important;
}
.grid-archive__content .spf-product-card .spf-product__label {
    font-family: Figtree;
    font-size: 13px;
    line-height: 1.4;
    color: var(--mbi-white);
    width: max-content;
    border: 1px solid var(--mbi-border);
    font-weight: 700;
    padding: 5px 20px;
    text-transform: uppercase;
    position: absolute;
    right: -1px;
    left: unset;
    top: 20px;
    border-radius: 20px 0 0 20px;
}
.grid-archive__content .spf-product-card .spf-product__label.sale-text {
    background: var(--mbi-red);
}
.grid-archive__content .spf-product-card .spf-product__info {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0px;
    padding: 20px 20px;
    font-family: Figtree;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
}
.spf-product-card .spf-product-card__vendor {
    display: none;
}
.spf-product-card .spf-product-card__title a {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 0;
}
.spf-product-card .product_card_badge {
    color: var(--mbi-white);
    width: max-content;
    border: 1px solid var(--mbi-border);
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
}
.spf-product-card .product_card_badge.card__badge--out-of-stock {
    background: var(--mbi-muted);
}
.spf-product-card .product_card_badge.card__badge--on-sale {
    background: var(--mbi-red);
}
.spf-product-card .product_card_badge.card__badge--on-bestseller {
    background: var(--mbi-yellow);
}
.spf-product-card .product_card_badge.card__badge--on-stfiller {
    background: var(--mbi-green);
}
.spf-product-card .spf-product-card__price-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: flex-end;
}
.spf-product-card .spf-product-card__price-wrapper > span {
    font-size: 18px;
    font-weight: 500;
}
.spf-product-card .spf-product-card__price-wrapper > span.spf-product-card__saleprice {
    color: var(--mbi-red);
}
.grid-archive__content .spf-product-card .product_card_form {
    display: flex;
    align-items: flex-end;
    flex: 1;
    padding: 0 20px 20px;
}
.grid-archive__content .spf-product-card .spf-product__form .spf-product__form-btn-addtocart {
    position: relative;
    font-family: Figtree;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    height: auto;
    margin: 0;
    width: max-content;
    background: var(--mbi-blue) !important;
    color: var(--mbi-white) !important;
    border: 2px solid var(--mbi-blue) !important;
    outline: 0;
    padding: 6px 30px;
    border-radius: 15px;
    overflow: hidden;
    flex: unset;
    transform: none;
    box-shadow: none;
    transition: .5s all ease;
}
.grid-archive__content .spf-product-card .spf-product__form .spf-product__form-btn-addtocart:hover {
    color: var(--mbi-blue) !important;
    background: var(--mbi-white) !important;
}
/* =============================================================================
   Predictive search
   Purpose:
   - Header predictive search overlay, default results, products and feature bar.
   ========================================================================== */
.header__search .predictive-search {
    border: 0;
    width: 100%;
    margin: 0;
    max-width: 100%;
}
.predictive-search .predictive-search__results-container {
    grid-auto-columns: 1fr 3fr;
}
.predictive-search .search-sidebar {
    background: var(--mbi-white);
    padding: 30px;
    border: 0;
}
.predictive-search .search-sidebar .recent-searches .recent-searches__item {
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
.predictive-search .search-sidebar .recent-searches .recent-searches__item .search-sidebar__remove .icon {
    color: var(--mbi-red);
    border: 2px solid var(--mbi-red);
    width: 18px;
    height: 18px;
    font-weight: 600;
    font-size: 15px;
    justify-content: flex-start;
}
.predictive-search .search-sidebar .search-sidebar__list.recent-searches {
    background: var(--mbi-grey-light);
    border-radius: 16px;
}
.predictive-search .search-sidebar .recent-searches .search-sidebar__clear {
    background: var(--mbi-white);
    border: 2px solid var(--mbi-red);
    color: var(--mbi-red);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: Figtree;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .5px;
}
.predictive-search .search-sidebar .recent-searches .recent-searches__item .search-sidebar__button {
    font-size: 18px;
}
.predictive-search .search-sidebar .search-sidebar__list {
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
.predictive-search .search-sidebar .search-sidebar__list > .search-sidebar__header {
    font-weight: 700;
    font-size: 18px;
    color: var(--mbi-heading-dark);
}
.predictive-search .search-sidebar .search-sidebar__list ul li a {
    font-size: clamp(1.4rem, .7698rem + .6453vw, 1.8rem);
    color: var(--mbi-teal-muted);
}
.predictive-search .search-products {
    background: var(--mbi-grey-light);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.predictive-search .search-products .search-products__row {
    width: 70%;
}
.predictive-search .search-products .search-products__heading {
    color: var(--mbi-text);
    width: 100%;
}
.predictive-search .search-products .psearch_sideimg {
    position: sticky;
    top: 0;
    width: calc(30% - 20px);
    height: 100%;
}
.predictive-search .search-products .psearch_sideimg .psearch_sideimg_info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
}
.predictive-search .search-products .psearch_sideimg .psearch_sideimg_box {
    width: auto;
    height: 100%;
    background-color: transparent;
}
.predictive-search .search-products .psearch_sideimg .psearch_sideimg_box img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.predictive-search .search-products .card {
    border: 0;
    border-radius: 0;
}
.predictive-search .search-products .card__image {
    aspect-ratio: 1;
    overflow: hidden;
    padding: 0;
}
.predictive-search .search-products .card__image figure {
    border-radius: 0;
    width: 100%;
    height: 100%;
}
.predictive-search .search-products .card__image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.predictive-search .product_card {
    padding: 0;
    border-radius: 0;
    background: unset;
}
.predictive-search .product_card .product_card_media {
    margin: 0;
    aspect-ratio: 1;
    overflow: hidden;
    padding: 0;
}
.predictive-search .product_card .product_card_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.predictive-search .search-products .search-products__grid .card:nth-child(6n + 1) .card__content,
.predictive-search .search-products .search-products__grid product-card:nth-child(6n + 1) .product_card_info {
    background: var(--mbi-blue);
}
.predictive-search .search-products .search-products__grid .card:nth-child(6n + 2) .card__content,
.predictive-search .search-products .search-products__grid product-card:nth-child(6n + 2) .product_card_info {
    background: var(--mbi-red);
}
.predictive-search .search-products .search-products__grid .card:nth-child(6n + 3) .card__content,
.predictive-search .search-products .search-products__grid product-card:nth-child(6n + 3) .product_card_info {
    background: var(--mbi-green);
}
.predictive-search .search-products .search-products__grid .card:nth-child(6n + 4) .card__content,
.predictive-search .search-products .search-products__grid product-card:nth-child(6n + 4) .product_card_info {
    background: var(--mbi-pink);
}
.predictive-search .search-products .search-products__grid .card:nth-child(6n + 5) .card__content,
.predictive-search .search-products .search-products__grid product-card:nth-child(6n + 5) .product_card_info {
    background: var(--mbi-blue);
}
.predictive-search .search-products .search-products__grid .card:nth-child(6n) .card__content,
.predictive-search .search-products .search-products__grid product-card:nth-child(6n) .product_card_info {
    background: var(--mbi-yellow);
}
.predictive-search .search-products .card__title {
    font-family: 'Figtree';
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--mbi-white)
}
.predictive-search .product_card .product_card_info {
    padding: 0.8rem 1.2rem 1.2rem;
    margin: 0;
}
.predictive-search .product_card .product_card_info .product_card_title {
    font-size: 16px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--mbi-white);
}
.predictive-search .search-products .card__description {
    display: none;
}
.header__search .predictive-search .features-bar {
    border: 1px solid var(--mbi-grey-light);
}
.predictive-search .features-bar__wrapper .slick-track {
    display: flex;
}
.predictive-search .features-bar__wrapper .slick-track:before,
.predictive-search .features-bar__wrapper .slick-track:after {
    display: none;
}
.predictive-search .features-bar__wrapper .slick-slide {
    text-align: center;
}
.predictive-search .features-bar__wrapper .slick_arrow {
    position: absolute;
    top: 50%;
    color: var(--mbi-pink-bright);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.predictive-search .features-bar__wrapper .slick_arrow svg {
    width: 12px;
    height: 12px;
}
.predictive-search .features-bar__wrapper .slick_arrow.feature_search_prev {
    left: 15px;
}
.predictive-search .features-bar__wrapper .slick_arrow.feature_search_next {
    right: 15px;
}
.predictive-search .features-bar__wrapper .slick_arrow.feature_search_prev svg {
    transform: scaleX(-1);
}
.features-bar.features-bar--nav .features-bar__wrapper  {
    background: var(--mbi-white);
    position: relative;
    padding: 8px;
}
.features-bar__wrapper .featurebar_list {
    display: flex;
    align-items: center;
    gap: 16px;
}
.features-bar__wrapper .featurebar_list svg {
    color: var(--mbi-pink);
}
.features-bar__wrapper .featurebar_list span {
    font-family: Figtree;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
}
.features-bar__wrapper .featurebar_list span strong {
    color: var(--mbi-blue);
    line-height: 1;
    font-weight: 700;
    font-size: 16px;
}
/* =============================================================================
   Mini cart drawer
   Purpose:
   - Theme mini-cart drawer, free shipping/gift messaging and line items.
   ========================================================================== */
.mini-cart {
    background: var(--mbi-white);
}

.mini-cart .mini-cart__sidebar #cart-close {
    background: var(--mbi-white);
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--mbi-black);
    border-bottom: 1px solid var(--mbi-grey-light);
}
.mini-cart .mini-cart__sidebar .mini-cart--empty {
    background: var(--mbi-grey-light);
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--mbi-navy);
}
.mini-cart .mini-cart__sidebar .mini-cart--empty .text-lg {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: var(--mbi-text);
}
.mini-cart .mini-cart__sidebar .mini-cart--empty a {
    background: var(--mbi-pink);
    border: 2px solid var(--mbi-pink);
    border-radius: 15px;
    font-family: Figtree;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    text-transform: capitalize;
}
.mini-cart .mini-cart__footer {
    border: 0;
    box-shadow: none;
    background: var(--mbi-white);
}
.mini-cart .mini-cart__footer .accordion {
    border: 1px solid var(--mbi-grey-light);
    margin: 0 15px;
    border-radius: 30px;
    overflow: hidden;
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--mbi-text);
}
.mini-cart .mini-cart__footer .accordion details {
    border: 0;
}
.mini-cart .mini-cart__footer .accordion details p {
    font-size: 16px;
}
.mini-cart .mini-cart__footer .accordion details .icon {
    color: var(--mbi-blue);
}
.mini-cart .mini-cart__footer .accordion textarea {
    border: 1px solid var(--mbi-grey-light);
    padding: 5px 10px;
    border-radius: 7px;
}
.mini-cart .mini-cart__footer .cart-summary__meta {
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
.mini-cart .mini-cart__footer .cart-summary__header {
    border-bottom: 1px solid var(--mbi-grey-light);
}
.mini-cart .mini-cart__footer .cart-summary__header p {
    font-size: 18px;
    font-weight: 500;
}
.mini-cart .mini-cart__footer .cart-summary__line-items p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.mini-cart .mini-cart__footer .cart-summary__line-items.cart-summary__line-items--notice p {
    font-size: 12px;
}
.mini-cart .mini-cart__footer .cart-summary__buttons a {
    color: var(--mbi-blue);
    background: var(--mbi-white);
    border: 2px solid var(--mbi-blue);
    border-radius: 15px;
    font-family: Figtree;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    transition: .3s all ease;
}
.mini-cart .mini-cart__footer .cart-summary__buttons a:hover {
    background: var(--mbi-blue);
    color: var(--mbi-white);
}

.mini-cart .mini-cart__footer .cart-summary__free-shipping {
    font-family: Figtree;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.mini-cart .mini-cart__footer .cart-summary__free-shipping p {
    color: var(--mbi-white);
    background: var(--mbi-pink);
}
.mini-cart .mini-cart__footer .cart-summary__free-shipping p.free-shipping-qualified, p.free-shipping-qualified {
    color: var(--mbi-black);
    background: var(--mbi-green);
}

.mini-cart .mini-cart__footer .cart-summary__certificate p {
    font-family: Figtree;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}
.mini-cart .cart-item .cart-item__image {
    border-radius: 16px;
}
.mini-cart .cart-item .cart-item__title a {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
}
.mini-cart .cart-item .quantity {
    border-radius: 16px;
    border: 2px solid var(--mbi-blue);
    color: var(--mbi-blue-soft);
}
.mini-cart .cart-item .quantity input {
    color: var(--mbi-blue-soft);
    font-weight: 700;
    outline: 0;
    width: 30px;
    padding: 8px 0;
}
.mini-cart .cart-item .quantity button {
    position: relative;
    width: 35px;
    color: var(--mbi-blue-soft);
}
.mini-cart .cart-item .cart-item__totals {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-text);
}
.mini-cart .cart-item .cart-item__totals > span.text-xs {
    font-size: 12px;
    line-height: 1.4;
}
.cart__wrapper .cart-content {
    border: 1px solid var(--mbi-grey-light);
    background: var(--mbi-white);
}
.cart__wrapper .cart-content .cart-content__header {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    padding: 16px 20px;
    border-bottom: 1px solid var(--mbi-grey-light);
}
.cart__wrapper .cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px 20px;
}
.cart__wrapper .cart-items-container .cart-item {
    margin: 0;
}
.cart__wrapper .cart-items-container .cart-item__image {
    border-radius: 16px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid var(--mbi-grey-light);
}
.cart__wrapper .cart-items-container .cart-item__title a {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
}
.cart__wrapper .cart-items-container .quantity {
    border-radius: 16px;
    border: 2px solid var(--mbi-blue);
    color: var(--mbi-blue-soft);
}
.cart__wrapper .cart-items-container .quantity input {
    color: var(--mbi-blue-soft);
    font-weight: 700;
    outline: 0;
    width: 30px;
    padding: 8px 0;
}
.cart__wrapper .cart-items-container .quantity button {
    position: relative;
    width: 35px;
    color: var(--mbi-blue-soft);
}
.cart__wrapper .cart-items-container .cart-item__totals {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-text);
}
.cart__wrapper .cart-items-container .cart-item__totals > span.text-xs {
    font-size: 12px;
    line-height: 1.4;
}
.cart__wrapper .cart_back_btn {
    background: var(--mbi-pink);
    color: var(--mbi-white);
    border-color: var(--mbi-pink);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart__wrapper .cart_back_btn svg {
    transform: scaleX(-1);
}
.cart__wrapper .cart_back_btn:hover {
    color: var(--mbi-pink);
}
.cart__wrapper .cart-summary .cart-summary__meta {
    border: 1px solid var(--mbi-grey-light);
    background: var(--mbi-white);
}
.cart__wrapper .cart-summary .cart-summary__meta .cart-summary__header {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    padding: 16px 20px;
    border-bottom: 1px solid var(--mbi-grey-light);
}
.cart__wrapper .cart-summary .cart-summary__meta .cart-summary__header p {
    font-size: 18px;
    line-height: 1.4;
}
.cart__wrapper .cart-summary .cart-summary__meta .free-shipping-left {
    background: var(--mbi-pink);
    font-family: Figtree;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    color: var(--mbi-white);
}
.cart__wrapper .cart-summary .cart-summary__meta .cart-summary__certificate p {
    font-family: Figtree;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}
.cart__wrapper .cart-summary .accordion {
    border: 1px solid var(--mbi-grey-light);
    border-radius: 30px;
    overflow: hidden;
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--mbi-text);
}
.cart__wrapper .cart-summary .accordion details {
    border: 0;
}
.cart__wrapper .cart-summary .accordion details p {
    font-size: 16px;
}
.cart__wrapper .cart-summary .accordion details .icon {
    color: var(--mbi-blue);
}
.cart__wrapper .cart-summary .accordion textarea {
    border: 1px solid var(--mbi-grey-light);
    padding: 5px 10px;
    border-radius: 7px;
}
/* =============================================================================
   Wishlist page
   Purpose:
   - Zoomy/Swym wishlist page grid and action button styling.
   ========================================================================== */
.template-page-zooomywishlist .container {
    width: 85% !important;
    max-width: unset !important;
}
.template-page-zooomywishlist .zwishmsgs {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-text);
}
.template-page-zooomywishlist .zwishmsgs a {
    display: block;
    color: currentColor;
    float: none !important;
}
#ZoomyWishlistPage {
    display: grid !important;
    width: 100% !important;
    row-gap: 20px !important;
    column-gap: 20px !important;
    margin: 20px 0 0 !important;
    grid-template-columns: repeat(3, 1fr);
    float: none !important;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--mbi-white);
    border: 2px solid var(--mbi-grey-light);
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    margin: 0;
    text-align: left;
    display: flex !important;
    flex-direction: column;
    box-shadow: 4px 4px 4px #00000005;
    float: none;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodypimg {
    margin-bottom: 20px;
    padding: 0 !important;
    aspect-ratio: 1;
    overflow: hidden;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodypimg a {
    display: block;
    width: 100%;
    height: 100%;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodytitle {
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodytitle a {
    font-size: 18px !important;
    font-weight: 700;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zprice {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodyinfo {
    display: none;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodyaction {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodyaction #wishlist_page_product_text {
    display: none;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodyaction .addcartbtn {
    position: relative;
    float: none;
    font-family: Figtree;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 5px;
    height: auto;
    margin: 12px 0 0;
    width: max-content;
    background: var(--mbi-blue) !important;
    color: var(--mbi-white) !important;
    border: 2px solid var(--mbi-blue) !important;
    outline: 0;
    padding: 6px 30px;
    border-radius: 15px;
    overflow: hidden;
    flex: unset;
    transform: none;
    box-shadow: none;
    transition: .5s all ease;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .zbodyaction .addcartbtn:hover {
    color: var(--mbi-blue) !important;
    background: var(--mbi-white) !important;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .removefromwishlist {
    position: absolute;
    bottom: 23px;
    top: unset;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    overflow: hidden;
    font-size: 22px;
    line-height: 22px;
    background: var(--mbi-pink);
    border: 2px solid var(--mbi-pink);
    transition: .3s all ease;
}
#ZoomyWishlistPage .ZoomyWishlistPageGrid .removefromwishlist:hover {
    background: var(--mbi-white);
    color: var(--mbi-pink);
}
/* =============================================================================
   Search results
   Purpose:
   - Search page grid for products and articles.
   ========================================================================== */
.search_sec #FacetSearchForm {
    margin-bottom: 20px;
}
.search_sec .grid-archive__main-container {
    width: 100%;
}
.search_sec .grid-archive__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.search_sec .grid-archive__content .product_card_media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.search_sec .grid-archive__content .article_list {
    background: var(--mbi-white);
    height: 100%;
    border: 2px solid var(--mbi-grey-light);
    border-radius: 16px;
    overflow: hidden;
    padding: 20px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 4px 0px #00000005;
}
.search_sec .grid-archive__content .article_list .article_img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 16px;
    overflow: hidden;
}
.search_sec .grid-archive__content .article_list .article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search_sec .grid-archive__content .article_list .article_data {
    flex-grow: 1;
}
.search_sec .grid-archive__content .article_list .article_info {
    color: var(--mbi-teal-muted);
}
.search_sec .grid-archive__content .article_list .article_title {
    display: block;
    color: var(--mbi-text);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.search_sec .grid-archive__content .article_list .article_desc {
    color: var(--mbi-teal-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
}
.search_sec .grid-archive__content .article_list .article_readmore {
    color: var(--mbi-blue);
    display: flex;
    gap: 8px;
    align-items: center;
}


/* =============================================================================
   Boost cart drawer
   Purpose:
   - Cart drawer generated by Boost app and its summary/action buttons.
   ========================================================================== */
.boost-sd__modal-wrapper .boost-sd__cart {
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    width: 40rem;
}
.boost-sd__modal-wrapper .boost-sd__cart .boost-sd__cart-header {
    background: var(--mbi-white);
    border-bottom: 1px solid var(--mbi-grey-light);
}
.boost-sd__cart .boost-sd__cart-header .boost-sd__cart-items-count {
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--mbi-black);
}
.boost-sd__modal .boost-sd__modal-close-btn svg {
    width: 16px;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group {
    padding: 1.6rem;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-view-cart .icon {
    font-size: 18px;
}
.boost-sd__modal-wrapper .boost-sd__cart .boost-sd__cart-body {
    padding: 1.6rem;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item {
    column-gap: 12px;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item .boost-sd__cart-item-image img {
    width: 108px;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item  .boost-sd__cart-item-title {
    font-family: Figtree;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item .boost-sd__input-number {
    border-radius: 16px;
    border: 2px solid var(--mbi-blue);
    color: var(--mbi-blue-soft);
    height: 45px;
    width: auto;
    padding: 0;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item .boost-sd__input-number .boost-sd__input-number-input {
    font-family: 'Figtree';
    font-size: 18px;
    line-height: 1.4;
    color: var(--mbi-blue-soft);
    font-weight: 700;
    outline: 0;
    width: 30px;
    padding: 8px 0;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item .boost-sd__input-number .boost-sd__button {
    font-family: 'Figtree';
    font-size: 22px;
    line-height: 1.4;
    color: var(--mbi-blue-soft);
    font-weight: 700;
    position: relative;
    width: 35px;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item .boost-sd__input-number .boost-sd__button span {
    line-height: 1;
    color: currentColor;
    -webkit-text-fill-color: currentColor;
}
.boost-sd__cart .boost-sd__cart-body .boost-sd__cart-item .boost-sd__input-number .boost-sd__input-number-btn-wrapper {
    width: auto;
}
.boost-sd__modal-wrapper .boost-sd__cart-footer {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: var(--mbi-white);
}
.boost-sd__modal-wrapper .boost-sd__cart-footer {
    font-family: Figtree;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
.boost-sd__cart-footer .cart-summary__header {
    border-top: 1px solid var(--mbi-grey-light);
    border-bottom: 1px solid var(--mbi-grey-light);
}
.boost-sd__cart-footer .cart-summary__header p {
    font-size: 18px;
    font-weight: 500;
}
.boost-sd__cart-footer .cart-summary__line-items p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.boost-sd__cart-footer .cart_notice {
    font-size: 12px;
    padding: 0 1.6rem 0.8rem;
}

.boost-sd__modal-wrapper .boost-sd__cart-footer .boost-sd__cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 1.6rem 1.6rem 0 1.6rem;
    margin: 0;
}
.boost-sd__modal-wrapper .boost-sd__cart-footer .boost-sd__cart-subtotal .boost-sd__cart-label {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: currentcolor;
    text-transform: none;
}
.boost-sd__modal-wrapper .boost-sd__cart-footer .boost-sd__cart-subtotal .boost-sd__cart-price {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: currentcolor;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-view-cart {
    color: var(--mbi-blue);
    background: var(--mbi-white);
    border: 2px solid var(--mbi-blue);
    border-radius: 15px;
    font-family: Figtree;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    padding: 9px 15px;
    text-transform: none;
    transition: .3s all ease;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-view-cart span {
    line-height: 1;
    color: currentColor;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-view-cart:hover {
    background: var(--mbi-blue);
    color: var(--mbi-white);
    border-color: var(--mbi-blue);
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-view-cart .icon {
    font-size: 18px;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-checkout {
    color: var(--mbi-white);
    background: var(--mbi-blue);
    border: 2px solid var(--mbi-blue);
    border-radius: 15px;
    font-family: Figtree;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    padding: 9px 15px;
    text-transform: none;
    transition: .3s all ease;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-checkout span {
    line-height: 1;
    color: currentColor;
}
.boost-sd__modal-wrapper .boost-sd__cart-btn-group .boost-sd__btn-checkout:hover {
    background: var(--mbi-white);
    color: var(--mbi-blue);
    border-color: var(--mbi-blue);
}

.boost-sd__modal-wrapper .boost-sd__cart-footer .cart-summary__certificate p {
    font-family: Figtree;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
}

/* =============================================================================
   Footer
   Purpose:
   - Footer columns, logo, social links, payment icons and copyright bar.
   ========================================================================== */
footer .footer_border_img {
    width: 100%;
}
footer .footer_border_img img {
    width: 100%;
}
.main_footer .footer_top {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
}
.main_footer .footer_top:not(:has(.foot_list)) {
    display:none;
}
.main_footer .footer_top .foot_list {
    position: relative;
    display: flex;
    width: calc(25% - 20px);
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.main_footer .footer_top .foot_list:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    right: -20px;
    background: var(--mbi-white);
}
.main_footer .footer_top .foot_list:last-child:after {
    display: none;
}
.main_footer .footer_top .foot_list svg {
    width: 18px;
    height: 18px;
}
.main_footer .footer_top .foot_list .foot_list_icon {
    line-height: 1;
}
.main_footer .footer_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 0;
}
.footer_inner .footer_col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(25% - 30px);
}
.footer_inner .footer_info_box .footer_info_logo {
    display: block;
    max-width: 180px;
}
.footer_inner .footer_navig {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_inner .footer_navig .footer_navig_head {
    color: inherit;
    margin-bottom: 10px;
}
.footer_inner .footer_navig .footer_navig_ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer_inner .footer_navig .footer_navig_ul li a {
    color: inherit;
    font-size: 16px;
}
.footer_inner .footer_social_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_inner .footer_social_box .social_head {
    color: inherit;
}
.footer_inner .footer_social_box .footer_social_list ul {
    display: flex;
    gap: 15px;
    align-items: center;
}
.footer_inner .footer_social_box .footer_social_list ul li a {
    display: block;
}
.footer_inner .footer_social_box .footer_social_list ul li a svg {
    fill: var(--mbi-white);
}
.main_footer .copyright_sec {
    padding: 20px 0;
    border-top: 2px solid var(--mbi-white);
}
.main_footer .copyright_sec .copyright_para a {
    color: inherit;
    text-decoration: none;
    border: 0;
}
.main_footer .foot_payment_icons { 
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
    margin-top: 15px;
}
/* =============================================================================
   Miscellaneous overrides
   Purpose:
   - Small one-off fixes and app overrides that do not yet belong to a dedicated section.
   ========================================================================== */
li.in_stock_label {
        border: 2px solid var(--mbi-blue);
  padding: 5%;
    border-radius: 50px;
}
li.in_stock_label button{
  color: var(--mbi-blue);
}
li.in_stock_label button:before {
    border: 2px solid var(--mbi-blue);
}
li.on_sale_label {
      border: 2px solid var(--mbi-red-alt);
    color: var(--mbi-red-alt);
  padding: 5%;
    border-radius: 50px;
}
li.on_sale_label button{
  color: var(--mbi-red-alt);
}
li.on_sale_label button:before {
    border: 2px solid var(--mbi-red-alt);
}
.zadbg .fa-heart:before {
    content: "\f004";
    color: var(--mbi-pink);
}
.btns_wrapper {
    display: flex;
}
section.faq_section.hidden, .faq_list.hidden {
    display: none;
}
.faq_search{
  outline: 0 !important;
  font-family: Figtree;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  padding: 10px 30px;
  border: 1px solid var(--mbi-blue);
  border-radius: 15px;
}
.instagenie-branding {
    display: none;
}
/* =============================================================================
   Responsive: <=1600px
   Purpose:
   - Desktop tightening for header spacing, search width and grid columns.
   ========================================================================== */
@media screen and (max-width: 1600px) {
  .header_inner {
    gap: 16px;
  }
  .header_inner .header__menu {
    gap: 16px;
  }
  .header_inner .header__search .form__input-wrapper {
    min-width: 320px;
  }
  .header_icons .header_icon_list {
    gap: 6px;
  }
  .search_sec .grid-archive__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =============================================================================
   Responsive: <=1400px
   Purpose:
   - Header/menu compression and Boost filter column width.
   ========================================================================== */
@media screen and (max-width: 1400px) {
  .header_inner, 
  .header_inner .header__menu {
    gap: 12px;
  }
  .header_inner .header_logo {
    width: 100px;
  }
  .header_inner .header__search .form__input-wrapper {
    min-width: 280px;
  }
  .header_inner .header__menu .main-nav-item summary {
    align-items: baseline;
  }
  .header_inner .header__menu .main-nav-item summary .icon {
    width: 16px;
    height: 10px;
    font-size: 16px;
  }
  .header_inner .header__menu details.main-nav-item > .nav ul {
    max-width: 90vw;
    gap: 15px;
  }
  .mega_nav_inner .mega_nav_lists .mega_nav_list {
    gap: 8px !important;
  }
  .header_megamenu .mega_nav .mega_nav_inner {
    gap: 40px;
  }
  .mega_nav_inner .mega_nav_image {
    width: 300px;
  }
  .mega_nav_inner .mega_nav_lists {
    gap: 40px;
  }
  .header__menu details.main-nav-item > .nav ul li .nav__main-menu-link--simple {
    font-size: 18px;
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-tree-vertical {
    width: 250px;
  }
}
/* =============================================================================
   Responsive: <=1340px
   Purpose:
   - Further header/logo/search compression.
   ========================================================================== */
@media screen and (max-width: 1340px) {
  .header_inner, .header_inner .header__menu {
    gap: 10px;
  }
  .header_inner .header_logo {
    width: 95px;
    margin-right: 15px;
  }
  .header_inner .header__menu .main-nav-item {
    font-size: 17px;
  }
  .header_inner .header__search .form__input-wrapper {
    max-width: 300px;
    min-width: auto;
  }
}
/* =============================================================================
   Responsive: <=1280px
   Purpose:
   - Desktop search icon fallback and two-column layout gap reductions.
   ========================================================================== */
@media screen and (max-width: 1280px) {
  .header_inner .header_search_icon {
    display: inline-block;
  }
  .header_inner .header__search .header_search_form {
    position: relative;
  }
  .header_inner .header__search .header_search_form .form__input-wrapper {
    display: none;
    position: absolute;
    right: 0;
    top: -22px;
  }
  .header_inner .header__search .header_search_form .form__input-wrapper .icon {
    top: 11px;
  }
  .header__menu details.main-nav-item > .nav ul li .nav__main-menu-link--simple {
    font-size: 18px;
  }
  .contimg_inner {
    gap: 40px;
  }
  .colcont_inner {
    gap: 40px;
  }
  .colcont_inner .colcont_col {
    width: calc(50% - 20px);
  }
  .faq_sec .faq_inner {
    gap: 40px;
  }
  .contact_sec .contact_inner {
    gap: 40px;
  }
  .mainarticle_sec .mainarticle_inner {
    gap: 40px;
  }
  .mainarticle_inner.marticle_withproduct .mainarticle_content {
    width: calc(100% - 340px);
  }
  .articlebanner_sec .articlebanner_inner {
    gap: 40px;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .mainprod_sec .mainprod_inner {
    gap: 40px;
  }
  .mainprod_inner .mainprod_gallery {
   width: calc(50% - 20px);
  }
  .mainprod_inner .mainprod_info {
    width: calc(50% - 20px);
  }
  .prodinfo_inner {
    gap: 40px;
  }
}
/* =============================================================================
   Responsive: <=1200px
   Purpose:
   - Mega-menu positioning adjustment.
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .header[data-ux=hover] .header__menu.header_megamenu .main-nav-item:hover .nav {
    transform: translateX(0) translateY(0);
    margin-left: 2.5vw; 
  }
}
/* =============================================================================
   Responsive: <=1024px / tablet
   Purpose:
   - Tablet/mobile header, mobile nav, stacked layouts, product page and collection banner changes.
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .contain {
    width: 90%;
  }
  .space_above {
    padding-top: 60px;
  }
  .space_below {
    padding-bottom: 60px;
  }

  .tab_col_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .tab_col_2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tab_col_3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tab_col_4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .announce_inner .slick-track {
    display: flex;
    align-items: center;
  }
  .announce_list .announce_box {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .announce_inner:not(.slick-slider) .announce_list {
    display: none;
  }
  .announce_inner .announce_list:after {
    display: none;
  }
  .announce_inner:not(.slick-slider) .announce_list:first-child {
    display: block;
  }
  .header_inner {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .header_inner .left {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    width: 120px;
  }
  .header_inner .left .search-trigger svg {
    width: 22px;
    height: 22px;
  }
  .header_inner .header_logo {
    margin: 0;
    width: 120px;
  }
  .header_inner .right {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 120px;
  }
  .header_inner .right .header__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    aspect-ratio: 1;
  }
  .header_inner .left .nav.nav--mobile {
    width: 100vw;
    left: -2.5vw;
    top: 100% !important;
    background: #FFFFFFCC;
    padding: 20px 2.5%;
    z-index: -1;
  }
  .header_inner .left .nav.nav--mobile .container {
    max-width: 100%;
    border: 1px solid var(--mbi-border);
    border-radius: 20px;
  }
.header_inner .left .nav.nav--mobile .nav__mobile-accordion-opener {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: var(--mbi-white);
    border-color: var(--mbi-border);
    align-items: center;
  }
  .header_inner .left .nav.nav--mobile .nav__content {
    background: var(--mbi-grey-menu);
  }
.header_inner .left .nav.nav--mobile .nav__content .nav__main-menu ul li > button, 
  .header_inner .left .nav.nav--mobile .nav__content .nav__main-menu ul li > a {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    border-bottom: 1px solid var(--mbi-border);
    height: 50px;
    border-radius: 0;
    background: var(--mbi-grey-menu);
  }
  .header_inner .left .nav.nav--mobile .nav__content .nav__main-menu ul li:last-child > button, 
  .header_inner .left .nav.nav--mobile .nav__content .nav__main-menu ul li:last-child > a {
    border-bottom: none;
  }
  .header_inner .left .nav.nav--mobile .nav__secondary-menu {
    background: var(--mbi-white);
  }
  .header_inner .left .nav.nav--mobile .nav__secondary-menu__item {
    padding: 0;
  }
  .header_inner .left .nav.nav--mobile .nav__secondary-menu .nav__secondary-menu__close {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: var(--mbi-white);
    border-bottom: 1px solid var(--mbi-border);
    padding: 20px 20px;
  }
  .header_inner .left .nav.nav--mobile .nav__secondary-menu .nav__secondary-menu__close .icon {
    color: #ee4399;
  }
  .header_inner .left .nav.nav--mobile .nav__secondary-menu  .nav__main-menu-link--basic {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: var(--mbi-white);
    border-bottom: 1px solid var(--mbi-border);
  }
  .header_inner .left .nav.nav--mobile .nav__secondary-menu  a.button {
    display: none;
  }
  .featurebar_mobnav {
    background: var(--mbi-grey-light);
    position: relative;
    padding: 10px 15px;
  }
  .featurebar_mobnav .featurebar_inner {
    width: 100%;
  }
  .featurebar_mobnav .featurebar_inner .slick-list {
    width: 100%;
  }
  .featurebar_mobnav .featurebar_inner .slick-track:before,
  .featurebar_mobnav .featurebar_inner .slick-track:after {
    display: none;
  }
  .featurebar_mobnav .featurebar_inner .slick-list .slick-slide > div {
    display: flex;
    justify-content: center;
  }
  .featurebar_mobnav .featurebar_inner .featurebar_list {
    display: flex !important;
    align-items: center;
    width: auto !important;
    gap: 10px;
    color: currentColor;
  }
  .featurebar_mobnav .slick_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .featurebar_mobnav .slick_arrow.featurebar_prev {
    left: 15px;
  }
  .featurebar_mobnav .slick_arrow.featurebar_next {
    right: 15px;
  }
  .featurebar_mobnav .slick_arrow.featurebar_prev svg {
    transform: scaleX(-1);
  }
  .featurebar_mobnav .featurebar_inner .featurebar_list svg {
    color: var(--mbi-pink);
  }
  .banner_sec .banner_inner {
    height: auto;
    padding: 40px 0;
  }
  .banner_inner .banner_text_box {
    margin: 0 auto;
    text-align: center;
    justify-content: center;
  }
  .banner_sec .banner_image {
    margin-top: 200px;
    height: calc(100% - 200px);
  }
  .banner_sec .banner_overlay_img {
    top: 200px;
    height: calc(100% - 200px);
    width: 50%;
    left: unset;
    right: 0;
    display: flex !important;
    align-items: center;
  }
  .banner_sec .banner_overlay_img img {
    height: auto;
    width: auto;
    min-width: 200px;
  }
  .banner_sec .banner_image img {
    object-position: bottom;
  }
  .banner_sec .banner_overlay {
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 40%, transparent 60%) !important;
  }
  .variablecol_inner .variablecol_boxes {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature_collec_inner .feature_collec_lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .contimg_inner {
    flex-wrap: wrap;
  }
  .contimg_inner .contimg_col {
    width: 100%;
  }
  .contimg_inner .contimg_img {
    max-width: 480px;
  }
  .colcont_inner {
    flex-wrap: wrap;
  }
  .colcont_inner .colcont_col {
    width: 100%;
  }
  .feature_prod_lists {
    margin: 40px 0;
  }
  .feature_progress {
    display: none !important;
  }
  .feature_prod_arrows {
    position: relative;
    justify-content: center;
    margin-top: 40px;
  }
  .multicol_inner .multicol_boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .multicol_boxes .multicol_box {
    width: calc(50% - 15px);
    max-width: 320px;
  }
  .script_review .script_review_arrows {
    position: relative;
    justify-content: center;
    margin: 40px 0;
    top: unset;
    right: unset;
  }
  .team_inner .team_arrows {
    position: relative;
    justify-content: center;
    margin: 20px 0 0;
    top: unset;
    right: unset;
  }
  .team_inner .team_progress {
    display: none !important;
  }
  .home_review_sec .yotpo-review .yotpo-reviewer {
    margin: 0;
  }
  .script_review_inner .quote_icon.quote_icon_top {
    height: 120px;
    top: -120px;
    transform: rotate(180deg) scaleX(-1);
  }
  .script_review_inner .quote_icon.quote_icon_bottom {
    height: 120px;
    bottom: -130px;
    transform: rotate(180deg);
  }
  .recomm_prod_lists {
    margin-bottom: 0;
  }
  .faq_sec .faq_inner {
    flex-wrap: wrap;
  }
  .faq_inner .faq_col.faq_content_col {
    width: 100%;
  }
  .faq_inner .faq_content {
    align-items: center;
    text-align: center;
  }
  .faq_inner .faq_content .faq_img {
    max-width: 380px;
    margin: 0 auto;
  }
  .faq_inner .faq_col.faq_list_col {
    width: 100%;
  }
  .faq_lists .faq_list .faq_list_head {
    font-size: 32px;
    line-height: 36px;
  }
  .faq_lists .faq_list .faq_list_head .faq_list_icon {
    top: 16px;
  }
  .contact_sec .contact_inner {
    flex-wrap: wrap;
  }
  .contact_inner .contact_col {
    width: 100%;
  }
  .contact_inner .contact_cont {
    flex-direction: row;
  }
  .newsletter_inner.popup-box {
    width: 100%;
    max-width: 400px;
  }
  .section_image_image_frDDge {
    max-width: 400px;
    left: -68%;
    transform: rotate(265deg);
  }
  .section_image_image_V8taRc {
    max-width: 400px;
    left: 70%;
    transform: rotate(88deg);
  }
  .lvideo_inner .lvideo_lists {
    column-gap: 30px !important;
  }
  .mainarticle_sec .mainarticle_inner {
    flex-wrap: wrap;
  }
  .mainarticle_inner.marticle_withproduct .mainarticle_content {
    width: 100%;
  }
  .mainarticle_inner .mainarticle_products {
    width: 100%;
  }
  .mainarticle_inner .mainarticle_products .mainarticle_products_lists {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mainarticle_inner .mainarticle_products .mainarticle_products_lists product-card {
    width: calc(50% - 10px);
  }
  .socialimg_inner .socialimg_header {
    text-align: center;
  }
  .socialimg_sec .socialimg_arrows {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 0;
  }
  .newsletter_inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .newsletter_inner .newsletter_left_img {
    width: 110px;
  }
  .main_footer .footer_inner {
    padding: 60px 0;
  }
  .footer_inner .footer_col {
    width: calc(33.3334% - 28px);
  }
  .main_footer .footer_inner .footer_col:first-child {
    width: 100%;
  }
  .footer_inner .footer_info_box {
    display: flex;
    justify-content: center;
  }
  .footer_inner .footer_info_box .footer_info_logo {
    max-width: 140px;
  }
  .mainarticle_content > div table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
  .mainarticle_content table tr td {
    word-break: normal;
  }
  .mainarticle_content table tr {
    display: table-row;
  }
  .mainarticle_content > div table tbody {
    display: block;
    min-width: 767px;
  }
  .articlebanner_sec .articlebanner_inner {
    flex-wrap: wrap;
  }
  .articlebanner_inner .articlebanner_content {
    width: 100%;
  }
  .articlebanner_inner .articlebanner_image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .boost-sd__filter-product-list .boost-sd-container {
    width: 90%;
  }
  .mainprod_sec .mainprod_inner {
    flex-wrap: wrap;
  }
  .mainprod_inner .mainprod_gallery {
    width: 100%;
  }
  .mainprod_inner .mainprod_info {
    width: 100%;
  }
  .prodinfo_inner {
    flex-direction: column-reverse;
  }
  .prodinfo_inner .prodinfo_col.prodinfo_info_col {
    width: 100%;
  }
  .prodinfo_inner .prodinfo_col.prodinfo_desc_col {
    width: 100%;
  }
  .collectbanner_sec {
    overflow: hidden;
    padding-bottom: 0 !important;
    min-height: auto !important;
  }
  .collectbanner_sec.collectbanner_nci_sec:before {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 38%, transparent 80%) !important;
  }
  .collectbanner_inner .collectbanner_content {
    width: 100%;
    text-align: center;
    gap: 12px;
    padding-bottom: 60px;
  }
  .collectbanner_inner .collectbanner_content .breadcrumb_inner {
    text-align: center;
  }
  .collectbanner_inner .collectbanner_content .breadcrumb_inner ol {
    text-align: center;
    justify-content: center;
  }
  .collectbanner_inner .collectbanner_content .collectbanner_para {
    margin: 0 auto;
  }
  .collectbanner_sec .collectbanner_image {
    position: relative;
    width: 100%;
    top: unset;
    margin-top: -15%;
  }
  .collectbanner_sec .collectbanner_image .collectbanner_img img {
    -webkit-mask-image: linear-gradient(to top, white 80%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to top, white 80%, transparent 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    }

  .header__search .predictive-search {
    width: 100%;
    left: 0;
    padding: 20px 20px;
    background: transparent;
  }
  .header__search .predictive-search .predictive-search-container {
    background: var(--mbi-grey-light);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .header__search .predictive-search .predictive-search__mobile-header {
    background: var(--mbi-white);
    border-radius: 14px;
    margin-bottom: 16px;
    border: none;
    padding: 10px 10px;
  }
  .header__search .predictive-search .predictive-search__mobile-header .search-input {
    padding: 10px 85px 10px 40px;
    outline: 0;
  }
  .header__search .predictive-search .predictive-search__mobile-header .predictive-search__mobile-close {
    display: none;
  }
  .header__search .predictive-search .predictive-search__mobile-header button.search-input {
    padding: 6px 10px;
  }
  .predictive-search .search-products {
    padding: 0;
  }
  .predictive-search .search-products .psearch_sideimg {
    display: none;
  }
  .predictive-search .search-products .search-products__row {
    width: 100%;
    margin-bottom: 0;
  }
  .predictive-search .search-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .header__search .predictive-search .features-bar {
    border-radius: 16px;
    overflow: hidden;
  }
  .predictive-search .search-sidebar {
    border-radius: 16px;
    padding: 16px;
  }
  .predictive-search .search-sidebar #search-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .predictive-search .search-sidebar .search-sidebar__list {
    width: calc(25% - 12px);
    padding: 0;
  }
  .predictive-search .search-sidebar .search-sidebar__list.recent-searches {
    width: 100%;
  }
  .predictive-search .search-sidebar .search-sidebar__list ul li a {
    font-size: 16px;
  }
  .features-bar__wrapper .features-bar__inner-container {
    display: flex;
    gap: 15px;
    padding: 0 15px;
  }
  .features-bar__wrapper .featurebar_list {
    width: calc(33.3334% - 10px);
  }
  .features-bar__wrapper .slick_arrow {
    display: none;
  }
  .template-page-zooomywishlist .container {
    width: 90% !important;
  }
  .sticky-add-to-cart .sticky-add-to-cart__inner .container {
    width: 90%;
    padding: 20px 0;
    gap: 20px;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta {
    width: 55%;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__controls {
    width: 45%;
  }
}
/* =============================================================================
   Responsive: <=991px
   Purpose:
   - Boost mobile filter/sort drawer and wishlist/search grid changes.
   ========================================================================== */
@media screen and (max-width: 991px) {
  .boost-sd__filter-product-list .boost-product-listing-column {
    margin-top: 60px !important;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-item {
    padding: 0;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar {
    margin: 0 !important;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__toolbar-top-mobile {
    border: none;
    justify-content: space-between;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting {
    border: none;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__filter-tree-toggle-button {
    display: inline-block;
    font-family: Figtree;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 1;
    padding: 10px 35px;
    white-space: nowrap;
    border: 2px solid var(--mbi-blue);
    border-radius: 16px;
    margin: 0;
    width: 100%;
    max-width: max-content;
    min-width: 220px;
    color: var(--mbi-blue);
    display: flex;
    justify-content: center;
    flex: unset;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__filter-tree-toggle-button .boost-sd__filter-tree-toggle-button-text {
    display: none;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__filter-tree-toggle-button .boost-sd__filter-tree-toggle-button-icon:after {
    content: 'Filter';
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__filter-tree-toggle-button .boost-sd__filter-tree-toggle-button-icon {
    display: flex;
    gap: 15px;
    margin: 0;
    line-height: 1;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__filter-tree-toggle-button .boost-sd__filter-tree-toggle-button-icon svg path {
    fill: var(--mbi-blue);
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-tree-vertical {
    width: 340px;
    top: 170px;
    height: calc(100vh - 170px);
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-tree-vertical-toolbar-middle {
    font-size: 0px !important;
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-tree-vertical-toolbar-middle:after {
    content: 'Filter';
    font-family: Figtree;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.6;
    color: var(--mbi-blue);
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-option-label .boost-sd__filter-option-title {
    font-family: Figtree;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 1.4;
    text-transform: capitalize !important;
    color: var(--mbi-black) !important;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option .boost-sd__filter-option-listitem {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option .boost-sd__filter-option-content-inner--scrollbar {
    max-height: max-content;
    padding: 0 0 2px;
    overflow: hidden;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option .boost-sd__filter-option-listitem li {
    margin: 0;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button {
    padding: 0;
    display: flex;
    align-items: center;
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: var(--mbi-black);
    line-height: 1.4;
    gap: 8px;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button:before {
    position: relative;
    width: 32px;
    height: 32px;
    border: 1px solid var(--mbi-border);
    border-radius: 8px;
    background-size: 35px;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button span {
    margin: 0;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option .boost-sd__filter-option-listitem li .boost-sd__filter-option-item-button:after {
    width: 22px;
    height: 22px;
    background: var(--mbi-blue);
    transform: none;
    left: 5px;
    top: 7px;
    border-radius: 6px;
    border: none;
  }
.boost-sd__filter-product-list .boost-sd__filter-option.boost-sd__filter-option-range-slider .noUi-base .noUi-handle {
    background: var(--mbi-blue);
    border: 0;
    top: -6px;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option.boost-sd__filter-option-range-slider .noUi-base .noUi-connects {
    height: 10px;
    background: var(--mbi-border);
    border-radius: 20px;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option.boost-sd__filter-option-range-slider .boost-sd__filter-option-range-slider-input-wrapper {
    border-radius: 6px;
  }
  .boost-sd__filter-product-list .boost-sd__filter-option.boost-sd__filter-option-range-slider .boost-sd__filter-option-range-slider-input-wrapper span,
  .boost-sd__filter-product-list .boost-sd__filter-option.boost-sd__filter-option-range-slider .boost-sd__filter-option-range-slider-input-wrapper input{
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 1.4;
  }
  .boost-sd__filter-option-range-slider--style-1 .noUi-pips-horizontal .noUi-value-horizontal {
    font-family: Figtree;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 1.4;
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-tree-vertical .boost-sd__filter-tree-vertical-show-result {
    display: none;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_stock {
    position: relative;
    display: none;
    gap: 8px;
    align-items: center;
    border: 2px solid var(--mbi-blue);
    border-radius: 12px;
    padding: 8px 15px;
    font-family: Figtree;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1;
    color: var(--mbi-blue);
    cursor: pointer;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail:has(~ #boost-sd_filter-tree-mobile #pf_st_in_stock) .mob_in_stock {
    display: flex;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_stock:before {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid var(--mbi-blue);
    border-radius: 6px;
    top: 0;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_stock:after {
    content: '';
    display: none;
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--mbi-blue);
    border-radius: 4px;
    top: calc(50% - 8px);
    left: 19px;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail:has(~ #boost-sd_filter-tree-mobile #pf_st_in_stock .boost-sd__filter-option-item-button--selected) .mob_in_stock:after {
    display: inline-block;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_sale {
    position: relative;
    display: none;
    gap: 8px;
    align-items: center;
    border: 2px solid var(--mbi-red-alt);
    border-radius: 12px;
    padding: 8px 15px;
    font-family: Figtree;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1;
    color: var(--mbi-red-alt);
    cursor: pointer;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail:has(~ #boost-sd_filter-tree-mobile #pf_ps_on_sale) .mob_in_sale {
    display: flex;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_sale:before {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid var(--mbi-red-alt);
    border-radius: 6px;
    top: 0;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_sale:after {
    content: '';
    display: none;
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--mbi-red-alt);
    border-radius: 4px;
    top: 12px;
    left: 19px;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail:has(~ #boost-sd_filter-tree-mobile #pf_ps_on_sale .boost-sd__filter-option-item-button--selected) .mob_in_sale:after {
    display: inline-block;
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-option[data-filteroptionid="pf_st_in_stock"] {
    display: none;
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-option[data-filteroptionid="pf_ps_on_sale"] {
    display: none;
  }
  #ZoomyWishlistPage {
    grid-template-columns: repeat(2, 1fr);
  }
  .search_sec .grid-archive__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =============================================================================
   Responsive: <=767px / mobile
   Purpose:
   - Mobile spacing, product sticky bar, collection toolbar and content stacking.
   ========================================================================== */
@media screen and (max-width: 767px) {
  .space_above {
    padding-top: 40px;
  }
  .space_below {
    padding-bottom: 40px;
  }
  .figtree_subhead {
    font-size: 20px;
  }
  .figtree_para {
    font-size: 16px;
  }
  .figtree_para_lg {
    font-size: 16px;
  }
  .mob_col_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .mob_col_2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mob_col_3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .mob_col_4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .announce_sec {
    height: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    padding: 5px 0 10px 0;
  }
  .announce_list .announce_box strong {
    line-height: 1;
  }
  .announce_list .announce_box .announce_icon {
    margin-top: -3px;
  }
  .variablecol_boxes .variablecol_box {
    width: 140px;
  }
  .variablecol_boxes .variablecol_box .variablecol_box_head {
    font-size: 75px;
  }
  .home_review_sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .script_review_inner .quote_icon.quote_icon_top {
    height: 100px;
    top: -110px;
  }
  .script_review_inner .quote_icon.quote_icon_bottom {
    height: 100px;
    bottom: -120px;
  }
  .contact_inner .contact_cont {
    flex-wrap: wrap;
  }
  .contact_inner .contact_cont .contact_infobox {
    width: 100%;
  }
  .feature_collec_inner .feature_collec_lists {
    grid-template-columns: repeat(1, 1fr);
  }
  .mainarticle_content h3 {
    font-size: 28px;
    line-height: 1.3;
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-tree-vertical {
    top: 170px;
    height: calc(100% - 170px);
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting {
    width: calc(50% - 10px);
    max-width: 420px;
    flex: 0 0 calc(50% - 10px);
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__toolbar-top-mobile {
    justify-content: center;
    gap: 20px;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__filter-tree-toggle-button {
    width: calc(50% - 10px);
    max-width: 420px;
    flex: 0 0 calc(50% - 10px);
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-button {
    width: 100%;
  }
  .prodinfo_sec .section_image {
    display: none;
  }
  .script_review_sec.product_review_sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sticky-add-to-cart .sticky-add-to-cart__inner .container {
    width: 90%;
    flex-wrap: wrap;
    padding: 8px 0;
    align-items: flex-start;
    column-gap: 20px;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta {
    display: flex;
    width: calc(50% - 20px);
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__controls {
    width: calc(50% - 0px);
    column-gap: 10px;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__controls .button--add-to-cart {
    padding: 12px 15px;
  }
  .sticky-add-to-cart__inner  .sticky-add-to-cart__mobile-controls {
    display: none;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta .price {
    font-size: 16px;
     color: var(--mbi-muted);
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta .price .price__sale {
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: flex-end;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta .price .price__sale .price-item--regular {
    color: var(--mbi-muted);
    font-size: 16px;
    font-weight: 500;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta .price .price__sale .price-item--sale {
    color: var(--mbi-red);
    font-weight: 500;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta .sticky-add-to-cart__title {
    font-size: 16px;
  }
  .collectbanner_inner .collectbanner_content {
    padding-bottom: 40px;
  }
  .predictive-search .search-sidebar .search-sidebar__list {
    width: 100%;
  }
  .predictive-search .search-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .predictive-search .slick_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--mbi-pink);
  }
  .predictive-search .slick_arrow.feature_search_prev {
    left: 10px;
  }
  .predictive-search .slick_arrow.feature_search_next {
    right: 10px;
  }
  .predictive-search .slick_arrow.feature_search_prev svg {
    transform: scaleX(-1);
  }
  .predictive-search .feature_search_slider {
    padding: 0 25px;
  }
  .predictive-search .feature_search_slider .featurebar_list {
    display: flex !important;
    justify-content: center;
  }
  .socialimg_header .socialimg_head, 
  .socialimg_header .socialimg_head strong {
    font-size: 32px;
    line-height: 1;
  }
  .recomm_prod_arrows {
    position: relative;
    justify-content: center;
    margin-top: 20px;
  }
  .recomm_prod_inner:has(.recomm_prod_head) {
    margin-bottom: 40px;
  }
  .jobpost_lists .jobpost_list .jobpost_list_footer {
    flex-wrap: wrap;
  }
  .jobpost_lists .jobpost_list .jobpost_list_footer .job_buttonbox {
    width: 100%;
  }
  .jobpost_lists .jobpost_list .jobpost_list_footer .job_iconbox {
    width: calc(50% - 10px);
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting .boost-sd__sorting-list {
    left: unset;
  }
  .main_footer .footer_inner {
    padding: 40px 0;
  }
  .footer_inner .footer_col {
    width: 100%;
  }
}
/* =============================================================================
   Responsive: <=640px
   Purpose:
   - Small mobile product cards, wishlist grid and PDP gallery layout.
   ========================================================================== */
@media screen and (max-width: 640px) {
  .multicol_boxes .multicol_box {
    width: calc(100% - 0px);
    max-width: 320px;
  }
  .contact_form_box .contact_form .form_field.form_field_half {
    width: 100%;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__product-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px !important;
  }
  .boost-sd__product-list .product_outer {
    padding: 14px 10px;
  }
  .boost-sd__product-list .product_outer .boost-sd__button {
    padding: 10px 5px;
    font-size: 12px;
    border-radius: 8px;
  }
  .boost-sd__product-list .product_outer button.boost-sd__button span.cart-icon svg {
    width: 14px;
    height: 14px;
  }
  .boost-sd__product-list .product_outer .btns_wrapper .zoomywishid {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin-bottom: 3px;
  }
  .boost-sd__product-list .product_outer .btns_wrapper .zoomywishid .zoomywishidheart label .fa {
    font-size: 13px !important;
  }
  .mainprod_inner .mainprod_gallery {
    flex-direction: column-reverse;
  }
  .mainprod_gallery .mainprod_gslider {
    width: 100%;
  }
  .mainprod_gallery .mainprod_gslider .slick-track {
    display: flex;
    gap: 20px;
  }
  .mainprod_gallery .mainprod_gthumbnail {
    width: 100%;
  }
  .mainprod_gallery .mainprod_gthumbnail .slick-track {
    display: flex;
    flex-direction: row;
    margin: 0;
    gap: 10px;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta {
    width: 100%;
    align-items: center;
    display: none;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__meta img {
    width: 70px;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__controls {
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }
  .sticky-add-to-cart__inner .sticky-add-to-cart__controls .quantity_label {
    display: none;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_sale,
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_stock {
    width: 100%;
  }
  #ZoomyWishlistPage {
    grid-template-columns: repeat(1, 1fr);
  }
  .search_sec .grid-archive__content {
    grid-template-columns: repeat(1, 1fr);
  }
  .mainarticle_inner .mainarticle_products .mainarticle_products_lists product-card {
    width: calc(100% - 0px);
  }
  .mainprod_gallery .mainprod_gthumbnail .slick-arrow {
    position: absolute;
    top: 50%;
    height: 30px;
    width: 30px;
    background: var(--mbi-white);
    border-radius: 10px;
    z-index: 1;
    border: 2px solid var(--mbi-pink);
    transform: translateY(-50%);
  }
  .mainprod_gallery .mainprod_gthumbnail .slick-arrow.prev_slick {
    left: -20px;
  }
  .mainprod_gallery .mainprod_gthumbnail .slick-arrow.prev_slick svg {
    transform: rotate(180deg);
  }
  .mainprod_gallery .mainprod_gthumbnail .slick-arrow.next_slick {
    right: -20px;
  }
  .mainprod_gallery .mainprod_gthumbnail .slick-arrow.next_slick svg {
    transform: rotate(0deg);
  }
}
/* =============================================================================
   Responsive: <=576px
   Purpose:
   - Small mobile featured collections and job post footer stacking.
   ========================================================================== */
@media screen and (max-width: 576px) {
  .feature_collec_inner .feature_collec_lists {
    grid-template-columns: repeat(1, 1fr);
  }
  .jobpost_lists .jobpost_list .jobpost_list_footer .job_buttonbox {
    justify-content: flex-start;
  }
  .jobpost_lists .jobpost_list .jobpost_list_footer .job_iconbox {
    width: 100%;
  }
}
/* =============================================================================
   Responsive: <=480px
   Purpose:
   - Narrow mobile header, Boost toolbar and predictive search changes.
   ========================================================================== */
@media screen and (max-width: 480px) {
  .announce_list .announce_box {
    font-size: 13px;
  }
  .header_inner .header_logo {
    width: 75px;
  }
  .banner_sec .banner_overlay_img img {
    width: 100%;
    min-width: unset;
  }
  .variablecol_inner .variablecol_boxes {
    gap: 20px;
  }
  .variablecol_boxes .variablecol_box {
    width: 145px;
  }
  .boost-sd__filter-product-list .boost-sd-layout .boost-sd__filter-tree-vertical {
    top: 151px;
    height: calc(100% - 151px);
  }
  
   .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__toolbar-top-mobile {
    flex-wrap: wrap;
  }
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar-content .boost-sd__toolbar-top-mobile .boost-sd__sorting, 
  .boost-sd__filter-product-list .boost-product-listing-column .boost-sd__toolbar .boost-sd__filter-tree-toggle-button {
    flex: 0 0 100%;
    max-width: unset;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail {
    gap: 12px;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_stock, 
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_sale {
    padding: 8px 10px;
  }
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_stock:after,
  .boost-sd__filter-product-list .boost-sd__toolbar-content .mob_filter_avail .mob_in_sale:after {
    left: 14px;
  }
  .header__search .predictive-search {
    padding: 10px 10px;
  }
  .header__search .predictive-search .predictive-search-container {
    padding: 15px 15px;
  }
  .predictive-search .search-products__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .predictive-search .search-sidebar .search-sidebar__list > .search-sidebar__header {
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
  }
}
/* =============================================================================
   Responsive: <=400px
   Purpose:
   - Extra narrow collection/filter container adjustment.
   ========================================================================== */
@media screen and (max-width: 400px) {
  .boost-sd__filter-product-list .boost-sd-container {
    width: 95%;
  }
}
span.yotpo-text-link-title {
    font-size: 0px !important;
    /* margin-bottom: 20px; */
}
span.yotpo-text-link-title:before {
    /* display: none; */
    content: 'Product';
    font-size: 13px;
    margin-right: 8px;
    vertical-align: bottom;
    /* line-height: 5px; */
}
span.yotpo-text-link.yotpo-review-related-product {
    margin-bottom: 20px;
}
/* ========== Popup Css ============== */
/* Overlay background */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup box */
.popup-box {
  position: relative;
  background: var(--mbi-white);
  border-radius: 10px;
  padding: 7px;
  width: 60%;
  max-width: 100%;
  animation: fadeIn 0.3s ease-in-out;
  box-sizing: border-box;
  box-shadow: 0 0 8px 3px #646161;
}

/* Close button */
.popup-close {
  position: absolute;
  top: -18px;
  right: -18px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.popup-close img {
  width: 30px;
  height: 30px;
  display: block;
}

/* Inner content */
.popup-image img {
  max-width: 100%;
  display: block;
  margin: 0 auto 15px;
}


/* Catalogues grid layout – inherits theme typography */
.cat-grid {
  display: grid;
  gap: var(--gap, 24px);
  grid-template-columns: repeat(var(--cols-m, 1), 1fr);  /* mobile */
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(var(--cols-t, 2), 1fr); } /* tablet */
}
@media (min-width: 1025px) {
  .cat-grid { grid-template-columns: repeat(var(--cols-d, 4), 1fr); } /* desktop */
}

.cat-card { display: flex; flex-direction: column; gap: .4rem; }
.cat-cover { width: 100%; height: auto; display: block; border-radius: 12px; }
.cat-title { margin: 0.4em 0 0.2em 0; }   /* H3 styling inherits from theme */
.cat-date  { margin: 0; opacity: .75; }

/* Catalogue section: keep figtree buttons layout-safe */
.cat-section .cat-link .figtree_btn {
  display: inline-flex;       /* avoid inline-block layout quirks */
  align-items: center;        /* centers text nicely */
  gap: 0.4em;                /* space around the "| size" part */
  line-height: 1.1;           /* keeps pill height consistent */
  border-color: var(--mbi-blue-soft);
}
/* Catalogues section only */
.cat-section .cat-link a[class*="figtree_btn"] {
  display: inline-flex;
  align-items: center;
  /* don't rely on gap; we control the separator element instead */
}
.cat-section .cat-link .btn-sep::before {
  content: " | ";
}
.cat-section .cat-link .btn-sep {
  margin: 0 .4em; /* precise space around the pipe */
}
.cat-section .cat-link .btn-size {
  white-space: nowrap; /* keep "18.5 MB" together */
}


/* FREE GIFT IN MINI CART AND BASKET */

.mini-cart .mini-cart__footer .cart-summary__free-gift p, .cart__wrapper .cart-summary .cart-summary__free-gift p {
    font-family: Figtree;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 10px;
}
.mini-cart .mini-cart__footer .cart-summary__free-gift p, .cart__wrapper .cart-summary .cart-summary__free-gift p {
    background: var(--mbi-blue-soft);
    color: var(--mbi-white);
}
.mini-cart .mini-cart__footer .cart-summary__free-gift p.free-gift-qualified, .cart__wrapper .cart-summary .cart-summary__free-gift p.free-gift-qualified {
    background: var(--mbi-green);
    color: var(--mbi-black);
}
.mini-cart .mini-cart__footer .cart-summary__free-gift p span.icon, .cart__wrapper .cart-summary .cart-summary__free-gift p span.icon {
    height: 1.6rem;
    font-size: 1.6rem;
    color: inherit;  
}

.cart-summary__free-gift [hidden] { display: none !important; }

/* KOR PRODUCT LIMIT CUSTOM STYLING */
.close-custom {
    color: var(--mbi-white)!important;
}

.main-product__error p {
    font-weight: 700;
}

.main-product__error {
    margin-bottom: 20px;
    border: 2px solid red;
    border-radius: 15px;
}


/* =========================================
   Downloads filter pills — solid fill + stroke, hover/active invert
========================================= */

/* Make HTML [hidden] actually hide even if other CSS sets display */
.downloads_filters [hidden],
.downloads_{{ section.id }} [hidden]{
  display: none !important;
}

.downloads_filters .downloads_pill{
  /* colour comes from inline: style="--pill:#xxxxxx" */
  background: var(--pill, var(--color-text-links));
  border: 2px solid var(--pill, var(--color-text-links));
  color: var(--mbi-white);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 32px;
  border-radius: 15px;

  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;

  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .14s ease;
}

/* Hover = invert (white fill, coloured text) */
.downloads_filters .downloads_pill:hover{
  background: var(--mbi-white);
  color: var(--pill, var(--color-text-links));
}

/* Active = same as hover (invert) */
.downloads_filters .downloads_pill.is-active{
  background: var(--mbi-white);
  color: var(--pill, var(--color-text-links));
}

/* Optional: keep active “pressed” feeling, but don't move it */
.downloads_filters .downloads_pill.is-active:hover{
  transform: none;
}

/* Keyboard focus (nice UX + accessibility) */
.downloads_filters .downloads_pill:focus-visible{
  outline: 3px solid rgba(0,0,0,.18);
  outline-offset: 3px;
}

/* Mobile sizing */
@media (max-width: 767px){
  .downloads_filters .downloads_pill{
    padding: 12px 22px;
    font-size: 13px;
  }
}

/* Clear filters link */
.downloads_clear_filters{
  display: inline-block;
  margin: 6px auto 0;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  color: var(--color-text-links);
}

.downloads_clear_filters:hover{
  text-decoration: underline;
}

/* Downloads filter toggle headings */
.downloads_filters .downloads_filtertoggle{
  text-decoration: none;
  line-height: 1.2;
}

.downloads_filters .downloads_filtertoggle:hover{
  text-decoration: underline;
}

.downloads_filters .downloads_filtertoggle:focus-visible{
  outline: 3px solid rgba(0,0,0,.18);
  outline-offset: 3px;
}

/* Smooth filter transitions */
.downloads_list{
  transition: opacity .18s ease;
  will-change: opacity;
}

.downloads_list.is-fading{
  opacity: 0;
}

/* We only apply display:none AFTER fade-out */
.downloads_list.is-hidden{
  display: none !important;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .downloads_list{ transition: none !important; }
}


/*SUPPORT FOR YOUTUBE VIDEOS ON PDP */
.mainprod_slide figure {
  width: 100%;
  margin: 0;
}

.mainprod_slide figure:has(iframe),
.mainprod_slide figure:has(video),
.mainprod_slide figure:has(model-viewer) {
  aspect-ratio: 16 / 9;
}

.mainprod_video_embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mainprod_video_embed iframe,
.mainprod_video_iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.mainprod_thumb figure {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.mainprod_thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mainprod_thumb_play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  font-size: 18px;
  line-height: 1;
}


/* =============================================================================
   MBI Blog — Article content and pull quotes
   ========================================================================== */

.mainarticle_content {
  color: var(--mbi-text, #1d1d1d);
}

/* General article rhythm */
.mainarticle_content p {
  margin: 0 0 1.4rem 0;
  line-height: 1.35;
}

.mainarticle_content h2,
.mainarticle_content h3 {
  font-family: Figtree, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 3.2rem 0 1.2rem 0;
}

.mainarticle_content h2 {
  font-size: clamp(2rem, 1.7vw, 2.6rem);
}

.mainarticle_content h3 {
  font-size: clamp(1.7rem, 1.25vw, 2rem);
}

.mainarticle_content ul {
  margin: 0 0 3.2rem 0;
  padding-left: 2.2rem;
}

/* Pull quotes */
.mainarticle_content blockquote {
  position: relative;
  max-width: 82rem;
  margin: 3.4rem 0 4rem 0;
  padding: 0 0 0 8.6rem;
  color: var(--mbi-text, #1d1d1d);
  border: 0;
  background: transparent;
  font-size: clamp(1.8rem, 1.55vw, 2.2rem);
  line-height: 1.32;
  font-style: italic;
  font-weight: 100;
}

/* Yellow quote image */
.mainarticle_content blockquote::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 6.4rem;
  height: 5.2rem;
  background-image: url("/cdn/shop/files/quote_icon_52a60c6e-ae90-41bd-a906-912fdfcf27fe.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}

.mainarticle_content blockquote p,
.mainarticle_content blockquote p:last-of-type {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-weight: inherit;
}

.mainarticle_content blockquote footer {
  margin-top: 1.8rem;
  color: var(--mbi-blue, #495BC9);
  font-size: clamp(1.3rem, 0.9vw, 1.6rem);
  line-height: 1.3;
  font-style: normal;
  font-weight: 700;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .mainarticle_content p {
    line-height: 1.4;
  }

  .mainarticle_content h2,
  .mainarticle_content h3 {
    margin: 2.8rem 0 1rem 0;
  }

  .mainarticle_content blockquote {
    margin: 2.8rem 0 3.4rem 0;
    padding-left: 6rem;
    font-size: 1.9rem;
  }

  .mainarticle_content blockquote::before {
    width: 4.6rem;
    height: 3.8rem;
  }

  .mainarticle_content blockquote footer {
    margin-top: 1.4rem;
    font-size: 1.4rem;
  }
}

/* Article body links */
.mainarticle_sec .mainarticle_inner .mainarticle_content a:not(.link--no-style) {
  color: var(--mbi-blue, #495BC9);
  font-weight: 600;

  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 1px;
  text-underline-offset: 3.5px;
  text-decoration-color: currentColor;

  border-bottom: none;
}

/* Keep linked bold text blue too */
.mainarticle_sec .mainarticle_inner .mainarticle_content a:not(.link--no-style) strong {
  color: inherit;
  font-weight: 700;
}

/* Hover */
.mainarticle_sec .mainarticle_inner .mainarticle_content a:not(.link--no-style):hover {
  color: var(--mbi-blue-dark, #293372);
  text-decoration-color: currentColor;
}

/* =============================================================================
   MBI Blog — Pull quotes with right-side credit thumbnail
   ========================================================================== */


.mainarticle_content blockquote.mbi-quote {
  position: relative;
  margin: clamp(2.4rem, 3vw, 3.6rem) 0;
  padding: 0 0 0 clamp(7.2rem, 9vw, 9.6rem);
  border: 0;
}

/* Keeps your existing yellow quote graphic, but tightens its position/size */
.mainarticle_content blockquote.mbi-quote::before {
  top: 0.15rem;
  left: 0;
  width: clamp(4.8rem, 6vw, 6.8rem);
  height: clamp(4.2rem, 5.5vw, 6rem);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}

.mainarticle_content blockquote.mbi-quote .mbi-quote__content {
  max-width: 92rem;
}

.mainarticle_content blockquote.mbi-quote .mbi-quote__content p {
  margin: 0;
}

.mainarticle_content blockquote.mbi-quote footer.mbi-quote__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.1rem 0 0 0;
  color: #4568dc;
  font-weight: 700;
  line-height: 1;
}

.mainarticle_content blockquote.mbi-quote .mbi-quote__thumb {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.14);
  margin: 0!important;

}

/* Tighten spacing after quote blocks */
.mainarticle_content blockquote.mbi-quote + p,
.mainarticle_content blockquote.mbi-quote + h3 {
  margin-top: clamp(2rem, 3vw, 3.2rem);
}

@media screen and (max-width: 700px) {
  .mainarticle_content blockquote.mbi-quote {
    padding-left: clamp(5.4rem, 16vw, 6.4rem);
  }

  .mainarticle_content blockquote.mbi-quote::before {
    width: 4.4rem;
    height: 4rem;
  }

  .mainarticle_content blockquote.mbi-quote .mbi-quote__thumb {
    width: 2.8rem;
    height: 2.8rem;
  }
}