.search-wrapper {
display: flex;
width: 100%;
border: 1px solid #ddd;
background: white;
margin-top: 5px;
} .column-1 {
width: 100%;
display: flex;
flex-direction: column;
padding: 10px;
}  .search-categories {
display: flex;
flex-direction: column; gap: 8px;
} .search-category-item {
display: block; padding: 10px;
cursor: pointer;
border-bottom: 1px solid #ddd;
transition: background 0.3s ease;
font-weight: bold;
text-decoration: none;
color: #333;
} .search-category-item:hover {
background: #f5f5f5;
} .results-list {
display: flex;
flex-direction: column; width: 100%;
overflow-y: auto;
max-height: 300px;
} .search-result-item {
display: flex;
align-items: center;
padding: 10px;
cursor: pointer;
border-bottom: 1px solid #ddd;
transition: background 0.3s ease;
} .search-result-item img {
width: 40px;
height: 40px;
margin-right: 10px;
object-fit: cover;
} .search-result-category {
padding-left: 15px;
font-weight: bold;
} .search-result-item:hover {
background: #f5f5f5;
} .column-2 {
width: 0;
padding: 10px;
text-align: center;
border-left: 1px solid transparent;
overflow: hidden;
transition: width 0.5s ease-in-out, opacity 0.3s ease-in-out;
opacity: 0;
display: none;
} .search-wrapper.show-details .column-1 {
width: 40%;
}
@media (max-width: 700px) {
.search-wrapper.show-details .column-1 {
width: 100% !important;
}
}
.search-wrapper.show-details .column-2 {
display: block;
width: 60%;
opacity: 1;
border-left: 1px solid #ddd;
}
@media (max-width: 700px) {
.search-wrapper.show-details .column-2 {
display: none !important;
}
} .swiper-container {
width: 100%;
height: 250px;
overflow: hidden;
position: relative;
} .swiper-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .swiper-pagination {
position: absolute;
bottom: 10px;
left: 50% !important;
transform: translateX(-50%);
z-index: 10;
} .swiper-button-prev,
.swiper-button-next {
color: white;
background: transparent;
padding: 10px;
border-radius: 50%;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
background: transparent;
}
.swiper-button-prev::after,
.swiper-button-next::after {
color: #FCD792;
font-size: 1.7em;
}
.swiper-button-prev {
left: 10px;
}
.swiper-button-next {
right: 10px;
}
.swiper-pagination-bullet{
background: transparent;
border: solid 1px #FCD792;
opacity: 1;
} 
.swiper-pagination-bullet-active{
background: #FCD792;
border: solid 1px #FCD792; 
} .product-details h2 {
font-size: 20px;
margin-top: 10px;
}
.product-details p {
font-size: 14px;
color: #555;
}
.btn {
display: inline-block;
padding: 8px 12px;
background: #FCD792;
color: white;
text-decoration: none;
border-radius: 5px;
margin-top: 10px;
}
.btn:hover {
background: #e1ba71;
}
.searchbar-container strong {
color: black;
font-weight: bold;
} .searchbar-container {
align-items: center;
width: 100%;
border: 1px solid #ddd;
padding: 5px;
border-radius: 5px;
background: white;
position: absolute;
z-index: 20;
} #search-input {
width: 100%;
padding: 5px 10px;
border: none;
outline: none;
font-size: 16px;
} #clear-search {
position: absolute;
right: 10px;
cursor: pointer;
font-size: 18px;
color: #aaa !important;
display: none; } #clear-search:hover {
color: #333;
}.gallery-container {
display: flex;
align-items: center;
justify-content: space-between;
height: 485px; overflow: hidden;
} .gallery-container .thumbnail-slider-container {
width: 120px;
height: 285px;
overflow-y: hidden; 
margin-right: 20px;
}
.gallery-container .thumbnail-slider {
display: flex;
flex-direction: column;
transition: transform 0.3s ease;
gap: 20px;
}
.gallery-container .thumbnail {
width: 100%;
height: 75px; background-size: cover;
background-position: center;
cursor: pointer;
} .gallery-container .main-slider {
position: relative;
width: 100%;
height: 485px; overflow: hidden;
}
.gallery-container .slide {
position: absolute;
width: 100%;
height: 100%;
transition: transform 0.5s ease-in-out;
opacity: 0;
visibility: hidden;
background-size:contain;
background-repeat: no-repeat;
background-position: center;
}
.gallery-container .main-slider .slide.active {
opacity: 1;
visibility: visible;
}
.thumbnail-slider {
position: relative;
width: 100%;
overflow: hidden;
}
.thumbnail-slider .thumbnail {
transition: transform 0.5s ease-in-out;
}
.thumbnail-slider .thumbnail.active {
border: 2px solid #fcd791; }
.mobile-thumbnail-slider .mobile-thumbnail.active {
border: 2px solid #fcd791; }
.previous {
display: block;
transform: translateX(-100%); }
.next {
display: block;
transform: translateX(100%); } .gallery-container button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: #fff;
color: white;
border: none;
padding: 10px;
cursor: pointer;
z-index: 1;
width: 55px;
border-radius: 0;
}
.gallery-container .prev {
left: 0;
opacity: 1 !important;
}
.gallery-container .next {
right: 0;
opacity: 1 !important;
}
.gallery-container button:hover {
background-color: #1d1d1d80;
}
.gallery-container button:focus {
background-color: #1d1d1d80;
} .gallery-container .thumbnail.active {
opacity: 0.6;
}
@media screen and (max-width: 768px) {
.gallery-container {
flex-direction: column;
height: auto;
}
.gallery-container .main-slider{
height:385px !important;
}
.thumbnail-slider-container {
display:none;
}
.thumbnail-slider {
flex-direction: row;
gap: 10px;
}
.main-slider {
width: 100%;
min-height: 300px; }
} .desktop-thumbnail-slider-container {
display: block;
width: 120px;
height: 285px;
overflow-y: hidden; 
margin-right: 20px;
}
.mobile-thumbnail-slider-container {
display: none;
} .thumbnail-slider {
display: flex;
flex-direction: column;
gap: 20px;
} .main-slider {
position: relative;
width: 100%;
height: 285px;
overflow: hidden;
}
.slide {
position: absolute;
width: 100%;
height: 100%;
transition: transform 0.5s ease-in-out;
opacity: 0;
visibility: hidden;
background-size:auto;
}
.main-slider .slide.active {
opacity: 1;
visibility: visible;
} .gallery-container button { } @media screen and (max-width: 768px) {
.gallery-container {
flex-direction: column;
height: auto;
} .desktop-thumbnail-slider-container {
display: none;
} .mobile-thumbnail-slider-container {
display: block;
width: 100%;
margin-bottom: 10px;
overflow-x: auto; }
.mobile-thumbnail-slider {
display: flex;
flex-direction: row; gap: 10px;
}
.mobile-thumbnail { width: 85px;
height: 85px;
background-size: cover;
background-position: center;
cursor: pointer;
}
.main-slider {
width: 100%;
min-height: 300px;
}
}