.store-landing {
  padding-bottom: 40px;
}
.store-landing-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  margin: 18px 0 28px;
  border-radius: 14px;
  min-height: 240px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--store-accent, #1a1a1a) 0%,
    color-mix(in srgb, var(--store-accent, #1a1a1a) 84%, #fff 16%) 100%
  );
  color: #fff;
}
.store-landing-hero.has-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.store-landing-hero-content {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.store-landing-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.05;
}
.store-landing-hero-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 24px;
  max-width: 540px;
  line-height: 1.5;
}
.store-landing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.store-landing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
}
.store-landing-trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--store-pop, rgba(255, 255, 255, 0.14));
  color: var(--store-pop-ink, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.store-landing-hero-search {
  flex: 0 0 360px;
  width: 360px;
  position: relative;
  z-index: 1;
  align-self: flex-end;
}
.store-landing-search-bar {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.15s ease;
}
.store-landing-search-bar:focus-within {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.18);
}
.store-landing-search-input {
  flex: 1;
  border: 0;
  padding: 14px 20px;
  font-size: 14px;
  outline: none;
  color: #1a1a1a;
  background: transparent;
  min-width: 0;
}
.store-landing-search-btn {
  border: 0;
  background: var(--store-pop, var(--store-accent, #1a1a1a));
  color: var(--store-pop-ink, #fff);
  padding: 0 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-landing-search-btn:hover {
  filter: brightness(1.06);
}
.store-landing-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.store-landing-sidebar {
  flex: 0 0 250px;
  width: 250px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding-right: 4px;
}
.store-landing-main {
  flex: 1;
  min-width: 0;
}
.store-landing-section-title {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-landing-section-title::before {
  content: '';
  flex: 0 0 auto;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--store-accent, #1a1a1a);
}
.store-landing-row {
  margin-bottom: 32px;
}
.store-landing-main .store-landing-section-title:not(:first-child) {
  margin-top: 4px;
}
.store-landing-main .search-results {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .store-landing-main .search-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .store-landing-main .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sls-block {
  margin-bottom: 22px;
}
.sls-block-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8a8f96;
  margin-bottom: 10px;
}
.sls-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sls-store {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  border-radius: 11px;
  background: #f7f8fa;
  border: 1px solid #e9ebee;
  color: #2a2e33;
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.15;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease,
    background 0.12s ease,
    color 0.12s ease;
}
.sls-store:hover {
  background: #fff;
  border-color: #d4d8dd;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}
.sls-store.is-current {
  background: var(--store-accent, #1a1a1a);
  border-color: var(--store-accent, #1a1a1a);
  color: #fff;
}
.sls-cats {
  display: block;
}
.sls-dept {
  border-bottom: 1px solid #eef0f2;
}
.sls-dept > summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 22px 10px 0;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  position: relative;
  user-select: none;
}
.sls-dept > summary::-webkit-details-marker {
  display: none;
}
.sls-dept > summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.15s ease;
}
.sls-dept[open] > summary::after {
  transform: translateY(-30%) rotate(225deg);
}
.sls-dept-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 2px 0 12px 12px;
}
.sls-dept-links a {
  color: #5a5f66;
  text-decoration: none;
  font-size: 13px;
  padding: 3px 0;
  transition: color 0.12s ease;
}
.sls-dept-links a:hover {
  color: var(--store-accent, #1a1a1a);
}
.sls-dept > summary:focus-visible,
.sls-store:focus-visible,
.sls-dept-links a:focus-visible,
.store-landing-cat:focus-visible {
  outline: 2px solid var(--store-accent, #1a1a1a);
  outline-offset: 2px;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .store-landing-hero {
    padding: 26px 26px;
    gap: 22px;
    min-height: 200px;
  }
  .store-landing-hero-content h1 {
    font-size: 34px;
  }
  .store-landing-hero-search {
    flex: 0 0 290px;
    width: 290px;
  }
  .store-landing-layout {
    flex-direction: column;
  }
  .store-landing-sidebar {
    position: static;
    width: 100%;
    flex: none;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    margin-bottom: 8px;
  }
  .sls-block {
    margin-bottom: 14px;
  }
  .sls-stores {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
  }
  .sls-stores::-webkit-scrollbar {
    display: none;
  }
  .sls-store {
    flex: 0 0 auto;
    padding: 9px 16px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .sls-dept > summary {
    padding: 14px 22px 14px 4px;
  }
  .sls-dept-links {
    padding: 2px 0 12px 6px;
  }
  .sls-dept-links a {
    padding: 10px 0;
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .store-landing-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 16px;
    min-height: 0;
    background-image: linear-gradient(
      135deg,
      var(--store-accent, #1a1a1a) 0%,
      color-mix(in srgb, var(--store-accent, #1a1a1a) 84%, #fff 16%) 100%
    ) !important;
  }
  .store-landing-hero-content h1 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .store-landing-hero-content p,
  .store-landing-trust {
    display: none;
  }
  .store-landing-hero-search {
    flex: 1 1 auto;
    width: 100%;
    align-self: stretch;
  }
  .store-landing-search-input {
    font-size: 16px;
    padding: 13px 18px;
  }
  .store-landing-main .search-results {
    gap: 10px;
  }
  .store-landing-row {
    margin-bottom: 22px;
  }
  .store-landing-section-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .sls-dept-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
