/* Pulse Lane — yüksek enerjili magazin / asimetrik */

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

.sht-pulse {
  --sht-pulse-cyan: #0891b2;
  --sht-pulse-coral: #e11d48;
  font-family: Sora, Inter, system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 2px 0 12px;
}

.sht-pulse__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .sht-pulse__hero {
    grid-template-columns: 1fr;
  }
}

.sht-pulse__hero-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  color: #f8fafc;
  background:
    linear-gradient(125deg, #083344 0%, #0e7490 42%, #155e75 70%, #881337 140%);
  box-shadow: 0 22px 50px rgba(8, 145, 178, 0.28);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.sht-pulse__pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a5f3fc;
}

.sht-pulse__pulse i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb7185;
  box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.7);
  animation: sht-pulse-beat 1.6s ease-out infinite;
}

@keyframes sht-pulse-beat {
  0% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(251, 113, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0); }
}

.sht-pulse__hero-main h1 {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 16ch;
}

.sht-pulse__hero-main > p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #cffafe;
  max-width: 44ch;
}

.sht-pulse__search {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  max-width: 520px;
}

.sht-pulse__search input {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
}

.sht-pulse__search button {
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: var(--sht-pulse-coral);
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.35);
}

.sht-pulse__hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.sht-pulse__deal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.18s ease;
}

.sht-pulse__deal:hover {
  transform: translateY(-3px);
}

.sht-pulse__deal small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.sht-pulse__deal strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sht-pulse__deal span {
  font-size: 12px;
  opacity: 0.9;
}

.sht-pulse__deal--a {
  background: linear-gradient(145deg, #0891b2, #155e75);
}

.sht-pulse__deal--b {
  background: linear-gradient(145deg, #e11d48, #9f1239);
}

.sht-pulse__lane {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sht-pulse__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sht-pulse__chip:hover {
  transform: translateY(-2px);
}

.sht-pulse__chip--cyan {
  color: #155e75;
  background: #ecfeff;
  border-color: #a5f3fc;
}

.sht-pulse__chip--coral {
  color: #9f1239;
  background: #fff1f2;
  border-color: #fecdd3;
}

.sht-pulse__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.sht-pulse__section-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.sht-pulse__section-head a {
  font-size: 13px;
  font-weight: 700;
  color: var(--sht-pulse-cyan);
  text-decoration: none;
}

.sht-pulse__mag-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 100px;
  gap: 10px;
}

@media (max-width: 800px) {
  .sht-pulse__mag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sht-pulse__tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.sht-pulse__tile:nth-child(odd) {
  background: linear-gradient(160deg, #ecfeff, #fff);
}

.sht-pulse__tile:nth-child(even) {
  background: linear-gradient(160deg, #fff1f2, #fff);
}

.sht-pulse__tile--wide {
  grid-column: span 2;
}

.sht-pulse__tile--tall {
  grid-row: span 2;
}

.sht-pulse__tile strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sht-pulse__tile span {
  font-size: 12px;
  font-weight: 700;
  color: var(--sht-pulse-cyan);
}

.sht-pulse__tile:hover {
  transform: translateY(-3px) rotate(-0.4deg);
  border-color: #67e8f9;
}

@media (max-width: 560px) {
  .sht-pulse__search {
    flex-direction: column;
  }
  .sht-pulse__tile--wide,
  .sht-pulse__tile--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

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

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

[data-theme="dark"] .sht-pulse__section-head h2 {
  color: #f8fafc;
}

[data-theme="dark"] .sht-pulse__tile {
  background: #0f172a;
  border-color: #1e293b;
  color: #f8fafc;
}
