/** Shopify CDN: Minification failed

Line 60:16 Unexpected "{"
Line 60:17 Expected identifier but found "%"
Line 66:41 Expected identifier but found whitespace
Line 66:43 Unexpected "{"
Line 66:52 Expected ":"
Line 66:92 Unexpected ","
Line 66:95 Unexpected "{"
Line 66:104 Expected ":"
Line 66:146 Unexpected ","
Line 66:149 Unexpected "{"
... and 153 more hidden warnings

**/
          @media only screen and (min-width: 1367px){
            .container-fluid.padding--narrow-header {
                padding-left: 5rem;
                padding-right: 5rem;
              }
            }
               @media only screen and (min-width: 992px) and (max-width: 1366px){
                  .container-fluid.padding--narrow-header {
                      padding-left: 2rem;
                      padding-right: 2rem;
                  }
                }
                  @media only screen and (min-width: 992px){
                      .header_bottom:not(.logo__left--menu-center) {
                          padding: 15px 0;
                        }
                  }
                   @keyframes smoothScroll {
                      0% {
                          transform: translateY(-40px);
                      }
                      100% {
                          transform: translateY(0px);
                      }
                  }
                   .header__sticky{
                     -webkit-transition: all 0.3s ease;
                    -moz-transition: position 1s;
                    -ms-transition: position 1s;
                    -o-transition: position 1s;
                    transition: all 0.3s ease;
                  }
                  /*
                  .header__sticky:not(.not--sticky-on-desktop).sticky {
                       position: fixed; 
                      width: 100%;
                      top: 0;
                      background: rgb(var(--color-background));
                      left: 0;
                      z-index: 98;
                      box-shadow: 0 0 7px rgb(0 0 0 / 15%);
                      animation: smoothScroll 0.7s both;
                  }
                  */
                {%- if header_type == 'logo__left--menu-bottom' or header_type == 'logo__center--menu-bottom' -%}
                  @media only screen and (max-width: 991px){
                    .header__sticky.not--sticky-on-desktop.sticky {
                      position: fixed;
                      width: 100%;
                      top: 0;
                      --color-background: {{ section.settings.sticky_color_background.red }}, {{ section.settings.sticky_color_background.green }}, {{ section.settings.sticky_color_background.blue }};
                      --color-foreground: {{ section.settings.sticky_text_color.red }}, {{ section.settings.sticky_text_color.green }}, {{ section.settings.sticky_text_color.blue }};
                      background: rgb(var(--color-background));
                      left: 0;
                      z-index: 98;
                      box-shadow: 0 0 7px rgb(0 0 0 / 15%);
                      animation: smoothScroll 0.7s both;
                    }
                  }
                {% endif %}
                  .logo__left--menu-center.sticky a.header__menu_item {
                      padding: 3.2rem 0;
                  }
                  /* Header Inner */
                  .header__inner {
                    align-items: center;
                    justify-content: space-between;
                  }

                  /* Header Logo */
                  .header__menu {
                    display: flex;
                  }
                  /* .header__menu_ul {
                    display: flex;
                    padding: 0;
                    list-style: none;
                    flex-wrap: wrap;
                    margin: 0;
                  } */
                  .header__menu_li {
                    position: relative;
                    flex-shrink: 0;
                  }
                  .header__menu_li:hover .header__menu_item {
                    color: rgba(var(--text-link-hover-color));
                  }
                  .header__menu_li:hover .header__menu_item::before {
                    right: auto;
                    left: 0;
                    width: 100%;
                  }
                  .header__menu_li_child_mega_menu {
                    position: static;
                  }
                  .header__menu_item {
                      line-height: 1;
                      position: relative;
                      display: block;
                      padding: 10px 0;
                      color: rgba(var(--color-foreground));
                      font-size: 1.8rem;
                      word-break: break-word;
                  }

                  /* Header Actions Buttons */
                  .header__actions {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                  }

                  .header__actions_btn {
                      position: relative;
                      display: flex;
                      padding: 8px;
                      color: rgba(var(--color-foreground));
                      background: none;
                      border: none;
                  }

                  .header__actions_btn:hover {
                    color: rgba(var(--color-base-text-link-hover));
                  }
                  .header__actions_btn svg {
                      width: 2.2rem;
                      height: auto;
                  }
                  {% if theme_rtl %}
                  .header__actions_btn--cart {
                    padding-left: 10px;
                  }
                  {% else %}
                  .header__actions_btn--cart {
                    padding-right: 10px;
                  }
                  {% endif %}
                  .header__actions_btn--cart > svg {
                        width: 2.5rem;
                    }
                  {% if theme_rtl %}
                  .header__actions_btn_cart_num {
                    font-size: 11px;
                    font-weight: 600;
                    line-height: 1;
                    position: absolute;
                    top: -2px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 18px;
                    height: 18px;
                    color: rgb(var(--color-button-text));
                    border-radius: 50%;
                    background-color: rgba(var(--color-button),var(--alpha-button-background));
                    letter-spacing: 0;
                    left: 0;
                }
                  {% else %}
                  .header__actions_btn_cart_num {
                    font-size: 11px;
                    font-weight: 600;
                    line-height: 1;
                    position: absolute;
                    top: -2px;
                    right: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 18px;
                    height: 18px;
                    color: rgb(var(--color-button-text));
                    border-radius: 50%;
                    background-color: rgba(var(--color-button),var(--alpha-button-background));
                    letter-spacing: 0;
                  }
                  {% endif %}
                  /* Off Canvas Mini Cart */
                  {% if theme_rtl %}
                    #mini-cart-drawer {
                      position: fixed;
                      width: 40rem;
                      height: 100%;
                      /* left: 0; */
                      z-index: 99;
                      top: 0;
                      opacity: 0;
                      visibility: hidden;
                      background-color: rgb(var(--color-background));
                      border-color: rgba(var(--color-foreground), 0.2);
                      transform: translateX(-100%);
                      transition: 0.5s ease 0s;
                    }
                    {% else %}
                    #mini-cart-drawer {
                      position: fixed;
                      width: 40rem;
                      height: 100%;
                      right: 0;
                      z-index: 99;
                      top: 0;
                      opacity: 0;
                      visibility: hidden;
                      background-color: rgb(var(--color-background));
                      border-color: rgba(var(--color-foreground), 0.2);
                      transform: translateX(100%);
                      transition: 0.5s ease 0s;
                    }
                    {% endif %}
                    @media only screen and (min-width: 992px) {
                      #mini-cart-drawer {
                        width: 48rem;
                      }
                    }
                    @media only screen and (max-width: 575px){
                      #mini-cart-drawer {
                        width: calc(100% - 2rem);
                      }
                    }
                  .cart-notification-wrapper {
                    position: relative;
                    z-index: 9;
                  }

                  .cart-notification__header {
                    align-items: flex-start;
                    display: flex;
                  }

                  .cart-notification__heading {
                    align-items: center;
                    display: flex;
                    flex-grow: 1;
                    margin-bottom: 0;
                    margin-top: 0;
                  }

                  .cart-notification__heading .icon-checkmark {
                    color: rgb(var(--color-foreground));
                    margin-right: 1rem;
                    width: 1.3rem;
                  }

                  /* Offcanvas Search bar css  */
                  #predictive__search_overlay {
                      position: fixed;
                      background: rgba(var(--color-background));
                      top: 0;
                      opacity: 0;
                      visibility: hidden;
                      z-index: 998;
                      transition: 0.5s ease 0s;
                  }
                   #predictive__search_overlay:not(.predictive--search-drawer) {
                      width: 100%;
                      height: 200px;
                      left: 0;
                      transform: translateY(-100%);
                      justify-content: center;
                      display: flex;
                  }

                {% if theme_rtl %}
                  #predictive__search_overlay.predictive--search-drawer {
                        width: 100%;
                        height: 100%;
                        left: 0;
                        transform: translateX(-100%);
                        max-width: 45rem;
                    }
                  {% else %}
                  #predictive__search_overlay.predictive--search-drawer {
                    width: 100%;
                    height: 100%;
                    right: 0;
                    transform: translateX(100%);
                    max-width: 45rem;
                  }
                  {% endif %}

                  div#predictive__search_overlay.active {
                      opacity: 1;
                      visibility: visible;
                  }
                  #predictive__search_overlay.predictive--search-drawer.active {
                    transform: translateX(0);
                  }
                  #predictive__search_overlay:not(.predictive--search-drawer).active {
                      transform: translateY(0);
                  }
                  .search__content_inner:not(.predictive--search-drawer-inner) {
                      align-items: center;
                      padding: 0 20px;
                     display: flex;
                      justify-content: center;
                      height: 100%;
                      flex-direction: row-reverse;
                      width: 600px;
                  }
                  .search__content_inner:not(.predictive--search-drawer-inner) button#search__close_btn {
                      margin-left: 30px;
                  }
                  predictive-search.search-modal__form {
                      position: relative;
                  }
                  /* Header Mobile css  */
                  .mobile__menu_bar .icon-hamburger {
                      width: 28px;
                      color: rgba(var(--color-foreground));
                  }

                  /* Submenu css */
                {% if theme_rtl %}
                .header__sub_menu {
                    position: absolute;
                    z-index: 98;
                    top: 100%;
                    right: 0;
                    visibility: hidden;
                    width: 220px;
                    margin: 0;
                    margin-top: 20px;
                    padding: 20px 0;
                    list-style: none;
                    transition: var(--transition);
                    opacity: 0;
                    box-shadow: 0 10px 20px rgba(var(--color-foreground), 0.15);
                  }
                {% else %}
                .header__sub_menu {
                    position: absolute;
                    z-index: 98;
                    top: 100%;
                    left: 0;
                    visibility: hidden;
                    width: 220px;
                    margin: 0;
                    margin-top: 20px;
                    padding: 20px 0;
                    list-style: none;
                    transition: var(--transition);
                    opacity: 0;
                    box-shadow: 0 10px 20px rgba(var(--color-foreground), 0.15);
                  }
                 {% endif %}
                  .menu__item_has_children  details-disclosure>details {
                      position: initial;
                  }
                  .header__sub_menu_li {
                    position: relative;
                    display: block;
                  }

                  .header__sub_menu_item {
                    line-height: 1;
                    display: block;
                    padding: 12px 2rem;
                  }
                  .header__mega_menu {
                    position: absolute;
                    z-index: 99;
                    left: 0;
                    visibility: hidden;
                    margin: 0;
                    margin-top: 20px;
                    padding: 2.5rem 0;
                    list-style: none;
                    transition: var(--transition);
                    opacity: 0;
                    box-shadow: 0 3px 5px rgba(var(--color-foreground),.1);
                    right: 0;
                    border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
                    max-height: calc(100vh - 20rem);
                    overflow-y: auto;
                    overflow-x: hidden;
                }
                  .header__mega_menu--inner {
                      padding: 0;
                  }
                  .header__mega_menu_li {
                    position: relative;
                    display: block;
                    flex: 1 0 auto;
                  }
                  .header__mega_menu_item {
                      font-size: 1.6rem;
                      font-weight: 700;
                      line-height: 1;
                      position: relative;
                      display: block;
                      margin-bottom: 0;
                      padding: 12px 0;
                  }
                  /* Mega Menu Sub Menu */
                  .header__mega_sub_menu {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                  }

                  .header__mega_sub_menu_li {
                    display: block;
                  }
                  .header__mega_sub_menu_item {
                      line-height: 2.2rem;
                      display: block;
                      padding: 10px 0;
                      font-size: 1.5rem;
                  }
                  span.submenu__icon svg {
                      height: 8px;
                      position: unset;
                      right: unset;
                      top: unset;
                  }
                  {% if theme_rtl %}
                    span.submenu__icon {
                      margin-right: 2px;
                  }
                  {% else %}
                  span.submenu__icon {
                    margin-left: 2px;
                  }
                  {% endif %}
                  a.header__logo_link {
                      word-break: break-word;
                      max-width: 300px;
                      padding: 10px 0;
                      line-height: 1;
                  }
                    {% if theme_rtl %}
                    .header__actions > button {
                      padding-right: 0;
                    }
                    {% else %}
                    .header__actions > button {
                      padding-left: 0;
                    }
                  {% endif %}
                  @media only screen and (max-width: 991px){
                    a.header__logo_link {
                      text-align: center;
                    }
                    .header__actions a:first-child {
                      padding-left: 0;
                    }
                  }
                  @media only screen and (max-width: 600px){
                    a.header__logo_link {
                      max-width: 230px;
                    }
                  }
                  @media only screen and (max-width: 400px){
                    a.header__logo_link {
                      max-width: 160px;
                    }
                  }

                  {% if theme_rtl %}
                     {% unless header_type == "logo__center--menu-left" -%}
                    .header__menu_li + .header__menu_li {
                          margin-right: 2.2rem;
                      }
                      @meida only screen and (min-width: 1200px){
                        .header__menu_li + .header__menu_li {
                          margin-right: 3.2rem;
                        }
                      }
                     {% endunless %}

                     {% if header_type == "logo__center--menu-left" -%}
                    .header__menu_li + .header__menu_li {
                          margin-right: 2.5rem;
                      }
                     {% endif %}
                    {% else %}
                      {% unless header_type == "logo__center--menu-left" -%}
                        .header__menu_li + .header__menu_li {
                         margin-left: 2.2rem;
                        }
                        @meida only screen and (min-width: 1200px){
                          .header__menu_li + .header__menu_li {
                             margin-left: 3.2rem;
                          }
                        }
                       {% endunless %}

                       {% if header_type == "logo__center--menu-left" -%}
                      .header__menu_li + .header__menu_li {
                            margin-left: 2.5rem;
                        }
                       {% endif %}
                    {% endif %}

                    {%- if header_type == "logo__center--menu-bottom" or header_type == "logo__left--menu-bottom" -%}
                    @media only screen and (min-width: 992px){
                      a.header__menu_item {
                        padding-bottom: 3rem;
                        padding-top: 3rem;
                      }
                      .header__actions_btn--search.d-none{
                        display: none !important;
                      }
                    }
                    .sticky a.header__menu_item {
                        padding-bottom: 2.8rem;
                        padding-top: 2.8rem;
                    }
                    {%- endif -%}

                    {%- if header_type == "logo__left--menu-bottom" or header_type == "logo__center--menu-bottom" -%}
                    @media only screen and (min-width: 992px){
                      button.header__actions_btn.header__actions_btn--search {
                        display: unset;
                      }
                      {% if theme_rtl %}
                      .search__input--inline-header .search__input {
                          padding-right: 15px;
                          padding-left: 8rem;
                      }
                      {% else %}
                      .search__input--inline-header .search__input {
                            padding-right: 8rem;
                        }
                      {% endif %}
                    }
                    {% if theme_rtl %}
                    .search__button:not(.popup__search--button) {
                      background: 0;
                      right: auto;
                      left: 0;
                      background: rgba(var(--color-button),var(--alpha-button-background));
                      height: 100%;
                      padding: 0 1.5rem;
                      color: rgb(var(--color-button-text));
                    }
                    {% else %}
                    .search__button:not(.popup__search--button) {
                      background: 0;
                      right: 0;
                      background: rgba(var(--color-button),var(--alpha-button-background));
                      height: 100%;
                      padding: 0 1.5rem;
                      color: rgb(var(--color-button-text));
                    }
                    {% endif %}
                    @media only screen and (min-width: 1500px){
                      .logo__menu--two-lines .header__menu_li + .header__menu_li {
                          margin-left: 3.5rem;
                      }
                    }
                    .header__menu--bar.logo__menu--two-lines {
                      border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
                    }
                    @media only screen and (min-width: 992px){
                      .header--border-bottom{
                        border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
                      }
                    }
                    .search__input_field .input__field {
                        border-color: rgba(var(--color-foreground), 0.1);
                    }
                     .select__filter--search-box {
                    display: flex;
                  }
                  .select__filter--search-box .header-global-search-select {
                    flex-shrink: 0;
                    width: auto;
                    display: block;
                    max-width: 15rem;
                  }
                  .select__filter--search-box .search__input_field {
                    flex-grow: 0;
                    flex-shrink: 1;
                    width: 100%;
                    flex-basis: auto;
                  }
                    {%- endif -%}


                  {% if theme_rtl %}
                    @media only screen and (max-width: 991px){
                      a.header__logo_link {
                        margin-left: -32px;
                      }
                    }
                  {% else %}
                    @media only screen and (max-width: 991px){
                      a.header__logo_link {
                        margin-right: -32px;
                      }
                    }
                    {% endif %}

                    .header__heading-logo {
                      width: 100%;
                      height: auto;
                    }
                    .search__button .icon {
                      height: 25px;
                      width: 25px;
                    }

                  .categories__menu--header {
                    --color-background: {{ section.settings.cat_label_bg.red }}, {{ section.settings.cat_label_bg.green }}, {{ section.settings.cat_label_bg.blue }};
                    --color-foreground: {{ section.settings.cat_label_text.red }}, {{ section.settings.cat_label_text.green }}, {{ section.settings.cat_label_text.blue }}
                  }
                  .logo__left--menu-center a.header__menu_item{
                    padding: 0 0 20px;
                  }
                .header_bottom:not(.transparent--header-bottom) {
                  box-shadow: 0 0.3rem 1rem -0.45rem rgba(var(--color-foreground), 0.1);
              }

            predictive-search:not([loading]) .predictive-search__heading .spinner,
            predictive-search:not([loading]) .predictive-search__loading-state,
            predictive-search:not([loading]) .predictive-search-status__loading {
              display: none;
            }
            {% if theme_rtl %}
            .select__filter--search-box .select__field_form > select {
              border-radius: 0;
              border-left-color: transparent;
              padding-left: 3.5rem;
            }
              {% else %}
              .select__filter--search-box .select__field_form > select {
              border-radius: 0;
              border-right-color: transparent;
              padding-right: 3.5rem;
            }
              {% endif %}
        /*   Transparent header */
          .transparent--header {
            position: absolute;
            width: 100%;
            z-index: 98;
            transition: .3s;
        }
        .transparent_header_color{
            --color-foreground: {{ section.settings.transparent_color_foreground.red }}, {{ section.settings.transparent_color_foreground.green }}, {{ section.settings.transparent_color_foreground.blue }};
          }
          .transparent--header:hover {
              --color-foreground: {{ section.settings.transparent_text_color.red }}, {{ section.settings.transparent_text_color.green }}, {{ section.settings.transparent_text_color.blue }};
              --color-background: {{ section.settings.transparent_color_background.red }}, {{ section.settings.transparent_color_background.green }}, {{ section.settings.transparent_color_background.blue }};
              background: rgba(var(--color-background));
          }
        .header__logo_link + .transparent__header--hover-logo {
          display: none;
      }
      .transparent--header-hover-logo:hover .header__logo_link + .transparent__header--hover-logo {
        display: block;
    }

    .transparent--header-hover-logo:hover .header__logo_link:first-child {
        display: none;
    }
    .transparent--header-hover-logo .sticky .header__logo_link + .transparent__header--hover-logo {
      display: block;
  }

  .transparent--header-hover-logo .sticky .header__logo_link:first-child {
      display: none;
  }
