
/* Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
 
/* Popup Box */
.popup {
    background: #fff;
    width: 800px;
    max-width: 95%;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-height: 85vh;
    overflow-y: auto;
}
 
/* Header */
.popup h2 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
}
 
/* Close Button */
.popup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: #444;
}
 
/* Store Grid */
.store-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
 
/* Store Card */
.store-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px;
    /* background: #fff; */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
}
 
.store-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
 
.store-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: bold;
    /* color: #222; */
}
 
.store-card p {
    margin: 3px 0;
    font-size: 14px;
    /* color: #555; */
}
 
.distance {
    font-size: 13px;
    /* color: #666; */
}
 
.status {
    margin-top: 8px;
    font-weight: bold;
    font-size: 14px;
}
 
/* .open {
    color: #0f9d09;
} */
 
/* .closed {
    color: #d9534f;
} */
 
/* Trigger Button */
.delivery-btn {
    padding: 10px 16px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}




@media (max-width: 768px) {
  .store-list {
    flex-direction: column;
    gap: 15px;
    display: flex;
  }
  .parenMob_outlet{
  position: relative;
}
.outMob{
  position: absolute;
  right: 60px;
}
.popup .close-btn {
      top: 0px;
}
}









/* Outlet */

/* ===== Outlet Popup Styles ===== */

/* Overlay */
.outlet-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(33 33 33 / 89%);
  justify-content: center !important;
  align-items: center;
  z-index: 999999999;
}

/* Modal Box */
.outlet-box {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Heading */
.outlet-box h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px;
  text-align: center;
}

/* Close Button */
.outlet-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  transition: 0.2s;
}
.outlet-close:hover {
  color: #000;
}

/* Body */
.outlet-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Search input wrapper */
.outlet-input-wrapper {
  width: 100%;
}
.outlet-search {
  position: relative;
}
.outlet-search input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}
.outlet-search i.bi-geo-alt-fill {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}
.outlet-search i.bi-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  cursor: pointer;
}

/* Detect Location */
.outlet-detect {
  color: #007bff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.outlet-detect:hover {
  text-decoration: underline;
}

/* Login link */
.outlet-body p {
  font-size: 14px;
  color: #444;
}
.outlet-body a {
  color: #007bff;
  text-decoration: none;
}
.outlet-body a:hover {
  text-decoration: underline;
}












.outlet-suggestions {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    background: #fff;
    margin-top: 5px;
}

.outlet-suggestion-item {
    padding: 8px 10px;
    cursor: pointer;
}

.outlet-suggestion-item:hover {
    background-color: #f0f0f0;
}
