/* ============================================
   StackWell - Global Stylesheet
   ============================================ */

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

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1B2A4A;
  --navy-light: #243658;
  --navy-dark: #111D33;
  --green: #2E7D52;
  --green-light: #37966340;
  --green-hover: #256844;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--off-white);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-hover);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-light);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo__full {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

.nav__join {
  margin-left: 4px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--gray-200);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav__link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__link--active::after {
    display: none;
  }

  .nav__join {
    margin: 24px 0 0 0;
  }

  .logo__full {
    height: 60px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 48px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo .logo__full {
  height: 52px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px 12px;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--white);
}

.footer__disclosure {
  font-size: 0.7rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  color: var(--white);
  padding: 56px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 125, 82, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 125, 82, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  background: rgba(46, 125, 82, 0.2);
  color: #6EE7A0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.hero__title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  line-height: 1.6;
}

.hero__tagline {
  font-size: 1.05rem;
  font-style: italic;
  color: #6EE7A0;
  margin-top: 0;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stat-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 48px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .hero__tagline {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .hero__stat-bar {
    gap: 28px;
  }

  .hero__stat-number {
    font-size: 1.4rem;
  }
}

/* ============================================
   HOW IT WORKS (Home)
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 50%;
  font-size: 1.6rem;
}

.step__number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   FEATURED STORES (Home)
   ============================================ */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  color: inherit;
}

.store-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-top: 3px solid var(--green);
}

.store-card__logo {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
}

.store-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.store-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.store-card__rate {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 50px;
}

.store-card__category {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .store-card {
    padding: 20px 14px;
  }
}

/* ============================================
   WHY STACKWELL / BENEFITS
   ============================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit {
  text-align: center;
  padding: 36px 24px;
}

.benefit__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
}

.benefit__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: 1140px;
}

.cta-banner__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner__desc {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 28px;
}

/* ============================================
   PAGE HERO (Interior pages)
   ============================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.page-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.hiw-steps {
  counter-reset: hiw-step;
}

.hiw-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.hiw-step:last-child {
  border-bottom: none;
}

.hiw-step__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.8rem;
  counter-increment: hiw-step;
}

.hiw-step__content {
  flex: 1;
}

.hiw-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.hiw-step__desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .hiw-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .hiw-step__icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
}

/* FAQ */
.faq {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--green);
}

