/* === LUPA Search Box === */

#lupa-search-box #lupa-search-box-panel {
	z-index: 99;
}
#lupa-search-box #lupa-search-box-panel,
#lupa-search-box #lupa-search-box-panel *,
.lupa-main-panel {
  border-radius: 0 !important;
}

#lupa-search-box #lupa-search-box-input {
  position: relative;
}

#lupa-search-box::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.05); /* grey overlay */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 99;
}

/* === SHOW OVERLAY WHEN SEARCH IS ACTIVE === */
#lupa-search-box:focus-within::before {
  opacity: 1;
  pointer-events: auto;
}

#lupa-search-box,
#lupa-search-box * {
  z-index: 100;
}


#lupa-search-box-input::before {
  content: "\e91e"; /* icon-search (adjust if needed) */
  font-family: 'inbeauty'; /* or whatever your theme uses */
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #000;
  pointer-events: none;
  z-index: 2;
  line-height: 1;
}

#lupa-search-box-input::after {
  display: none !important;
  content: none !important;
}

/* === LUPA INPUT CONTAINER === */
#lupa-search-box-input {
  height: 42px; /* match original */
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* === INPUT FIELD ITSELF === */
#lupa-search-box-input .lupa-search-box-input-field {
  height: 100%;
  border: none !important;
  background: transparent;
  padding: 0 14px 0 44px !important; /* left space for icon */
  font-family: inherit;
  font-size: 14px;
  color: #000;
  line-height: 46px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* === REMOVE DEFAULT FOCUS STYLES === */
#lupa-search-box-input .lupa-search-box-input-field:focus {
  outline: none;
  box-shadow: none;
}

/* === PLACEHOLDER (match original) === */
#lupa-search-box-input .lupa-search-box-input-field::placeholder {
  color: #999;
  opacity: 1;
}

/* === HOVER / FOCUS BORDER (theme-like) === */
#lupa-search-box-input:focus-within {
  border-color: #000;
}

/* === SHARED INPUT METRICS (REAL + HINT) === */
#lupa-search-box-input input {
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 14px 0 44px !important;
  font-family: inherit;
  font-size: 14px;
  line-height: 46px;
  box-sizing: border-box;
}

/* === HINT (GHOST TEXT) === */
#lupa-search-box-input .lupa-hint {
  color: #bbb;
  font-weight: 400;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

/* Container: allow inline flow + wrapping */
#lupa-search-box #lupa-search-box-suggestions {
  padding: 8px 12px;
  margin: 0;
  line-height: 1.6;
  white-space: normal;
}

/* Each suggestion becomes inline */
#lupa-search-box-suggestions .lupa-suggestion {
  display: inline;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
}

/* Text styling */
#lupa-search-box-suggestions .lupa-suggestion-value {
  font-family: 'Text Regular';
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: inline;
  margin: 0;
  padding: 0;
}


/* === COMMAS === */
#lupa-search-box-suggestions .lupa-suggestion::after {
  content: ",";
  color: #000;
}

/* === NO COMMA AFTER LAST === */
#lupa-search-box-suggestions .lupa-suggestion:last-child::after {
  content: "";
}

#lupa-search-box-suggestions .lupa-suggestion-value strong {
  font-family: 'Text SemiBold';
  font-weight: 600;
  opacity: 1;
  color: #000;
}

#lupa-search-box-suggestions .lupa-suggestion-value:hover {
  text-decoration: underline;
}

/* === REMOVE LUPA HOVER BACKGROUND === */
#lupa-search-box-suggestions .lupa-suggestion:hover {
  background: none !important;
}

/* === REMOVE UNDERLINE / LINK STYLES === */
#lupa-search-box-suggestions .lupa-suggestion-value,
#lupa-search-box-suggestions .lupa-suggestion-value:hover {
  text-decoration: none !important;
  color: #000 !important;
}


/* === STRONG (matched part) STAYS BLACK === */
#lupa-search-box #lupa-search-box-suggestions strong {
  color: #000;
  font-weight: 600;
}

/* === PREVENT HOVER COLOR INHERITANCE === */
#lupa-search-box-suggestions .lupa-suggestion:hover,
#lupa-search-box-suggestions .lupa-suggestion:hover * {
  color: #000 !important;
}

