/** Shopify CDN: Minification failed

Line 38:12 Expected ":"
Line 188:1 Unexpected "/"

**/
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.font-family {
  font-family: "Advent Pro", serif;
}
.page-width {
  max-width: 1920px;
}

.header__icons .icon path {
  fill: #a3177d;
}

.header__inline-menu {
  text-align: center;
}

.custom_slideshow_items img,
.collection_img_inn img {
  width: 100%;
  display: block;
}

.custom_slideshow_items {
  position: relative;
}

.custom_slideshow_text {
  position: absolute;
  width: 100%;
  top: 50%;F
  transform: translateY(-50%);
}

.button {
  text-transform: uppercase;
}

.custom_slideshow_inner_text {
  max-width: 520px;
}

.custom_slideshow_inner_text h2,
.custom_slideshow_inner_text .content p {
  margin: 0;
  font-weight: 400;
}

.custom_slideshow_inner_text .content {
  padding: 0 0 7px;
}

.text_position_center,
.text_position_right {
  margin: 0 auto;
}

.text_position_right {
  margin-right: 0;
}

.collection-list-new ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

.collection-list-new ul.column_count_5 li { width: 20%; }
.collection-list-new ul.column_count_4 li { width: 25%; }
.collection-list-new ul.column_count_3 li { width: 33.33%; }
.collection-list-new ul.column_count_2 li { width: 50%; }
.collection-list-new ul.column_count_1 li { width: 100%; }

.collection-item > a,
.collection_detail_inn a {
  width: 100%;
  display: block;
  text-decoration: none;
}

.collection_detail_inn {
  text-align: center;
}

.collection_detail_inn h2 {
  font-size: 16px;
  color: #000;
  margin: 10px 0 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 40px;
  font-family: var(--font-body-family);
}

.custom_collection_list .page-width {
  max-width: 100%;
}

.title, .title-wrapper-with-link {
  margin: 38px 0;
}

h1, .h1 {
  font-size: 45px;
  color: #a3177d;
}

.title:after {
  width: 200px;
  height: 3px;
  content: "";
  display: table;
  background: #a3177d;
  margin: 10px auto 0;
}

.collection__title .title {
  text-align: center;
}

.card__heading a {
  font-size: 15px;
  color: #333;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--font-body-family);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 36px;
  text-decoration: none !important;
}

.price {
  text-align: center;
  font-size: 18px !important;
}

.price span {
  color: #a3177d;
}

/* ...rest of original utility styles and structure remains unchanged... */

@media screen and (max-width: 768px) {
  .grid,
  .collection-list-new ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid__item,
  .collection-list-new ul li {
    width: 48% !important;
    margin: 1%;
    box-sizing: border-box;
  }

  .page-width {
    max-width: 100% !important;
    padding: 0 1.5rem;
  }
}

/*
@media screen and (max-width: 768px) {
  /* Hide extra search icon */
  .header__search_mob {
    display: none !important;
  }
*/
  /* Optional: if the duplicate is not .header__search_mob, try this */
/* 
.header__icon--search + .header__icon--search {
    display: none !important;
  }
}
*/
@media screen and (min-width: 769px) {
  .header__search_mob {
    display: none !important;
  }
}

/* Desktop: white button with magenta border + hover effect */
@media screen and (min-width: 769px) {
  .button {
    background-color: #fff;
    color: #a3177d !important;
    border: 1px solid #a3177d;
    text-transform: uppercase;
    padding: 12px 24px;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .button:hover {
    background-color: #a3177d;
    color: #fff !important;
  }
}

/* Mobile: always magenta background with white text */
@media screen and (max-width: 768px) {
  .button {
    background-color: #a3177d !important;
    color: #fff !important;
    border: 1px solid #a3177d;
    font-size: 14px;
    padding: 10px 16px;
    line-height: 1.2;
    box-sizing: border-box;
  }
}
/* ============================= */
/* FINAL HEADER AND SEARCH FIXES */
/* ============================= */

/* Fix logo scaling and vertical alignment */
/*
.header__heading-logo img {
  max-height: 110px !important;
  height: auto !important;
  width: auto !important;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
*/
/* CONSISTENT SEARCH BAR: Desktop + Mobile */
/*
.search-modal__form {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end;
  height: 38px !important;
  max-width: 280px !important;
  margin-left: auto;
  box-sizing: border-box;
}
*/
/* Search input box */
/*.search-modal__form .field__input {
  height: 38px !important;
  border: 1px solid #a3177d !important;
  border-right: none !important;
  border-radius: 20px 0 0 20px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  width: 100%;
  box-sizing: border-box;
}
*/
/* Search button */
/*.search-modal__form .field__button {
  height: 38px !important;
  width: 40px !important;
  background-color: #a3177d !important;
  border: 1px solid #a3177d !important;
  border-radius: 0 20px 20px 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
} 
*/
/* White search icon inside button */
/*.search-modal__form .field__button svg path {
  fill: #fff !important;
}
*/
/* Prevent header elements from shifting */
.header__icon, 
.header__menu-item,
.header__heading-link {
  position: relative;
  transition: none;
}

/* Increase menu font size */
.header__menu-item {
  font-size: 20px !important; /* Adjust this value as needed */
}

/* Menu font normalization */
.menu-drawer__menu-item,
.header__menu-item,
.mega-menu__link {
  font-weight: normal !important;
}

/* Hide only the modal overlay search */
/*.search-modal__form form {
  display: none !important;
}
*/
/* Temporarily comment out ALL search-related CSS in Custom CSS */
/* 
/*.search-modal__form {
  display: none !important;
}
*/
/* === Fix: Make collection banner image responsive === */
.collection-hero__image-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
