.content-moto {
    border: 1px solid orange;
    border-radius: 10px;
    padding: 5px 10px;
}

.title-ancho-moto {
    width: 100px;
    font-size: 12px;
    margin-left: 10px;
}

.shopping-cart-cost {
    border: 1px solid orange;
    background-color: rgb(248, 198, 106);
    width: 100px;
    height: 45px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    margin-top: 10px;
}

/*Product slider start*/
.product {
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin-top: 20px;
}

.product-category {
    padding: 0 10vw;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-family: 'Inria Sans';
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    line-height: 14px;
    text-align: center;
    color: #EFB810;
}

.product-container {
    padding: 40px 20px;
    margin: 20px 0px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* overflow-x: auto;
    scroll-behavior: smooth; */
    /* max-height: 500px; */
}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 auto;
    width: 250px;
    height: 450px;
    margin-right: 40px;
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-tag {
    position: absolute;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    color: #009688;
    right: 10px;
    top: 10px;
    text-transform: capitalize;
}

.card-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    width: 90%;
    text-transform: capitalize;
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
    opacity: 0;
}

.product-card:hover .card-btn {
    opacity: 1;
}

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

.product-info {
    width: 100%;
    height: 100px;
    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: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    cursor: pointer;
    z-index: 9;
}

.pre-btn {
    left: 0;
    /* transform: rotate(180deg); */
}

.nxt-btn {
    right: 0;
}

.pre-btn img,
.nxt-btn img {
    opacity: 0.2;
}

.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 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: #fff;
    font-size: 50px;
    text-transform: capitalize;
}

.collection:nth-child(3) {
    grid-column: span 2;
    margin-bottom: 10px;
}

/*Product slider end*/

/*Item start*/
.item {}

.item-title {
    padding: 0 10vw;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-family: 'Inria Sans';
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    line-height: 14px;
    text-align: center;
    color: #EFB810;
}

.item-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.item-card {
    box-sizing: border-box;
    width: 150px;
    height: 250px;
    background: #FFFFFF;
    border: 1px solid #EFB810;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.item-card-image {
    padding: 10px;
    margin: auto;
    width: 120px;
}

.item-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-card-name {
    padding: 10px 0 0 0;
    font-family: 'Jua';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: #000000;
}

.item-card-price {
    padding: 20px 0 0 0;
    font-family: 'Jua';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 12px;
    color: #EFB810;
}

.item-card-button {
    margin-top: 20px;
    padding: 10px;
    background: #EFB810;
    border-radius: 2px;
    transition: 0.5s;
    color: black;
}

.item-card-button:hover {
    background: #b89017;
    border-radius: 20px;
    transition: 0.5s;
    color: white;
}

/*Item end*/

/*Footer start*/
.footer-custom{
    background: #EFB810;
}
/*Footer start*/