/* ===============================
   ADAPTIVE HEADER SEARCH
================================ */

/* Default = DESKTOP */
.adaptive-search {
  display: block;
  width: 600px;
  margin-left: 40px;
}

/* Keep it inline with logo/menu */
@media (min-width: 768px) {
  .adaptive-search {
    position: relative;
    margin-top: 0;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .adaptive-search {
    width: 100%;
    margin: 10px 0 0;
    padding: 0 16px;
    order: 4;
  }

}

/* ===============================
   MOBILE HEADER ICON ORDER FIX
================================ */

@media (max-width: 767px) {

  /* Hamburger menu */
  .mobile__menu_bar {
    order: 1;
  }

  /* Logo in center */
  .header__logo {
    order: 2;
    margin: 0 auto;
  }

  /* Cart on right */
  .header__actions {
    order: 3;
    margin-left: auto;
  }
}



  /* pick your pet */

  .custom-productcat.product__section.product__categories--section.section-template--20143015690469__collection_list_cMNgLc-padding{
     padding-top: 50px;
     padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
.custom-productcat.product__section.product__categories--section.section-template--20143015690469__collection_list_cMNgLc-padding{
     padding-top: 40px;
     padding-bottom: 15px;
}
}

.product__categories--icon {
display: none;
}

.product__categories--content {
    justify-content: center !important;
}

.product__section--inner .col {
   padding: 0 15px !important;
}

@media only screen and (max-width: 767px) {

.product__section--inner .col {
   margin: 0 !important;
}

}

.collection-card--media__wrapper {
 position: relative;
}

.product__section--inner .col .collection-card--media__wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}

