.hero-slider {
    position: relative;
    overflow: hidden;
    height: 50vh;
    max-height: 700px;
    font-family: Arial, sans-serif;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    background-size: cover;
   /* background-position: center;*/
    background-size: 100% 100%;
    position: relative;
    cursor:pointer;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
	
    /* background: rgba(0,0,0,0.45); */
}

.slide-content {
    position: absolute;
    left: 10%;
    bottom: 20%;
    color: #fff;
    max-width: 500px;
    z-index: 2;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.slideBtn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s;
}

.slideBtn:hover {
    background: #e85b00;
}

.slideNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
}

.slideNav.prev { left: 20px; }
.slideNav.next { right: 20px; }

.slideDots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slideDots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slideDots span.active {
    background: #ff6a00;
}
.sales-hook {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.sale-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor:pointer;
}

.sale-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sale-item img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    display: block;
}

.sale-item h3 {
    font-size: 1.2rem;
    margin: 15px 15px 5px;
    color: #333;
}

.sale-item p {
    font-size: 0.95rem;
    margin: 0 15px 10px;
    color: #555;
    line-height: 1.4;
}

.sale-item a.btn {
    margin: 10px 15px 15px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.sale-item a.slideBtn:hover {
    background-color: #0056b3;
}
#main .sales_page{    padding-left: 15px;}

@media (max-width: 768px) {
    .sales-hook {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .slide img{height: 450px;} 
}
