/* Start of common CSS */

/* =========================================== */

.mb-30 {
    margin-bottom: 30px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

/* =========================================== */

h1 {
    font-size: 4rem;
    /* --font-7xl */
    line-height: 64px;
    margin-bottom: 0px;
}

h2 {
    font-size: 4.8rem;
    /* --font-5xl */
    line-height: 60px;
    margin-bottom: 0px;
}

h3 {
    font-size: 4.0rem;
    /* --font-4xl */
    line-height: 52px;
    margin-bottom: 0px;
}

h4 {
    font-size: 2.25rem;
    /* --font-36 */
    line-height: 48px;
    margin-bottom: 0px;
}

h5 {
    font-size: 3.2rem;
    /* --font-3xl */
    line-height: 40px;
    margin-bottom: 0px;
}

h6 {
    font-size: 2.4rem;
    /* --font-xl */
    line-height: 32px;
    margin-bottom: 0px;
}

/* =========================================== */

.pxy_80 {
    padding: 80px 0px;
}

.pt_0 {
    padding-top: 0px !important;
}

.pb_0 {
    padding-bottom: 0px;
}

.p_15 {
    padding: 15px;
}

.p_26 {
    padding: 26px;
}

/* =========================================== */

.d_flex {
    display: flex;
}

.align_items_center {
    align-items: center;
}

.align_items_end {
    align-items: end;
}

.justify_content_center {
    justify-content: center;
}

.justify_content_between {
    justify-content: space-between;
}

.f_direction_col {
    flex-direction: column;
}

.f_direction_row {
    flex-direction: row !important;
}

.d_grid {
    display: grid;
}

.grid_template_col_2 {
    grid-template-columns: 1fr 1fr;
}

.grid_template_col_3 {
    grid-template-columns: 1fr 1fr 1fr;
}

/* =========================================== */

.text_dark {
    color: #a0a0a0;
}

.border_1_solid {
    border: 1px solid #707070;
    /* --accent-color */
}

.primary_btn {
    width: 30rem;
    padding: 1em;
    background-color: #fff;
    color: #000;
    border: 1px solid #707070;
    text-align: center;
    /* --accent-color */
    font-size: 2.4rem;
    /* --font-xl */
    font-weight: 500;
}

.modal_image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 6rem;
}

.message_subline {
    text-align: center;
    margin: 2rem 6rem;
    font-size: 2.4rem;
    /* --font-xl */
}

/* modal CSS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(19.549999237060547px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    backdrop-filter: blur(35.25px);
    border: 1px solid #707070;
    /* --accent-color */
}

.custom-modal.active {
    display: block;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

/* =========================================== */

.backBtn {
    padding: 15px 25px;
    border: 1px solid #707070;
    /* --accent-color */
    cursor: pointer;
}

.backBtn i {
    font-size: 2.0rem;
    /* --font-lg */
}

.btn_heading {
    font-size: 2.0rem;
    /* --font-lg */
}

.step_heading {
    font-size: 1.8rem;
    /* --font-md */
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    padding: 15px 25px;
    border: 1px solid #707070;
    /* --accent-color */
    font-size: 2.0rem;
    /* --font-lg */
}

/* =========================================== */

/* End of common CSS */



/* Pushpam CSS */

.customer_outerDiv {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0px;
    border-bottom: 1px solid #707070;
    /* --accent-color */
}

.customer_wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 0.5fr;
    grid-gap: 30px;
    position: relative;
}

.section_title {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
}

.name-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.875rem;
}

.name_box1 {
    padding: 20px 15px;
    border: 1px solid #707070;
    /* --accent-color */
}

.name_box2 {
    display: flex;
    flex-direction: column;
}

.review_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.star_div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star_box i {
    font-size: 2.4rem;
    /* --font-xl */
}

.text_box h6 {
    font-size: 2.4rem;
    /* --font-xl */
}

.comment_info p {
    font-size: 1.6rem;
    /* --font-base */
}