.product__section--inner .col:nth-child(odd) .collection-card--media__wrapper::before {
    background-image: url(/cdn/shop/files/shape_01.png?v=1770019384);
z-index: 9;
}

.product__section--inner .col:nth-child(even) .collection-card--media__wrapper::before {
    background-image: url(/cdn/shop/files/shape_02.png?v=1770019383);
z-index: 9;
}

.product__categories--content__maintitle {
color: #1D1D1D;
text-align: center;
font-family: "Parkinsans", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.8px;
}

.product__categories--content__left {
text-align: center;
}

.product__categories--content__subtitle {
color: #1D1D1D;
text-align: center;
font-family: "Parkinsans", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: -0.56px;
}


/* mega menu custom */

/* Base Navigation */
.header__menu_ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.header__menu_item {
  color: #000 !important;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  padding: 15px 10px !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.pp-top-arrow { display: flex; align-items: center; opacity: 0.8; transition: transform 0.3s ease; }
.header__menu_li.pp-custom-mega-trigger { position: static !important; }

/* Rotates arrow when menu is open */
.header__menu_li.is-open .pp-top-arrow { transform: rotate(180deg); }

/* Mega Menu Panel Base */
.pp-custom-mega-panel, .header__sub_menu {
  position: absolute !important;
  top: 100% !important;
  background: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
  display: none; 
  z-index: 999;
  border-top: 1px solid #eee;
}

.header__sub_menu {
  min-width: 200px;
  padding: 10px 0;
  left: auto;
}

.header__sub_menu_li a {
  padding: 8px 20px;
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

/* Mega Panel width/position */
.pp-custom-mega-panel {
  left: 0 !important;
  width: 100vw !important;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  padding: 40px 0 !important;
}

/* OPEN STATE */
.header__menu_li.is-open .pp-custom-mega-panel,
.header__menu_li.is-open .header__sub_menu { 
  display: block !important; 
}

/* MASONRY LAYOUT */
.pp-custom-masonry-container {
  column-count: 6; 
  column-gap: 40px; 
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
}

.pp-custom-column {
  break-inside: avoid; 
  display: inline-block; 
  width: 100%;
  margin-bottom: 30px; 
}

/* Typography */
.pp-custom-head {
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.pp-custom-title-link {
  font-weight: 700 !important;
  font-size: 17px !important;
  color: #121212 !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-custom-grandchild-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pp-custom-grandchild-list li a {
  display: block !important;
  padding: 4px 0 !important;
  font-size: 14px !important;
  color: #555 !important;
  text-decoration: none !important;
}

.pp-custom-grandchild-list li a:hover {
  text-decoration: underline !important;
  color: #000 !important;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .pp-custom-masonry-container { column-count: 3; }
  .header__menu_ul {width:66%;}
  .header__menu_ul li {padding:0px;}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    
  .header__menu_ul {width:76%;}
  .header__menu_ul li {padding:0px;}
}
@media screen and (max-width: 991px) {
  .pp-custom-mega-panel { position: relative !important; width: 100% !important; margin: 0 !important; padding: 20px 0 !important;}
  .pp-custom-masonry-container { column-count: 1 !important; padding: 0 20px !important; }
}

/* product details page */

.filter__toolbox {
    background: #44c6fd;
    border-radius: 10px;
    padding: 20px 30px !important;
    color: #fff;
}

.filter__toolbox button.sortby__button {
    color: #fff !important;
    font-family: Parkinsans, sans-serif;
}

.filter__toolbox .product-count__text {
    color: #fff !important;
    font-family: Parkinsans, sans-serif;
}

.filter__toolbox button.sortby__button>svg {
    fill: #fff !important;
}

.facets-container {
  background: #44c6fd;
    color: #333;
    font-family: Parkinsans, sans-serif;
    padding: 30px;
    border-radius: 20px;
}

.facets-container .facets__summary {
    color: #fff !important;
    font-family: Parkinsans, sans-serif;
}

.facets-container .facets__heading {
  color: #fff !important;
  font-family: Parkinsans, sans-serif;
}

.custom-description-content p, .custom-description-content ul li {
    font-family: Parkinsans, sans-serif;
}

.brand-name-text {
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: Parkinsans, sans-serif !important;
}

.product__card {
  background: none !important;
}


.vendor-slider-main .swiper-button-next, .vendor-slider-main .swiper-button-prev {
   margin-top: 0px !important;
}

.circular-card-info .circular-card-title, .circular-card-info .circular-card-count {
  font-family: Parkinsans, sans-serif !important;
}

.category-title, .brand-list-title, .related-searches-container h3 {
  font-family: Parkinsans, sans-serif !important;
  font-weight: 500 !important;
}

.related-searches-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

.template-search__header h1 {
    color: #1d1d1d;
    text-align: center;
    font-family: Parkinsans, sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2px;
    text-transform: capitalize;
}

.shopify-payment-button {
    width: 320px !important;
    margin-top: 35px;
}

.shopify-payment-button .accelerated-checkout-button {
    width: 100% !important;
}

.shopify-payment-button .accelerated-checkout-button .gravity-button {
  background-color: #00a1e5 !important;
}

.product.row > div {
  width: 50% !important;
  padding: 0 25px;
}

.custom-pill-button {
    background-color: #00a1e5 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    width: 100% !important;
    border-radius: 50px !important;
    font-family: Parkinsans, sans-serif !important;
    margin-top: 10px !important;
    transition: opacity 0.3s ease !important;
    width: 265px !important;
}

.template-search .container {
  width: 100%;
  max-width: 1600px;
}

@media only screen and (max-width: 767px) {

  .vendor-slider-main .swiper-button-next, .vendor-slider-main .swiper-button-prev {
    margin-top: 0 !important;
  }

  .template-search__header h1 {
    font-size: 35px;
  }

  .section-template--21326153220325__main-padding {
    margin-top: 35px !important;
  }

  .pagination__list>li:not(:last-child) {
      margin-right: 0px !important;
  }

  .pagination__item {
    height: 35px !important;
    width: 35px !important;
  }

  .facets-container {
      padding: 15px;
      border-radius: 10px;
  }

  .product.row > div {
      width: 100% !important;
      padding: 0 10px;
  }

  .custom-pill-button {
      margin-top: 0 !important;
      width: 180px !important;
  }

  .tab_content {
    font-size: 15px !important;
  }

  .product_tab_list li {
    font-size: 19px !important;
  }

  .circular-cat-slider {
    padding: 0 !important;
  }

  .vendor-slider-main {
    padding: 0 !important;
  }

  .custom-pill-button-card {
    padding: 8px 16px !important;
    font-size: 13px !important;
    width: 100% !important;
  }

  .category-title, .brand-list-title, 
  .related-searches-container h3 {
      margin-left: 0 !important;
      text-align: center;
  }

  .search-pills-wrapper {
    margin: 30px 0 0 !important;
  }

  .search-pills-wrapper .search-pill {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }

  .collection-footer-description {
      padding-top: 25px !important;
      margin-top: 35px !important;
  }

  .blog__section  {
    padding-bottom: 50px !important;

  }

}


/* collection list page add to cart and rating */

.custom-pill-button-card {
  background-color: #FFC107; /* Your navy brand color */
  color: #000000;
  border-radius: 50px;
  padding: 10px 21px;
  font-size: 14px;
  margin:0 auto;
  /* width: 62%; */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Parkinsans, sans-serif !important;
}

.custom-pill-button-card:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.custom-pill-button-card:hover {
  background-color:rgb(228, 172, 4);
}

.custom-pill-button-card.sold-out {
  background-color: #cccccc;
  cursor: not-allowed;
}

  /* This ensures the entire area is clickable and follows your navy theme */
  .custom-yotpo-link {
    cursor: pointer !important;
  }
  .custom-yotpo-link .yotpo-bottomline-text {
    color: #FFC107 !important; /* Your navy brand color */
    text-decoration: none !important;
    font-weight: 500;
  }
  .custom-yotpo-link:hover .yotpo-bottomline-text {
    text-decoration: underline !important;
  }

  .yotpo.bottomLine {
  margin: 0px 0px 0px 0px;
  text-align: center;
  }

.yotpo .yotpo-bottomline .yotpo-icon-star, .yotpo .yotpo-bottomline .yotpo-icon-half-star, .yotpo .yotpo-bottomline .yotpo-icon-empty-star {
  color: #FFC107 !important; 
}

.section-template--21326151811301__banner-margin {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.section-template--21326151811301__banner-padding {
        padding-top: 12px !important;
        padding-bottom: 10px !important;

        
}

.boost-sd__search-form-wrapper {
  display: none;
}
.spaced-section .page-width{width:100%; max-width:1400px;}

.boost-sd-layout, .boost-sd__search-result-toolbar {
  width: 100%;
  max-width: 1320px !important; }

.boost-sd__product-image-img{height: 300px !important;}  
.boost-sd__product-image-wrapper{aspect-ratio: auto !important;}