@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap");

/* ===== Theme Variables ===== */
:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --accent-color: rgb(221, 213, 178);
  --font-family: "Nunito Sans", system-ui, sans-serif;
}

/* ===== Scrollbar Modal ===== */
html, body {
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

/* ===== Typography Overrides ===== */
body {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  font-family: var(--font-family);
}

h1,
h2,
.headline {
  font-weight: 400;
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

p {
    color: #000;
    font-size: 14px;
}

.fw-semibold {
  font-size: 14px;
}

/* ===== Input Group (fix cm alignment) ===== */
.input-group .form-control,
.input-group .input-group-text {
  height: 48px;
}

.input-group .form-control {
  border-right: none;
}

.input-group .input-group-text {
  border-left: none;
}

/* Buttons */
.btn-fat,
.btn-dark,
.btn-outline-fat,
.btn-outline-dark,
.btn-solid-fat {
  display: inline-block;  /* makes text-align center work */
  margin: 0 auto;  
  border: 1px solid #000;
  border-radius: 0;
  width: 80%;
  padding: 0.75rem 1rem;
  font-size: 12px;
}

.btn-solid-fat,
.btn-dark {
  color: #000;
  background-color: rgb(221, 213, 178);
  border: none;
  padding: 0.75rem 1rem;
}

/* Fields */
.input-group,
.form-control,
.form-select {
  border-radius: 0;
  font-size: 12px;
  margin-bottom: 0;
}

.form-label {
  font-size: 14px;
}

/* ===== Radio override ===== */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: var(--secondary-color); /* color when not checked */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
  vertical-align: middle;
}

/* Hover effect */
input[type="radio"]:hover {
  border-color: var(--accent-color);
}

/* Checked state (perfectly centered inner dot) */
input[type="radio"]:checked::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transition: all 0.2s ease-in-out;
}

/* Optional focus ring for accessibility */
input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(145, 137, 62, 0.3);
}

.card {
  border:none !important;
}

.measurement-guide img[alt="How to measure adult seat"] {
  display: none !important;
}

.measurement-guide {
  background-image: url("https://a.storyblok.com/f/233066/2283x3215/12de788148/measure_02.jpg/m/640x901/filters:format(webp)/");
  background-size: contain;       /* shows the whole image */
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 640 / 901;        /* keeps image ratio consistent */
  background-color: #fff;         /* optional — fills empty space */
}

.iframe-footer {
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center;
    margin-top: 2rem;
  }
  .iframe-footer a {
    color: #6c757d;
    text-decoration: underline;
  }
  .iframe-footer a:hover {
    text-decoration: none;
  }

  /* ===== Logo Override ===== */
.logo {
  display: none !important;
}
