::-webkit-scrollbar {
width: 8px;
background-color: #1C1538;
}

::-webkit-scrollbar-track {
background: #120D25;
}

::-webkit-scrollbar-thumb {
background: #463E6D;
}

::-webkit-scrollbar-thumb:hover {
background: #655D99;
}

body {
background-color: #1C1538;
color: #fff;
}

.gallery-title {
font-size: 36px;
color: #fff;
text-align: center;
font-weight: 500;
margin-bottom: 10px;
}

.gallery-title:after {
content: "";
position: absolute;
width: 22.5%;
left: 38.5%;
height: 45px;
border-bottom: 1px solid #463E6D;
}

.gallery-subtitle {
font-size: 16px;
color: #fff;
text-align: center;
margin-bottom: 40px;
}

.filter-button {
font-size: 18px;
border: none;
border-radius: 5px;
text-align: center;
color: #fff;
margin-bottom: 30px;
padding: 12px 24px;
background-color: #463E6D;
transition: background-color 0.3s ease;
cursor: pointer;
}

.filter-button:hover {
background-color: #655D99;
}

.btn-default:active .filter-button:active {
background-color: #120D25;
}

.port-image {
width: 100%;
}

.gallery_product {
margin-bottom: 30px;
}

img {
box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}

.image-container {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
}

.image-container img {
max-width: 100%;
max-height: 100%;
flex: 1;
}

.image-gallery {
display: flex;
flex-wrap: wrap;
}

.image-gallery img {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.3s;
}

.image-gallery img:hover {
transform: scale(1.1);
}