/** Shopify CDN: Minification failed

Line 402:7 Expected ":"

**/
/* Button */
.wsl-btn {
  background: #000;
  border: none;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
  font-family: "Calibre", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;

  width: 100%;
  padding: 1.8rem 2rem 1.4rem;
  border-radius: .8rem;

  display: inline-flex;
  align-items: center;       /* vertical centering */
  justify-content: center;   /* center text + icon as a group */
  gap: 5px;                 /* space between text and SVG */
}

.wsl-zip-trigger
{
	background:none;
	border:1px solid #909090;
	padding: 20px;
	border-radius:4px;
	color: #fff;
	width:100%;
	font-size:20px;
}

.wsl-btn:hover {
  background: #222;
}

.wsl-btn svg {
  display: block;
  margin-top: -3px;
}

/* ===== FULLSCREEN MODAL (CRITICAL) ===== */
.wsl-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.wsl-modal.is-open {
  display: block;
}



.wsl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9998;
  display: block !important;
}


/* Explicitly defeat :empty selectors */
.wsl-overlay:empty {
  display: block !important;
}




.wsl-dialog {
  position: fixed;
  top: 7.5vh;
  bottom: 7.5vh;
  left: 5%;
  right: 5%;

  background: #fff;
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  z-index: 100000;
}


/* ===== SCROLL LOCK (CRITICAL) ===== */
html.wsl-lock,
body.wsl-lock {
  overflow: hidden !important;
  height: 100% !important;
}

/* Prevent iOS rubber-band scrolling */
body.wsl-lock {
  position: fixed;
  width: 100%;
}




/* Header */
.wsl-header {
  padding: 14px;
  border-bottom: 1px solid #eee;
}

#wsl-search {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Body layout */
.wsl-content {
  flex: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 0;
}

/* Store list */
.wsl-list {
  overflow-y: auto;
  border-right: 1px solid #eee;
  padding: 12px;
}

/* Map */
.wsl-map {
  width: 100%;
  height: 100%;
}


/* ===== STORE LIST ITEMS ===== */
.wsl-store {
  padding: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wsl-store:hover {
  background: #f9f9f9;
}

/* ===== ACTIVE / SELECTED STORE ===== */
.wsl-store.active {
  background: #f2f8ff;              /* light highlight */
  border-left: 4px solid #2e7d32;   /* green bar */
}

/* FORCE ACTIVE STORE VISIBILITY */
.wsl-store.active {
  background-color: #f2f8ff !important;
  border: 2px solid #ccc !important;
}

/* Ensure store item takes full width */
.wsl-store {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box;
}



/* ===== MAP SEARCH (TOP RIGHT OVERLAY) ===== */
.wsl-map {
  position: relative;
}

/* ===== MAP CONTROLS (RADIUS + SEARCH) ===== */
/* ================= DESKTOP DEFAULT ================= */

.wsl-map-controls {
  position: absolute;
  top: 9px;
  right: 9px;
  display: flex;
  gap: 8px;
  z-index: 999;
  background: #fff;
  padding: 10px;
  align-items: center;
}

/* Search wrapper */
.wsl-map-search {
  display: flex;
  background: #fff;
  overflow: hidden;
}

#wsl-radius-select,
#wsl-map-search-input,
#wsl-map-search-btn {
  height: 44px;                 /* single source of truth */
  font-size: 13px;
  box-sizing: border-box;

  -webkit-appearance: none;
  appearance: none;
}


#wsl-radius-select {
  height: 44px;
  line-height: 44px;
  padding: 0 36px 0 10px;     /* space for arrow */

  font-size: 12px;
  color: #000;
  -webkit-text-fill-color: #000;

  background-color: #fff;
  background-clip: padding-box;

  border: 1px solid #858585;
  border-radius: 4px;

  -webkit-appearance: none;
  appearance: none;

  /* Custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}



#wsl-map-search-input {
  height: 44px;
  line-height: 44px;
  padding: 0 10px;

  font-size: 16px;           /* prevents zoom */
  color: #000;
  -webkit-text-fill-color: #000;

  background-color: #fff;
  border: 1px solid #858585;
  border-radius: 4px;

  -webkit-appearance: none;
  appearance: none;
}