/* === DOCUMENT PANEL (PRODUCTS SECTION) ALIGNMENT === */
.lupa-panel-document-index {
  padding-left: 12px !important; /* match suggestions container */
}

/* === "PRODUKTAI:" TITLE STYLING === */
.lupa-panel-document-index .lupa-panel-title {
  margin: 12px 0 8px 0;
  padding: 0;

  font-family: 'Text SemiBold';
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.28px;

  line-height: 1.2;
}

#lupa-search-results .lupa-similar-results-label {
	color: #000000;
  font-family: 'Heading';
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 40px;
}


#lupa-search-box-products .lupa-search-box-product {
	margin-bottom: 20px !important;
}

#lupa-search-box-products .lupa-search-box-product:hover {
  background: none !important;
  color: #000000 !important;
}


/* === PRODUCT DETAILS SECTION === */
#lupa-search-box-products .lupa-search-box-product-details-section {
  display: block !important;   /* override Lupa flex */
  position: relative !important;
  gap: 0 !important;           /* remove Lupa spacing if needed */
}

/* === BRAND + TITLE === */
#lupa-search-box-products .lupa-search-box-product-custom,
#lupa-search-box-products .lupa-search-box-product-title {
  margin: 0 0 4px 0 !important;
  font-family: "Text SemiBold" !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #000 !important;
}



#lupa-search-box-products .lupa-search-box-product-custom:hover,
#lupa-search-box-products .lupa-search-box-product-title:hover {
  text-decoration: underline;
}


/* === PRICES INLINE === */
#lupa-search-box-products .lupa-search-box-product-price,
#lupa-search-box-products .lupa-search-box-product-regular-price {
  display: inline-block !important;   /* force inline */
  margin: 0 8px 0 0 !important;       /* spacing between prices */
}

#lupa-search-box-products .lupa-search-box-product-price {
  color: #000000;
  font-family: "Text SemiBold";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.lupa-search-box-product:hover .lupa-search-box-product-price,
.lupa-search-box-product:hover .lupa-search-box-product-regular-price {
    color: #000 !important;
}

/* Regular price style */
#lupa-search-results .lupa-search-box-product-regular-price {
  color: #000000;
  font-family: "Text Regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-decoration: line-through;
}


.lupa-search-box-product:has(.lupa-search-box-product-regular-price) .lupa-search-box-product-price {
  color: #DD2525 !important; /* red main price */
}



/* === LUPA Search Results=== */


/* === LUPA: Search results H1 match InBeauty theme === */
.lupa-search-result-wrapper .lupa-result-page-title {
  font-family: 'Heading';
  font-size: 34px;
  font-weight: 400;
  line-height: 120%;
  color: #000000;

  margin: 14px 0 25px 0;
  padding: 0;

  text-transform: none;
  letter-spacing: normal;
}

/* Search query text */
.lupa-search-result-wrapper .lupa-result-page-title span {
  font-weight: 400;
  color: inherit;
}

/* Product count */
.lupa-search-result-wrapper .lupa-results-total-count {
  font-size: 24px;
  font-weight: 400;
  margin-left: 6px;
}

/* === LUPA: results count match InBeauty category count === */
.lupa-search-result-wrapper .lupa-search-results-summary {
  font-size: 14px;
  font-weight: 400;
  color: #777; /* matches inbeauty-total-product */
  line-height: 1.4;

  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
}

@media (max-width: 1175px) {
  .lupa-search-result-wrapper .lupa-search-results-summary {
    display: none;
  }
}

/* Inner wrapper */
.lupa-search-result-wrapper .lupa-search-results-summary > div {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Number */
.lupa-search-result-wrapper .lupa-search-results-summary span {
  font-weight: 400;
  color: inherit;
}





/* === LUPA: page size dropdown – label + select side by side === */
#lupa-search-results-page-size #lupa-select {
  position: relative;
  display: inline-block;
}

#lupa-search-results-page-size #lupa-page-size-select-dropdown {
  appearance: none;      /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 80px;    /* space for label text inside */
  height: 32px;

  
  font-family: "Text SemiBold";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.96px;
}