.date_box {
    position: absolute;
    top: 0px;
    right: 0px;
}

.like_dislike_wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
}

.like_dislike_div {
    display: flex;
    gap: 15px;
}

.like_dislike_div i {
    font-size: 4.0rem;
    /* --font-4xl */
}

.like_box,
.dislike_box {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

/* =========================================== */

.product_outerDiv {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
}

.product_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding: 30px;
    border: 1px solid #707070;
    /* --accent-color */
}

.product_image {
    width: 100%;
}

.product_image img {
    width: 100%;
}

.product_detail_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.product_info {
    display: flex;
    flex-direction: column;
}

.product_currency {
    display: flex;
    gap: 15px;
}

.view_product_add_to_cart {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 10px;
}

.view_product_add_to_cart i {
    font-size: 3.2rem;
    /* --font-3xl */
}

/* ======================================= */

.ads_outerDiv {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    grid-gap: 30px;
    align-items: center;
    background-image: linear-gradient(90.41deg, #000000 31.76%, #1D002F 119.17%);
    border: 1px solid #707070;
    padding: 40px;
    /* --accent-color */
}

.ads_wrapper {
    display: flex;
    flex-direction: column;
}

.ads_info {
    max-width: 550px;
}

.ads_info p {
    margin-bottom: 25px;
}

.ads_image {
    margin: 0 auto;
}

.ads_image img {
    max-width: 500px;
}

.ads_btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-top: 40px;
    background: linear-gradient(90deg, #000000 -35.39%, #1F1F1F 7.91%, #000000 42.32%, #252525 70.22%, #000000 91.68%, #202020 119.73%, #000000 165.88%, #333232 202.65%, #000000 215.69%, #666666 294.66%);
    border: 1px solid #707070;
    /* --accent-color */
}

/* ================================================== */

.product_review_outerDiv {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* grid-template-columns: 0.3fr 0.3fr; */
    justify-content: center;
    align-items: center;
}

.product_review_box1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.625rem;
}

.product_review_box1 span {
    font-size: 4.5rem;
    /* --font-7-5xl */
    line-height: normal;
}

.product_review_box1 p {
    margin-top: 15px;
    margin-bottom: 0px;
}

.wrapperDiv {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0px 10px;
    border-left: 1px solid #707070;
    /* --accent-color */
    border-right: 1px solid #707070;
    /* --accent-color */
}