/* Search button – center SVG perfectly */
#wsl-map-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 10px;

  background: #008157;
  color: #fff;

  border-radius: 4px;
  border: none;

  -webkit-appearance: none;
  appearance: none;
  
  margin-left: -3px;
}


/* SVG inside the button */
#wsl-map-search-btn svg {
  display: block;             /* removes baseline alignment issue */
  width: 18px;                /* adjust if needed */
  height: 18px;
}




.wsl-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  font-size: 40px;
  line-height: 1;
  font-weight: 300;

  color: #000;
  -webkit-text-fill-color: #000;

  background: #fff;
  border: 1px solid #858585;
  border-radius: 4px;

  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;
}



/* ================= MOBILE ================= */
@media (max-width: 767px) {
	
	.wsl-zip-trigger
{
	font-size:16px;
}

  .wsl-map-controls {
    position: relative;
	top:0;
	right:-1px;
    width: 100%;
    padding: 8px;
    gap: 6px;
height:50px;


  }



  /* Search takes remaining width */
  .wsl-map-search {
    flex: 1;
    min-width: 0; /* important for flex shrink */
	border-radius: 4px;

  }
  
/* Mobile – unified height fix (iOS safe) */
#wsl-radius-select,
#wsl-map-search-input,
#wsl-map-search-btn {
  height: 38px;              /* single height for all */
  line-height: 38px;         /* vertical centering on iOS */
  box-sizing: border-box;

  -webkit-appearance: none;
  appearance: none;
}

/* Radius takes less space */
#wsl-radius-select {
  flex: 0 0 38%;
  font-size: 12px;
  padding: 0 15px 0 4px;            /* horizontal only */
  border-radius: 4px;
    background-position: right 1px center;
  background-size: 16px;
}
/* Input */
#wsl-map-search-input {
  width: 100%;
  font-size: 16px;           /* iOS zoom-safe */
  padding: 0 6px;            /* horizontal only */
  border-radius: 4px;
}
/* Button */
#wsl-map-search-btn {
  padding: 0 10px;           /* horizontal only */
  border-radius: 4px;
  margin-left: -5px;
}

  #wsl-map-search-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Close button smaller */
  .wsl-close {
    height: 38px;
    width: 38px;
	background:#fff;
	font-size:32px;
        border: 1px solid #858585;
        border-radius: 4px;
		color
  }
}








/* Prevent layout shift when list is empty */
.wsl-list {
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
}



.gm-style-iw-chr
{
	display: none;
}

.gm-style-iw-d img
{
	display:block;
	margin-top:5px;
}



@media (max-width: 375px) {
  #wsl-radius-select,
  #wsl-map-search-input,
  #wsl-map-search-btn {
    height: 48px;
    line-height: 48px;
  }
}


/* Mobile */
@media (max-width: 768px) {
	
	@media (max-width: 768px) {
  .wsl-dialog {
    top: 5vh;
    bottom: 5vh;
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

  .wsl-dialog {
    inset: 0;
    border-radius: 0;
  }
.wsl-content {
    display: grid;
    grid-template-columns: 1fr;   /* 🔑 THIS WAS MISSING */
    grid-template-rows: auto 1fr 2fr;
    height: 100%;
    min-height: 0;
  }

  .wsl-content > * {
    min-height: 0;
  }

  /* Only store list scrolls */
  #wsl-store-list {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }


.row-list::-webkit-scrollbar {
  width: 6px;
}

.row-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
}


  .wsl-list {
    border-right: none;
    border-bottom: 1px solid #eee;
	  min-width: 98%;
    max-width: 98%;
  }
  
  
  /* Force scrollbar space even when idle */
#wsl-store-list {
  overflow-y: scroll;      /* not auto */
  scrollbar-gutter: stable;
}

/* WebKit styling */
#wsl-store-list::-webkit-scrollbar {
  width: 8px;
}

#wsl-store-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#wsl-store-list::-webkit-scrollbar-thumb {
  background: #9a9a9a;
  border-radius: 6px;
}

#wsl-store-list::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}


}