#lupa-search-results-page-size .lupa-select-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;  /* allow clicks to go through to select */

  
  color: #000000;
  font-family: "Text SemiBold";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

#lupa-search-results-page-size  .lupa-select-dropdown {
	padding: 5px 25px 5px 8px;
}

#lupa-search-results-page-size #lupa-select::after {
	top: 5px;
}


/* === LUPA: page size dropdown – label + select side by side === */
#lupa-search-results-page-size #lupa-select {
  position: relative;
  display: inline-block;
}

#lupa-search-results-page-size #lupa-page-size-select-dropdown {
  appearance: none;      /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 80px;    /* space for label text inside */
  height: 32px;

  
  font-family: "Text SemiBold";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.96px;
}

#lupa-search-results-page-size .lupa-select-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;  /* allow clicks to go through to select */

  
  color: #000000;
  font-family: "Text SemiBold";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

#lupa-search-results-page-size  .lupa-select-dropdown {
	padding: 5px 25px 5px 8px;
}

#lupa-search-results-page-size #lupa-select::after {
	top: 5px;
}

#lupa-search-results-page-size #lupa-page-size-select-dropdown {
    border: none;        /* remove border */
    box-shadow: none;    /* remove any shadow */
    background: transparent; /* optional: keep background clean */
	border: 1px solid transparent; /* or none */
    border-radius: 0;
}

#lupa-search-results-page-size #lupa-page-size-select-dropdown:focus {
    outline: none;
    box-shadow: none;
}

#lupa-search-results-page-size #lupa-page-size-select-dropdown option {
    background-color: #ffffff; /* options background */
    color: #000000;            /* options text */
    font-size: 14px;      /* or whatever size you want */
	letter-spacing: 0.96px;
	 line-height: 120%;
    font-family: "Text SemiBold";
}

#lupa-search-results-page-size #lupa-page-size-select-dropdown option:checked {
    background-color: #FF7B66; /* selected option background */
    color: #fff;               /* selected option text */
}


/* === LUPA: sort dropdown – label + select side by side === */
#lupa-search-results-sort #lupa-select {
  position: relative;
  display: inline-block;
}

#lupa-search-results-sort #lupa-sort-select-dropdown {
  appearance: none;      /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 25px;    /* space for label text inside */
  height: 32px;

  
  font-family: "Text SemiBold";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  
    border: none;        /* remove border */
    box-shadow: none;    /* remove any shadow */
    background: transparent; /* optional: keep background clean */
	border: 1px solid transparent; /* or none */
    border-radius: 0;

}

#lupa-search-results-sort .lupa-select-label {
	display: none;
}

#lupa-search-results-sort  .lupa-select-dropdown {
	padding: 5px 0px 5px 8px;
}

#lupa-search-results-sort #lupa-select::after {
	top: 5px;
}

#lupa-search-results-sort #lupa-sort-select-dropdown:focus {
    outline: none;
    box-shadow: none;
}

#lupa-search-results-sort #lupa-sort-select-dropdown option {
    background-color: #ffffff; /* options background */
    color: #000000;            /* options text */
    font-size: 14px;      /* or whatever size you want */
	letter-spacing: 0.96px;
	 line-height: 120%;
    font-family: "Text SemiBold";
}

#lupa-search-results-sort #lupa-sort-select-dropdown option:checked {
    background-color: #FF7B66; /* selected option background */
    color: #fff;               /* selected option text */
}


/* === LUPA: products === */
.lupa-products .lupa-search-result-product-card {
	margin-bottom: 60px;
}

.lupa-products .lupa-search-result-product-card,
.lupa-products .lupa-search-result-product-contents {
  border: none !important;
  box-shadow: none !important;
}


.lupa-products .lupa-search-result-product-card,
.lupa-products .lupa-search-result-product-contents {
  outline: none !important;
}

.lupa-products .lupa-search-results-image-wrapper {
  padding-bottom: 100%;
}

.lupa-products .lupa-search-results-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
}

.lupa-products .lupa-custom-brand div {
  color: #000000;
  font-family: "Text SemiBold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center !important;
  padding-top: 40px;
}

.lupa-products .lupa-search-results-product-title {
   text-align: center !important;
   min-height: calc(1em * 3); /* 3 lines */
   line-height: 1em;
}


