.product-det-page {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
}

.product-faq {
    width: 50%;

}

.product-gallery {
    position: relative;
    display: flex;

}

.tabs-like p {
    text-align: justify;
}

.thumbnail-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 15%
}

.thumbnail {
    width: 80px;
    cursor: pointer;
    border-radius: 5px;
}

.main-image {
    position: relative;
    width: 85%;
}

.main-image img {
    width: 100%;
    border-radius: 10px;
    max-height: 720px;

}

.prev-btns,
.next-btns {
    position: absolute;
    background: #2E2381;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50px;
}

.zoom-btn {
    position: absolute;
    background: rgb(255 255 255);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 50px;
}

.stock-out {
    cursor: none !important;
}

.prev-btns {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.next-btns {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.zoom-btn {
    right: 10px;
    top: 10px;
    height: 40px;
    width: 40px;
    background: rgb(255 255 255);
    color: #fff;
}

button.zoom-btn.sm-none img {
    width: 23px;
}

button.zoom-btn.sm-none {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-info {
    width: 50%;
    padding-left: 40px;
}


.current-price {
    font-weight: bold;
}

.original-price {
    color: #888;
    margin-left: 10px;
}

.select-options {
    margin: 15px 0;
}

.option-group {
    display: flex;
    gap: 10px;
    padding: 10px 0px;
}

.option-group input[type="radio"] {
    display: none;
}

.option-group label {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.option-group input[type="radio"]:checked+label {
    background-color: #2E2381;
    color: #fff;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ccc;
}

.quantity-selector {
    margin: 15px 0;
    padding-top: 15px;
}

.quantity-buttons {
    background: #F1F1F1;
    display: flex;
    width: 130px;
    height: 45px;
    border-radius: 40px;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.decrease-btn,
.increase-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    border: none;
}

.quantity-input {
    width: 40px;
    text-align: end;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background: #F1F1F1;
    display: inline-block;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.add-to-bag,
.buy-now {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.add-to-bag {
    color: #2E2381;
    background: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 13px;
    text-align: left;
    text-transform: uppercase;
    border: solid 2px #2e2381;
}

.buy-now {
    border: none;
    padding: 20px 55px;
    border-radius: 40px;
    border: none;
    background: #2E2381 !important;
    font-size: 18px;
    color: #ffffff !important;
    font-weight: 500;
    line-height: 13px;
    text-align: left;
    text-transform: uppercase;
}

.additional-info {
    margin-top: 60px;
}

.price-detail span {
    font-weight: 400;
    font-size: 22px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    background: #F1F1F1;
    padding: 20px;
    border-radius: 15px;
}

.color-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.color-option {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.color-option:hover {
    opacity: 1;
}

.color-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
}

.color-option input[type="radio"]:checked+.color-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #000;
    border-radius: 50%;
}

.color-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.color-option input[type="radio"]:checked+.color-circle {
    transform: scale(1.0);
}

.color-circle.white {
    background-color: #2E2381;
    border: 1px solid #000;
}

.color-circle.red {
    background-color: #F53535;
    border: 1px solid #F53535;
}

.color-circle.gold {
    background-color: #000000;
    border: 1px solid #000000;
}

.color-circle.pink {
    background-color: #00AB61;
    border: 1px solid #00AB61;
}

.product-info h1 {
    font-size: 25px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
    text-transform: uppercase;
}

.price-detail {
    display: flex;
    gap: 19px;
}

.price-detail span.current-price {
    display: inline;
    width: auto;
}

.select-options label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
}

.option-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    min-width: 55px;
}

.quantity-selector label {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
    padding-bottom: 12px;
    display: block;
    color: #2E2381;
}

/*-----slider----*/
/* Position the navigation arrows */
.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .owl-nav {
    position: absolute;
    top: 50%;
    width: 95%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .owl-nav .owl-prev,
.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .owl-nav .owl-next {
    pointer-events: all;
}

.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .owl-nav .owl-prev {
    left: -30px;
}

.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .owl-nav .owl-next {
    right: -30px;
}

.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .custom-nav {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: #2E2381;
    width: 40px;
    height: 40px;
    color: inherit;
    border: none;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.like-product-slider .owl-dots {
    display: none;
}

section.like-product-slider {
    padding: 25px 0px 30px 30px;
}

.owl-carousel.owl-theme.like-product.owl-loaded.owl-drag .owl-item img {
    display: block;
    width: 100%;
    border-radius: 15px;
}

.like-product .item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.like-product .item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}





/*---tab---*/
.tabs-like {
    display: flex;
    flex-wrap: wrap;
}

.tabs-like label {
    order: 1;
    display: block;
    padding: 1rem 2rem;
    margin-right: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    cursor: pointer;
    background: #ffffff;
    font-weight: bold;
    transition: background ease 0.2s;
    border: 1px solid #2E2381;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 500;
    line-height: 19.8px;
    color: #2E2381;

}

.like-card a.product-img {
    background: #F1F1F1;
}

.like-product .item img {
    width: 100% !important;
}

.tabs-like .tab-list {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    background: #fff;
}

.tabs-like input[type="radio"] {
    display: none;
}

.tabs-like input[type="radio"]:checked+label {
    background: #2E2381;
    color: #ffffff !important;

}

.tabs-like input[type="radio"]:checked+label+.tab-list {
    display: block;
}

.product-info .action-buttons button:hover {
    background-color: black !important;
    color: #ffff !important;
}

.info-item p {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    text-align: justified;
}

.info-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-share img {
    width: 25px;
}

button.add-to-bag:hover {
    background-color: #c19c49;
}

button.buy-now:hover {
    background-color: #1e1e1e;
    color: #fff;
}

.tabs-like label:hover {
    background-color: #000000;
    color: #fff !important;
}

.bag-item-list {
    width: 50%;
}

.proceed-btn a {
    background-color: #2E2381;
    color: #ffffff;
    min-width: 95%;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 13px;
    text-transform: uppercase;
}

/*====checkout=====*/

/* Checkout Steps Container */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    cursor: pointer;
    cursor: default;
}

/* Circle styling */
.circle-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ccc;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

/* Step progress container */
.step-progress {
    position: absolute;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 2px;
    z-index: 1;
}

/* Progress line styling */
.progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    border-top: 2px dashed #ccc;
}

/* Progress line fill animation */
.progress-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E2381;
    transition: width 0.6s ease;
}

/* Arrow styling with container */
.step-progress {
    overflow: visible;
}

.progress-line {
    position: relative;
}

.arrow {
    position: absolute;
    top: -4px;
    left: calc(100% - 23px);
    width: 0;
    height: 0;
    border-left: 8px solid #2E2381;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Text styling */
.step p {
    margin-top: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Active and completed states */
.step.active .circle-check {
    background-color: #2e2381;
    border-color: #2e2381;
    color: #fff;
}

.step.completed .circle-check {
    border-color: #2E2381;
    color: #ffffff;
    background-color: #2E2381;
}

.step.completed .progress-line::before {
    width: 100%;
}

.step.completed .arrow {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease 0.6s;
}

/* Hide progress for last step */
.step:last-child .step-progress {
    display: none;
}

/* arrow doesn't appear on incomplete steps */
.step:not(.completed) .arrow {
    visibility: hidden;
    opacity: 0;
}

/* .step p {
    margin-top: 8px;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    line-height: 24.38px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
} */

/* .circle-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto;
} */

.bag-item:last-child {
    border: none;
}

.active .circle-check {
    background-color: #000;
    color: #fff;
}

/* Dashed lines between steps */
.step:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 16px;
    left: calc(50% + 16px);
    z-index: -1;
    border-top: 1px dashed #ccc;
}

.step:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 16px;
    right: calc(50% + 16px);
    z-index: -1;
}

.my-bag {
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.my-bag.active {
    display: block;
}

.my-bag h2 {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 20px;
}

.bag-item {
    display: flex;
    align-items: self-start;
    border-bottom: 1px solid #ccc;
    padding: 0px 0px 20px 0px;
    gap: 20px;
    margin-top: 20px;
}

.bag-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-right: 0;
}

.item-details {
    flex-grow: 1;
}


.old-price {
    text-decoration: line-through;
    color: #aaa;
    margin-left: 8px;
}

.coupon-order {
    width: 40%;
    padding-left: 0px;
}

.order-summary {
    background: #CBEDFC;
    padding: 35px;
    border-radius: 20px;
    margin-top: 20px;
}

.total p span {
    color: #857F7F;
}

/*.order-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 0px;
}*/
.sub-to {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 0px;
}

.total {
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 0px;
}

.bag-list {
    display: flex;
    width: 100%;
    padding: 0px 0px 35px 0px;
}

.bag-item-list {
    width: 60%;
    padding-right: 40px;
}

.add-delete {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-top: 10px;
}

.delete-item img {
    width: 20px;
    height: auto;
    object-fit: cover;
    margin-left: 15px;
}

.order-summary h3 {
    font-size: 25px;
    font-weight: 400;
    line-height: 30.48px;
    text-align: center;
    text-transform: uppercase;
}

.order-summary h4 {
    font-size: 25px;
    font-weight: 400;
    line-height: 30.48px;
    text-align: left;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.order-summary span {
    font-size: 20px;
    font-weight: 400 !important;
    line-height: 26.49px;
    text-align: left;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
}

.total p {
    font-size: 20px;
    font-weight: 700;
    line-height: 27.24px;
    text-align: left;
    text-transform: uppercase;
}

span.t-amount {
    font-weight: 600 !important;

}

.free-deliv {
    display: flex;
    justify-content: flex-start !important;
    gap: 20px;
    align-items: center;
}

.total {
    padding-top: 10px !important;
}

.promo-code li {
    display: flex;
    padding: 15px 30px 20px 30px;
}

.promo-code {
    background: #CBEDFC;
    border-radius: 20px;
}

.promo-code li:first-child {
    background-color: #CBEDFC;
    padding: 15px 20px;
    border-radius: 20px 20px 0px 0px;
    align-items: center;
    gap: 15px;
    border: 2px dashed #2E2381;
    position: relative;
}

span#removePromoCode {
    font-size: 18px;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.promo-code li:nth-child(2) {
    justify-content: space-between;
}

.promo-code li:first-child img {
    width: 38px;
    height: auto;
}

a.promo-view {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.38px;
    text-align: left;
    text-decoration-line: underline;
    text-decoration-style: solid;
}

a.promo-apply {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    text-align: left;
    text-transform: uppercase;
}

.item-details a {
    font-size: 18px;
    font-weight: 500;
    line-height: 35px;
    text-align: left;
    text-transform: uppercase;
}

.add-delete p {
    font-size: 19px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
}

.item-details ul {
    display: flex;
    gap: 30px;
}

p.p-color {
    color: #857F7F;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.price p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.bag-list .quantity-buttons {
    background: #F1F1F1;
    display: flex;
    width: auto;
    height: 35px;
    overflow: hidden;
}

.proceed-btn a {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.proceed-btn a:hover {
    color: #f2f2f2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-sender {
    width: 60%;
    margin: 0 auto;
    padding: 30px 0px;
    padding-top: 0px;
}

.radio-button-group {
    display: flex;
    gap: 20px;
}

.radio-button-group input[type="radio"] {
    display: none;
}

.radio-button-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
    text-align: left;
}

.radio-button-group label:before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #F1F1F1;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.radio-button-group input[type="radio"]:checked+label:before {
    background-color: #F1F1F1;
    border-color: #F1F1F1;
}

.radio-button-group input[type="radio"]:checked+label:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #2E2381;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.radio-button-group label:hover:before {
    background-color: rgba(0, 123, 255, 0.1);
    /* Hover effect */
}

