.bg-black {
    background-color: #000;
}
.bg-green-600 {
    background-color: #16a34a;
}
.text-white {
    color: #fff;
}
.checkout-inline-error-message {
    color: red;
}
.p-4 {
    padding: 16px;
}
.p-8 {
    padding: 32px;
}
.mb-8 {
    margin-bottom: 32px;
}
.text-gray {
    color: gray;
}

.border-2 {
    border: 2px solid;
}
.border-black {
    border-color: #000;
}
.rounded-xl {
    border-radius: 16px;
}
.grid {
    display: grid;
}
.absolute {
    position: absolute;
}
.flex {
    display: flex;
}

.member-levels .status {
    height: 130px;
    display: block;
    width: 130px;
    margin: 0 auto;
    top: -60px;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 50%;
}
.member-levels .status--checked {
    color: #00a82f;
}
.member-levels .status--notchecked span {
    width: 110px;
    height: 110px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding: 12px;
    line-height: 1;
    font-weight: 600;
    margin: 10px auto;
}
.member-level {
    position: relative;
    text-align: center;
    margin-top: 70px;
    padding-top: 70px;
}
.text-red-500 {
    color: #f56565;
}
.swiper-slide.product--reviewed a {
    opacity: 0.5;
}
.reviewed-badge {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    border-radius: 24px;
    padding: 4px 8px;
    background: #161616;
    width: 90px;
    font-size: 12px;
}
.product a p {
    color: #000000;
    font-size: 16px;
}
@media screen and (min-width: 1024px) {
    .grid.lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