.lupa-products .lupa-search-results-product-title-text {

	font-family: "Text Medium";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.26px;
  line-height: 15.6px;
}


.lupa-products a.lupa-title-link,
.lupa-products a.lupa-title-link:visited,
.lupa-products a.lupa-title-link:hover,
.lupa-products a.lupa-title-link:focus {
  color: #000 !important;
}

.lupa-products .lupa-search-result-product-details-section {
	justify-content: flex-start;
	gap: 10px;
	height: auto !important;
}

.lupa-products #lupa-search-results-rating {
	margin:0;
	justify-content: center;
}	

.lupa-products .lupa-ratings {
	height: 16px;
}

.lupa-products .lupa-rating-wrapper, 
.lupa-products .lupa-ratings-base {
	width: 60px;
}

.lupa-products .lupa-total-ratings {
	color: rgba(0, 0, 0, 0.62);
  text-align: center;
  font-family: "Text Regular";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 2px;
  position: relative;
  top: -5px;
}

.lupa-products #lupa-search-results-badges {
	top: 16px;
}

#lupa-badges .lupa_badge-new {
	float: left;
  margin-top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  color: #ffffff;
  font-family: 'Inter';
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background-color: #B5DDE9;
    display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

#lupa-badges .lupa-discount-badge {
	margin-top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  color: #fff;
  font-family: 'Inter';
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

#lupa-badges .lupa_badge-fast-delivery {
	margin-top: 10px;
	  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #FF8328;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lupa-products .lupa_badge-fast-delivery::after {
  font-family: 'inbeauty' !important;
  content: "\e91c";
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.lupa-products .lupa-search-result-product-details-section:not(:has(#lupa-search-results-rating))
  .lupa-search-results-product-title {
  padding-bottom: 34px;
}

.lupa-products #lupa-badges > div:not(:last-child) {
  margin-right: 10px;
}


.lupa-products .lupa-ratings .lupa-rating::after {
	font-family: 'inbeauty' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

	content: "\e91f";
	font-size: 10px;
}

.lupa-products .lupa-ratings .lupa-rating-highlighted {
	color: #E8BE85;
	margin-right: 2px;
}

.lupa-products .lupa-ratings .lupa-rating-not-highlighted {
	color: #F3F3F8;
	margin-right: 2px;
}

.lupa-products .lupa-element-group-iprices { 
	display:flex; 
	align-items:baseline; 
	gap:10px; 
	justify-content: center !important;
	margin-top: 10px;
}
.lupa-element-group-iprices .lupa-search-results-product-price {
  color: #000000;
  font-family: "Text SemiBold";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-align: center !important;
  display:inline;
  margin-top: 0;
}

.lupa-element-group-iprices .lupa-search-results-product-regular-price {
  color: #000000;
  font-family: "Text Regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-decoration: line-through;
  position: relative;
  margin-left:0; top:0; 
}

.lupa-products .lupa-element-group-iprices:has(.lupa-search-results-product-regular-price)
  .lupa-search-results-product-price {
  color: #DD2525;
}

/* === LUPA: paging === */

#lupa-search-results-toolbar #lupa-search-results-page-select {
	font-family: "Text Medium";
}

#lupa-search-results-toolbar .lupa-page-number {
  min-width: 22px;
  min-height: 22px;
  display: flex;
  color: #000000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: unset;
}

#lupa-search-results-toolbar .lupa-page-number.lupa-page-number-selected, 
#lupa-search-results-toolbar .lupa-page-number:hover {
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
}

#lupa-search-results-toolbar .lupa-page-arrow {
	color: #000000;
	line-height: 1;
}

#lupa-search-results-toolbar  .lupa-page-arrow::before {
/*	font-family: 'inbeauty' !important;
	content: "\e91d";
	line-height: 1;
*/
	font-size: 22px;
	color: #000000;
}

#lupa-search-results-toolbar .lupa-page-arrow:hover::before{
	color: #000000;
	text-decoration: none !important;
}


/* === LUPA: Filters === */


#lupa-search-results .lupa-search-result-filters {
	max-width: 270px;
}

