* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.main-color {
    color: #2F74B9;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.back-btn {
    all: unset;
    cursor: pointer;
}

.left-arrow {
    cursor: pointer;
}

.left-arrow::before {
    content: '\2190';
    /* Unicode for left arrow */
    margin-right: 8px;
}

/* carousel css styles  */
.slider {
    width: 1300px;
    max-width: 100vw;
    height: 500px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.slider .list {
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}

.slider .list img {
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}

.slider .buttons {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.slider .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.slider .dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}

.slider .dots li.active {
    width: 30px;
}

@media screen and (max-width: 768px) {
    .slider {
        height: 400px;
    }
}

.ad-container {
    margin-bottom: 120px;
}

.like-button {
    all: unset;
}

.like-btn-hover:hover {
    transition: all 0.10s;
    color: red;
}

.price-section {
    background-color: rgb(227, 226, 226);
    border-radius: 10px;
    padding: 15px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.info-card-container {
    border: 2px solid #2F74B9;
    border-radius: 5px;
    padding: 7px 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


/* footer style  */
.footer {
    /* height: 70px; */
    padding: 10px 0;
    background-color: white !important;
    text-align: center;
}

.bottom-links {
    cursor: pointer;
    transition: all .15s;
}

.active {
    color: #2F74B9 !important;
}

.bottom-links a {
    color: black;
    text-decoration: none;
    font-size: 15px;
}