.faq__chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: var(--green);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer-inner {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

/* ============================================
   STORES PAGE
   ============================================ */
.coming-soon-banner {
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 32px;
}

.coming-soon-banner__text {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.coming-soon-banner__text strong {
  color: var(--green);
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  justify-content: center;
}

.letter-bar {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.letter-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.letter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.letter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.filter-btn {
  padding: 8px 20px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: 50px;
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.stores-page-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.stores-page-grid .store-card {
  display: none;
}

/* --- Nav Search (global) --- */
.nav-search {
  position: relative;
}

.nav-search__input {
  padding: 8px 16px 8px 34px;
  font-family: inherit;
  font-size: 0.85rem;
  border: 1px solid var(--gray-300);
  border-radius: 50px;
  outline: none;
  transition: border-color var(--transition), width var(--transition);
  width: 200px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='5'/%3E%3Cpath d='m13 13-3.5-3.5'/%3E%3C/svg%3E") 12px center no-repeat;
}

.nav-search__input:focus {
  border-color: var(--green);
  width: 260px;
}

.nav-search__input::placeholder {
  color: var(--gray-400);
}

.nav-search__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 320px;
  max-height: 420px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
}

.nav-search__dropdown.open {
  display: block;
}

.nav-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
  border-bottom: 1px solid var(--gray-100);
}

.nav-search__item:last-child {
  border-bottom: none;
}

.nav-search__item:hover,
.nav-search__item.active {
  background: var(--gray-50);
}

.nav-search__item-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-search__item-info {
  flex: 1;
  min-width: 0;
}

.nav-search__item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search__item-name mark {
  background: var(--green-light);
  color: var(--navy);
  border-radius: 2px;
  padding: 0 1px;
}

.nav-search__item-rate {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-search__empty {
  padding: 20px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.nav-search__view-all {
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  text-decoration: none;
  transition: background var(--transition);
}

.nav-search__view-all:hover {
  background: var(--gray-100);
}

@media (max-width: 768px) {
  .nav-search {
    width: 100%;
    padding: 12px 24px;
  }

  .nav-search__input {
    width: 100%;
  }

  .nav-search__input:focus {
    width: 100%;
  }

  .nav-search__dropdown {
    min-width: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 1000px) {
  .stores-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stores-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* --- Stores list view (non-Featured letters) --- */
.stores-page-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stores-page-grid.list-view .store-card {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding: 14px 20px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-100);
  gap: 0;
}

.stores-page-grid.list-view .store-card:first-child {
  border-top: 1px solid var(--gray-200);
}

.stores-page-grid.list-view .store-card:hover {
  box-shadow: none;
  transform: none;
  border-top: none;
  background: var(--gray-50);
}

.stores-page-grid.list-view .store-card__logo {
  display: none;
}

.stores-page-grid.list-view .store-card__name {
  flex: 1;
  font-size: 0.9rem;
  text-align: left;
  margin-bottom: 0;
  color: var(--green);
}

.stores-page-grid.list-view .store-card__name:hover {
  text-decoration: underline;
}

.stores-page-grid.list-view .store-card__rate {
  font-size: 0.8rem;
  min-width: 80px;
  text-align: center;
  margin-left: auto;
}

.stores-page-grid.list-view .store-card__category {
  display: none;
}

/* List view header row */
.stores-list-header {
  display: none;
  padding: 12px 20px;
  border-bottom: 2px solid var(--gray-200);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stores-list-header.show {
  display: flex;
  align-items: center;
}

.stores-list-header__name {
  flex: 1;
}

.stores-list-header__rate {
  min-width: 80px;
  text-align: center;
}

.stores-list-header__action {
  min-width: 90px;
  text-align: center;
}

/* Shop Now button in list view */
.stores-page-grid.list-view .store-card__shop {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 90px;
  justify-content: center;
  margin-left: 16px;
}

.stores-page-grid.list-view .store-card__shop:hover {
  background: var(--green-hover);
}

/* Hide shop button in grid view */
.store-card__shop {
  display: none;
}

@media (max-width: 600px) {
  .stores-page-grid.list-view .store-card {
    padding: 12px 16px;
  }

  .stores-page-grid.list-view .store-card__shop {
    padding: 5px 10px;
    font-size: 0.7rem;
    min-width: 70px;
    margin-left: 10px;
  }

  .stores-list-header {
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .stores-list-header__action {
    min-width: 70px;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-intro__text {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gray-400);
}

.team-card__photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
}

.team-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   LEGAL PAGES (Privacy / Terms)
   ============================================ */
.legal {
  max-width: 800px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 8px;
}

.legal p {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal ul li {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal__updated {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}

.sitemap-list li {
  border-bottom: 1px solid var(--gray-200);
}

.sitemap-list a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}

.sitemap-list a:hover {
  color: var(--green);
}

.sitemap-list a span {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 400;
  margin-left: 8px;
}

/* ============================================
   BROWSER EXTENSION TEASER
   ============================================ */
.extension {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.extension__badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.extension__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.extension__subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.extension__features {
  list-style: none;
  margin-bottom: 24px;
}

.extension__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 12px;
  font-weight: 500;
}

.extension__features li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.extension__chrome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
}

.extension__mockup {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.extension__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.extension__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.extension__mockup-dot:nth-child(1) { background: #FF5F57; }
.extension__mockup-dot:nth-child(2) { background: #FEBC2E; }
.extension__mockup-dot:nth-child(3) { background: #28C840; }

.extension__mockup-url {
  flex: 1;
  margin-left: 8px;
  padding: 5px 10px;
  background: var(--white);
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--gray-400);
}

.extension__mockup-body {
  padding: 24px;
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.extension__popup {
  width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.extension__popup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--navy);
  color: var(--white);
}

.extension__popup-logo {
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.extension__popup-brand {
  font-size: 0.8rem;
  font-weight: 700;
}

.extension__popup-body {
  padding: 14px;
  text-align: center;
}

.extension__popup-rate {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}

.extension__popup-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.extension__popup-btn {
  display: block;
  width: 100%;
  padding: 8px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: default;
}

@media (max-width: 768px) {
  .extension {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .extension__title {
    font-size: 1.5rem;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial__quote {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial__location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ============================================
   WAITLIST FORM
   ============================================ */
.waitlist {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}

.waitlist__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.waitlist__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}

.waitlist__input {
  flex: 1;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.waitlist__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.waitlist__input:focus {
  border-color: var(--green);
}

.waitlist__btn {
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.waitlist__btn:hover {
  background: var(--green-hover);
}

.waitlist__success {
  display: none;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #6EE7A0;
  font-weight: 500;
}

.waitlist__success.show {
  display: block;
}

.waitlist__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

@media (max-width: 520px) {
  .waitlist__form {
    flex-direction: column;
  }

  .waitlist__btn {
    width: 100%;
  }
}

/* ============================================
   SAVINGS CALCULATOR
   ============================================ */
.calculator {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.calculator__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.calculator__subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.calculator__field {
  margin-bottom: 24px;
  text-align: left;
}

.calculator__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.calculator__input-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calculator__input {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  outline: none;
}

.calculator__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}

.calculator__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}

.calculator__value {
  min-width: 64px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.calculator__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.calculator__result {
  background: var(--green);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
}

.calculator__result-amount {
  font-size: 1.8rem;
  font-weight: 800;
}

.calculator__result-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--transition);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--green);
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  padding-top: 8px;
}

.contact-info__block {
  margin-bottom: 32px;
}

.contact-info__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info__email {
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 500;
}

.contact-info__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   STORE DETAIL PAGE
   ============================================ */

.store-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--green);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hero */
.store-hero {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0;
}

.store-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.store-hero__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.store-hero__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.store-hero__name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.store-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.store-hero__category {
  display: inline-block;
  background: rgba(46, 125, 82, 0.25);
  color: #6EE7A0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.store-hero__domain {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.store-hero__domain:hover {
  color: rgba(255, 255, 255, 0.8);
}

.store-hero__right { flex-shrink: 0; }

.store-hero__rate-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  text-align: center;
}

.store-hero__rate-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-hero__rate-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #6EE7A0;
  line-height: 1.3;
}

.store-hero__rate-subnote {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  font-style: italic;
}

@media (max-width: 768px) {
  .store-hero__inner { flex-direction: column; text-align: center; }
  .store-hero__left { flex-direction: column; }
  .store-hero__meta { justify-content: center; }
  .store-hero__name { font-size: 1.6rem; }
}

/* CTA bar */
.store-cta {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.store-cta__inner { text-align: center; }

.store-cta__btn {
  padding: 18px 48px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(46, 125, 82, 0.35);
  letter-spacing: 0.3px;
}

.store-cta__btn:hover {
  box-shadow: 0 6px 20px rgba(46, 125, 82, 0.45);
}

.store-cta__note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 10px;
}

/* Two-column layout */
.store-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}

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

/* Main column card sections */
.store-main { min-width: 0; }

.store-card-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.store-card-section__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.store-card-section__subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  text-align: left;
  max-width: none;
}

.store-card-section__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Quick facts */
.store-quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.store-quick-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

.store-quick-fact:nth-child(even) {
  border-right: none;
}

.store-quick-fact:nth-last-child(-n+2) {
  border-bottom: none;
}

.store-quick-fact__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.store-quick-fact__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 480px) {
  .store-quick-facts { grid-template-columns: 1fr; }
  .store-quick-fact { border-right: none; }
  .store-quick-fact:last-child { border-bottom: none; }
}

/* Rates table */
.store-rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.store-rates-table thead th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-bottom: 2px solid var(--gray-200);
}

.store-rates-table thead th:last-child {
  text-align: right;
}

.store-rates-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-weight: 500;
}

.store-rates-table tbody tr:last-child td {
  border-bottom: none;
}

.store-rates-table__rate {
  text-align: right;
  font-weight: 700;
  color: var(--green);
}

.store-rates-table__top td {
  background: var(--green-light);
  font-weight: 600;
}

.store-rates-table__top td:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.store-rates-table__top td:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.store-rates-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-left: 3px solid var(--gray-300);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Terms & Tips */
.store-terms,
.store-tips {
  list-style: none;
  padding: 0;
}

.store-terms li,
.store-tips li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-50);
}

.store-terms li:last-child,
.store-tips li:last-child {
  border-bottom: none;
}

.store-terms li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-terms li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 19px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid var(--gray-400);
  border-right: 2px solid var(--gray-400);
  transform: rotate(-45deg);
}

.store-tips li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar */
.store-sidebar {
  position: sticky;
  top: 120px;
}

.store-sidebar__cta {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.store-sidebar__logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  object-fit: contain;
  margin: 0 auto 12px;
}

.store-sidebar__rate {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}

.store-sidebar__rate-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.store-sidebar__subnote {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-style: italic;
  margin-bottom: 16px;
}

.store-sidebar__btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.store-sidebar__guarantee {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 10px;
}

.store-sidebar__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.store-sidebar__card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

/* How it works sidebar steps */
.store-sidebar__step {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.store-sidebar__step:last-child { margin-bottom: 0; }

.store-sidebar__step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.store-sidebar__step strong {
  font-size: 0.85rem;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.store-sidebar__step p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
  margin: 0;
}

/* Similar stores */
.store-sidebar__similar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-50);
  transition: background var(--transition);
}

.store-sidebar__similar-item:last-child { border-bottom: none; }

.store-sidebar__similar-item:hover {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding-left: 6px;
  padding-right: 6px;
}

.store-sidebar__similar-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.store-sidebar__similar-info {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-sidebar__similar-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-sidebar__similar-rate {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  margin-left: 8px;
}

/* Bottom CTA */
.store-bottom-cta {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0;
}

.store-bottom-cta__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.store-bottom-cta .store-cta__btn {
  box-shadow: 0 4px 14px rgba(46, 125, 82, 0.5);
}

@media (max-width: 900px) {
  .store-sidebar { position: static; }
}

@media (max-width: 600px) {
  .store-card-section { padding: 20px; }

  .store-cta__btn {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
  }

  .store-bottom-cta__title { font-size: 1.3rem; }
}

/* ============================================
   AUTH PAGES (Sign In / Sign Up)
   ============================================ */
.auth-box {
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gray-200);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition);
}

