.text-themecolor {
    color: #F65005;
}

/* Input Group Styling */
.input-group {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Country Code Part */
.input-group-text {
    background: white;
    border: none;
    display: flex;
    align-items: center;
    padding: 10px;
}

/* Input Field */
.input-group input {
    border: none;
    font-size: 16px;
    outline: none;
    /* Remove default focus outline */
    box-shadow: none;
    /* Remove default Bootstrap shadow */
}

/* Focus Effect - Apply ONLY ONE Border */
.input-group:focus-within {
    border-color: var(--secondary-color) !important;
    box-shadow: none !important;
    /* Ensure no extra shadow */
}

.form-control:focus {
    color: #212529;
    background-color: unset !important;
    ;
    border-color: unset !important;
    ;
    outline: 0 !important;
    ;
    box-shadow: unset !important;
    ;
}


/* OTP Input Styling */
.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.otp-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
}

.btn.slider__btn {

    /* border-color: #cfc668!important;
        background-color: #cfc668!important; */
    /* border-color: var(--secondary-color)!important;;
        background-color: var(--secondary-color)!important;; */

}

.btn.slider__btn:hover {

    /* border-color: var(--secondary-color)!important;;
        background-color: var(--secondary-color)!important;; */

}


/* Css for Header Profile Sections */

.image_header {
    width: 50px;
    border-radius: 54px;
    height: auto;
    cursor: pointer;
}

.image_header_dropdown {
    border-radius: 50%;
    height: auto;
    width: 50px;
    vertical-align: middle;
    border-style: none;
    cursor: pointer;
}

.email_header_colour {
    color: #0b2af1 !important;
    font-weight: bold;
}

.header_dropdown_name {
    font-weight: bold;
}

/*swal default z-index*/
.swal2-container {
    z-index: 9999 !important;
    /* Ensures Swal appears on top */
}

.header__account--items:hover .header__sub--menu {
    visibility: visible;
    margin-top: 0;
    opacity: 1
}

.header__account--items:hover .header__mega--menu {
    visibility: visible;
    margin-top: 0;
    opacity: 1
}

.login_align {
    position: relative;
    top: 10px;
}

.countryCode_css {
    font-size: 16px;
}

#mobileNumber {
    font-size: 16px;
    font-weight: bold;
}

.avatar-upload {
    position: relative;
    width: 120px;
    height: 80px;
    margin-top: 10px;
}

.avatar-upload .avatar-preview {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    border: 2px solid #ddd;
    background-size: cover;
    background-position: center;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 26px;
    bottom: 40px;
    background: rgb(255 237 101 / 90%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit label {
    cursor: pointer;
    margin: 0;
}

.avatar-upload .avatar-edit label i {
    font-size: 14px;
    color: black;
}

.required_field {
    color: red;
    font-weight: bold;
}


/* Css for table alignment in mange address page */
.btn-delete {
    background-color: #F65005;
}

.btn-edit {
    background-color: var(--theme-color);
}

.btn-edit:hover {
    background-color: var(--theme-color);
}

.text_centered_table {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.text_centered_table th, .text_centered_table td {
    vertical-align: middle;
    text-align: center;
    padding: 12px;
}

.text_centered_table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.text_centered_table td {
    border: 1px solid #ddd;
}

.text_centered_table .btn {
    /*width: 80px;*/
    text-align: center;
}

.badge.bg-primary {
    padding: 10px 10px;
    border-radius: 50px;
    background-color: var(--theme-color) !important;
}

.badge.bg-primary.active {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
}

.badge.bg-primary:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
}

.variant__size--value {
    width: unset;
    padding: 10px;
    line-height: unset;
}

.guarantee__safe--checkout__img {
    width: 110px;
}


/* Spinner Container */
.spinner-container {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-bottom: 10px;
    /* Space between spinner and price */
}

/* Spinner Animation */
.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Discount Badge Styling */
.discount__badge {
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: inline-block;
    margin-left: 10px;
}

#wishlist_button {
    color: #333;
    /* Default color for "Add to Wishlist" */
    transition: all 0.3s ease-in-out;
}

#wishlist_button.active {
    color: var(--secondary-color) !important;
}

#wishlist_button svg path {
    transition: fill 0.3s ease-in-out;
}

#wishlist_button.active svg path {
    fill: var(--secondary-color) !important;
}

#wishlist_button svg path:hover, #wishlist_text:hover {
    fill: var(--secondary-color) !important;
    stroke: var(--secondary-color) !important;
}

#wishlist_text:hover {
    color: var(--secondary-color) !important;
}

.product__items--action__btn.active {
    background: var(--secondary-color);
    color: var(--white-color);
}

/*checkout custom css*/

     .customer__information--area {
      border-radius: 5px;
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
    }

    .customer__information--title {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .customer__information--subtitle {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .customer__information--text {
      display: block;
      font-size: 14px;
      color: #333;
    }

    .customer__information--btn {
      padding: 6px 12px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
    }

    .login-section {
      background-color: #f1f7ff;
      padding: 16px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .login-section h4 {
      color: #007bff;
      margin-bottom: 8px;
    }

    .login-section button {
      background-color: #e0e0e0;
    }

    .delivery-header {
      background-color: #0066ff;
      color: #fff;
      padding: 16px;
      border-radius: 8px 8px 0 0;
    }

    .delivery-body {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 0 0 8px 8px;
    }

    .customer__information--address__item {
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
      align-items: flex-start;
    }

    .customer__information--address__item input[type="radio"] {
      margin-top: 6px;
    }

    .customer__information--address__item .badge {
      background-color: #dfe6f0;
      padding: 2px 6px;
      border-radius: 3px;
      font-size: 12px;
      margin-left: 8px;
    }

    .address-actions {
      margin-top: 10px;
    }

    .address-actions button {
      margin-right: 10px;
    }

    .edit-btn {
      background-color: #e0e0e0;
    }

    .deliver-btn {
      background-color: #ff6600;
      color: white;
    }
    .old_cart__price{
        text-decoration: line-through;
        color: var(--light-color2);
        font-size: 1.4rem;
    }
    
    @media only screen and (min-width:768px){
        .mobile_view_paynow{
            display:none!important;
        }
    }
    
    .add-new-address {
  text-align: right;
  margin-top: 10px;
}

.add-btn {
  background: var(--theme-color);
  color: white;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plus-icon {
  background-color: white;
  color: #0066ff;
  font-weight: bold;
  font-size: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.minicart__product--remove{
    color:red!important;
}
    
    @media only screen and (min-width: 1200px) {
    .btn {
        line-height: 4.4rem;
        height: 4.4rem;
        padding: 0 2.5rem;
    }
}
    
    
    .order_success_icon{
            margin-bottom: 20px;
    }
    
    @media only screen and (max-width: 767px) {
    .checkout__sidebar {
      
         display: unset!important; 
    }
}






@media only screen and (max-width: 575px) {


    .cart__table--body__items {
  
        display: flex;
        flex-direction: row!important;
        flex-wrap: wrap;
    }
}


@media only screen and (max-width: 575px) {
    .header__topbar4--contact__info--flex {
       
        flex-direction: row!important;
    }
}


.autocomplete-results {
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}
.autocomplete-results div {
    padding: 10px;
    cursor: pointer;
}
.autocomplete-results div:hover {
    background-color: #f0f0f0;
}


