.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: rgb(255 255 255);
    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: #000;
    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: center;
    align-content: center;
    align-items: center;
}

/* Remove spin buttons for Chrome, Safari, Edge, Opera */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.decrease-btn, .increase-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    border: none;
}

.quantity-input {
     text-align: center;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background: #F1F1F1;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    width: auto;
    min-width: 20px;
    max-width: 40px;
    padding: 0;
    -moz-appearance: textfield;
}

.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: #ffffff;
    border: none;
    background: #1E1E1E;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 13px;
    text-align: left;
    text-transform: uppercase;
}

.buy-now {
    border: none;
    padding: 20px 55px;
    border-radius: 40px;
    border: none;
    background: #C19C49 !important;
    font-size: 18px;
    color: #000000 !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: #ffffff;
    border: 1px solid #000;
}

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

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

.color-circle.pink {
    background-color: #FEA8BD;
    border: 1px solid #FEA8BD;
}
.product-info h1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
    text-transform: uppercase;
}
.price-detail {
    display: flex;
}
.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;
}
.quantity-selector label {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
   padding-bottom: 12px;
   display: block;
}

/*-----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: #ffffff;
    width: 40px;
    height: 40px;
    color: inherit;
    border: none;
    border-radius: 50px;
    display: flex;
    justify-content: center;
            align-items: center;
}
section.like-product-slider {
    padding: 50px 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: solid 1px #000;
    border-radius: 40px;
font-size: 20px;
font-weight: 500;
line-height: 19.8px;

}
.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: #C19C49;
    color: #000000 !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: #D6AE7B;
    color: #000000;
    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: #B87514;
    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 #B87514;
    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: #000;
    border-color: #000;
    color: #fff;
}

.step.completed .circle-check {
    background-color: #c19c49;
    border-color: #c19c49;
    color: #000000;
}

.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: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
}

.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: #F1F1F1;
    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: center;
    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: #F1F1F1;
    border-radius: 20px;
}
.promo-code li:first-child {
background-color: #f2f2f2; 
padding: 15px 20px;
border-radius: 20px 20px 0px 0px;
align-items: center;
gap: 15px; 
border: 2px dashed #C19C49;
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: 38px;
    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: linear-gradient(180deg, #E9C08B 0%, #CEA674 100%);
    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: 80px;
    padding: 20px;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
            resize: none;
        width: 100%;
        
        padding: 18px 20px 12px 20px;
        margin-top: 15px;
        font-family: 'Montserrat', sans-serif;
        border-radius: 10px;
}
.receiver-form h2 {
    padding-top: 19px;
    margin-bottom: 20px;
}
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: 19px;
    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: #D6AE7B;
    color: #000000;
        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: #D6AE7B;
    color: #000000;
    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  { 
    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 #D6AE7B;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    min-width: 45%;
}
.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: 10px;
}
.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-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-selector label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #333;
}

.quantity-buttons {
    background: #F1F1F1;
    display: flex;
    width: 130px;
    height: 45px;
    border-radius: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-sizing: border-box;
}

.decrease-btn, .increase-btn {
                  font-weight: 400;
                width: 32px;
                height: 32px;
                font-size: 26px;
                font-family: 'Montserrat', sans-serif;
    border: none;
            background: transparent !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    color: #000;
}

.decrease-btn:hover, .increase-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.decrease-btn:active, .increase-btn:active {
    background-color: rgba(0, 0, 0, 0.2);
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 30px;
    flex-shrink: 0;
    /* Remove default number input styling */
    -moz-appearance: textfield;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
}

/* Hide number input spinners */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
span.current-price {
        display: flex;
        align-items: baseline;
        gap: 0;
}.product-price img
 {
        width: 18px !important;
        height: auto !important;
                margin: 0;
}span#summary_subtotal img {
        width: 19px;
}span#summary_total img {
        width: 19px;
}
ul.d-price img
 {
        width: 15px !important;
        height: auto;
        margin: 0;
}
.sub-to img {
        width: 18px;
}
.total img {
        width: 18px;
}


.product-det-page .quantity-selector {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .product-det-page .quantity-buttons,
    .quantity-buttons {
      width: 27% !important;
        height: 40px;
        padding: 0 6px;
    }.quantity-buttons {
        justify-content: center;}
            .increase-btn {
                margin-right: 4px;
        }
        .decrease-btn { margin-left: 4px;}
    .decrease-btn, .increase-btn {
                     width: auto;
                height: auto;
    }
    .add-delete {
        gap: 8px;}
            .bag-list .quantity-buttons {
                width: 50% !important;
        }
    .quantity-input {
        width: 42px;
        height: 28px;
        font-size: 15px;
        line-height: 28px;
    }
    span#summary_subtotal img {
        width: 12px;
}span#summary_total img {
        width: 12px;
}
  ul.d-price img
 {
        width: 12px !important;
        height: auto;
        margin: 0;
}  .sub-to img {
        width: 12px;
}.total img {
        width: 12px;
}
}

/* Extra small devices */
@media (max-width: 480px) {
    .quantity-buttons {
        width: 100px;
        height: 38px;
        padding: 0 5px;
    }
    
    
    
    .decrease-btn svg, .increase-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .quantity-input {
        width: 38px;
        height: 26px;
        font-size: 14px;
        line-height: 26px;
    }
}

/* For very large screens */
@media (min-width: 1200px) {
    .quantity-buttons {
        width: 140px;
        height: 48px;
        padding: 0 10px;
    }
    
    .decrease-btn, .increase-btn {
                       font-weight: 400;
                width: 32px;
                height: 32px;
                font-size: 31px;
                font-family: 'Montserrat', sans-serif;
    }
    
    .quantity-input {
        width: 52px;
        height: 32px;
        font-size: 17px;
        line-height: 32px;
    }
}