.radio-button-group.pt {
    padding-top: 30px;
}

.radio-button-group.pt {
    padding: 25px 0px 10px 0px;
}

.textarea-container {
    position: relative;
    width: 100%;
}

.textarea-container textarea {
    resize: none;
    width: 100%;
    height: 110px;
    padding: 20px;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
}

.receiver-form h2 {
    padding-top: 25px;
    margin-bottom: 20px;
}

.saved-address-section {
    margin-top: 25px;
    background: #CBEDFB !important;
}

select#saved-address-select {
    width: 100%;
}

.saved-address-section label {
    padding-bottom: 10px;
}

h2.delivery-tp {
    margin-bottom: 0px;
}

.receiver-text p {
    font-weight: 600;
}

textarea::placeholder {
    color: #999;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.char-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    color: #666;
    background: #fff;
    padding: 2px 5px;
    border-radius: 5px;
    opacity: 0.8;
}

.send-detail-btn {
    margin: 50px 0px 20px 0px;
    text-align: center;
}

.send-detail-btn a {
    background-color: #2e2381;
    color: #ffffff;
    min-width: 95%;
    text-align: center;
    padding: 20px 75px;
    border-radius: 50px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.payement-detail-btn a {
    background-color: #2e2381;
    min-width: 95%;
    text-align: center;
    padding: 20px 75px;
    border-radius: 50px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #ffffff;
}

.payement-detail-btn {
    margin: 50px 0px 50px 0px;
    text-align: center;
}

div#contact-info {
    display: none;
}

