/* Layout */
.wtb-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Section styling */
.wtb-online,
.wtb-nearby {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.wtb-online h2,
.wtb-nearby h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Retailer row */
.wtb-retailer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 1rem;
  height: 84px;
  box-shadow: 0 2px 5px 0 rgba(46, 46, 46, .1);
  cursor: pointer;
}

.wtb-retailer:hover {
  transform: translateY(-2px);
  box-shadow: rgba(46, 46, 46, 0.2) 0px 4px 10px 0px;
}

/* Logo */
.wtb-retailer img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  margin-right: 1rem;
}

/* View button */
.wtb-retailer a {
  padding: 0.5rem 2rem;
  border: 2px solid #176cc0;
  border-radius: 30px;
  color: #176cc0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.wtb-retailer a:hover {
  background: #176cc0;
  color: #fff;
}

/* Nearby list items */
.wtb-item {
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 0.5rem;
}

.wtb-map-hidden {
  display: block;
}

.wtb-map-hidden .wtb-online {
  width: 100%;
}