.s-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: calc(100% - 24px); 
    margin: 30px auto;
}

.s-slider-track {
    display: flex;
    gap: 1.1vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; 
    padding: 10px 0;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.s-progress-container {
    cursor: pointer;
    transition: height 0.2s ease, background 0.2s ease;
}

.s-progress-container:hover {
    height: 6px; 
    background: rgba(0, 0, 0, 0.12);
}

.s-progress-fill {
    transition: width 0.2s ease, background 0.3s ease; 
}

.showcase-gallery:hover {
	background-color: #1b1b1b !important;
}

.s-slider-track.is-dragging-s {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.s-slider-track.is-dragging-s .s-slider-item {
    pointer-events: none;
}

.s-slider-track::-webkit-scrollbar {
    display: none;
}

.s-slider-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 320px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	border: 2px solid #fcdf15;
}

.s-slider-item:hover {
    transform: translateY(-5px);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.s-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    display: block;
}

/* Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    z-index: 5;
    background: rgba(27, 27, 27, 0.5);
	backdrop-filter: blur(3px);
    border: 0;
    border-radius: 50%;
	width: 52px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.next-btn img {
	position: relative;
    opacity: 1;
    width: 57%;
    left: 10%;
}

.prev-btn img {
	position: relative;
    opacity: 1;
    width: 57%;
    left: -7.5%;
}

.slider-nav-btn:hover {
    background: rgba(27, 27, 27, 1);
    color: #fff;
    transform: scale(1.1);
}

.slider-nav-btn.s-hidden {
    opacity: 0.5;
    pointer-events: none;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.s-progress-container {
    width: 250px; 
    height: 3px;
    background: rgba(0, 0, 0, 0.06);
    margin: 25px auto 0;
    border-radius: 10px;
    overflow: visible !important;
	touch-action: none;
    position: relative;
}

.s-progress-container::before, 
.bs-progress-container::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    z-index: 0;
}

.s-progress-fill, 
.bs-progress-fill {
    position: relative;
    z-index: 1;
}

.s-progress-fill::after, 
.bs-progress-fill::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 16px;
    background: linear-gradient(180deg, #0b99bd 0%, #d40e52 100%);
    border: 0; 
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transition: height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.s-progress-container:hover .s-progress-fill::after,
.bs-progress-container:hover .bs-progress-fill::after {
    height: 20px; 
}

.is-dragging-bar {
    transition: none !important;
}

.s-progress-fill {
    width: 0%;
    height: 100%;
    background: #d40e52;
    border-radius: 10px;
    transition: width 0.2s ease-out;
}

.s-slider-item {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: s-skeleton-pulse 1.5s infinite;
}

@keyframes s-skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.s-slider-item img {
    background: #fff;
}

@media (max-width: 359px) {
	.showcase-gallery {
		padding: 10px 12px !important;
		font-size: 14px !important;
	}
}

.bs-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: calc(100% - 24px); 
    margin: 0px auto 15px;
}

.bs-slider-track {
    display: flex;
    gap: 1.1vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 15px 0;
	overscroll-behavior-x: none;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.bs-slider-track::-webkit-scrollbar {
    display: none;
}

.bs-slider-track.is-dragging {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.bs-slider-track.is-dragging .bs-card {
    pointer-events: none;
}

.bs-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid #0b99bd;
    display: flex;
    flex-direction: column;
}

.bs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.bs-image-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.bs-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bs-skeleton {
    background-color: #f6f7f8;
    background-image: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: bs-shimmer 1.5s infinite linear;
}

@keyframes bs-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.bs-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 20px 15px 15px;
    color: #fff;
}

.bs-title {
    font-family: raleway;
    font-size: 14px;
    font-weight: 700;
	text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bs-details {
    padding: 15px;
    background: url('../img/geometry_grey.jpg') repeat;
    flex-grow: 1;
    border-top: 2px solid #fcdf15;
}

.bs-desc {
    font-family: raleway;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

.bs-read-more {
    color: #0b99bd;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
	font-family: pt-sans;
	letter-spacing: 1px;
    display: inline-block;
}

.bs-progress-container {
    width: 200px;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    margin: 10px auto 40px;
    border-radius: 10px;
    overflow: visible !important;
	touch-action: none;
    cursor: pointer;
    position: relative;
    transition: height 0.2s ease;
}

.bs-progress-container:hover { height: 6px; }

.bs-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0b99bd 0%, #d40e52 100%);
    border-radius: 10px;
    transition: width 0.15s ease-out;
}

@media (max-width: 400px) {
	.s-slider-item {
		height: 304px;
		width: 304px;
	}
	
	.s-slider-track, .bs-slider-track {
		gap: 7px;
	}
	
	.s-slider-container, .bs-slider-wrapper {
		max-width: calc(100% - 4px);
	}
	
	.bs-card {
		width: 304px;
	}
	
	.bs-image-container {
		height: 304px;
	}
}