.store-home-page {
  background:
    radial-gradient(circle at top left, rgba(255, 211, 133, 0.45), transparent 30%),
    linear-gradient(180deg, #f7efe7 0%, #f8f5f1 55%, #f4efe8 100%);
  color: #2f241d;
}

.store-page-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 20px 0 60px;
}

.store-home-hero {
  margin-bottom: 22px;
}

.store-topbar,
.hero-card-shell,
.store-search-panel,
.store-category-section,
.market-trust-row,
.seller-showcase-section,
.browse-results,
.store-promo-banner,
.contact-banner,
.store-home-footer {
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(116, 83, 52, 0.08);
  box-shadow: 0 18px 45px rgba(78, 53, 32, 0.08);
}

.store-topbar {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 28px;
  align-items: center;
}

.store-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.store-brand img {
  width: 58px;
  height: 58px;
}

.store-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.store-brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.store-brand-copy span {
  max-width: 270px;
  color: #7a6555;
  font-size: 0.88rem;
  line-height: 1.35;
}

.store-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(116, 83, 52, 0.12);
  background: #fffaf5;
  color: #3f2e22;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.store-nav-panel {
  position: fixed;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(420px, calc(100vw - 24px));
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.98);
  box-shadow: 0 24px 50px rgba(59, 40, 26, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
  z-index: 30;
  overflow-y: auto;
}

.store-nav-panel.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.store-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.store-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-drawer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(116, 83, 52, 0.08);
}

.store-drawer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-drawer-brand-copy strong {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-drawer-brand-copy span {
  color: #816854;
  font-size: 0.88rem;
}

.store-home-page .menu-close-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #36271d;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(59, 40, 26, 0.08);
}

.store-drawer-welcome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f3f1ec 100%);
  border: 1px solid rgba(116, 83, 52, 0.08);
}

.drawer-avatar,
.drawer-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef3ed;
  color: #2a5a40;
  font-size: 0.92rem;
  font-weight: 700;
}

.drawer-link-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-welcome-copy,
.drawer-link-copy,
.drawer-support-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.drawer-welcome-copy strong,
.drawer-link-copy strong,
.drawer-support-copy strong {
  font-size: 1rem;
}

.drawer-welcome-copy span,
.drawer-link-copy small,
.drawer-support-copy span {
  color: #7d6654;
  line-height: 1.45;
  font-size: 0.84rem;
}

.drawer-chevron {
  color: #9b8675;
  font-size: 1.45rem;
  line-height: 1;
}

.drawer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-section-label {
  padding: 0 4px;
  color: #9a8572;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.drawer-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-link-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #2f241d;
  background: #fff;
  border: 1px solid rgba(116, 83, 52, 0.08);
}

.drawer-link-item .drawer-link-icon {
  background: #edf3ef;
}

.seller-tool-card {
  box-shadow: inset 0 0 0 1px rgba(116, 83, 52, 0.04);
}

