body .cards {
    font-family: Arial, Helvetica, sans-serif;
    height: 80px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: start;
    align-items: start;
    float: left;
    background-color: #770404;
}


/* All item */

.all-product {
    margin-top: 10px;
    /* border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ce760b; */
}

.all-Product {
    --col: 9.5rem;
    --row: 17.5rem;
    --gap: 4rem;
    display: grid;
    grid-template-columns: repeat(5, var(--col));
    grid-template-rows: repeat(4, var(--row));
    grid-gap: var(--gap);
}

.all-Product--full {
    --col: 30%;
    --row: 4rem;
    --gap: 1rem;
}

.btn-primary {
    background: #ce760b;
    padding: 10px 40px;
    width: 25px;
    color: rgb(255, 255, 255);
    border: noneblack;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    content: '\e8b9';
}

.btn-primary:hover {
    background: #58051e;
}

.btn-primary a {
    margin-left: -15px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.cards {
    margin: 0;
    margin-top: 50px;
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    position: relative;
    width: 290px;
    height: 300px;
    background-color: rgb(210, 208, 219);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

p.a-btns {
    margin-left: -10px;
    text-align: center;
}

.card img {
    filter: blur(8px);
}

.free img {
    filter: none;
}

.card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 2);
    scale: 1.02;
}


/* img style */

.card img {
    width: 85%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.product img {
    margin-top: -10px;
    width: 95%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}


/* card style */

.card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 13px;
}

.footer-pric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -90px;
    margin-right: 120px;
}


/* info block */

.info-block {
    color: black;
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-block-product {
    color: rgb(255, 255, 255);
    width: 100%;
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.title {
    font-size: 18px;
    font-weight: bold;
}

.description-pro {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    margin-top: -45px;
    display: block;
    font-size: 14px;
}


/* sub items */

.sub-title {
    justify-items: center;
    margin-top: 7px;
    font-size: 11px;
    color: rgb(187, 126, 27);
    font-weight: bold;
}

.sub-product {
    float: left;
    margin-top: -20px;
    margin-right: 130px;
    font-size: 12px;
    color: rgb(161, 0, 0);
    font-weight: bold;
}


/* price style */

.price {
    font-size: 14px;
    color: rgb(3, 0, 0);
}

.price-product {
    font-size: 14px;
    color: #ffffff;
}


/* tag style */

.ploh {
    margin-top: -18px;
}

.tag-now {
    /* position: absolute; */
    margin-top: -20px;
    margin-left: 180px;
    color: #ce760b;
    font-size: 14px;
    font-weight: bold;
}

.new-tag {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #be9e0b;
    font-size: 14px;
    font-weight: bold;
}

.tag-dis {
    position: absolute;
    top: 5px;
    left: 10px;
    color: #6c0101;
    font-size: 15px;
    font-weight: bolder;
}


/* item style */

.card-EL {
    margin: 0;
    margin-top: -100px;
    width: 180px;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.product {
    display: flex;
    /* position: relative; */
    margin-top: 20px;
    margin-bottom: 20px;
    width: 200px;
    height: 200px;
    background-color: rgb(10, 2, 44);
    border-radius: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.more {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 14px;
    margin-right: 20px;
    margin-top: -40px;
}

.more a {
    text-decoration: none;
    text-align: center;
    color: #be9e0b;
}

.more a:hover {
    color: #770404;
}