
/* PRODUCTS */
.product {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.product-category {
    padding: 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-gray);
}

.product-container {
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin: 0 10px;
    padding: 10px 0;
    justify-content: flex-start;
}

    .product-container::-webkit-scrollbar {
        display: none;
    }

.product-card {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 10px;
    padding: 0;
    background-color: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.wrapper-product-image {
    justify-content: center;
}

.product-image-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
    object-fit: cover;
    height: 250px;
}


.product-card a {
    color: var(--color-gray);
}

.product-thumb {
    width: 100%;
    height: 100%;
    max-height:800px;
    object-fit:cover;
}

.discount-tag {
    position: absolute;
    background: var(--color-white);
    padding: 5px;
    border-radius: 5px;
    color: #ff7d7d;
    right: 10px;
    top: 10px;
    text-transform: capitalize;
}

.card-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-transform: capitalize;
    border: none;
    outline: none;
    background: var(--color-white);
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
    opacity: 1;
}

.product-card:hover .card-btn {
    opacity: .7;
}

.card-btn:hover {
    background: rgba(241,241,241,0.5);
    color: var(--color-white);
}

.product-info {
    width: 100%;
    padding-top: 10px;
}

.product-brand {
    text-transform: uppercase;
}

.product-short-description {
    width: 100%;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    opacity: 0.5;
    text-transform: capitalize;
    margin: 5px 0;
}

.price {
    font-weight: 900;
    font-size: 20px;
}

.actual-price {
    margin-left: 20px;
    opacity: 0.5;
    text-decoration: line-through;
}

.pre-btn,
.nxt-btn {
    border: none;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    z-index: 8;
}

.pre-btn {
    left: 0;
    transform: rotate(180deg);
}

.nxt-btn {
    right: 0;
}

    .pre-btn img,
    .nxt-btn img {
        padding: 5px 10px;
        border-radius: 50%;
        opacity: 0.2;
    }

    .pre-btn:hover img,
    .nxt-btn:hover img {
        opacity: 1;
        background: rgba(255, 255, 255, 1);
    }

.collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.collection {
    position: relative;
}

    .collection img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .collection p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: var(--color-white);
        font-size: 50px;
        text-transform: capitalize;
    }

    .collection:nth-child(3) {
        grid-column: span 2;
        margin-bottom: 10px;
    }