.receiver-num {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 20px;
    border: 3px solid #2e2381;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    min-width: 45%;
    width: 100%;
}

.receiver-form {
    width: 60%;
    margin: 0 auto;
}

.input-group.gray input::placeholder {
    color: #A7A9A2;
    font-family: 'Montserrat', sans-serif;

}

.choose-payment-left .radio-button-group {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

form.payment-row {
    display: flex;
    gap: 5%;
    padding: 35px 0px;
    padding-top: 0;
}

.choose-payment-left {
    width: 56%;
}

.choose-payment-right {
    width: 44%;
}

.item-details-order {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0px;
}

.choose-payment-right .bag-item {
    margin-top: 14px;
}

.item-details-order a {
    text-transform: uppercase;
}

.d-price {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.discount-num {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 0px;
}

.delivery-fee {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 0px;

}

.proceed-btn {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 0px;
}

.order-items-summary .add-delete {
    padding-top: 0px;
}

.choose-payment-right .add-delete p {
    font-size: 16px;
}

.date-delivery input {
    width: 100%;
    padding: 14px !important;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #000000;
    background-color: transparent !important;
    cursor: pointer;
}

.date-delivery {
    padding-bottom: 10px;
}

.main-image {
    position: relative;
    overflow: hidden;
}

.magnifier-container {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
}

.magnified-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-image.zoomed {
    cursor: zoom-in;
}

.main-image svg {
    width: 14px;
}

.thumbnail-container {
    justify-content: start !important;
}

section.like-product-slider .owl-nav img {
    width: 22px;
}

.bag-item-list .quantity-input {
    width: 50px;
    text-align: center;
}

a.promo-view::first-letter {
    text-transform: capitalize;
}

.delete-item {
    cursor: pointer;
}

.header-back a:hover {
    background-color: #000000;
    color: #ffff;
}

.proceed-btn a:hover {
    background-color: #000;
    color: #fff;
}

.send-detail-btn a:hover {
    background-color: #000;
    color: #fff;
}

.payement-detail-btn a:hover {
    background-color: #000;
    color: #fff;
}

.input-group.gray input::placeholder {
    color: #9e9e9e;
    font-size: 14px;
    /* Adjust the font size */
    font-family: 'Montserrat', sans-serif;
}

.quantity-buttons svg.bi.bi-chevron-right {
    color: #1a1a1a !important;
}

.quantity-buttons svg.bi.bi-chevron-left {
    color: #000000 !important;
}




/* Main Unicode Number Input - Pagination Style */
.unicode_pagination_input {
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    outline: none;
}

.unicode_pagination_input:focus {
    background-color: #e8e8e8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.unicode_pagination_input:hover {
    background-color: #e8e8e8;
}

/* Variant with arrows */
.unicode_input_with_arrows {
    display: inline-flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 25px;
    padding: 8px 16px;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.unicode_input_with_arrows input {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    min-width: 30px;
    outline: none;
}

.unicode_input_with_arrows .arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    color: #000000;
    font-size: 25px;
    user-select: none;
    font-family: "Montserrat", sans-serif;
}


.unicode_input_with_arrows .arrow-btn:active {
    background-color: #d0d0d0;
}

/* Larger variant */
.unicode_large_input {
    background-color: #f0f0f0;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    outline: none;
}

.unicode_large_input:focus {
    background-color: #e8e8e8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.unicode_large_input:hover {
    background-color: #e8e8e8;
}

/* Small variant */
.unicode_small_input {
    background-color: #f0f0f0;
    border: none;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    min-width: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    outline: none;
}

.unicode_small_input:focus {
    background-color: #e8e8e8;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.unicode_small_input:hover {
    background-color: #e8e8e8;
}

/* White variant */
.unicode_white_input {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    outline: none;
}

.unicode_white_input:focus {
    border-color: #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.unicode_white_input:hover {
    border-color: #ccc;
}

/* Container for grouped inputs */
.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.input-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Remove number input arrows/spinners */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

span.original-price {
    text-decoration: line-through;
}

.bag-list span.original-price {
    text-decoration: none;
}



.radio-button-group.pt input[type="checkbox"] {
    display: none;
}

/* Toggle container */
.radio-button-group.pt label {
    position: relative;
    display: inline-block;
    padding-left: 55px;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    user-select: none;
}

/* Toggle track */
.radio-button-group.pt label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 44px;
    height: 22px;
    background: #ccc;
    border-radius: 22px;
    transition: background 0.3s ease;
}

.radio-button-group.pt.optn {
    padding-bottom: 20px;
}

/* Toggle knob */
.radio-button-group.pt label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* ON state */
.radio-button-group.pt input[type="checkbox"]:checked+label::before {
    background: #2e2381;
}

.radio-button-group.pt input[type="checkbox"]:checked+label::after {
    transform: translateX(22px);
}

div#free-delivery-message-desktop {
    display: flex;
}

div#payment-detail {
    width: 95% !important;
    margin: 0 auto;
    max-width: 100% !important;
}