body {
    background-color: var(--back);
}

.newlisted-head {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.newlisted-head h1 {
    font-weight: bold;
}

.newlisted-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    gap: 30px;
    justify-content: center;
}

.new-product {
    background-color: var(--light);
    padding: 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 10px 20px #ebdfd0;
}

.pagination {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.pagination-wrapper {
    border-top: 1px solid var(--shadow);
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#count {
    padding: 6px 10px;
    border: none;
    border: 1px solid var(--shadow);
    font-weight: 600;
    color: var(--head);
    border-radius: 5px;
    transition: 0.1s;
    height: 40px;
    font-size: 12px;
    max-width: 130px;
    cursor: pointer;
    margin-inline-start: auto;
}

.new-product .p-indicators {
    padding: 30px;
}