/* ========== Groomer Essentials Base Styles ==========
   Brand: Teal #79beb8, Gray #8f9293; white backgrounds preferred.
   Typeface: Gotham (fallbacks provided).
===================================================== */

/* CSS Variables for easy theming */
:root{
  --ge-teal: #79beb8;
  --ge-gray: #8f9293;
  --bg: #ffffff;
  --ink: #1b1d1e;
  --muted: #5b5f62;
  --ring: rgba(121,190,184,0.45);
}

/* Try Gotham first if you host it; fallback to Montserrat/system */
@font-face{
  font-family: "Gotham";
  src: local("Gotham");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html{
  box-sizing:border-box;
  scroll-behavior:smooth;
}
*,*:before,*:after{ box-sizing:inherit; }

body{
  margin:0;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  font-family: "Gotham", "Montserrat", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  line-height:1.5;
}

/* Utilities */
.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}
.section{
  padding:64px 0;
}
.section-alt{
  background:#f7f8f8;
}
.stack > * + *{
  margin-top:16px;
}
.muted{
  color:var(--muted);
}
.small{
  font-size:.875rem;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:600;
  transition: all .15s ease;
}
.btn:focus-visible{
  outline:3px solid var(--ring);
  outline-offset:2px;
}
.btn-primary{
  background:var(--ge-teal);
  color:#0b2321;
}
.btn-primary:hover{
  transform: translateY(-1px);
}
.btn-ghost{
  border-color:var(--ge-teal);
  color:var(--ge-teal);
  background:transparent;
}
.btn-ghost:hover{
  background:rgba(121,190,184,.08);
}
.btn-secondary{
  background:#fff;
  color:#0b2321;
  border-color:var(--ge-gray);
}
.btn-secondary:hover{
  transform: translateY(-1px);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #eceeef;
  backdrop-filter:saturate(150%) blur(6px);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.brand-logo{
  height:88px;
  width:auto;
}
.site-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.site-nav a{
  margin-left:20px;
  text-decoration:none;
  color:#2a2e30;
  font-weight:600;
}
.site-nav a:hover{
  color:var(--ge-teal);
}

/* Hero */
.hero{
  padding:88px 0 72px;
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(121,190,184,.12), transparent 60%),
    radial-gradient(1000px 400px at 110% -10%, rgba(143,146,147,.08), transparent 60%),
    #fff;
}
.hero-content{
  max-width:780px;
}
.hero-title{
  margin:0 0 12px 0;
  font-size:clamp(32px, 4.5vw, 52px);
  letter-spacing:.2px;
  line-height:1.08;
}
.hero-subtitle{
  color:var(--muted);
  font-size:clamp(17px, 2vw, 21px);
  max-width:720px;
  margin:0;
}
.hero-note{
  margin:14px 0 0;
  font-size:1rem;
  font-weight:600;
  color:#2a2e30;
}
.hero-ctas{
  margin-top:24px;
}
.hero-ctas .btn + .btn{
  margin-left:12px;
}

/* Features */
.features{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap:8px 16px;
  padding-left:18px;
  margin:8px 0 0;
}

/* Product Categories */
.categories-intro{
  text-align:center;
}
.categories-grid{
  margin-top:32px;
  display:grid;
  gap:24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.category-card{
  background:#fff;
  border:1px solid #e4e7ea;
  border-radius:16px;
  padding:28px 24px;
  text-align:center;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.category-card h3{
  margin:0 0 12px;
  font-size:1.25rem;
}
.category-card p{
  margin:0;
  color:var(--muted);
}

/* About Feature Cards */

.about-features{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:24px;
  margin-top:32px;
}

.about-feature{
  background:#fff;
  border:1px solid #e4e7ea;
  border-radius:16px;
  padding:24px;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.about-feature h3{
  margin:0 0 10px;
  font-size:1.1rem;
}

.about-feature p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

/* Category Images */

.category-image{
  width:100%;
  max-height:180px;
  object-fit:contain;
  margin-bottom:18px;
}

/* Reviews */
.reviews-intro{
  text-align:center;
}

.reviews-subtitle{
  max-width:720px;
  margin:0 auto;
}

.reviews-grid{
  margin-top:32px;
  display:grid;
  gap:24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items:stretch;
}

.review-card{
  background:#fff;
  border:1px solid #e4e7ea;
  border-radius:16px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.review-stars{
  color:var(--ge-teal);
  font-size:1.25rem;
  letter-spacing:2px;
  margin-bottom:10px;
}

.review-title{
  margin:0 0 12px;
  font-size:1.25rem;
  line-height:1.2;
}

.review-text{
  margin:0 0 16px;
  color:var(--muted);
  font-size:1rem;
  line-height:1.6;
}

.review-author{
  margin:0 0 6px;
  font-weight:600;
  color:var(--ink);
}

.review-badge{
  margin:0;
  font-size:.9rem;
  color:var(--ge-teal);
  font-weight:600;
}

/* Distributor grid */
.logo-grid{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.logo-tile{
  border:1px solid #e4e7ea;
  background:#fff;
  border-radius:16px;
  padding:20px;
  display:grid;
  place-items:center;
  transition: transform .12s ease, box-shadow .12s ease;
}
.logo-tile img{
  max-height:90px;
  max-width:100%;
  width:auto;
  object-fit:contain;
  display:block;
  filter:saturate(0.92) contrast(1.02);
}
.logo-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.cta-row{
  margin-top:18px;
}

/* Form */
.wholesale-intro{
  text-align:center;
}
.form-wrap{
  margin-top:24px;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.form-wrap iframe,
.form-wrap form{
  width:100%;
}

/* Footer */
.site-footer{
  border-top:1px solid #eceeef;
  background:#fff;
  padding:36px 0 56px;
}
.footer-grid{
  display:grid;
  gap:24px;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  align-items:start;
}
.footer-logo{
  height:120px;
  width:auto;
  margin-bottom:8px;
}
.footer-title{
  margin:0 0 10px;
  font-size:1rem;
}
.list{
  list-style:none;
  padding:0;
  margin:0;
}
.list li + li{
  margin-top:8px;
}
.list a{
  text-decoration:none;
  color:#2a2e30;
}
.list a:hover{
  color:var(--ge-teal);
}

/* Accessibility focus for links */
a:focus-visible{
  outline:3px solid var(--ring);
  outline-offset:2px;
}

/* Individual distributor logo adjustments */
.logo-lovegroomers{
  max-height:95px;
  width:auto;
}
.logo-amazon{
  max-height:80px;
  width:auto;
}
.logo-walmart{
  max-height:28px;
  width:auto;
}
.logo-target{
  max-height:28px;
  width:auto;
}

/* Small screens tweaks */
@media (max-width: 720px){
  .site-header .container{
    flex-direction:column;
    gap:10px;
  }
  .site-nav{
    justify-content:center;
  }
  .site-nav a{
    margin:0 10px 8px;
  }
  .brand-logo{
    height:56px;
  }
  .hero{
    padding:64px 0 56px;
  }
  .hero-ctas .btn{
    display:block;
    width:100%;
    text-align:center;
  }
  .hero-ctas .btn + .btn{
    margin-left:0;
    margin-top:12px;
  }
  .logo-tile img{
    max-height:60px;
  }
  .footer-logo{
    height:90px;
  }
}