.search-results {
    max-height: 400px; /* adjust as needed */
    overflow-y: auto;
}

.sticky-note {
    position: fixed;
    bottom: 20px;  /* Position from the bottom of the page */
    right: 20px;   /* Position from the right of the page */
    background-color: #f7f7f7;  /* Light background color */
    padding: 15px;
    border-radius: 8px;  /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Subtle shadow for depth */
    width: 300px;
    max-height: 400px;
    overflow-y: auto;  /* Enable scroll if content overflows */
    z-index: 1050;  /* Ensure it stays above other content */
    display: none;  /* Hidden by default */
}

.sticky-note h5 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.sticky-note .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}

.sticky-note ul {
    list-style-type: none;
    padding: 0;
}

.sticky-note ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.sticky-note ul li img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.sticky-note .compare-btn,
.sticky-note .delete-btn {
    background-color: #007bff;  /* Blue color for the buttons */
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.sticky-note .delete-btn {
    background-color: transparent;  /* Red color for delete button */
    margin-left: 10px;
    border:1px solid #a7a7a7;
}
.sticky-note .delete-btn path {
    stroke: #a7a7a7;
}
.share-popup {
    position: absolute;
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.18);
    z-index: 9999;
    font-size: 14px;
    width: 180px;
    top: 45px;
    right:0;
}

.share-popup a {
    color: #000;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.share-popup a:hover {
    text-decoration: underline;
}


.position-relative {
    position: relative;
}

.toggle-password {
    position: inherit;
    top: 38px;
    right: 12px;
    cursor: pointer;
    user-select: none;
}

