* {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 112.5%;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--color-primary, #1B3768);
  background: #F8FBFF;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-primary, #1B3768);
  outline-offset: 2px;
}

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

.headline {
  font-weight: 700;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: clamp(1.883rem, 3vw, 2.334rem);
}

.subtitle {
  font-size: clamp(1.167rem, 3vw, 1.667rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.text {
  margin-bottom: 0.25rem;
}
.text--placeholder {
  font-size: 0.667rem;
  font-weight: 300;
}
.text--body {
  font-size: 1rem;
}
.text--secondary-body {
  font-size: 0.833rem;
  font-weight: 300;
}
.text--button {
  font-size: 0.667rem;
  font-weight: 700;
}
.text--quote {
  font-size: 1.167rem;
  font-style: italic;
}

.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding: 0.125em 0.375em;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.grid {
  display: grid;
  gap: var(--grid-gap, 1rem);
  grid-template-columns: var(--grid-cols, repeat(auto-fit, minmax(250px, 1fr)));
}
.grid__item {
  min-width: 0;
}
.grid--1-col {
  --grid-cols: repeat(1, 1fr);
}
.grid--2-col {
  --grid-cols: repeat(2, 1fr);
}
.grid--3-col {
  --grid-cols: repeat(3, 1fr);
}
.grid--4-col {
  --grid-cols: repeat(4, 1fr);
}
.grid--5-col {
  --grid-cols: repeat(5, 1fr);
}
.grid--6-col {
  --grid-cols: repeat(6, 1fr);
}
.grid--auto-fit {
  --grid-cols: repeat(auto-fit, minmax(var(--grid-min, 250px), 1fr));
}
.grid--auto-fill {
  --grid-cols: repeat(auto-fill, minmax(var(--grid-min, 250px), 1fr));
}
.grid--min-200 {
  --grid-min: 200px;
}
.grid--min-250 {
  --grid-min: 250px;
}
.grid--min-300 {
  --grid-min: 300px;
}
.grid--min-350 {
  --grid-min: 350px;
}
.grid--gap-0 {
  --grid-gap: 0;
}
.grid--gap-1 {
  --grid-gap: 0.25rem;
}
.grid--gap-2 {
  --grid-gap: 0.5rem;
}
.grid--gap-3 {
  --grid-gap: 0.75rem;
}
.grid--gap-4 {
  --grid-gap: 1rem;
}
.grid--gap-6 {
  --grid-gap: 1.5rem;
}
.grid--gap-8 {
  --grid-gap: 2rem;
}
.grid--gap-12 {
  --grid-gap: 3rem;
}
.grid--items-start {
  align-items: start;
}
.grid--items-center {
  align-items: center;
}
.grid--items-end {
  align-items: end;
}
.grid--items-stretch {
  align-items: stretch;
}
.grid--justify-start {
  justify-items: start;
}
.grid--justify-center {
  justify-items: center;
}
.grid--justify-end {
  justify-items: end;
}
.grid--justify-stretch {
  justify-items: stretch;
}
.grid--responsive {
  --grid-cols: 1fr;
}
@media (min-width: 450px) {
  .grid--responsive {
    --grid-cols: repeat(2, 1fr);
  }
}
@media (min-width: 758px) {
  .grid--responsive {
    --grid-cols: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--responsive {
    --grid-cols: repeat(4, 1fr);
  }
}
.grid--responsive-2 {
  --grid-cols: 1fr;
}
@media (min-width: 758px) {
  .grid--responsive-2 {
    --grid-cols: repeat(2, 1fr);
  }
}
.grid--responsive-3 {
  --grid-cols: 1fr;
}
@media (min-width: 758px) {
  .grid--responsive-3 {
    --grid-cols: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--responsive-3 {
    --grid-cols: repeat(3, 1fr);
  }
}
.grid--1-col-mobile {
  --grid-cols: 1fr;
}
@media (min-width: 450px) {
  .grid--1-col-mobile {
    --grid-cols: repeat(2, 1fr);
  }
}

.area {
  padding-block: var(--area-space-y, 1.5rem);
  text-align: var(--area-align, start);
}
.area + .area {
  padding-top: 0;
  margin-top: var(--area-gap-y, 0.5rem);
}
.area__container {
  box-sizing: border-box;
  --area-max: map-get($container-caps, default);
  margin-inline: auto;
  max-width: var(--area-max);
  padding-inline: 0.5rem;
}
.area__footer {
  margin-top: 1.5rem;
}
.area--contained {
  background: transparent;
}
.area--band {
  border-block: 1px solid;
}
.area--highlight {
  background: #F8FBFF;
  box-shadow: 0 1px 0 0 inset, 0 -1px 0 0 inset;
}
.area--inset {
  padding-block: 1.5rem;
}
.area--inset .area__header {
  margin-bottom: 1rem;
}
.area--inset .area__footer {
  margin-top: 1rem;
}
.area--space-0 {
  --area-space-y: 0;
  --area-gap-y: 0;
}
.area--space-2 {
  --area-space-y: 0.5rem;
  --area-gap-y: 0.5rem;
}
.area--space-4 {
  --area-space-y: 1rem;
  --area-gap-y: 1rem;
}
.area--space-6 {
  --area-space-y: 1.5rem;
  --area-gap-y: 1.5rem;
}
.area--space-8 {
  --area-space-y: 2rem;
  --area-gap-y: 2rem;
}
.area--space-12 {
  --area-space-y: 3rem;
  --area-gap-y: 3rem;
}
.area--comfortable {
  --area-space-y: 1.5rem;
  --area-gap-y: 1.5rem;
}
.area--spacious {
  --area-space-y: 3rem;
  --area-gap-y: 3rem;
}
.area--align-left {
  --area-align: left;
  text-align: var(--area-align);
}
.area--align-center {
  --area-align: center;
  text-align: var(--area-align);
}
.area--align-right {
  --area-align: right;
  text-align: var(--area-align);
}
.area--align-start {
  --area-align: start;
  text-align: var(--area-align);
}
.area--align-end {
  --area-align: end;
  text-align: var(--area-align);
}
.area--narrow .area__container {
  margin-inline: auto;
  --area-max: map-get($container-caps, narrow);
}
.area--default .area__container {
  margin-inline: auto;
  --area-max: map-get($container-caps, default);
}
.area--wide .area__container {
  margin-inline: auto;
  --area-max: map-get($container-caps, wide);
}
.area--full .area__container {
  margin-inline: auto;
  --area-max: none;
  max-width: none;
}
.area--uncapped .area__container {
  max-width: none;
}

.btn {
  padding: 9px 9px;
  color: #000516;
  text-decoration: none;
  cursor: pointer;
  transition: 0.15s ease;
  margin: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 9999px;
  box-shadow: 0 9px 9px rgba(0, 0, 0, 0.9);
  border: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.btn--primary {
  background: var(--color-primary, #1B3768);
  color: #F8FBFF;
  border-color: var(--color-primary, #1B3768);
}
.btn--secondary {
  background: var(--color-secondary, #478BC9);
  color: #F8FBFF;
  border-color: var(--color-primary-light, #7687A4);
}
.btn--secondary-light {
  background: var(--color-secondary-light, #91B9DF);
  color: #F8FBFF;
  border-color: var(--color-secondary-dark, #244665);
}
.btn--ghost {
  background: transparent;
}
.btn--sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}
.btn--stroke {
  border: 6px solid;
  border-radius: 0.375rem;
}
.btn__icon {
  width: 3em;
  fill: currentColor;
}
.btn__icon--sm {
  width: 2em;
}
.btn__icon--md {
  width: 3em;
}
.btn__icon--lg {
  width: 4em;
}
.btn__icon--xl {
  width: 5em;
}

.card {
  background: #F8FBFF;
  border-radius: 0.5rem;
  overflow: hidden;
  min-width: 0;
  position: relative;
}
.card__body {
  padding: 1rem;
}
.card__header {
  padding: 1rem;
  border-bottom: 1px solid;
}
.card__footer {
  padding: 0.75rem;
}
.card__image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__text {
  color: #F8FBFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  transition: all 0.3s ease;
}
.card__text h2 {
  margin: 0;
  transition: margin 0.3s ease;
}
.card__description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.card:hover .card__text {
  height: 100%;
  justify-content: flex-start;
  padding-top: 1rem;
}
.card:hover .card__text h2 {
  margin-bottom: 0.5rem;
}
.card:hover .card__description {
  opacity: 1;
  max-height: 200px;
  margin-top: 0.5rem;
}
.card:nth-child(even) .card__text {
  background-color: var(--color-primary, #1B3768);
}
.card--featured {
  border-color: var(--color-primary, #1B3768);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.card--banner {
  border-radius: 0px;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.card--banner:hover {
  transform: translateY(-2px);
}
.card--banner .card__image {
  border-radius: 0px;
}
.card--banner .card__text {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 15%;
  padding: 0.5rem;
  transition: height 0.3s ease, padding-top 0.3s ease, background 0.3s ease;
}
.card--banner .card__text h2 {
  color: white;
  margin: 0;
}
.card--banner:nth-child(odd) .card__text {
  background: var(--color-secondary, #478BC9);
}
.card--banner:nth-child(even) .card__text {
  background: var(--color-primary, #1B3768);
}
.card--banner:hover .card__text {
  height: 100%;
  justify-content: flex-start;
}
.card--banner:hover .card__text h2 {
  margin-bottom: 0.5rem;
}
.card--banner .card__description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: white;
}
.card--banner:hover .card__description {
  opacity: 1;
  max-height: 200px;
  margin-top: 0.5rem;
}
.card--sharp {
  border-radius: 0px;
}
.card--sharp .card__image {
  border-radius: 0px;
}
.card--primary {
  background: var(--color-primary, #1B3768);
  color: #F8FBFF;
}
.card--primary h2, .card--primary h3, .card--primary p, .card--primary strong {
  color: #F8FBFF;
}
.card--secondary {
  background: var(--color-secondary, #478BC9);
}
.card--secondary h2, .card--secondary h3, .card--secondary p, .card--secondary strong {
  color: #F8FBFF;
}
.card--dashboard {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-card {
  background: #F8FBFF;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 15px;
  max-width: 600px;
  overflow: scroll;
}
.dashboard-card__body {
  padding: 1.5rem;
}
.dashboard-card__header {
  padding: 1rem;
  border-bottom: 1px solid #D2D2D2;
}
.dashboard-card__footer {
  padding: 0.75rem;
  background: #F8FBFF;
  border-top: 1px solid #D2D2D2;
}
.dashboard-card--primary {
  background: var(--color-primary, #1B3768);
  color: #F8FBFF;
}
.dashboard-card--primary h2, .dashboard-card--primary h3, .dashboard-card--primary p, .dashboard-card--primary strong {
  color: #F8FBFF;
}
.dashboard-card--secondary {
  background: var(--color-secondary, #478BC9);
}
.dashboard-card--secondary h2, .dashboard-card--secondary h3, .dashboard-card--secondary p, .dashboard-card--secondary strong {
  color: #F8FBFF;
}
.dashboard-card--compact__body {
  padding: 1rem;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
  max-width: 72rem;
}

.stack > * + * {
  margin-top: var(--stack-space, 1rem);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cluster-gap, 0.5rem);
  align-items: center;
}

.center {
  box-sizing: content-box;
  margin-inline: auto;
  max-width: var(--center-max, 60ch);
  padding-inline: 1rem;
}

.nav {
  display: flex;
  height: 100%;
  position: relative;
}
.nav__container {
  box-sizing: border-box;
  background: #8E8E8E;
  color: #000516;
  --nav-max: map-get($container-caps, default);
  width: 100%;
  max-width: var(--nav-max);
  margin-inline: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav--sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav--elevated {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.nav--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.nav--center {
  justify-content: center;
}
.nav--stack {
  flex-wrap: wrap;
  flex-wrap: wrap;
}
.nav--stack .nav__menu {
  width: 100%;
  margin-left: 0;
  justify-content: flex-start;
}
.nav--float .nav__container {
  background: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nav--float .nav__container:hover {
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.nav--gap {
  margin-top: 1rem;
}
.nav__brand {
  font-weight: 700;
}
@media (min-width: 758px) {
  .nav__brand--span-12 {
    flex: 0 0 12%;
    max-width: 12%;
  }
  .nav__brand--span-24 {
    flex: 0 0 24%;
    max-width: 24%;
  }
  .nav__brand--span-48 {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .nav__brand--span-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .nav__brand--span-72 {
    flex: 0 0 72%;
    max-width: 72%;
  }
  .nav__brand--span-100 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.nav__link:hover {
  background: var(--color-secondary, #478BC9);
  color: #F8FBFF;
}
.nav__link:focus-visible {
  outline: 2px solid var(--color-primary, #1B3768);
  outline-offset: 2px;
}
.nav__link--active {
  border-bottom: 3px solid var(--color-primary, #1B3768);
}
.nav--shop {
  background-color: var(--color-primary, #1B3768);
  color: #F8FBFF;
}
.nav--login {
  background-color: var(--color-secondary, #478BC9);
  color: #F8FBFF;
}
.nav__icon {
  width: 2em;
  fill: currentColor;
  flex-shrink: 0;
}
.nav__logo {
  --nav-logo-size: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--nav-logo-size);
}
.nav__logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav__logo-svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.nav__logo--image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: var(--nav-logo-url);
}
.nav__logo--round {
  border-radius: 9999px;
}
.nav__logo--square {
  border-radius: 0.125rem;
}
.nav__logo--placeholder {
  background: repeating-linear-gradient(45deg, , 6px, 6px, 12px);
  color: #6b7280;
}
.nav--sm .nav__container {
  padding: 0.25rem 0.75rem;
}
.nav--sm .nav__logo {
  --nav-logo-size: 24px;
}
.nav--lg .nav__container {
  padding: 0.75rem 1.5rem;
}
.nav--lg .nav__logo {
  --nav-logo-size: 40px;
}
.nav--primary .nav__container {
  background: var(--color-primary, #1B3768);
  color: #000516;
}
.nav--primary .nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.nav--secondary .nav__container {
  background: var(--color-secondary, #478BC9);
  color: #F8FBFF;
}
.nav--neutral .nav__container {
  background: #D2D2D2;
  color: var(--color-primary-dark, #0E1C34);
}
.nav--round .nav__container {
  border-radius: 9999px;
}
.nav--rounded .nav__container {
  border-radius: 0.5rem;
}
.nav__toggle {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: 0.125rem;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  background: transparent;
}
.nav .nav__burger span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.nav .nav__burger span::before,
.nav .nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}
.nav .nav__burger span::before {
  top: -6px;
}
.nav .nav__burger span::after {
  top: 6px;
}
.nav .nav__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0.5rem;
  width: min(90vw, 200px);
  margin-left: 0;
  flex-direction: column;
  align-items: end;
  gap: 0.5rem;
  padding: 0.5rem;
  background: inherit;
  z-index: 60;
}
.nav .nav__toggle:checked ~ .nav__menu {
  display: flex;
}
@media (min-width: 758px) {
  .nav .nav__burger {
    display: none;
  }
  .nav .nav__menu {
    display: flex;
    position: static;
    top: auto;
    right: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 0;
    margin-left: auto;
  }
}
.nav--narrow .nav__container {
  --nav-max: map-get($container-caps, narrow);
}
.nav--default .nav__container {
  --nav-max: map-get($container-caps, default);
}
.nav--wide .nav__container {
  --nav-max: map-get($container-caps, wide);
}
.nav--full .nav__container {
  --nav-max: none;
  max-width: none;
}
.nav--uncapped .nav__container {
  max-width: none;
}

.footer {
  padding: 1rem;
  background: var(--color-secondary-light, #91B9DF);
  color: #fff;
  font-size: small;
  border-top: 1px solid;
  justify-content: center;
  align-items: center;
}
.footer--dark {
  background: #000516;
  border-top-color: rgba(255, 255, 255, 0.12);
}
.footer__container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-evenly;
}
.footer__icon {
  width: 3em;
  fill: currentColor;
  margin-right: 0.25rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.footer__nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: var(--color-primary, #1B3768);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-primary, #1B3768);
  color: #F8FBFF;
  max-width: 1000px;
  margin-inline: auto;
}
.table th, .table td {
  padding: 0.5rem;
  text-align: left;
}
.table thead th {
  font-weight: 600;
}
.table tbody tr {
  transition: background-color 0.15s ease;
}
.table tbody tr:hover {
  background: var(--color-secondary, #478BC9);
}
.table tbody tr:last-child td {
  border-bottom: none;
}
.table--striped tbody tr:nth-child(even) {
  background: var(--color-secondary, #478BC9);
}
.table--bordered th, .table--bordered td {
  border: 1px solid;
}
.table--compact th, .table--compact td {
  padding: 0.5rem;
}
.table--spacious th, .table--spacious td {
  padding: 1rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.breadcrumbs__link {
  color: var(--color-primary, #1B3768);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.breadcrumbs__link:hover {
  color: var(--color-secondary-light, #91B9DF);
  text-decoration: underline;
}
.breadcrumbs__sep {
  user-select: none;
}
.breadcrumbs__current {
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.25rem;
  border-radius: 0.375rem;
  background: #F8FBFF;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid;
  transition: all 0.15s ease;
}
.pagination__link:hover {
  background: var(--color-secondary-light, #91B9DF);
  color: #F8FBFF;
  border-color: var(--color-secondary-light, #91B9DF);
}
.pagination__link--active {
  background: var(--color-primary, #1B3768);
  color: #F8FBFF;
  border-color: var(--color-primary, #1B3768);
  pointer-events: none;
}
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  pointer-events: none;
}

.shop__menu {
  padding: 0.5rem;
  background-color: var(--color-secondary, #478BC9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 18px 18px rgba(0, 0, 0, 0.1);
}
.shop__menu form {
  flex: 1;
}
.shop__menu input {
  width: 75%;
  padding: 0.5rem;
  border-radius: 9999px;
  border: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (min-width: 769px) {
  .shop__menu #shopmenu-expand {
    display: none;
  }
}

.shop__layout {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .shop__layout {
    flex-direction: column;
  }
}

.shop__sidebar {
  flex-shrink: 0;
  width: 380px;
  background: #F8FBFF;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0.5rem;
}
@media (max-width: 768px) {
  .shop__sidebar {
    display: none;
  }
}
.shop__sidebar__header {
  padding: 0.75rem;
  border-bottom: 1px solid;
}
.shop__sidebar__header .title {
  margin: 0;
  color: var(--color-primary, #1B3768);
}
.shop__sidebar__body {
  padding: 0.75rem;
}
.shop__sidebar__body .filter-section {
  margin-bottom: 0.75rem;
}
.shop__sidebar__body .filter-section:last-child {
  margin-bottom: 0;
}
.shop__sidebar__body .subtitle {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.shop__sidebar__body .price-inputs {
  margin-bottom: 0.5rem;
}
.shop__sidebar__body .price-inputs:last-child {
  margin-bottom: 0;
}
.shop__sidebar__body .price-inputs input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 0.375rem;
}
.shop__sidebar__body .modal__filters {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.shop__sidebar__body .modal__filters .filter-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 0.375rem;
  background-color: #F8FBFF;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.shop__sidebar__body .modal__filters .filter-select:hover {
  border-color: var(--color-primary, #1B3768);
}
.shop__sidebar__body .modal__filters .filter-select:focus {
  outline: none;
  border-color: var(--color-primary, #1B3768);
  box-shadow: 0 0 0 2px rgba(var(--color-primary, #1B3768), 0.1);
}
.shop__sidebar__body .modal__filters .filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}
.shop__sidebar__body .modal__filters .filter-checkbox:hover {
  background-color: var(--color-secondary, #478BC9);
}
.shop__sidebar__body .modal__filters .filter-checkbox input[type=radio] {
  cursor: pointer;
}
.shop__sidebar__body .modal__filters .filter-checkbox span {
  flex: 1;
}
.shop__sidebar__body .modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid;
}
.shop__sidebar__body .modal__actions .btn {
  width: 100%;
}

.shop__products {
  flex: 1;
  min-width: 0;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .shop__products {
    margin-left: 0;
    margin-top: 20px;
  }
}

.shop__card {
  background: #F8FBFF;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 700px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shop__card__image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #F8FBFF;
}
.shop__card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.shop__card__header {
  padding: 0.5rem;
  color: var(--color-primary, #1B3768);
}
.shop__card__body {
  padding: 0.5rem;
  margin: 0.5rem;
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
  background-color: #ececec;
}

.price {
  padding: 0.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
@media (min-width: 769px) {
  .modal {
    display: none !important;
  }
}
.modal--active {
  display: block;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: #F8FBFF;
  margin: 10% auto;
  padding: 0;
  width: 90%;
  max-width: 500px;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .modal__content {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    animation: modalSlideUp 0.3s ease;
  }
}
.modal__header {
  padding: 0.75rem;
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__header .title {
  margin: 0;
  color: var(--color-primary, #1B3768);
}
.modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.modal__close:hover {
  color: var(--color-primary, #1B3768);
}
.modal__body {
  padding: 0.75rem;
}
.modal__body .subtitle {
  margin-bottom: 0.5rem;
}
.modal__body .filter-section {
  margin-bottom: 0.75rem;
}
.modal__body .filter-section:last-child {
  margin-bottom: 0;
}
.modal__body .price-inputs {
  margin-bottom: 0.5rem;
}
.modal__body .price-inputs:last-child {
  margin-bottom: 0;
}
.modal__body .price-inputs input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 0.375rem;
}
.modal__filters {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.modal__filters .filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}
.modal__filters .filter-checkbox:hover {
  background-color: var(--color-secondary, #478BC9);
}
.modal__filters .filter-checkbox input[type=radio] {
  cursor: pointer;
}
.modal__filters .filter-checkbox span {
  flex: 1;
}
.modal__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid;
}
.modal__actions .btn {
  flex: 1;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.product_detail__image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
}
.product_detail__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.product_detail__image:hover img {
  transform: scale(1.05);
}

.slideshow {
  position: relative;
  max-width: 1000px;
  margin: 0.75rem auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.slideshow__container {
  position: relative;
  width: 100%;
  height: 500px;
}
@media (max-width: 768px) {
  .slideshow__container {
    height: 300px;
  }
}
.slideshow__slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}
.slideshow__slide--active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.slideshow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  text-align: center;
  font-size: 1.1rem;
}
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2rem;
  padding: 0.5rem 0.75rem;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.slideshow__btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.slideshow__btn--prev {
  left: 0.5rem;
}
.slideshow__btn--next {
  right: 0.5rem;
}
@media (max-width: 768px) {
  .slideshow__btn {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
}
.slideshow__dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem;
  z-index: 10;
}
.slideshow__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slideshow__dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.slideshow__dot--active {
  background-color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slideshow {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.slideshow__slide {
  display: none;
  position: relative;
  width: 100%;
  animation: fadeIn 0.5s ease-in-out;
}
.slideshow__slide--active {
  display: block;
}
.slideshow__image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.slideshow__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #F8FBFF;
  padding: 1.5rem 1rem 1rem;
}
.slideshow__caption h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.slideshow__caption p {
  font-size: 0.9rem;
  opacity: 0.9;
}
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary, #1B3768);
  border: none;
  font-size: 2rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.slideshow__btn:hover {
  background: #F8FBFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.slideshow__btn--prev {
  left: 0.5rem;
  border-radius: 0 0.375rem 0.375rem 0;
}
.slideshow__btn--next {
  right: 0.5rem;
  border-radius: 0.375rem 0 0 0.375rem;
}
.slideshow__dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slideshow__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slideshow__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.slideshow__dot--active {
  background: #F8FBFF;
  width: 32px;
  border-radius: 6px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.form__group {
  margin-bottom: 1rem;
}
.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #000516;
  font-size: 0.95rem;
}
.form__input {
  width: 75%;
  max-width: 500px;
  padding: 0.25rem;
  border: 2px solid #D2D2D2;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.form__input:focus {
  outline: none;
  border-color: var(--color-primary, #1B3768);
}
.form__input::placeholder {
  color: #6b7280;
}
.form__select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #D2D2D2;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.form__select:focus {
  outline: none;
  border-color: var(--color-primary, #1B3768);
}
.form__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #D2D2D2;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary, #1B3768);
}

.m-0 {
  margin: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.d--none {
  display: none !important;
}
.d--block {
  display: block !important;
}
.d--inline {
  display: inline !important;
}
.d--inline-block {
  display: inline-block !important;
}
.d--flex {
  display: flex !important;
}

@media (min-width: 450px) {
  .d--sm-none {
    display: none !important;
  }
  .d--sm-block {
    display: block !important;
  }
  .d--sm-flex {
    display: flex !important;
  }
}
@media (min-width: 758px) {
  .d--md-none {
    display: none !important;
  }
  .d--md-block {
    display: block !important;
  }
  .d--md-flex {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .d--lg-none {
    display: none !important;
  }
  .d--lg-block {
    display: block !important;
  }
  .d--lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1280px) {
  .d--xl-none {
    display: none !important;
  }
  .d--xl-block {
    display: block !important;
  }
  .d--xl-flex {
    display: flex !important;
  }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.flex {
  display: flex !important;
}
.flex--col {
  flex-direction: column !important;
}
.flex--row {
  flex-direction: row !important;
}
.flex--wrap {
  flex-wrap: wrap !important;
}

.justify--start {
  justify-content: flex-start !important;
}
.justify--center {
  justify-content: center !important;
}
.justify--between {
  justify-content: space-between !important;
}

.items--start {
  align-items: flex-start !important;
}
.items--center {
  align-items: center !important;
}
.items--end {
  align-items: flex-end !important;
}

.gap--0 {
  gap: 0 !important;
}
.gap--1 {
  gap: 0.25rem !important;
}
.gap--2 {
  gap: 0.5rem !important;
}
.gap--3 {
  gap: 0.75rem !important;
}
.gap--4 {
  gap: 1rem !important;
}
.gap--6 {
  gap: 1.5rem !important;
}
.gap--8 {
  gap: 2rem !important;
}
.gap--12 {
  gap: 3rem !important;
}

.text--left {
  text-align: left !important;
}
.text--center {
  text-align: center !important;
}
.text--right {
  text-align: right !important;
}
.text--uppercase {
  text-transform: uppercase !important;
}
.text--truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.text--primary {
  color: var(--color-primary, #1B3768) !important;
}
.text--primary-dark {
  color: var(--color-primary-dark, #0E1C34) !important;
}
.text--primary-light {
  color: var(--color-primary-light, #7687A4) !important;
}
.text--secondary {
  color: var(--color-secondary, #478BC9) !important;
}
.text--secondary-dark {
  color: var(--color-secondary-dark, #244665) !important;
}
.text--secondary-light {
  color: var(--color-secondary-light, #91B9DF) !important;
}
.text--success {
  color: var(--color-success, #55CE28) !important;
}
.text--success-light {
  color: var(--color-success-light, #BBEBA9) !important;
}
.text--success-dark {
  color: var(--color-success-dark, #2B6714) !important;
}
.text--caution {
  color: var(--color-caution, #FFE000) !important;
}
.text--caution-light {
  color: var(--color-caution-light, #FFF9CC) !important;
}
.text--caution-dark {
  color: var(--color-caution-dark, #BFA800) !important;
}
.text--error {
  color: var(--color-error, #FF0000) !important;
}
.text--error-light {
  color: var(--color-error-light, #FF9999) !important;
}
.text--error-dark {
  color: var(--color-error-dark, #BF0000) !important;
}
.text--guide {
  color: var(--color-guide, #0068FF) !important;
}
.text--guide-light {
  color: var(--color-guide-light, #66A4FF) !important;
}
.text--guide-dark {
  color: var(--color-guide-dark, #004EBF) !important;
}
.text--white {
  color: #fff !important;
}
.text--black {
  color: #000 !important;
}
.text--muted {
  color: #6b7280 !important;
}
.text--paper {
  color: #F8FBFF !important;
}
.text--ink {
  color: #000516 !important;
}
.text--gray-00 {
  color: #ececec !important;
}
.text--gray-01 {
  color: #D2D2D2 !important;
}
.text--gray-02 {
  color: #8E8E8E !important;
}
.text--gray-03 {
  color: #474747 !important;
}

.bg--primary {
  background-color: var(--color-primary, #1B3768) !important;
}
.bg--primary-dark {
  background-color: var(--color-primary-dark, #0E1C34) !important;
}
.bg--primary-light {
  background-color: var(--color-primary-light, #7687A4) !important;
}
.bg--secondary {
  background-color: var(--color-secondary, #478BC9) !important;
}
.bg--secondary-dark {
  background-color: var(--color-secondary-dark, #244665) !important;
}
.bg--secondary-light {
  background-color: var(--color-secondary-light, #91B9DF) !important;
}
.bg--success {
  background-color: var(--color-success, #55CE28) !important;
}
.bg--success-light {
  background-color: var(--color-success-light, #BBEBA9) !important;
}
.bg--success-dark {
  background-color: var(--color-success-dark, #2B6714) !important;
}
.bg--caution {
  background-color: var(--color-caution, #FFE000) !important;
}
.bg--caution-light {
  background-color: var(--color-caution-light, #FFF9CC) !important;
}
.bg--caution-dark {
  background-color: var(--color-caution-dark, #BFA800) !important;
}
.bg--error {
  background-color: var(--color-error, #FF0000) !important;
}
.bg--error-light {
  background-color: var(--color-error-light, #FF9999) !important;
}
.bg--error-dark {
  background-color: var(--color-error-dark, #BF0000) !important;
}
.bg--guide {
  background-color: var(--color-guide, #0068FF) !important;
}
.bg--guide-light {
  background-color: var(--color-guide-light, #66A4FF) !important;
}
.bg--guide-dark {
  background-color: var(--color-guide-dark, #004EBF) !important;
}
.bg--white {
  background-color: #fff !important;
}
.bg--black {
  background-color: #000 !important;
}
.bg--muted {
  background-color: #6b7280 !important;
}
.bg--paper {
  background-color: #F8FBFF !important;
}
.bg--ink {
  background-color: #000516 !important;
}
.bg--gray-00 {
  background-color: #ececec !important;
}
.bg--gray-01 {
  background-color: #D2D2D2 !important;
}
.bg--gray-02 {
  background-color: #8E8E8E !important;
}
.bg--gray-03 {
  background-color: #474747 !important;
}

.border--primary {
  border-color: var(--color-primary, #1B3768) !important;
}
.border--primary-dark {
  border-color: var(--color-primary-dark, #0E1C34) !important;
}
.border--primary-light {
  border-color: var(--color-primary-light, #7687A4) !important;
}
.border--secondary {
  border-color: var(--color-secondary, #478BC9) !important;
}
.border--secondary-dark {
  border-color: var(--color-secondary-dark, #244665) !important;
}
.border--secondary-light {
  border-color: var(--color-secondary-light, #91B9DF) !important;
}
.border--success {
  border-color: var(--color-success, #55CE28) !important;
}
.border--success-light {
  border-color: var(--color-success-light, #BBEBA9) !important;
}
.border--success-dark {
  border-color: var(--color-success-dark, #2B6714) !important;
}
.border--caution {
  border-color: var(--color-caution, #FFE000) !important;
}
.border--caution-light {
  border-color: var(--color-caution-light, #FFF9CC) !important;
}
.border--caution-dark {
  border-color: var(--color-caution-dark, #BFA800) !important;
}
.border--error {
  border-color: var(--color-error, #FF0000) !important;
}
.border--error-light {
  border-color: var(--color-error-light, #FF9999) !important;
}
.border--error-dark {
  border-color: var(--color-error-dark, #BF0000) !important;
}
.border--guide {
  border-color: var(--color-guide, #0068FF) !important;
}
.border--guide-light {
  border-color: var(--color-guide-light, #66A4FF) !important;
}
.border--guide-dark {
  border-color: var(--color-guide-dark, #004EBF) !important;
}
.border--white {
  border-color: #fff !important;
}
.border--black {
  border-color: #000 !important;
}
.border--muted {
  border-color: #6b7280 !important;
}
.border--paper {
  border-color: #F8FBFF !important;
}
.border--ink {
  border-color: #000516 !important;
}
.border--gray-00 {
  border-color: #ececec !important;
}
.border--gray-01 {
  border-color: #D2D2D2 !important;
}
.border--gray-02 {
  border-color: #8E8E8E !important;
}
.border--gray-03 {
  border-color: #474747 !important;
}

.rounded {
  border-radius: 0.375rem !important;
}
.rounded--none {
  border-radius: 0 !important;
}
.rounded--sm {
  border-radius: 0.125rem !important;
}
.rounded--md {
  border-radius: 0.375rem !important;
}
.rounded--lg {
  border-radius: 0.5rem !important;
}
.rounded--full {
  border-radius: 9999px !important;
}

.hero__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-inline: auto;
  display: block;
}

.gallery_img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.insurance-list {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.insurance-list li {
  background: var(--color-secondary, #478BC9);
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #F8FBFF;
}

.box {
  padding: 1rem;
  border-radius: 0.5rem;
  background: #D2D2D2;
  max-width: 700px;
  max-height: 600px;
  overflow-y: scroll;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about__img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-inline: auto;
  display: block;
  margin-bottom: 20px;
}

.avi {
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  margin-inline: auto;
}

/*# sourceMappingURL=tinker.css.97275e442ba1.map */
