/* Slider Wyjazdow */ 
.st-slider-wyjazdow-wrapper {
	margin: 70px 0 40px 0;
}

.st-slider-wrapper { 
    position: relative; 
    width: 100%; 
    margin: 40px 0; 
} 

.st-slider-header {
	padding: 30px 5% 100px 5%;
	box-sizing: border-box;
	
	font-size: 20px;
	font-weight: 300;
} 

.st-slider-header svg {
	margin-left: 10px;
}

.st-slider-container {
	position: relative;
    display: flex; 
	padding: 0 5%;
	box-sizing: border-box;
    gap: 20px; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
} 

.st-slider-track-wrapper {
	position: relative;
}

.st-slider-wyjazdow-wrapper .st-slider-container { 
	margin-top: -70px;
}

.st-slider-container::-webkit-scrollbar { 
    display: none; 
} 

.st-card-item { 
    flex: 0 0 85%;
    min-width: 270px; 
	max-width: 350px;
    box-sizing: border-box; 
} 

.st-card-inner { 
    display: flex; 
    flex-direction: column; 
    gap: 0; 
    color: #fff; 
} 

/* Image */ 
.st-card-img { 
    width: 100%; 
    aspect-ratio: 1 / 1; 
    position: relative; 
    overflow: hidden; 
	padding-bottom: 2px;
} 

.st-card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
} 

.st-no-img { 
    width: 100%; 
    height: 100%; 
    background-color: #231916; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
} 
.st-no-img:after { 
    content: "No Image"; 
    color: #555; 
    font-size: 12px; 
} 

/* Row 1: Title, Price, Arrow */ 
.st-row-1 { 
	display: flex; 
    gap: 0 10px;
	box-sizing: border-box;
	background: #fff;
} 

	.st-row-1 .st-col-left { 
		display: flex; 
		flex-direction: column; 
		justify-content: center; 
		padding: 7px 0 7px 15px;
		box-sizing: border-box;
	} 

		.st-row-1 .st-col-left .st-card-title { 
			font-size: 14px; 
			line-height: 1.2; 
			font-weight: 500; 
			margin: 0; 
			color: #fff; 
		} 

		.st-row-1 .st-col-left .st-card-date { 
			font-size: 11px; 
			color: #ccc; 
			margin-top: 3px;
			line-height: 1.3;
		} 


	.st-row-1 .st-col-center { 
		margin-left: auto;
		display: flex; 
		align-items: center; 
		justify-content: center; 
		box-sizing: border-box;
	} 

		.st-row-1 .st-col-center .st-card-price { 
			font-size: 14px; 
			font-weight: 500; 
			text-decoration: underline;
			white-space: nowrap; 
		} 

	.st-col-right {
		flex-basis: 55px;
		align-self: stretch;
		display: flex; 
		justify-content: flex-end;
		align-items: center; 
		box-sizing: border-box;
		padding: 2px 2px 2px 0;
	} 

		.st-col-right .st-card-btn { 
			display: flex;
			align-items: center;
			justify-content: center;
			height: 100%;
			padding: 0 0 0 5px;
			width: 100%;
			flex-grow: 1;
			max-width: 55px;
			color: #fff;
			line-height: 1;
			transition: background 0.3s, color 0.3s;
		} 
		
		.st-col-right .st-card-btn span {
			display: inline-block;
		}

			.st-card-btn:hover { 
				background: #fff; 
				color: #000; 
			} 

			.st-card-btn svg { 
				height: 16px; 
				width: auto; 
				transition: transform 0.3s; 
			} 

			.st-card-btn:hover svg { 
				transform: translateX(2px); 
			} 

/* Row 2: Transport & Duration */ 
.st-row-2 { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 14px; 
	gap: 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 15px; 
	box-sizing: border-box;
} 

.st-row-2 .st-col-left {
	flex-grow: 0;
}

.st-transport-item { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
} 

	.st-transport-item figure { 
		width: 20px;
		height: 20px;
	}

	.st-transport-item figure img { 
		width: 100%; 
		height: 100%; 
		object-fit: contain;
	} 


.st-duration-box { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
	flex-basis: unset;
}

	.st-duration-box figure { 
		width: 20px;
		height: 20px;
	}

	.st-duration-box figure img { 
		width: 100%; 
		height: 100%; 
		object-fit: contain;
	} 



/* The user provided SVG has fill="#231916". On dark background this is invisible. 
   We need to change fill to #fff via CSS */ 
.st-icon-calendar svg path { 
    fill: #fff; 
} 

/* Dots Rows */ 
.st-row-dots-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px 15px 15px;
    box-sizing: border-box;
}

.st-dots-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.st-dots-label {
	flex-basis: 100px;
    font-size: 14px; 
} 

.st-dots-container { 
    display: flex; 
    gap: 6px; 
} 

.st-dot { 
    width: 6px; 
    height: 6px; 
    border: 1px solid #fff; 
    border-radius: 50%; 
    box-sizing: border-box; 
} 

.st-dot.filled { 
    background-color: #fff; 
}



/* Arrows */
.st-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px; /* Larger hit area */
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0;
    transition: opacity 0.3s, transform 0.3s;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}

.st-slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.st-slider-arrow.st-prev {
    left: 3%;
}

.st-slider-arrow.st-next {
    right: 3%;
}

.st-slider-arrow svg {
    display: block;
    width: 12px;
    height: 20px;
}

/* Rotate left arrow */
.st-slider-arrow.st-prev svg {
    transform: rotate(180deg);
}

/* Hidden state */
.st-slider-arrow.st-hidden {
    opacity: 0;
    pointer-events: none;
    cursor: default;
}