#lupa-search-results .lupa-search-result-facets {
  padding: 24px;
  border: 1px solid #e6e6e6;
}

.lupa-search-result-facets .lupa-facets-title {
  color: #000000;
  font-family: "Text SemiBold";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding: 0 0 30px;
}

.lupa-search-result-facets .lupa-search-result-facet-display {
	margin-bottom: 24px;
}

.lupa-search-result-facets .lupa-search-result-facet-label {
  padding: 0 0 8px 0;
  border-bottom: 1.5px solid #e6e6e6;
	justify-content: space-between !important;
	line-height: 16px;
}

.lupa-search-result-facets .lupa-search-result-facet-label.open {
	padding: 0 0 8px 0;
}

.lupa-search-result-facets .lupa-facet-label-text,
.lupa-mobile-filter-sidebar .lupa-mobile-sidebar-content .lupa-facet-label-text {
	  color: #000000;
  font-family: "Text SemiBold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

.lupa-search-result-facets .lupa-facet-content {
  padding: 5px 0 0;
}

.lupa-search-result-facets .lupa-facet-term {
	padding: 0;
	margin: 14px 0 0;
}

.lupa-search-result-facets .lupa-term-label, .lupa-search-result-facets .lupa-term-count {
margin: 0px;
  color: #000000;
  font-family: "Text Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.56px;
  cursor: pointer;
}

.lupa-search-result-facets .lupa-term-count {
  color: rgba(0, 0, 0, 0.5);
}


.lupa-search-result-facets .lupa-term-filter {
	border-radius: 5px;
	padding: 6px;
	font-family: 'Text Medium';
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.56px;
  color: #000000;
}

#lupa-search-results .lupa-term-filter:focus,
#lupa-search-results .lupa-term-filter:focus-visible {
	border-color: #000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.lupa-search-result-facets .lupa-term-checkbox-wrapper {
  line-height: 14px;
}

.lupa-search-result-facets .lupa-term-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #e6e6e6;
  display: inline-block;
  position: relative;
}

.lupa-search-result-facets .lupa-term-checkbox.checked {
  background:none;
  border: 1px solid #FF7B66;
}

.lupa-search-result-facets .lupa-term-checkbox.checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #FF7B66;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lupa-search-result-facets .lupa-facet-wrapper-categories .lupa-show-more-facet-results {
	color: #000;
  font-family: "Text Medium";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.26px;
  cursor: pointer;
  text-decoration: underline;
}

.lupa-search-result-facets .lupa-show-more-facet-results span {
	color: #000;
  font-family: "Text Medium";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.26px;
  cursor: pointer;
  text-decoration: underline;
}

.lupa-search-result-facets .lupa-facet-term:hover,
.lupa-search-result-facets .lupa-show-more-facet-results:hover {
  color: inherit !important;
  background: none !important;
}

.lupa-search-result-facets  .lupa-facet-level {
	margin-left: 8px;
}

.lupa-search-result-facets .lupa-stats-facet-summary {
	color: #000000;
  font-family: "Text Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.56px;
}


.lupa-search-result-facets .slider.slider-horizontal {
	width: unset !important;
	height: 2px;
	display: block;
}

.lupa-search-result-facets .lupa-stats-slider-wrapper .slider-connect {
	background-color: #FF7B66;
}

.lupa-search-result-facets .lupa-stats-slider-wrapper .slider-connects {
	background-color: #e6e6e6;
}

.lupa-search-result-facets .lupa-stats-slider-wrapper .slider-handle {
	background: #fff;
	border: 1px solid #FF7B66;
	margin-top: -1px;
}

.lupa-search-result-facets .slider-handle:focus {
  box-shadow: 
    0 0 0 3px rgba(255, 123, 102, 0.3), /* brand color ring */
    0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32); /* keep original shadow */
  outline: none;
}

.lupa-search-result-facets .lupa-facet-label-caret {
  width: 1em;           /* size */
  height: 1em;
  display: inline-block;
  font-family: 'inbeauty' !important; /* your icon font */
  text-align: center;
  line-height: 1;
}

.lupa-search-result-facets  .lupa-facet-label-caret::after {
  content: "\e919";      /* same as .icon-plus */
  font-family: 'inbeauty' !important;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  font-size: 12px;
  color: #000000;
  
}