.auth-tab:hover { color: var(--navy); }

.auth-tab--active {
  color: var(--navy);
  border-bottom-color: var(--green);
}

.auth-field { margin-bottom: 16px; }

.auth-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.auth-input {
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.auth-input:focus { border-color: var(--green); }

.auth-submit { width: 100%; margin-top: 8px; }

.auth-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.auth-msg--error { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }
.auth-msg--success { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }

.auth-footer-text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 16px;
}

.auth-link { color: var(--green); font-weight: 500; }
.auth-link:hover { text-decoration: underline; }

/* ============================================
   DASHBOARD
   ============================================ */
.dash-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.dash-tab {
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition);
}

.dash-tab:hover { color: var(--navy); }
.dash-tab--active { color: var(--navy); border-bottom-color: var(--green); }

.dash-panel { display: none; }
.dash-panel--active { display: block; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.dash-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.dash-stat__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}

.dash-stat__label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.dash-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.dash-empty {
  text-align: center;
  padding: 32px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.dash-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  border-bottom: 2px solid var(--gray-200);
}

.dash-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.dash-table td a { color: var(--green); font-weight: 500; }
.dash-table td a:hover { text-decoration: underline; }

.dash-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dash-badge--pending { background: #FEF3C7; color: #D97706; }
.dash-badge--under_review { background: #DBEAFE; color: #2563EB; }
.dash-badge--approved { background: #D1FAE5; color: #059669; }
.dash-badge--rejected { background: #FEE2E2; color: #DC2626; }
.dash-badge--paid, .dash-badge--completed { background: #D1FAE5; color: #059669; }
.dash-badge--processing { background: #DBEAFE; color: #2563EB; }
.dash-badge--failed { background: #FEE2E2; color: #DC2626; }

.dash-activity-list { }
.dash-activity-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.85rem;
  color: var(--gray-600);
}
.dash-activity-item span { color: var(--gray-400); font-size: 0.8rem; margin-left: 8px; }

.dash-claim-form { max-width: 600px; }
.dash-claim-row { display: flex; gap: 16px; margin-bottom: 12px; }
.dash-claim-field { flex: 1; }

.dash-settings-form { max-width: 480px; }

/* Admin specific */
.admin-actions { white-space: nowrap; }
.admin-btn {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 4px;
}
.admin-btn--approve { background: #D1FAE5; color: #059669; }
.admin-btn--reject { background: #FEE2E2; color: #DC2626; }
.admin-btn--paid { background: #DBEAFE; color: #2563EB; }
.admin-btn:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-claim-row { flex-direction: column; gap: 8px; }
  .dash-table { font-size: 0.75rem; }
  .dash-table th, .dash-table td { padding: 8px 6px; }
}

@media (max-width: 480px) {
  .auth-box { padding: 20px; }
  .dash-stats { grid-template-columns: 1fr; }
}
