/** Shopify CDN: Minification failed

Line 126:0 Unexpected "}"

**/
/*
 * UPDATED custom styles with higher specificity.
 * File: assets/component-custom-search.css
 */

/* By adding '.header .search-modal__form' we make these rules win over the theme's default styles. */

.header .search-modal__form .field {
  position: relative;
  width: 100%;
}

.header .search-modal__form .search__input.field__input {
  width: 100%;
  height: 44px;
  padding: 5px 20px 5px 45px !important; /* Adding !important to padding to ensure it overrides defaults */
  border: 1px solid rgba(var(--color-foreground), 0.5);
  border-radius: 50px;
  background-color: transparent;
  font-size: 16px;
  -webkit-appearance: none;
  box-shadow: none; /* Explicitly remove any default shadows */
}

.header .search-modal__form .search__input.field__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-foreground), 0.5);
}

.header .search-modal__form .search__button.field__button {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The original code had a reset button; we hide it as it's not in the new design. */
.header .search-modal__form .reset__button {
  display: none;
}

/* Styling for predictive search results */
.header .predictive-search {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-top: none;
}

/* --- Final Step: Cart Button Styling (Using new custom class) --- */

.header .custom-cart-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #2e2e2e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  border: none;
}

.header .custom-cart-button:hover {
  opacity: 0.8;
   transform: scale(1.07);
}

/* Style the new SVG icon using its class */
.header .custom-cart-button .custom-cart-icon {
  stroke: #BE865C; /* Use 'stroke' for line-based SVGs, not 'fill' */
  width: 25px;
  height: 25px;
}

.header .custom-cart-button .cart-button-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  font-family: 'Montserrat', sans-serif; /* Your font family */
  color: #BE865C;
}

/* --- Account Button Styling --- */

/* Using a specific selector to override base.css */
.header .header__icon--account {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* Space between icon and text */
  background-color: transparent; /* Transparent background */
  color: #000; /* Black text */
  border: 1px solid #000; /* Black border */
  padding: 10px 20px;
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.header .header__icon--account:hover {
  background-color: rgba(0, 0, 0, 0.05); /* Optional: slight background color on hover */
  transform: scale(1.07);
}
}

/* Style the SVG icon inside the account button */
.header .header__icon--account .svg-wrapper svg {
  fill: #000; /* Black icon */
  width: 18px;
  height: 18px;
}

/* Style the text inside the account button */
.header .header__icon--account .account-button-text {
  font-size: 15px;
  font-weight: 550;
  line-height: 1;
  font-family: 'Poppins', sans-serif; /* Match your other button font */
}

/* --- Optional: Styles for the customer avatar image --- */

.header .header__icon--account .customer-avatar__image {
  width: 22px;
  height: 22px;
  border-radius: 50%; /* Ensures it's a perfect circle */
}

/* Remove black borders from search input */
.header .search-modal__form .field:after {
  box-shadow: none !important;
}

.header .search-modal__form .field:hover:after {
  box-shadow: none !important;
}

.header .search-modal__form .search__input.field__input:focus {
  outline: none !important;
  box-shadow: none !important; /* This removes the focus border too */
}

.header .search-modal__form .search__input.field__input:focus-visible {
  box-shadow: none !important;
}