.lupa-search-result-facets .lupa-facet-label-caret.open::after {
  content: "\e901";
  font-size: 0.6px;
  color: #000000;
  margin-bottom: 5px;
}

/* mobile fixes */
.lupa-search-result-wrapper .lupa-mobile-filter-sidebar { 
  position: fixed;
  top: 146px;
  left: 0;
  width: 100%;
  height: calc(var(--lupa-full-height) - 146px);
  background: #fff;
  z-index: 555;
  overflow: hidden;
}


@media (max-width: 1175px) {
  #lupa-badges .lupa_badge-new,
  #lupa-badges .lupa-discount-badge,
  #lupa-badges .lupa_badge-fast-delivery {
    width: 34px;
    height: 34px;
    font-size: 9px;
  }
  .lupa-products .lupa-custom-brand div{
	font-size: 16px;
    letter-spacing: 0.64px;
  }
  .lupa-products .lupa-search-results-product-title-text {
	  font-size: 14px;
    line-height: 140%;
    letter-spacing: initial;
  }
  .lupa-products .lupa-total-ratings, .lupa-ratings .lupa-rating::after {
	Font-size: 14px;
  }
  .lupa-products .lupa-rating-wrapper, .lupa-products .lupa-ratings-base {
	width: 80px;
	}
  .lupa-products .lupa-search-result-product-card {
	padding: 8px 0;
  }
  .lupa-products .lupa-search-result-product-contents {
	padding: 12px 0;
  }
  #lupa-search-results .lupa-mobile-toggle {
	  font-size: 0;       /* hide text */
	  line-height: 0;
	  width: auto;
	  padding: 0;
	  border: none;
	  background: none;
	  flex: 0 0 auto;
	  margin-right: 20px;
	}
	#lupa-search-results .lupa-mobile-toggle::before {
	  content: url('https://inbeauty.lt/catalog/view/images/icon-filter.svg');
	  display: inline-block;
	  width: 28px;
	  height: 28px;
	  vertical-align: middle;
	}
	
	#lupa-search-results .lupa-search-results-sort {
		flex: 0 0 auto;
	}
	
	#lupa-search-results #lupa-search-results-page-size {
		display: block;
		flex: 0 0 auto;
	}
	#lupa-search-results .lupa-toolbar-right {
		width: 100%;
		border-top: 1px solid #e6e6e6;
		border-bottom: 1px solid #e6e6e6;
		margin: 0;
		padding: 11px 0 9px;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	#lupa-search-results-sort .lupa-select-dropdown {
		width: 115px;
	}
	#lupa-search-results-sort #lupa-sort-select-dropdown {
		padding-left: 0px;
	}
	.lupa-search-result-wrapper .lupa-result-page-title {
		ont-size: 32px;
		line-height: 130%;
		margin: 14px 0px 16px 0px;
		text-align: center;
	}
	#lupa-search-results-breadcrumbs {
		margin: 0;
	}
	#lupa-search-results-products {
		padding-top: 5px;
	}
	.lupa-search-result-wrapper .lupa-mobile-filter-sidebar .lupa-search-result-facet-display {
		border: none;
		margin: 10px 0 20px;
		padding: 0;
	}
	.lupa-mobile-sidebar-content {
	  height: 100%; 
	  display: flex;
	  flex-direction: column;
	}
	.lupa-sidebar-filter-options {
		padding: 8px 16px 0px;
	}
	
	.lupa-mobile-filter-sidebar .lupa-facets-title {
		display: none;
	}
	.lupa-mobile-filter-sidebar .lupa-sidebar-title {
		color: #000000;
	  font-family: "Text SemiBold";
	  font-size: 20px;
	  font-style: normal;
	  font-weight: 600;
	  line-height: 120%;
	}
	.lupa-mobile-filter-sidebar .lupa-filter-toggle-mobile {

	}
	.lupa-mobile-filter-sidebar .lupa-sidebar-top  {
		justify-content: space-between;
		align-items: center;          
		padding: 16px;         
	}
	.lupa-search-result-facets .lupa-facet-label-caret.open::after {
		font-size: 0.8px;
		margin-left: -5px;
	}

}