.review_list {
    display: grid;
    grid-template-columns: 0.3fr 1fr 0.3fr;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.review_list .line {
    width: 100%;
    height: 10px;
    background-color: #fff;
    border-radius: 15px;
}

.review_rating {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.review_rating span {
    font-size: 1.5rem;
}

.product_review_box3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_review_btn {
    display: flex;
    gap: 10px;
    padding: 20px;
    border: 1px solid #707070;
    /* --accent-color */
}


/* =========================================== */

.product_info_section {
    padding-top: 80px;
}

.category_wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.product_info_outerDiv {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: flex-start;
    gap: 30px;
}

.image_wrapper {
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    align-items: self-start;
    position: relative;
}

.mySwiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left_image {
    overflow: hidden;
    border: 1px solid #707070;
    /* --accent-color */
}

.mySwiper .swiper-slide {
    margin: 10px !important;
    border: 1px solid #707070;
    /* --accent-color */
    width: 100px !important;
    height: 100px;
    cursor: pointer;
}

.mySwiper .swiper-slide.swiper-slide-thumb-active {
    border: 2px solid #fff;
}

.mySwiper2 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper2.swiper {
    width: 100%;
    height: 100%;
}

.box_2,
.box_3,
.box_4 {
    max-width: 530px;
}

.headerDiv {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.colorDiv {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.colorDiv>div {
    width: 120px;
    height: 120px;
    padding: 10px;
    border: 1px solid #707070;
    /* --accent-color */
}

.colorDiv>div.active {
    border: 2px solid #fff;
}

.colorDiv img {
    width: 100%;
    height: 100%;
}

.priceDiv {
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 2.4rem;
    /* --font-xl */
}

.move_to_wishlist {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 15px;
    border: 1px solid #707070;
    /* --accent-color */
    transition: all 0.5s;
}

.move_to_wishlist.added {
    background-color: #fff;
    color: #000;
    transition: all 0.5s;
}

.move_to_wishlist i {
    font-size: 2.4rem;
    /* --font-xl */
}

.move_to_wishlist.added i {
    color: red;
    transition: all 0.5s;
}

.add_to_bag_wrapper button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #707070;
    /* --accent-color */
    margin-bottom: 15px;

    background: linear-gradient(90deg, #000000 -35.39%, #1F1F1F 7.91%, #000000 42.32%, #252525 70.22%, #000000 91.68%, #202020 119.73%, #000000 165.88%, #333232 202.65%, #000000 215.69%, #666666 294.66%);
    transition: all 0.5s;
}

.buy_now button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #707070;
    color: #000;
    background-color: #fff;
    transition: all 0.5s;
}

.add_to_bag_wrapper button.added {
    background: #fff;
    color: #000;
    transition: all 0.5s;
}

.add_to_bag_wrapper i {
    font-size: 2.4rem;
    /* --font-xl */
}

.description_type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.description_type button {
    width: 100%;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    border: 1px solid #707070;
    /* --accent-color */
}

.description_details {
    margin: 20px 0px;
}

.description_info {
    display: none;
}

.description_info.active {
    display: block;
}

ul.description_info {
    list-style: none;
}

.description_type button[aria-expanded='true'] i {
    transform: rotate(180deg);
}

/* ============================================ */

@media (max-width: 1200px) {

    .view_product .container {
        max-width: 110rem;
    }

    .product_info_outerDiv {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 992px) {

    .pxy_80 {
        padding: 60px 0px;
    }

    .section_title {
        margin-bottom: 30px;
    }

    .product_info_outerDiv {
        grid-template-columns: 1fr;
    }

    .box_2,
    .box_3,
    .box_4 {
        max-width: 100%;
    }

    .colorDiv>div {
        width: max-content;
        height: 155px;
    }

    .customer_wrapper {
        grid-template-columns: 1fr;
    }

    .product_outerDiv {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ======================================== */

    .ads_outerDiv {
        grid-template-columns: 1fr;
    }

    .ads_wrapper {
        text-align: center;
    }

    .ads_info {
        max-width: 100%;
    }

    /* ======================================== */

    .product_review_outerDiv {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product_review_box1 {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .wrapperDiv {
        border: none;
    }
}

@media (max-width: 767px) {

    .pxy_80 {
        padding: 40px 0px;
    }

    .mySwiper .swiper-slide {
        width: 50px !important;
        height: 50px;
    }

    .image_wrapper {
        grid-template-columns: 0.1fr 1fr;
    }

    .colorDiv {
        flex-wrap: wrap;
        gap: 6px;
    }

    .colorDiv>div {
        height: 70px;
    }

    .product_outerDiv {
        grid-template-columns: repeat(1, 1fr);
    }

    .ads_image img {
        max-width: 100%;
    }

    .detail_wrapper .box_1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .detail_wrapper .star_box i {
        font-size: 2rem;
    }

    .headerDiv .header_name,
    .headerDiv .line {
        display: none;
    }

    .customer_review_section .star_box i {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {}

@media (max-width: 425px) {}

@media (max-width: 375px) {}

@media (max-width: 320px) {}


/* change password page css =================================== */
.cp-container {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.cp-form-wrapper {
    width: 100%;
    max-width: 50rem;
    padding: 0rem;
}

.cp-welcome-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: left;
}

.cp-brand-name {
    font-weight: 700;
}

.cp-section-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0rem;
    color: #ffffff;
}

.cp-section-description {
    font-size: 1.4rem;
    color: #888888;
    margin-bottom: 2rem;
}

.cp-form-group {
    margin-bottom: 2.4rem;
}

.cp-form-label {
    display: block;
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 0.8rem;
}

.cp-input-wrapper {
    position: relative;
}

.cp-form-input {
    width: 100%;
    padding: 1.2rem 4rem 1.2rem 1.6rem;
    background-color: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 0.8rem;
    color: #ffffff;
    font-size: 1.4rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.cp-form-input:focus {
    border-color: #666666;
}

.cp-form-input::placeholder {
    color: #666666;
}

.cp-eye-icon {
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888888;
    font-size: 1.6rem;
    transition: color 0.2s ease;
}

.cp-eye-icon:hover {
    color: #cccccc;
}

.cp-password-requirements {
    margin: 3rem 0;
}

.cp-requirements-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.6rem;
}

.cp-requirement-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.cp-requirement-icon {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    margin-right: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cp-requirement-met {
    background-color: #22c55e;
    color: #ffffff;
}

.cp-requirement-met::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.cp-requirement-unmet {
    background-color: #666666;
    color: #ffffff;
}

.cp-requirement-unmet::after {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.cp-requirement-text {
    color: #cccccc;
}

.cp-continue-btn {
    width: 100%;
    padding: 1.6rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 2rem;
}

.cp-continue-btn:hover {
    background-color: #f5f5f5;
}

.cp-continue-btn:active {
    background-color: #e5e5e5;
}


.add_to_bag_wrapper.buy_now button {
    background: #ffffff;
    color: #000000;
    margin-top: 15px;
}

.add_to_bag_wrapper.buy_now button:hover {
    background: #000000;
    color: #ffffff;
    margin-top: 15px;
}

button.add_to_compare {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 15px;
    border: 1px solid #707070;
    transition: all 0.5s;
}

span.in_stock {
    background-color: #00ac00;
    padding: 1rem 2rem;
    margin-right: 1rem;
}

.stock_number {
    display: flex;
    align-items: center;
}

button.logout-button {
    background-color: red;
    padding: 1rem 5rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
}

.dashboard-sidebar button.logout-button {
    margin-top: 40px;
    width: fit-content;
}

button.logout-button:hover {
    background-color: rgb(216, 0, 0);
    transition: all 0.3s ease;
}


/* ==================================== */

.customer_review_section textarea {
    resize: none;
    padding: 20px;
    color: #fff;
}

/* ===================================== */

.cart_product_detials {
    padding: 30px 0px;
    border-bottom: 1px solid #363636;
}

.cart_products .cart_product_detials:last-child {
    border: none;
}

.product_quantity_count {
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 18px;
    text-align: center;
}

.product_quantity_count::-webkit-outer-spin-button,
.product_quantity_count::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==================================== */

#product-review-feedback textarea {
    padding: 10px;
    font-size: 2rem;
    color: #fff;
}



/* CANCEL ORDER MODAL CSS ==============================  */
.pv-trigger-btn {
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.pv-trigger-btn:hover {
    background: #0056b3;
}

.pv-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.pv-modal-overlay.pv-active {
    display: flex;
}

.return-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.return-modal-overlay.pv-active {
    display: flex;
}

.pv-modal-content {
    background: #000;
    color: #fff;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 50rem;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: pvSlideIn 0.3s ease-out;
}


@keyframes pvSlideIn {
    from {
        opacity: 0;
        transform: translateY(-2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pv-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pv-modal-title {
    font-size: 1.7rem;
    font-weight: 500;
}

.pv-close-btn {
    background: #3c3c3c;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: background 0.2s;
}

.pv-close-btn:hover {
    background: #333;
}

.pv-modal-body {
    padding: 1.5rem;
}

.pv-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pv-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pv-checkbox-item input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    accent-color: #fff;
}

.pv-checkbox-item label {
    font-size: 1.7rem;
    cursor: pointer;
    user-select: none;
}

.pv-textarea-container {
    margin-top: 1.5rem;
}

.pv-textarea-container textarea {
    width: 100%;
    min-height: 12.5rem;
    padding: 0.75rem;
    background: #000;
    border: 1px dashed #666;
    border-radius: 0.25rem;
    color: #fff;
    font-family: inherit;
    font-size: 1.3rem;
    resize: vertical;
}

.pv-textarea-container textarea:focus {
    outline: none;
    border-color: #999;
}

.pv-textarea-container textarea::placeholder {
    color: #666;
}

.pv-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #333;
}

.pv-submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.pv-submit-btn:hover {
    background: #e6e6e6;
}

.pv-submit-btn:active {
    transform: scale(0.98);
}


/* Product Reveiew Page CSS ==============================  */

.pr-review-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr 1fr auto;
    gap: 1.5rem;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.pr-avatar {
    width: 5.9375rem;
    height: 5.9375rem;
    background: #2a2a2a;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pr-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-user-info h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pr-user-info p {
    color: #888;
    font-size: 1.2rem;
}

.pr-date,
.pr-star,
.pr-comment {
    text-align: left;
}

.pr-label {
    color: #ffffff;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.pr-date-value {
    color: #fff;
    font-size: 1.4rem;
}

.pr-star-value {
    color: #ffa500;
    font-size: 1.4rem;
    font-weight: 600;
}

.pr-star-value i {
    margin-left: 0.25rem;
}

.pr-comment-value {
    color: #fff;
    font-size: 1.4rem;
}

.pr-delete-btn {
    background: #dc143c;
    color: #fff;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
}

.pr-delete-btn:hover {
    background: #b81030;
}

@media (max-width: 1024px) {
    .pr-review-card {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .pr-avatar {
        grid-row: 1 / 3;
    }

    .pr-user-info {
        grid-column: 2;
    }

    .pr-date,
    .pr-star,
    .pr-comment {
        grid-column: 2;
    }

    .pr-delete-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 640px) {
    body {
        padding: 1rem;
    }

    .pr-review-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .pr-avatar {
        width: 4rem;
        height: 4rem;
    }

    .pr-user-info h3 {
        font-size: 0.9375rem;
    }

    .pr-user-info p {
        font-size: 0.8125rem;
    }

    .pr-label {
        font-size: 0.6875rem;
    }

    .pr-date-value,
    .pr-comment-value {
        font-size: 0.8125rem;
    }

    .pr-star-value {
        font-size: 0.9375rem;
    }

    .pr-delete-btn {
        padding: 0.5rem 1rem;
        font-size: 0.6875rem;
    }
}


/* checkout page address css ==============================  */
/* .checkout-address-container {
    max-width: 28.125rem;
    margin: 0 auto;
} */

.checkout-address-card {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.checkout-address-card.active {
    border-color: #4CAF50;
    background-color: #0a1a0a;
}

.checkout-address-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkout-address-radio {
    margin-top: 0.25rem;
}

.checkout-address-radio input[type="radio"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    accent-color: #4CAF50;
}

.checkout-address-badge {
    display: inline-block;
    padding: 0.65rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
}

.checkout-address-badge.default {
    background-color: #4CAF50;
    color: #000;
}

.checkout-address-badge.temporary {
    background-color: #e91e63;
    color: #fff;
}

.checkout-address-content {
    flex: 1;
}

.checkout-address-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.checkout-address-text {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.checkout-address-phone {
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 0.75rem;
}

.checkout-address-phone-label {
    font-size: 1.2rem;
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.checkout-address-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkout-address-btn {
    flex: 1;
    background-color: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.checkout-address-btn:hover {
    background-color: #222;
    border-color: #666;
}

.checkout-address-btn i {
    font-size: 1.2rem;
}

.checkout-address-add-btn {
    background-color: transparent;
    border: 1px dashed #444;
    color: #aaa;
    padding: 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.2s;
}

.checkout-address-add-btn:hover {
    border-color: #666;
    color: #fff;
    background-color: #111;
}