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

.sht-ed {
  font-family: Inter, system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 12px;
}

.sht-ed__cover {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: clamp(32px, 6vw, 56px);
  border-radius: 8px;
  color: #fafafa;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
    linear-gradient(145deg, #0a0a0a 0%, #171717 40%, #450a0a 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.sht-ed__issue {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fb7185;
}

.sht-ed__cover h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(64px, 12vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  max-width: 10ch;
}

.sht-ed__deck {
  margin: 16px 0 0;
  font-size: 15px;
  color: #d4d4d4;
  max-width: 36ch;
}

.sht-ed__search {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin-top: 28px;
}

.sht-ed__search input {
  flex: 1;
  height: 48px;
  border: 1px solid #404040;
  border-radius: 0;
  padding: 0 14px;
  font: inherit;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.sht-ed__search button {
  height: 48px;
  padding: 0 18px;
  border: none;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  background: #e11d48;
  color: #fff;
}

.sht-ed__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fafafa;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sht-ed__frames {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

@media (max-width: 800px) {
  .sht-ed__frames { grid-template-columns: repeat(2, 1fr); }
  .sht-ed__search { flex-direction: column; max-width: none; }
}

.sht-ed__frame {
  display: grid;
  place-items: end start;
  min-height: 140px;
  padding: 16px;
  text-decoration: none;
  color: #fff;
  background: #171717;
  transition: transform 0.18s ease;
}

.sht-ed__frame:hover { transform: scale(1.015); }
.sht-ed__frame span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.sht-ed__frame--0 { background: linear-gradient(160deg, #262626, #7f1d1d); }
.sht-ed__frame--1 { background: linear-gradient(160deg, #171717, #1e3a8a); }
.sht-ed__frame--2 { background: linear-gradient(160deg, #0a0a0a, #365314); }
.sht-ed__frame--3 { background: linear-gradient(160deg, #171717, #9a3412); }

.sht-ed__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 12px;
}
.sht-ed__head h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.sht-ed__head a { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #e11d48; text-decoration: none; }

/* Mount .shop-mp-hero içinde — hero’yu gizleme; sadece varsayılan hub/zone */
body[data-homepage-template="editorial-frame"] .shop-hero-hub,
body[data-homepage-template="editorial-frame"] #shop-homepage-default-zone {
  display: none !important;
}

body[data-homepage-template="editorial-frame"] .shop-mp-hero {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

body[data-homepage-template="editorial-frame"] .shop-homepage-template-mount:not([hidden]) {
  display: block;
  width: 100%;
}

[data-theme="dark"] .sht-ed__head h2 { color: #fafafa; }
