/* ============================================================
   shop_settings.css — styles for the seller Shop Settings page
   (ShopSettingsPage banner uploader). Split out of styles.css so
   the shop-detail experience lives in one dedicated stylesheet.
   Loaded AFTER styles.css in index.html.
   ============================================================ */

.shop-banner-section { margin-bottom: 14px; }
.shop-banner-uploader {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 16px;
  border: 1.5px dashed #e5e5ea;
  background: #fafafb;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-banner-uploader:hover { border-color: #ff4d7e; }
.shop-banner-uploader.has-banner { border-style: solid; border-color: transparent; }
/* Shown before the shop is saved: banner upload needs a shop id, so the
   slot stays visible but locked to keep the page consistent. */
.shop-banner-uploader.is-locked {
  cursor: default;
  opacity: 0.7;
  background:
    repeating-linear-gradient(45deg, #f6f6f8, #f6f6f8 10px, #fafafb 10px, #fafafb 20px);
}
.shop-banner-uploader.is-locked:hover { border-color: #e5e5ea; }
.shop-banner-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #777;
  text-align: center;
  padding: 12px;
}
.shop-banner-empty strong { color: #222; font-size: 14px; font-weight: 700; }
.shop-banner-empty small { font-size: 12px; color: #999; }
.shop-banner-icon { font-size: 26px; margin-bottom: 4px; }
.shop-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 60%);
}
/* .shop-banner-btn rules stay in styles.css (part of the global button
   theme cascade) to preserve the gradient override ordering. */

/* Address + shop-name icon inputs: match the phone field rhythm. */
.shop-lux .shop-icon-input-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f7f7fa;
  border-radius: 12px;
  padding: 0 12px;
  transition: background .15s, box-shadow .15s;
}
.shop-lux .shop-icon-input-wrap:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 79, 125, 0.25);
}
.shop-lux .shop-icon-input-wrap .shop-input-icon {
  flex: 0 0 auto;
  margin-right: 10px;
  color: #ff4f7d;
  pointer-events: none;
}
.shop-lux .shop-icon-input-wrap input {
  flex: 1;
  min-width: 0;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0 !important;
}
.shop-lux .location-row .shop-address-input-wrap {
  flex: 1;
  min-width: 0;
}

/* Compact Public / Private buttons. */
.shop-lux .shop-lux-vis {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}
.shop-lux .shop-lux-vis-card {
  min-height: 42px;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  justify-content: center;
  gap: 6px;
}
.shop-lux .shop-lux-vis-card .vis-opt-icon {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  font-size: 12px;
  margin-right: 0;
}
.shop-lux .shop-lux-vis-card .vis-opt-title {
  font-size: 12px;
  line-height: 1;
}
.shop-lux .shop-lux-vis-card .vis-opt-sub {
  display: none;
}

/* Tailor shop Men/Women selector */
.shop-lux .shop-gender-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.shop-lux .shop-gender-choice-row .shop-gender-choice {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #e7e7ec;
  background: #fff;
  color: #3e3e46;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 1px 0 rgba(20, 20, 50, 0.03);
}
.shop-lux .shop-gender-choice-row .shop-gender-choice.on {
  border-color: #ff4d7e;
  background: #fff5f8;
  color: #ff2f68;
  box-shadow: inset 0 0 0 1px rgba(255, 77, 126, 0.18);
}
.shop-lux .shop-gender-choice-row .shop-gender-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

