.checkout-payment-title {
    font-size: 16px;
    color: #492600;
    font-weight: 600;
}

.check-out-container {
    display: flex;
    justify-content: center;
    margin-left: -50px;
}

.back-transparent {
    background-color: transparent;
}

.show-order-summary-container {
    width: 795px;
}

.show-order-summary {
    border: 1px solid #f4b572;
    border-radius: 10px;
    font-weight: 600;
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    background: #fdf3e880;
}

.p-v-p-item-description-container {
    display: flex;
    justify-content: center;
}

.pay-with-card-i-l {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-weight: 600;
}

.pym-add-new {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-weight: 600;
}

.Payment-Method {
    margin-left: 18px;
}

.add-new {
    margin-right: 30px;
    color: teal;
    text-decoration: underline;
}

.payment-method-card-scroller {
    display: flex;
    overflow-x: auto; /* Use 'auto' to enable scrolling */
    width: 100%; /* Set a width */
}

.nameandaddress {
    min-width: 300px; /* Set a minimum width for child items */
    margin-right: 20px; /* Space between items */
}

::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

.payment-method-card-scroller {
    margin-top: 20px;
}

.nameandaddress {
    border: 1px solid #f9dab9;
    background-color: white;
    width: 380px;
    border-radius: 14px;
    margin-bottom: 15px;
    margin-right: 15px;
}

.text-bold {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 30px;
    margin-right: 0px;
}

.nameandaddress-internal-ctn {
    margin-left: -10px !important;
}
.nameandaddress-internal-ctn {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.pop-up-edit-link {
    color: teal;
    font-weight: bold;
}
.pop-up-name {
    font-weight: 600;
}

.p-v-p-item-description-container {
    display: flex;
    justify-content: center;
    padding: 15px;
    /* background: white; */
    background: transparent;
    border-radius: 20px;
}
.p-v-p-item-description-container .no-cart-items{
    text-align: center;
}
.p-v-p-item-description-container .no-cart-items img{
    width: 527px;
}

.Billing-Address {
    margin-left: 20px;
    font-weight: 600;
}

#countries {
    color: black;
    background-color: white;
    outline: none;
    border: 1px solid gray;
    padding: 6px 320px;
    margin-left: 19px;
    margin-top: 5px;
    border-radius: 5px;
}

.zip-code-city {
    display: flex;
    margin-left: 19px;
    margin-top: 10px;
    justify-content: space-between;
    font-weight: 600;
}

.zip-code-input,
.city-input {
    padding: 5px 100px;
    margin-top: 5px;
}

