/* Studio Minimal — product-first white storefront preset. */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body.theme-studio-minimal {
  --sm-ink: #111;
  --sm-mute: #888;
  --sm-line: #ececec;
  --sm-paper: #fff;
  background: var(--sm-paper);
  color: var(--sm-ink);
  font-family: "Inter", "PingFang TC", "Microsoft JhengHei", sans-serif;
}
body.theme-studio-minimal.page-bg::before { background: #fff; }

body.theme-studio-minimal .co-header,
body.theme-studio-minimal #mobileBar {
  display: none !important;
}

body.theme-studio-minimal #storeApp .container {
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
}
body.is-storefront.theme-studio-minimal #storeApp > .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
body.theme-studio-minimal #storeApp .crumb {
  font-size: 0.72rem;
  color: var(--sm-mute);
  margin: 20px 0 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sm-hero {
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--sm-line);
  margin-bottom: 28px;
}
.sm-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sm-hero-badge {
  margin: 0 0 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sm-mute);
  font-weight: 600;
}
.sm-hero-title {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.sm-hero-sub {
  margin: 10px 0 0;
  max-width: 32rem;
  color: var(--sm-mute);
  font-size: 0.92rem;
  line-height: 1.55;
}
.sm-hero-meta {
  font-size: 0.75rem;
  color: var(--sm-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

#storeProductGrid.preset-studio-minimal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 16px;
  padding-bottom: 88px !important;
}
@media (min-width: 900px) {
  #storeProductGrid.preset-studio-minimal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 28px;
  }
}

.sm-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.sm-card-media {
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  overflow: hidden;
}
.sm-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease;
}
.sm-card:hover .sm-card-media img { opacity: 0.88; }
.sm-card-body {
  padding-top: 14px;
  display: grid;
  gap: 6px;
}
.sm-card-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.sm-card-price {
  margin: 0;
  font-size: 0.78rem;
  color: var(--sm-mute);
  font-weight: 450;
}

body.theme-studio-minimal.theme-pdp .page-title,
body.theme-studio-minimal .product-card-title {
  letter-spacing: -0.02em;
  font-weight: 600;
}
body.theme-studio-minimal .pdp-gallery {
  background: #f5f5f5;
  border-radius: 0;
}

.store-card.theme-preview-studio-minimal .store-card-media {
  background: #f5f5f5;
}