/* Remove icon */
.no-btn-icon {
  border-radius: 6px;
  padding: 12px 0;
  color: #595959;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
  border: 1px solid #595959;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.no-btn-icon::before {
  content: "";
  height: 20px;
  width: 00px;
  background-size: contain;
  display: inline-block;
  margin-right: 0;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.no-btn-icon:hover {
  border-radius: 4px;
  border: 1px solid #e2a932;
  background: var(
    --gold-normal,
    linear-gradient(91deg, #e2a932 0.52%, #eed12e 51.02%, #e2a932 99.61%)
  );
  color: #000;
}

.progressList_item.is_cancelled .progressList_content {
    color: red;
    font-weight: bold;
}
.progressList_item.is_cancelled::before {
    background-color: red;
}

.wishlist_btn svg .heart-path {
    fill: none;
    stroke: #333333;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

/* When product is in wishlist - filled black */
.wishlist_btn.in-wishlist svg .heart-path {
    fill: #FF0000;
    stroke: #FF0000;
}

/* Hover effect - filled black */
.wishlist_btn:hover svg .heart-path {
    fill: #E5B352;
    stroke: #E5B352;
}
/* Default state - outline only */
.wishlist_btn_detail svg .heart-path {
    fill: none;
    stroke: #333333;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

/* When product is in wishlist - filled red */
.wishlist_btn_detail.in-wishlist svg .heart-path,
.wishlist_btn_detail[data-in-wishlist="True"] svg .heart-path {
    fill: #FF0000 !important;
    stroke: #FF0000 !important;
}

/* Hover effect - filled red */
.wishlist_btn_detail:hover svg .heart-path {
    fill: #FF0000;
    stroke: #FF0000;
}

.cancel_status{color: #e92e3f !important;  border-color: #e92e3f !important;}
/*.cancel_status_div{margin-left: 49% !important;}*/

/*dec10*/
/* Overlay */
.custom-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Modal Box */
.custom-confirm-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.custom-confirm-title {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}

.custom-confirm-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
/* Modal container */
.modal_edit_profile {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: #ffffff;
}

/* Modal Header */
.modal_edit_profile .modal-header {
    background: #f7f9fc;
    border-bottom: none;
    border-radius: 16px 16px 0 0;
}

.modal_edit_profile .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* Close button styling */
.modal_edit_profile .btn-close {
    filter: brightness(0) saturate(0);
    opacity: 0.5;
    transition: 0.2s;
}
.modal_edit_profile .btn-close:hover {
    opacity: 1;
}

/* Input field styling */
.modal_edit_profile .form-control {
    border-radius: 12px;
    border: 1px solid #dcdce6;
    padding: 12px 14px;
    font-size: 15px;
    background: #fdfdfd;
    transition: 0.25s all ease;
}

.modal_edit_profile .form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 8px rgba(108, 99, 255, 0.2);
    background: #ffffff;
}

/* Buttons */
/*.modal_edit_profile .btn-primary {
    background: #6c63ff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.2s;
}

.modal_edit_profile .btn-primary:hover {
    background: #574fd6;
}

.modal_edit_profile .btn-outline {
    border-radius: 12px;
    padding: 10px 20px;
}*/

/*dec11*/
input.error, select.error, textarea.error {
    border: none !important;
    border-bottom: 2px solid red !important;
    outline: none !important;
}

input.valid, select.valid, textarea.valid {
    border: none !important;
    border-bottom: 2px solid green !important;
    outline: none !important;
}

.error-msg {
    font-size: 12px;
    margin-top: 3px;
    color: red;
}


input.error-modal, select.error-modal, textarea.error-modal {
    border: 1px !important;
    border: 2px solid red !important;
    outline: none !important;
}



/*dec18*/
.lazy-placeholder {
    min-height: 420px !important;   /* prevents layout collapse */
    width: 100% !important;
    position: relative !important;
}

.cancel_item{
 width: 100px !important;
}



/************************ 4Dec2025  Abijith************************/
.readonly-select {pointer-events: none;background-color: #e9ecef;  /* like input readonly */}
.qa-item {word-break: break-word !important;}
/************************ 26Nov2025 SHAAN SIDE START ************************/
/*.order-box h6{text-align: right !important;}
.order-box p{text-align: right !important;}
.order-box p {text-align: left !important;}*/
.sort_div select{padding: 10px 25px;}
.address_list{padding:20px 0;}
/************************ 01Nov2025 ************************/
.feature-card1 {background-color: rgba(26, 186, 26, 0.05);text-align: justify;}
@media (max-width: 991px) {
    .seller_button a {
        color: #ffffff;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        padding: 10px 7px !important;
    }
}
.btn-outline-secondary{padding: 5px 5px;}/*font-size: 11px;}
.btn-outline-secondary:hover { font-size: 11px;}*/
/************************ 03Dec2025 ************************/
p.question {font-weight: bold;font-size: 16px;}
/*.btn-black_bordered{margin-bottom: 10px;}*/
.text-success {padding-top: 10px !important;}
/************************ Nissar 08Dec2025 ************************/
.password_field .form-control{padding-right:40px}
.password_field .toggle-password{position: absolute;top: 50%;right: 9px;margin-top: -11px;}
.order-box .box-right .radio_{width:180px; max-width:100%}
.deal_div{height:auto; margin-bottom:10px}
.deal_div a img{height:200px; width:100% !important; object-fit:contain}
.deal-card .rating, .star_rate_ .rating{margin-right:5px}
.offer-icon {margin-right: 7px;padding-top: 3px;}
.offer-item{align-items: unset; line-height:1.5}
.gallery-main .wishlist_btn{width:fit-content}
.star-rating input[type="radio"]{position:absolute; height:100%; width:100%; top:0; left:0; opacity:0}
.star-rating > div{margin-right:5px}
.star-rating label.selected svg path{fill: #FFB300;}
.comparison-header{display:flex; align-items:center; padding-bottom:15px}
.comparison-header .btn-close{margin-left:auto}
.comparison-header h6{margin-bottom:0;padding-right: 10px;}
.comparison-item h6{margin-bottom:5px}
.comparison-item p{margin-bottom:0; line-height:1.5}
.comparison-item button.delete-btn {margin-left: auto;padding: 8px;border-radius: 50%;}
.compare_table .compare_img{max-height:inherit; height:180px; width:auto; max-width:100%;}
.compare_table .compare_thumb h4, .compare_table .compare_thumb h4 a, .comparison-item h6{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.comparison-list .comparison-item{flex-wrap:wrap}
.comparison-list .comparison-item .product-info{width:calc(100% - 80px)}
.comparison-item button.delete-btn{margin-top:0}
.badge.bg-primary{border-radius: 50%;background-color: #1F82CF !important;height: 22px;width: 22px;padding: 0;text-align: center;line-height: 22px;}
.remove_wishlist path {stroke: #ffffff;}
.remove_wishlist {padding: 0;position: absolute;top: 10px;right: 10px;background: #ff3337;border-radius: 50%;display: flex;align-items: center;justify-content: center;width: 30px;height: 30px;}
.menubar .mega-menu h6 a{color:#000; text-decoration:none !important}


.wishlist_btn_detail{position: absolute;top: 10px;right: 10px;border-radius: 3px;border: 1px solid var(--card-border-dark, #ced2d5);padding: 10px 10px;width: 65px;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out;-ms-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}
.wishlist_btn_detail svg path {stroke: #000000;fill: transparent;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out;-ms-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}
.wishlist_btn_detail:hover {border-radius: 3px;border: 1px solid #ef262c;}
.wishlist_btn_detail:hover svg path {stroke: #ef262c; fill: #ef262c;}
header .navbar .logo svg{height:26px; width:auto}
.btn-blue_second {padding: 7.5px 10px}
.btn-blue_second.btn-outline-secondary:before,
.btn-blue_second.btn-outline-secondary:hover:before{display:none}
.remove-product-comparison {
    position: absolute;
    right: 15px;
    top: 0;
    border-radius: 50%;
    height: 25px;
    padding: 0;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .favourite_carousel {padding: 0 30px;}
    .common_tabs .nav-tabs .nav-link{padding: 12px 15px; margin-right: 5px; font-size: 15px;}
    .deals_carousel{padding:0 50px}
    .adv_section, .deal_section,.adv_area #furnitureCarousel.my-5, .offer_section, .common_section, .innerpage_container {padding: 30px 0 !important;}
}
@media (max-width: 479px) {
    .contry_code .form-select {
        padding: 12px 0;
        max-width: 130px;
        padding-right: 24px !important;
        background-position: right 7px center;
    }
}