/** Shopify CDN: Minification failed

Line 54:2 Unexpected "{"
Line 54:3 Expected identifier but found "%"
Line 54:36 Unexpected "{"
Line 54:37 Expected identifier but found "%"

**/
.recommended-search__wrapper {
  display: flex;
  gap: 2rem;
  padding: 2.2rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  max-width: 100vw;     
  overflow-x: hidden;  
}

.recommended-search__collections {
  flex: 1 1 26%;
}

.recommended-search__collections .recommended-search__title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-left: 0.25rem;
}

.recommended-search__collections .predictive-search__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recommended-search__collections .predictive-search__list li {
  margin: 0.8rem 0;
}

.recommended-search__collections .predictive-search__list li a {
  display: block;
  color: inherit;     
  text-decoration: none; 
  cursor: pointer;      
  padding: 0.5rem 1rem;
  background-color: #f7f7f7;
  border-radius: 8px;
  color: #333;
  font-weight: 500;
  {% comment %} text-align: center; {% endcomment %}
  transition: box-shadow 0.2s ease;
}

.recommended-search__collections .predictive-search__list li a:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.recommended-search__products {
  flex: 1 1 65%;
}

.recommended-search__products .recommended-search__title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-left: 0.25rem;
}

.recommended-search__product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.recommended-search__product-item {
  flex: 1 1 48%;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
}

.recommended-search__product-item:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.recommended-search__product-link {
  display: flex;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.recommended-search__product-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  display:block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.recommended-search__product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left:10px;
}

.recommended-search__product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #232323;
  display: -webkit-box;        
  -webkit-line-clamp: 2;       
  -webkit-box-orient: vertical;
  overflow: hidden;           
  text-overflow: ellipsis;    
  white-space: normal;         
  word-wrap: break-word;      
}

.recommended-search__product-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: red;
}

@media (max-width: 768px) {

  .recommended-search__wrapper {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .recommended-search__collections,
  .recommended-search__products {
    flex: none;
    width: 100%;         
  }

  .recommended-search__collections .predictive-search__list {
    display: flex;
    flex-wrap: wrap;       
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .recommended-search__collections .predictive-search__list li {
    flex: 0 0 auto;
    margin: 0;
  }

  .recommended-search__collections .predictive-search__list li a {
    padding: 0.75rem 1rem;
  }

  .recommended-search__product-list {
    display: flex;
    flex-wrap: nowrap;      
    overflow-x: auto;        
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  
  }
  .recommended-search__product-list::-webkit-scrollbar {
    display: none;
  }

  .recommended-search__product-item {
    flex: 0 0 290px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border-radius: 10px;
    transition: box-shadow 0.2s ease;
  }

  .recommended-search__product-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }

  .recommended-search__product-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .recommended-search__product-info {
    margin-left: 10px;
  }

  .recommended-search__product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #232323;
    word-wrap: break-word;
    white-space: normal;
  }

  .recommended-search__product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: red;
    margin-top: 0.25rem;
  }
}
