/* BestFit Orthotics Custom Styles */

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

body {
  font-family: 'Inter', sans-serif;
}

.font-italianno {
  font-family: 'Italianno', cursive;
}

/* Announcement bar */
.announcement-bar {
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Navigation */
.nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Section headings */
.section-heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
}

.page-heading {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
}

/* Benefit cards */
.benefit-card {
  position: relative;
  border-radius: 29px;
  overflow: hidden;
  height: 620px;
}

.benefit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.85) 100%);
}

.benefit-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
}

.benefit-card-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Pill buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  padding: 0.75rem 2rem;
  font-weight: 900;
  font-size: 20px;
  transition: opacity 0.2s;
}

.btn-pill:hover {
  opacity: 0.85;
}

.btn-pill-gray {
  background: #eaeaea;
  color: #000;
}

.btn-pill-black {
  background: #000;
  color: #fff;
}

/* Form inputs */
.input-pill {
  background: rgba(234,234,234,0.65);
  border: none;
  border-radius: 55px;
  padding: 1rem 1.5rem;
  font-size: 20px;
  width: 100%;
}

.input-pill:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Product grid */
.product-card img {
  border-radius: 8px;
  aspect-ratio: 371/241;
  object-fit: cover;
  width: 100%;
}

/* Quiz size buttons */
.size-btn {
  width: 107px;
  height: 55px;
  border-radius: 8px;
  border: 2px solid #eaeaea;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.2s;
}

.size-btn:hover,
.size-btn.selected {
  border-color: #000;
  background: #000;
  color: #fff;
}

.category-btn {
  width: 138px;
  height: 55px;
  border-radius: 8px;
  border: 2px solid #eaeaea;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.category-btn:hover,
.category-btn.selected {
  border-color: #000;
  background: #000;
  color: #fff;
}

.weight-btn {
  width: 100%;
  max-width: 418px;
  height: 70px;
  border-radius: 8px;
  border: 2px solid #eaeaea;
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 0 1.5rem;
  transition: all 0.2s;
}

.weight-btn:hover,
.weight-btn.selected {
  border-color: #000;
  background: #000;
  color: #fff;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Kiosk locator */
.kiosk-result-card {
  background: #fff;
  border-radius: 34px;
  padding: 2rem;
  min-width: 280px;
}

.status-open {
  color: #2c841a;
}

/* Accordion */
.accordion-content {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon.open {
  transform: rotate(180deg);
}

/* Insole diagram section */
.insole-section {
  background: rgba(246,246,246,0.65);
  border-radius: 75px;
}

/* Dark CTA banner */
.dark-cta {
  background: #000;
  color: #fff;
}

/* Footer */
.site-footer {
  background: #f6f6f6;
}

/* Hero image section */
.hero-image-section {
  position: relative;
  overflow: hidden;
}

.hero-image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Kiosk tech illustration */
.kiosk-tech-frame {
  background: rgba(246,246,246,0.65);
  border-radius: 55px;
}

/* Landing page */
.landing-feature-card {
  background: #f4f4f4;
  border-radius: 34px;
  padding: 2.5rem;
}

.nav-diamond {
  font-size: 10px;
  opacity: 0.6;
}

/* Clinical category cards */
.clinical-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 332px;
  cursor: pointer;
}

.clinical-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clinical-card:hover img {
  transform: scale(1.05);
}

.clinical-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8) 100%);
}

.clinical-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.clinical-card-desc {
  max-height: 0;
  overflow: hidden;
}

.clinical-card:hover .clinical-card-desc {
  max-height: 200px;
  opacity: 1;
}

/* Tag pills (kids section) */
.tag-pill {
  display: inline-block;
  background: #eaeaea;
  border-radius: 60px;
  padding: 0.65rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
}
