   /* Container styling */
.header-action-icon-2 {
    position: relative;
    display: flex;
    align-items: center;
}

/* User icon hover effect */
.user-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.user-icon:hover img {
    transform: scale(1.1);
}

/* Dropdown styling */
.cart-dropdown-wrap {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    width: 220px;
    padding: 15px;
    display: none;
    z-index: 1000;
}
.header-action-2 .header-action-icon-2 > a img {
    width: 100%;
    max-width: 36px;
}
/* Show dropdown on hover */
.header-action-icon-2:hover .cart-dropdown-wrap {
    display: block;
}

/* Dropdown list */
.cart-dropdown-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-dropdown-wrap li {
    padding: 10px 15px;
    transition: background 0.3s;
}

.cart-dropdown-wrap li:hover {
    background: #f5f5f5;
}

.cart-dropdown-wrap li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.cart-dropdown-wrap li a i {
    margin-right: 10px;
    color: #007bff;
}

/* Logout Button */
.logout-btn {
    font-weight: bold;
    color: red !important;
}

.logout-btn:hover {
    color: darkred !important;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

/* Login & Signup Buttons */
.auth-btn {
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    min-width: 90px;
}

/* Login button with gradient */
.login-btn {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

.login-btn:hover {
    background: linear-gradient(to right, #0056b3, #007bff);
    box-shadow: 0px 6px 15px rgba(0, 123, 255, 0.5);
}

/* Signup button with green gradient */
.signup-btn {
    background: linear-gradient(to right, #28a745, #1e7e34);
    color: white;
    box-shadow: 0px 4px 10px rgba(40, 167, 69, 0.3);
}

.signup-btn:hover {
    background: linear-gradient(to right, #1e7e34, #28a745);
    box-shadow: 0px 6px 15px rgba(40, 167, 69, 0.5);
}
.logo.logo-width-1 a img {
    width: 120px;
    min-width: 20px;
}
.search-style-2 {
    width: 24%;
}
.header-style-1 .search-style-2 form {
    border: 0px solid #BCE3C9;}
   
    @media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .main-menu.main-menu-padding-1 > nav > ul > li {
        padding: 0px 4px;
    }
}
a {
  text-decoration: none;
}
.cart-dropdown-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
}

/* Show dropdown when the "show" class is added */
.cart-dropdown-wrap.show {
    display: block;
}
.cart-dropdown-wrap {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px; /* Moves it slightly to the left */
    left: auto; /* Ensures it's not forced to the right */
    background: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    min-width: 250px;
    z-index: 1000;
}


/* Show dropdown when 'show' class is added */
.cart-dropdown-wrap.show {
    display: block;
}
      /* 🌟 General Styles */
.mobile-header-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* 📍 Location & Contact */
.single-mobile-header-info a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.single-mobile-header-info a i {
    margin-right: 8px;
    font-size: 18px;
    color: #007bff;
}

.single-mobile-header-info a:hover {
    color: #007bff;
}

/* 👤 User Menu */
.user-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.user-icon img {
    width: 28px;
    height: 28px;
}

.user-icon:hover {
    color: #007bff;
}

/* 🔽 Dropdown Styling */
.cart-dropdown-wrap {
    display: none;
    position: absolute;
    top: 50px;
    background: #fff;
    width: 180px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 12px;
    z-index: 1000;
}

.user-menu:hover .cart-dropdown-wrap {
    display: block;
}

.cart-dropdown-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-dropdown-wrap ul li {
    padding: 8px 0;
}

.cart-dropdown-wrap ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cart-dropdown-wrap ul li a:hover {
    color: #007bff;
}

/* 🔵 Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
}

.auth-btn {
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.login-btn {
    background: #007bff;
    color: #fff;
}

.signup-btn {
    background: #28a745;
    color: #fff;
}

.login-btn:hover {
    background: #0056b3;
}

.signup-btn:hover {
    background: #1c7d32;
}

/* 🎧 Phone Contact */
.single-mobile-header-info:last-child a {
    font-weight: bold;
    color: #28a745;
}
 .header-wrap {
   
    width: 105%;
}
 
 @media only screen and (max-width: 768px) {
    .header-style-1 .header-bottom-bg-color {
        -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
        width: 96%;
    }
}
 
 
      

        .login-box {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            width: 100%;
            max-width: 380px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .login-box:hover {
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        .login-title {
            font-size: 26px;
            font-weight: 600;
            text-align: center;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .form-control {
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            transition: 0.3s ease;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
        }

        .form-control:focus {
            border-color: #3498db;
            box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
        }

        .btn {
            border-radius: 25px;
            font-weight: 600;
            padding: 12px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #3498db;
            border: none;
        }

        .btn-primary:hover {
            background-color: #2980b9;
        }

        .btn-warning {
            background-color: #f39c12;
            border: none;
        }

        .btn-warning:hover {
            background-color: #e67e22;
        }

        .toggle-btns {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .otp-field {
            display: none;
            margin-top: 15px;
        }

        .footer {
            text-align: center;
            margin-top: 20px;
        }

        .footer a {
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
        }

        .send-otp-btn {
            background-color: #f39c12;
            color: white;
            border-radius: 25px;
            padding: 12px;
            font-weight: 600;
            width: 100%;
        }

        .send-otp-btn:hover {
            background-color: #e67e22;
        }

        .fadeIn {
            animation: fadeIn 0.5s ease-in-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (max-width: 480px) {
            .login-box {
                padding: 30px 20px;
                border-radius: 10px;
            }

            .login-title {
                font-size: 22px;
            }

            .btn, .form-control {
                font-size: 14px;
            }

            .footer {
                font-size: 14px;
            }
        }
        
        .modal-header {
    background-color: #3a1564;
}
@keyframes slideUpVerySlow {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal.fade .modal-dialog {
  transform: translateY(100%);
  transition: transform 1.6s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
  animation: slideUpVerySlow 0.05s ease-out;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: 100%;
  }

  .modal-content {
    border-radius: 1rem;
  }
}

/* Modern OTP Box Style */
.otp-box {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.otp-input {
  width: 45px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}

.otp-input:focus {
  border-color: #007bff;
}


  /* ✅ Compact Box */
  .loc-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.8px solid #007bff;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    z-index: 3;
    position: relative;
    margin-top: 17px;
    margin-bottom: 17px;
    margin-left: 8px;
    min-width: 200px;
     max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  }

  .loc-compact:hover {
    background: #e9f3ff;
  }

  /* ✅ Expanded Overlay Box */
  .loc-box {
    position: absolute;
    top: 55px;
    left: 20px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    border: 1px solid #007bff;
    padding: 15px;
    display: none;
    z-index: 1002;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .loc-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 8px 10px;
    border-radius: 6px;
    background: #f9f9f9;
    height: 41px;
  }

  .loc-input i {
    color: #007bff;
    margin-right: 6px;
  }

  .loc-input input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    background: transparent;
  }

  .detect-btn {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
  }

  .detect-btn:hover {
    background: #005fcc;
  }

  #locationMiniLoader {
    display: none;
    text-align: center;
    margin-top: 6px;
    color: gray;
    font-size: 12px;
  }

  .last-search {
    margin-top: 8px;
    font-size: 13px;
    color: #444;
    background: #eef6ff;
    padding: 6px 8px;
    border-radius: 5px;
    cursor: pointer;
  }

  /* ✅ Dim background overlay */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 1001;
  }
.a{
    text-decoration: none !important;
}
body.modal-open::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  background: rgba(255, 255, 255, 0.08);
  z-index: 1040; /* just below modal */
}
.modal-header {
   
    border: 0px solid #0080ff;
}
.toggle-btn.selected {
  background-color: #0d6efd !important;
  color: white !important;
  border-color: #0d6efd !important;
}
.otp-input {
  width: 40px;
  text-align: center;
  font-size: 1.2rem;
}