body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  background-color: var(--color-bg-light);
  line-height: 1.6;
}

h1 { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 700; color: var(--color-brand-dark); }
h2 { font-family: var(--font-heading); font-size: var(--fs-hero); font-weight: 500; color: var(--color-brand-dark); }
h3 { font-family: var(--font-body); font-size: var(--fs-md); font-weight: 600; color: var(--color-text); }
h4 { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 600; color: var(--color-text); }
p { font-size: var(--fs-base); color: var(--color-text-muted); line-height: 1.6; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-6); }
.container-fluid { width: 100%; padding: 0 var(--space-6); }

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 500;
  color: var(--color-brand-dark);
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--color-brand-dark);
  border-radius: var(--radius-sm);
  color: var(--color-brand-dark);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-link:hover {
  background: var(--color-brand-dark);
  color: var(--color-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--color-brand-dark);
  color: var(--color-brand-dark);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-base);
}
.btn:hover { background: var(--color-brand-dark); color: var(--color-white); }
.btn-filled { background: var(--color-brand-dark); color: var(--color-white); }
.btn-filled:hover { background: #111111; border-color: #111111; }

.price { color: var(--color-accent); font-weight: 600; font-size: var(--fs-base); }

/* Generic carousel dot (used by Carousel class) */
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), width var(--transition-fast);
}
.carousel-dot.active { background: var(--color-brand-dark); width: 20px; border-radius: 4px; }
.carousel-dots-row { display: flex; gap: 6px; align-items: center; }

/* Carousel arrow buttons */
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-card);
  font-size: 18px;
  color: var(--color-brand-dark);
}
.carousel-btn:hover { background: var(--color-brand-dark); color: var(--color-white); border-color: var(--color-brand-dark); }

/* Utility */
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
