
/* iPrice-inspired simple homepage — calm hero with editorial heading + visual accents */
:root {
  --font-display: "Fraunces", ui-serif, Georgia, serif;
}
body { background: #FFFFFF; }
.simple-head h2,
.simple-newsletter h3,
.simple-hero h1 {
  font-family: var(--font-display);
}

.simple-hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(14,165,233,.08) 0%, transparent 50%),
    radial-gradient(circle at 88% 80%, rgba(236,72,153,.07) 0%, transparent 50%),
    #FFFFFF;
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--ink-100);
  text-align: center;
  overflow: hidden;
}
.simple-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--ink-200);
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
  font-size: 12.5px;
  color: var(--ink-700);
  font-weight: 500;
  margin-bottom: 18px;
}
.simple-hero .badge-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-mint);
  box-shadow: 0 0 0 3px rgba(16,185,129,.18);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .5; }
}
.simple-hero h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ink-900);
}
.simple-hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--brand-primary-dk);
}
.simple-hero .lede {
  color: var(--ink-600);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 26px;
  line-height: 1.55;
}

/* 3 quick-feature row under hero */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--ink-100);
}
.hero-features .feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.hero-features .feat .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--brand-primary-lt);
  color: var(--brand-primary-dk);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-features .feat .ttl {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.hero-features .feat .sub {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.4;
}

/* Floating store-logo decorations behind hero */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-floats .float {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--ink-200);
  box-shadow: 0 4px 12px rgba(15,23,42,.06);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-800);
  font-family: "Inter", sans-serif;
}
.hero-floats .float:nth-child(1) { top: 18%;  left: 6%;  transform: rotate(-8deg);  }
.hero-floats .float:nth-child(2) { top: 64%;  left: 4%;  transform: rotate(6deg);   }
.hero-floats .float:nth-child(3) { top: 14%;  right: 8%; transform: rotate(7deg);   }
.hero-floats .float:nth-child(4) { top: 62%;  right: 5%; transform: rotate(-5deg);  }
.hero-floats .tag-pill {
  position: absolute;
  background: white;
  border: 1px solid var(--ink-200);
  box-shadow: 0 4px 12px rgba(15,23,42,.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-800);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-floats .tag-pill.t1 { top: 38%; left: 9%;  transform: rotate(-4deg); }
.hero-floats .tag-pill.t2 { top: 42%; right: 10%; transform: rotate(5deg); }
.hero-floats .tag-pill .pct { color: var(--brand-pink); font-weight: 700; }

@media (max-width: 900px) {
  .hero-floats { display: none; }
  .hero-features { grid-template-columns: 1fr; gap: 12px; }
}
.simple-search {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  background: #FFFFFF;
  border: 1.5px solid var(--ink-200);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.simple-search:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}
.simple-search input {
  flex: 1;
  border: 0;
  padding: 14px 16px;
  font-size: 14.5px;
  background: transparent;
}
.simple-search input:focus { outline: none; }
.simple-search button {
  background: var(--brand-primary);
  color: white;
  padding: 0 22px;
  font-weight: 600;
  font-size: 14px;
}
.simple-search button:hover { background: var(--brand-primary-dk); }

.simple-tags {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-500);
}
.simple-tags strong { color: var(--ink-700); margin-right: 4px; }
.simple-tags a {
  color: var(--brand-primary-dk);
  margin: 0 4px;
}
.simple-tags a:hover { text-decoration: underline; }

/* Inline metric strip */
.simple-metrics {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-600);
  flex-wrap: wrap;
}
.simple-metrics strong { color: var(--ink-900); font-weight: 700; }

/* Section heads — quieter */
.simple-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.simple-head h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.01em;
}
.simple-head .more { font-size: 13px; color: var(--brand-primary-dk); font-weight: 500; }
.simple-head .more:hover { text-decoration: underline; }

.simple-section { padding: 36px 0; }

/* Categories — flat tile grid */
.simple-cats {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
}
.simple-cats a {
  background: #FFFFFF;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.simple-cats a:hover {
  border-color: var(--brand-primary);
  background: #F0F9FF;
}
.simple-cats .ico { font-size: 24px; margin-bottom: 6px; }
.simple-cats .lb {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-700);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width:1100px){ .simple-cats{grid-template-columns:repeat(5,1fr);} }
@media (max-width:600px){ .simple-cats{grid-template-columns:repeat(3,1fr);} }

/* Coupon cards — flatter, simpler */
.simple-coupons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.simple-coupon {
  background: #FFFFFF;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .15s, box-shadow .15s;
  text-decoration: none;
  color: inherit;
}
.simple-coupon:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
}
.simple-coupon .row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.simple-coupon .lg {
  width: 48px; height: 48px;
  border-radius: 6px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-800);
  flex-shrink: 0;
}
.simple-coupon .name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.simple-coupon .verified {
  font-size: 11.5px;
  color: var(--brand-mint);
  font-weight: 500;
}
.simple-coupon .pct {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary-dk);
  letter-spacing: -.02em;
}
.simple-coupon .title {
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.simple-coupon .cta {
  margin-top: auto;
  border: 1px dashed var(--ink-300);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary-dk);
  background: #F0F9FF;
}
.simple-coupon:hover .cta {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  border-style: solid;
}

@media (max-width:1100px){ .simple-coupons{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .simple-coupons{grid-template-columns:1fr;} }

/* Stores — flat logo grid */
.simple-stores {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.simple-store {
  background: #FFFFFF;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 16px 10px;
  text-align: center;
  transition: border-color .15s;
}
.simple-store:hover { border-color: var(--brand-primary); }
.simple-store .lg {
  width: 44px; height: 44px;
  margin: 0 auto 8px;
  border-radius: 8px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-800);
}
.simple-store .name { font-size: 12.5px; font-weight: 600; color: var(--ink-900); }
.simple-store .ct { font-size: 11px; color: var(--ink-500); margin-top: 2px; }

@media (max-width:1100px){ .simple-stores{grid-template-columns:repeat(4,1fr);} }
@media (max-width:600px){ .simple-stores{grid-template-columns:repeat(3,1fr);} }

@media (max-width:400px){ 
    .brand-mark img {
        width: 104px;
    }
    .simple-cats {
      grid-template-columns: repeat(2, 1fr);
    }
}


