:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --accent: #22c55e;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.nav a {
  margin-left: 28px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.nav a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  padding: 90px 0;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  max-width: 820px;
  margin: auto;
      line-height: 1.45;
}

.hero p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin-inline: auto;
}

/* STORES */
.stores {
  padding: 80px 0;
}

.stores h2 {
  font-size: 32px;
  margin-bottom: 36px;
  text-align: center;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.store-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
}

.store-card::before {
  content: "Verified";
  position: absolute;
  top: 16px;
  left: 16px;
    background: #22c55e;
    color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.store-logo {
  height:auto;
  border-radius: 12px;
 
  margin-bottom: 18px;
}

.store-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.store-card span {
  font-size: 14px;
  color: var(--muted);
}

/* INFO */
.info {
  background: #fff;
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 36px;
}

.info-box {
  padding: 28px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-box p {
  color: var(--muted);
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* FOOTER */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