.seller-tool-green {
  background: linear-gradient(90deg, rgba(73, 127, 96, 0.17) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.seller-tool-gold {
  background: linear-gradient(90deg, rgba(220, 177, 84, 0.18) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.seller-tool-red {
  background: linear-gradient(90deg, rgba(211, 86, 67, 0.16) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.seller-tool-plain {
  background: linear-gradient(90deg, rgba(125, 150, 165, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.seller-tool-green .drawer-link-icon {
  background: #2f6f50;
  color: #fff;
}

.seller-tool-gold .drawer-link-icon {
  background: #b17f22;
  color: #fff;
}

.seller-tool-red .drawer-link-icon {
  background: #b83a33;
  color: #fff;
}

.seller-tool-plain .drawer-link-icon {
  background: #5d7480;
  color: #fff;
}

.nav-category-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nav-category-shortcuts button {
  border: 1px solid rgba(116, 83, 52, 0.12);
  background: #fff;
  color: #4d392b;
  border-radius: 14px;
  padding: 14px 12px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.drawer-support-card {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f6f6f1 0%, #ecefe7 100%);
  border: 1px solid rgba(116, 83, 52, 0.08);
}

.drawer-support-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-support-btn {
  min-width: 150px;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
}

.drawer-support-live {
  background: #2b6d51;
  color: #fff;
}

.drawer-support-center {
  background: #fff;
  color: #344438;
  border: 1px solid rgba(43, 109, 81, 0.14);
}

.hero-card-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  padding: 26px;
  border-radius: 32px;
}

.hero-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1e4d2;
  color: #866349;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-copy-panel h1 {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 0.96;
  max-width: 540px;
}

.hero-copy-panel p {
  font-size: 1rem;
  line-height: 1.8;
  color: #695341;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-home-page .primary-btn,
.store-home-page .secondary-btn {
  border: none;
  cursor: pointer;
}

.store-home-page .primary-btn {
  background: linear-gradient(180deg, #4c3323 0%, #2e1f16 100%);
  color: #fff7ef;
  box-shadow: 0 14px 24px rgba(61, 40, 25, 0.18);
}

.store-home-page .secondary-btn {
  background: #fff;
  color: #3b2c20;
  border: 1px solid rgba(116, 83, 52, 0.12);
}

.hero-inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.hero-inline-stats div {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff9f2;
  border: 1px solid rgba(116, 83, 52, 0.08);
}

.hero-inline-stats strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.hero-inline-stats span {
  color: #7a6555;
  font-size: 0.88rem;
}

.hero-visual-panel {
  position: relative;
  min-height: 420px;
}

.hero-image-frame {
  height: 100%;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background: #ead9c7;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(116, 83, 52, 0.08);
  box-shadow: 0 18px 30px rgba(72, 49, 31, 0.14);
}

.hero-floating-note span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a674d;
}

.hero-floating-note strong {
  font-size: 1rem;
}

.store-search-panel {
  border-radius: 28px;
  padding: 18px;
  margin-bottom: 22px;
}

.store-search-box {
  display: flex;
  gap: 12px;
}

.store-search-box input {
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(116, 83, 52, 0.12);
  background: #fff;
  padding: 17px 18px;
  font-size: 0.98rem;
  color: #2f241d;
}

.store-search-box button {
  min-width: 160px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffd549 0%, #f8c400 100%);
  color: #423118;
  font-weight: 700;
  cursor: pointer;
}

.store-category-section {
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 22px;
}

.split-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.split-header p,
.section-header.left p {
  max-width: 720px;
}

.view-all-link-btn,
.seller-showcase-link {
  border: none;
  background: transparent;
  color: #9a6a1f;
  font-weight: 700;
  cursor: pointer;
}

.category-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-spotlight-card {
  border: 1px solid rgba(116, 83, 52, 0.08);
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(78, 53, 32, 0.12);
}

.category-card-thumb {
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1e1ce 0%, #e8ceb3 100%);
  color: #6d5039;
  font-weight: 700;
}

.category-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-view-all-thumb {
  background: linear-gradient(180deg, #4c3323 0%, #261811 100%);
  color: #fff4e5;
}

.category-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 2px 2px;
}

.category-card-copy strong {
  font-size: 0.98rem;
}

.category-card-copy span {
  color: #8d715c;
  font-size: 0.86rem;
}

.market-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  margin-bottom: 22px;
}

.trust-card {
  padding: 16px;
  border-radius: 20px;
  background: #fff9f2;
  border: 1px solid rgba(116, 83, 52, 0.08);
}

.trust-card strong {
  display: block;
  margin-bottom: 6px;
}

.trust-card span {
  color: #7a6555;
  line-height: 1.6;
  font-size: 0.92rem;
}

.seller-showcase-section {
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 22px;
}

.seller-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.seller-showcase-card {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(116, 83, 52, 0.08);
}

.seller-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.seller-showcase-head span {
  color: #8d715c;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.seller-showcase-head h3 {
  margin: 5px 0 6px;
  font-size: 1.45rem;
}

.seller-showcase-head p,
.seller-showcase-foot {
  color: #7a6555;
}

.seller-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.seller-product-grid .card,
.browse-results .card {
  border-radius: 24px;
}

.seller-showcase-foot {
  margin-top: 14px;
  font-size: 0.9rem;
}

.product-seller-name {
  display: inline-block;
  margin-top: 4px;
  color: #8d715c;
  font-size: 0.84rem;
  font-weight: 600;
}

.store-home-page .collection-section {
  width: 100%;
  margin: 0 0 22px;
  padding: 24px;
  border-radius: 28px;
}

.browse-results-toolbar {
  margin-bottom: 20px;
}

.store-promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(74, 45, 29, 0.94) 0%, rgba(122, 83, 45, 0.9) 100%),
    url("https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #fff8f0;
}

.promo-banner-copy span {
  display: inline-block;
  margin-bottom: 6px;
  color: #ffd98c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}

.promo-banner-copy h3 {
  margin-bottom: 8px;
  font-size: 1.9rem;
}

.promo-banner-copy p {
  max-width: 620px;
  line-height: 1.7;
  color: rgba(255, 248, 240, 0.9);
}

.promo-banner-btn {
  white-space: nowrap;
}

.store-home-page .contact-banner {
  width: 100%;
  margin: 0 0 20px;
  padding: 24px;
  border-radius: 28px;
}

.store-home-footer {
  padding: 20px 24px;
  border-radius: 24px;
  text-align: center;
}

.store-home-footer a {
  color: #8b5f00;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .category-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seller-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .store-page-shell {
    width: min(100% - 14px, 1180px);
    padding-top: 10px;
  }

  .store-topbar {
    padding: 14px;
  }

  .store-brand-copy span {
    max-width: 180px;
  }

  .hero-card-shell {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero-visual-panel,
  .hero-image-frame {
    min-height: 330px;
  }

  .category-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-header,
  .seller-showcase-head,
  .store-promo-banner,
  .store-home-page .contact-banner {
    flex-direction: column;
    align-items: start;
  }

  .store-home-page .menu-close-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .store-page-shell {
    width: calc(100% - 10px);
    padding-bottom: 42px;
  }

  .store-topbar,
  .hero-card-shell,
  .store-search-panel,
  .store-category-section,
  .market-trust-row,
  .seller-showcase-section,
  .store-home-page .collection-section,
  .store-promo-banner,
  .store-home-page .contact-banner,
  .store-home-footer {
    border-radius: 24px;
  }

  .store-brand img {
    width: 50px;
    height: 50px;
  }

  .store-brand-copy strong {
    font-size: 0.95rem;
  }

  .store-brand-copy span {
    font-size: 0.8rem;
  }

  .topbar-icon-btn {
    padding: 11px 14px;
  }

  .store-topbar-actions {
    gap: 8px;
  }

  .hero-copy-panel h1 {
    font-size: 2.45rem;
  }

  .hero-copy-panel p {
    font-size: 0.96rem;
  }

  .hero-inline-stats {
    grid-template-columns: 1fr;
  }

  .store-search-box {
    flex-direction: column;
  }

  .store-search-box button {
    min-width: 0;
    min-height: 54px;
  }

  .category-spotlight-grid,
  .market-trust-row,
  .seller-product-grid,
  .store-home-page .bale-grid {
    grid-template-columns: 1fr;
  }

  .store-nav-panel {
    width: calc(100vw - 12px);
    top: 6px;
    right: 6px;
    bottom: 6px;
    padding: 14px;
    border-radius: 22px;
  }

  .store-drawer-brand-copy strong {
    font-size: 1.15rem;
  }

  .drawer-link-item,
  .store-drawer-welcome,
  .drawer-support-card {
    padding: 13px;
  }

  .drawer-support-card {
    grid-template-columns: 1fr;
  }

  .drawer-support-actions {
    width: 100%;
  }

  .drawer-support-btn {
    width: 100%;
    min-width: 0;
  }

  .category-card-thumb {
    height: 96px;
  }
}