.check-billling-address {
    margin-left: 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.pay-button-div {
    display: flex;
    justify-content: center;
}

.pay-button {
    background-color: teal;
    color: white;
    margin: 20px;
    padding: 10px 170px;
    border-radius: 15px;
    border: none;
    outline: none;
    font-weight: 600;
}

.checkout-order-summary {
    width: 300px;
    max-width: 300px;
    margin-left: 12px;
    border: 1px solid #f4b572;
    border-radius: 10px;
    background: #fdf3e880;
    overflow: scroll;
}

.checkout-order-summary-title {
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.checkout-order-summary-price {
    display: flex;
    justify-content: space-around;
    gap: 18px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    padding: 10px;
    max-width: 275px;
}

.checkout-order-summary-hr {
    width: 250px;
    color: #f4b572;
    background-color: #f4b572;
}

.checkout-order-discount-price-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 10px;
}

.for-padding {
    padding: 5px 25px;
    margin-bottom: 20px;
}

.loyalty-points-c {
    border: 1px solid #f4b572;
    border-radius: 10px;
    font-weight: 600;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fdf3e880;
    margin: 20px;
}

.loyalty-points-header {
    font-size: 12px;
}

.loyalty-points-price {
    color: #f4b572;
}

/* Redesigned Delivery Option Selector */
.pick-up-locatn-checkbox {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px auto;
    max-width: 500px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.delivery-option {
    flex: 1;
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    background: white;
    max-width: 200px;
}

.delivery-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.delivery-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.delivery-option input[type="radio"]:checked + .delivery-option-content {
    border-color: #FA9313;
    background-color: #fffbf4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(250, 147, 19, 0.2);
}

.delivery-option-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: #7059a8;
    transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked + .delivery-option-content .delivery-option-icon {
    color: #FA9313;
    transform: scale(1.1);
}

.delivery-option-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.delivery-option-description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .pick-up-locatn-checkbox {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .delivery-option {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation for delivery options */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 0.5s ease-in-out;
}

.Order-s-nameandaddress {
    border: none;
    background-color: transparent;
    width: max-content;
    border-radius: 14px;
    margin: 0px;
    width: 300px;
}

.nameandaddress-internal-ctn {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 120px;
    align-items: center;
    justify-content: flex-start;
    margin-left: 30px !important;
    font-size: 13px;
}

.Order-s-nameandaddress-internal-ctn {
    display: flex;
    margin-top: 10px;
    margin-bottom: 5px;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
    margin-left: 31px !important;
    font-size: 13px;
}

.pop-up-work-home {
    padding: 3px 5px;
    color: beige;
    border-radius: 10px;
    background: #eef4ff;
    color: #3538cd;
    font-weight: bold;
}

.pop-up-address {
    width: 80%;
    color: gray;
    font-weight: 600;
    margin-left: 70px;
    margin-bottom: 18px;
    font-size: 11px;
}

.card-number-input {
    margin-left: 20px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .show-order-summary-container {
        width: 68%;
    }

    .pay-button {
        padding: 10px 120px;
    }

    .p-v-p-item-description-container {
        width: 89%;
        margin-left: 60px;
    }

    #countries {
        padding: 6px 240px;
    }

    .zip-code-input,
    .city-input {
        padding: 5px 63px;
    }
}

@media (max-width: 768px) {
    .check-out-container {
        margin-left: -36px;
        width: 1035px;
    }

    #countries {
        padding: 6px 233px;
    }

    .zip-code-input,
    .city-input {
        padding: 5px 55px;
    }

    .zip-code-city {
        width: 599px;
    }

    .Order-s-nameandaddress-internal-ctn {
        gap: 10px;
    }

    .pop-up-address {
        margin-left: 62px;
    }
}

@media (max-width: 426px) {
    .productCategoryListingC {
        margin-top: 50px;
    }

    .checkout-payment-title {
        margin-top: -76px;
        font-size: 25px;
        margin-left: 0px;
    }

    .p-v-p-item-description-container {
        margin-top: -50px;
    }

    .p-v-p-item-description-container {
        display: flex;
        flex-direction: column;
    }

    .show-order-summary-container {
        width: 100%;
    }

    .show-order-summary {
        font-size: 25px;
    }

    .pay-with-card-i-l,
    .Payment-Method {
        margin-top: 30px;
        font-size: 25px;
    }

    .Pay-With-Credit-Card-input {
        height: 20px;
        width: 20px;
    }

    .add-new {
        margin-top: 27px;
        font-size: 25px;
    }

    .payment-method-card-scroller {
        display: flex;
        flex-direction: column;
        margin-left: 104px;
        width: max-content;
    }

    .pym-add-new {
        justify-content: space-around;
        gap: 196px;
    }

    .text-bold {
        font-size: 28px;
    }

    .nameandaddress {
        width: 700px;
    }

    .nameandaddress-internal-ctn {
        font-size: 28px;
    }

    .Payment-Method {
        font-size: 30px;
    }

    .card-number-input {
        font-size: 30px;
    }

    .card-number-input {
        transform: scale(2);
        margin-left: 155px;
    }

    .check-out-container {
        margin-left: -36px;
        width: 1010px;
    }

    .pop-up-phone-img {
        width: 170px;
        height: 165px;
    }

    .pop-up-item-details-title {
        font-weight: bold;
        font-size: 35px;
        margin-top: 13px;
    }

    .pop-up-item-details-price {
        font-size: 25px;
    }

    .pop-up-item-details-color {
        font-size: 20px;
        color: grey;
    }

    .pop-up-item-details-add {
        font-size: 23px;
        width: 175px;
    }

    .pop-up-item-details-remove {
        font-size: 24px;
    }

    .modal-content {
        max-width: 480px;
        padding-bottom: 19px;
    }

    .pop-up-item-details {
        display: flex;
        border-bottom: 1px solid rgba(128, 128, 128, 0.491);
        padding-bottom: 20px;
    }

    .close-btn {
        font-size: 40px;
    }

    .modal-content {
        position: fixed;
        left: 349px;
        top: -21px;
    }

    .pop-up-edit-link {
        color: teal;
        font-weight: bold;
        margin-left: 210px;
    }

    .Billing-Address {
        font-size: 30px;
        margin-left: 110px;
        margin-top: 20px;
    }

    #countries {
        padding: 8px 71px;
        font-size: 25px;
        margin-left: 112px;
        margin-top: 10px;
        width: 697px;
    }

    .zip-code-city {
        display: flex;
        flex-direction: column;
    }

    .zip-code-label {
        font-size: 30px;
    }

    .zip-code-city {
        width: max-content;
        margin-left: 120px;
    }

    .zip-code-input,
    .city-input {
        font-size: 26px;
        width: 573px;
    }

    .check-billling-address {
        margin-left: 117px;
        margin-top: 25px;
        display: flex;
        align-items: center;
        font-size: 24px;
    }

    .billing-address-input-checkbox {
        height: 20px;
        width: 20px;
        margin-right: 20px;
    }

    .checkout-order-summary {
        width: 688px;
        margin-left: 12px;
        margin-left: 120px;
        font-size: 30px;
        margin-bottom: 100px;
    }

    .checkout-order-summary-price {
        display: flex;
        justify-content: space-around;
        gap: 310px;
        font-size: 25px;
        font-weight: 600;
        margin-top: 10px;
        padding: 10px;
    }

    .checkout-order-discount-price-label {
        display: flex;
        justify-content: space-between;
        font-size: 24px;
        margin-top: 10px;
    }

    #code {
        font-size: 18px !important;
    }

    .loyalty-points-header {
        font-size: 20px;
    }

    .loyalty-points-c {
        padding: 20px;
    }

    .loyalty-points-price {
        font-size: 40px;
    }

    .pick-up-locatn-checkbox {
        font-size: 24px;
        padding: 10px;
    }

    #pick-up {
        height: 20px;
        width: 20px;
        margin-right: 10px;
    }

    .pop-up-address {
        font-size: 26px;
        margin-left: 129px;
    }

    .Order-s-nameandaddress-internal-ctn {
        font-size: 26px;
        gap: 41px;
    }

    .pop-up-edit-link {
        margin-left: 115px;
    }

    #name-work-edit {
        height: 20px;
        width: 20px;
        margin-left: 37px;
    }

    .pay-button {
        font-size: 28px;
        padding: 12px 232px;
        margin-left: 57px;
    }

    .pay-button-div {
        position: relative;
        top: 973px;
    }
}

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

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