.slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Adjust based on number of slides */
    height: 100%;
}

.slide {
    flex: 1 0 100%;
    background-size: cover;
    background-position: top bottom;
    height: 100%;
    position: relative;
}

.slide-content {
    position: absolute;
/*    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
*/    

	top: 0%;
    left: 0%;
	transform: translate(0%, 0%);

	text-align: left;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding:120px 80px;
    width: 100%; /* Ensures the content doesn't overflow */
	height:100%;
    box-sizing: border-box; /* Includes padding in width calculation */
}

.fashion-category {
    background-color: #F00; /* Tomato color */
    display: inline-block;
    padding: 10px 20px;
    color: white;
    font-weight: 300;
    border-radius: 20px;
    margin-top: 15px;
    font-size: 15px; /* Adjust font size as needed */
	text-decoration:none;
}

.fashion-text {
    font-size: 25px;
    font-weight: 300;
    margin: 0;
	margin-left:7px;
	padding:0px;
}

.fashion-text i {
    font-size: 25px;
    font-weight: normal;
}

.fashion-text2 {
    font-size: 65px;
	font-weight:900;
	text-transform:uppercase;
    margin: 0;
	padding:0px;
	line-height:70px;
}

.shop-now {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 35px;
	font-weight:200;
    color: white;
	border:2px solid #000;
    border-radius: 10px;
    text-decoration: none;
	text-transform:uppercase;
    transition: background-color 0.3s;
}

.shop-now:hover {
    background-color: #000; /* Tomato color */
}

.prev, .next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
/*    background-color: rgba(0, 0, 0, 0.5);
*/    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.slider {
    height: 75vh;
}

	
	.slide-content {
    padding:150px 30px;
}


    .fashion-text {
        font-size: 14px; /* Smaller text for mobile */
		font-weight:bold;
		line-height:normal;
    }


.fashion-text i {
    font-size: 14px;
    font-weight: normal;
}

    .fashion-text2 {
        font-size: 43px;
		font-weight:600;
		line-height:47px;
    }

    .fashion-category {
        font-size: 13px; /* Smaller category label for mobile */
    }

.prev, .next {
    top: 50%;
    font-size: 35px;
	font-weight:100;
    padding: 10px;
	color:rgba(255,255,255,0.25);
}

.prev {
    left: 0px;
}

.next {
    right: 0px;
}

}




@media (max-width: 480px) {
	
	.slide-content {
    padding:220px 30px;
}

}