.nad-menu-bar {
  background: transparent;
  padding: 12px 120px;
}
.nad-menu-bar--full-width {
  width: 100%;
}
.nad-menu-bar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(184, 204, 234, 0.2) 0%, rgba(184, 204, 234, 0.2) 100%), linear-gradient(0deg, rgba(184, 204, 234, 0.2) 0%, rgba(184, 204, 234, 0.2) 100%), rgba(255, 255, 255, 0.1);
  height: 62px;
  padding: 0 22px;
  position: relative;
}
@media (max-width: 767px) {
  .nad-menu-bar__container {
    justify-content: space-between;
    gap: 16px;
  }
}
.nad-menu-bar__nav-mobile {
  display: none;
  position: relative;
  order: 1;
}
@media (max-width: 767px) {
  .nad-menu-bar__nav-mobile {
    display: block;
  }
}
.nad-menu-bar__logo {
  display: flex;
  align-items: center;
  order: 2;
}
@media (max-width: 767px) {
  .nad-menu-bar__logo {
    order: 2;
    flex: 1;
    justify-content: center;
  }
}
.nad-menu-bar__logo img {
  display: block;
  max-width: 134px;
  height: auto;
}
.nad-menu-bar__logo-text {
  font-family: "Rig Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1C355E;
}
.nad-menu-bar__nav {
  display: flex;
  align-items: center;
  gap: 52px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  order: 3;
}
@media (max-width: 767px) {
  .nad-menu-bar__nav {
    display: none;
  }
}
.nad-menu-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  padding: 13px 12px;
  order: 4;
}
@media (max-width: 767px) {
  .nad-menu-bar__actions {
    order: 3;
  }
}
.nad-menu-bar__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #DEDEDE;
  border: 1px solid #303030;
  border-radius: 50%;
  color: #1C355E;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nad-menu-bar__mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.nad-menu-bar__hamburger {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: all 0.3s ease;
}
.nad-menu-bar__mobile-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.nad-menu-bar__mobile-modal.nad-menu-bar__mobile-modal--open {
  opacity: 1;
  visibility: visible;
}
.nad-menu-bar__mobile-modal-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 100vh;
  background: linear-gradient(180deg, rgb(184, 204, 234) 0%, rgb(255, 255, 255) 100%);
  border-radius: 24px 0 0 24px;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nad-menu-bar__mobile-modal--open .nad-menu-bar__mobile-modal-content {
  transform: translateX(0);
}
@media (max-width: 575px) {
  .nad-menu-bar__mobile-modal-content {
    width: 100vw;
    border-radius: 0;
  }
}
.nad-menu-bar__mobile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nad-menu-bar__mobile-modal--open .nad-menu-bar__mobile-overlay {
  opacity: 1;
}
.nad-menu-bar__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}
.nad-menu-bar__mobile-logo img {
  display: block;
  width: 134px;
  height: 19px;
}
.nad-menu-bar__mobile-logo-text {
  font-family: "Rig Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1C355E;
}
.nad-menu-bar__mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid #303030;
  border-radius: 50%;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nad-menu-bar__mobile-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.nad-menu-bar__mobile-close svg {
  width: 16px;
  height: 16px;
}
.nad-menu-bar__mobile-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 12px;
  flex: 1;
}
.nad-menu-bar__mobile-category {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 8px;
  padding: 0 0 4px;
}
.nad-menu-bar__mobile-category-header {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 12px;
  padding: 5px 8px 5px 4px;
  background: #ABC8D8;
}
.nad-menu-bar__mobile-category-title {
  font-family: "Rig Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.11;
  background: linear-gradient(-77deg, rgb(28, 53, 94) 15%, rgb(58, 111, 196) 94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.nad-menu-bar__mobile-products {
  display: flex;
  gap: 8px;
  width: 175px;
}
.nad-menu-bar__mobile-product {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 0 4px;
  width: 72px;
  background: radial-gradient(circle at 49% -3%, rgb(184, 204, 234) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, rgb(184, 204, 234) 0%, rgb(255, 255, 255) 100%), #DEDEDE;
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(184, 204, 234, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.nad-menu-bar__mobile-product:hover {
  transform: translateY(-2px);
}
.nad-menu-bar__mobile-product-image {
  width: 100%;
  height: 97px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0px 4px 16px 0px rgba(28, 53, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nad-menu-bar__mobile-product-image img {
  width: 42px;
  height: 83px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 4px 24px 0px rgba(28, 53, 94, 0.48);
}
.nad-menu-bar__mobile-product-placeholder {
  width: 42px;
  height: 83px;
  background: rgba(184, 204, 234, 0.3);
  border-radius: 4px;
}
.nad-menu-bar__mobile-product-title {
  font-family: "Rig Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
  color: #1C355E;
  width: 100%;
}
.nad-menu-bar__mobile-divider {
  width: 100%;
  height: 1px;
  border: none;
  background: #B8CCEA;
  margin: 0;
}
.nad-menu-bar__mobile-shop-all {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 16px;
}
.nad-menu-bar__mobile-shop-all-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 8px 5px 4px;
  text-decoration: none;
}
.nad-menu-bar__mobile-shop-all-text {
  font-family: "Rig Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #1C355E;
}
.nad-menu-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  padding: 0;
  order: 4;
}
@media (max-width: 991px) {
  .nad-menu-bar__actions {
    order: 3;
  }
}
.nad-menu-bar__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #1C355E;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}
.nad-menu-bar__action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.nad-menu-bar__icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.nad-menu-bar__cart {
  position: relative;
}
.nad-menu-bar__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #1C355E;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Futura Std", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  transition: transform 0.3s ease;
}
.nad-menu-bar__cart-count--updated {
  transform: scale(1.2);
  animation: cartCountPulse 0.3s ease-in-out;
}

@keyframes cartCountPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes dropdownItemSlide {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.nad-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  min-height: 44px;
}
.nad-menu-item.dropdown {
  position: relative;
}
.nad-menu-item__link, .nad-menu-item__text {
  font-family: "Rig Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #1C355E;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nad-menu-item__icon {
  width: 8px;
  height: 6px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.nad-menu-item:hover .nad-menu-item__link,
.nad-menu-item:hover .nad-menu-item__text {
  color: rgba(28, 53, 94, 0.8);
}
.nad-menu-item:hover .nad-menu-item__icon {
  transform: rotate(180deg);
}
.nad-menu-item--highlight .nad-menu-item__link,
.nad-menu-item--highlight .nad-menu-item__text {
  font-weight: 600;
  position: relative;
}
.nad-menu-item--highlight .nad-menu-item__link::after,
.nad-menu-item--highlight .nad-menu-item__text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1C355E;
  border-radius: 1px;
}
.nad-menu-item__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(28, 53, 94, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(28, 53, 94, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nad-menu-item:hover .nad-menu-item__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nad-menu-item__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
}
.nad-menu-item__dropdown::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 19px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(28, 53, 94, 0.1);
}
.dropdown--mega .nad-menu-item__dropdown {
  min-width: 400px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.dropdown--mega .nad-menu-item__dropdown::before, .dropdown--mega .nad-menu-item__dropdown::after {
  display: none;
}
.nad-menu-item .dropdown__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nad-menu-item .dropdown__column-title {
  font-family: "Rig Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1C355E;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(28, 53, 94, 0.1);
}
.nad-menu-item .dropdown__divider {
  height: 1px;
  background: rgba(28, 53, 94, 0.1);
  margin: 8px 0;
}
.nad-menu-item__dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #1C355E;
  text-decoration: none;
  font-family: "Rig Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(28, 53, 94, 0.05);
}
.nad-menu-item__dropdown-item:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}
.nad-menu-item__dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}
.nad-menu-item__dropdown-item:hover {
  background: rgba(184, 204, 234, 0.1);
  color: rgba(28, 53, 94, 0.8);
  transform: translateX(4px);
}
.nad-menu-item:hover .nad-menu-item__dropdown-item {
  animation: dropdownItemSlide 0.3s ease forwards;
}
.nad-menu-item__dropdown-item:nth-child(1) {
  animation-delay: 0.05s;
}
.nad-menu-item__dropdown-item:nth-child(2) {
  animation-delay: 0.1s;
}
.nad-menu-item__dropdown-item:nth-child(3) {
  animation-delay: 0.15s;
}
.nad-menu-item__dropdown-item:nth-child(4) {
  animation-delay: 0.2s;
}
.nad-menu-item__dropdown-item:nth-child(5) {
  animation-delay: 0.25s;
}

@media (max-width: 1199px) {
  .nad-menu-bar {
    padding: 12px 60px;
  }
  .nad-menu-bar__nav {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .nad-menu-bar {
    padding: 12px 20px;
  }
  .nad-menu-bar__container {
    flex-direction: column;
    height: auto;
    padding: 16px 20px;
    gap: 16px;
  }
  .nad-menu-bar__nav {
    position: static;
    transform: none;
    gap: 24px;
    order: 2;
  }
  .nad-menu-bar__actions {
    order: 3;
  }
  .nad-menu-bar__logo {
    order: 1;
  }
}
@media (max-width: 767px) {
  .nad-menu-bar {
    padding: 12px 16px;
  }
  .nad-menu-bar__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .nad-menu-bar .nad-menu-item__link, .nad-menu-bar .nad-menu-item__text {
    font-size: 13px;
  }
  .nad-menu-bar .nad-menu-item__dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: auto;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .nad-menu-item:hover .nad-menu-bar .nad-menu-item__dropdown {
    transform: translateY(0);
  }
  .nad-menu-bar .nad-menu-item__dropdown::before, .nad-menu-bar .nad-menu-item__dropdown::after {
    display: none;
  }
  .nad-menu-bar .nad-menu-item__dropdown-item {
    padding: 16px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(28, 53, 94, 0.1);
  }
  .nad-menu-bar .nad-menu-item__dropdown-item:hover {
    transform: none;
    background: rgba(184, 204, 234, 0.1);
  }
}
@media (max-width: 575px) {
  .nad-menu-bar__container {
    padding: 12px 16px;
  }
  .nad-menu-bar__actions {
    gap: 8px;
    padding: 10px;
  }
  .nad-menu-bar__action-btn {
    width: 36px;
    height: 36px;
  }
  .nad-menu-bar__icon {
    width: 16px;
    height: 16px;
  }
  .nad-menu-bar__mobile-modal-content {
    width: 100vw;
    border-radius: 0;
    padding: 12px 12px 20px;
  }
  .nad-menu-bar__mobile-category-title {
    font-size: 32px;
  }
  .nad-menu-bar__mobile-products {
    width: 100%;
    justify-content: space-between;
  }
  .nad-menu-bar__mobile-product {
    width: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nad-menu-item__dropdown {
    transition: opacity 0.1s ease;
  }
  .nad-menu-item__dropdown-item {
    transition: background-color 0.1s ease;
    animation: none;
  }
  .nad-menu-item__dropdown-item:hover {
    transform: none;
  }
  .nad-menu-item__icon {
    transition: none;
  }
  @keyframes dropdownItemSlide {
    0%, 100% {
      opacity: 1;
      transform: none;
    }
  }
}
.product-card {
  border: 1px solid #e0e0e0;
  padding: 15px;
  margin: 10px;
  text-align: center;
  max-width: 280px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(53, 53, 53, 0.08);
  border: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  .product-card {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}
@media (max-width: 991px) {
  .product-card .product-image {
    grid-row: 1/span 2;
  }
}
.product-card .product-image img {
  max-width: 100%;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .product-card .product-image img {
    height: auto;
  }
}
.product-card .product-details {
  display: flex;
  padding: 2px 6px 2px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.product-card .product-details .product-title {
  font-size: 18px;
  margin: 0;
  text-align: left;
}
.product-card .product-details .product-reviews-wrapper {
  display: flex;
  justify-content: start;
}
.product-card .product-details .product-price {
  color: var(--Contrast-1, #193547);
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin: 0;
}
.product-card form {
  width: 100%;
}
.product-card form .product-variants {
  border: none;
}
.product-card form .product-variants legend {
  display: none;
}
.product-card form .product-variants .variant-option {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}
.product-card form .product-variants label.variant-button {
  display: flex;
  padding: 6px 12px;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid var(--Complementary, #999);
  color: #090909;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Roboto Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  transition: ease 0.2s;
}
.product-card form .product-variants label.variant-button:has(input:checked) {
  border-radius: 24px;
  border: 1px solid var(--Contrast-1, #193547);
  background: var(--Contrast-2, #BBD8E9);
  font-weight: bold;
}
.product-card form .product-variants label.variant-button input {
  display: none;
}
.product-card form .product-variants label.variant-button span {
  white-space: nowrap;
}
.product-card form .product-variants-select {
  display: none;
}
.product-card form .add-to-cart-button {
  border-radius: 40px;
  background: var(--Contrast-2, #BBD8E9);
  color: var(--Contrast-1, #193547);
  font-family: "Apotek ExtraCond";
  font-size: 24px;
  font-style: normal;
  font-weight: 716;
  line-height: 28.619px;
  /* 119.245% */
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0;
  display: flex;
  padding: 12px 12px 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.product-card form .add-to-cart-button:hover {
  background-color: #193547;
  color: #BBD8E9;
}
.product-card form .add-to-cart-button:hover .plus {
  transform: rotate(90deg);
}
.product-card form .add-to-cart-button .plus {
  display: flex;
  width: 32px;
  height: 32px;
  padding: 7.515px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #FFF;
  transition: ease 0.2s;
}

:root {
  --font-heading-family: "Rig Sans", sans-serif;
  --font-body-family: "Rig Sans", sans-serif;
  --font-subtitle-family: "Inter", sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-size-h1: 32px;
  --font-size-h2: 36px;
  --font-size-body: 14px;
  --font-size-subtitle: 16px;
  --line-height-h1: 1.125;
  --line-height-h2: 1.1111;
  --line-height-body: 1.4286;
  --line-height-subtitle: 1.5;
  --text-color-primary: #000000;
  --text-color-secondary: #E5E5E5;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
  color: var(--text-color-primary);
  margin: 0;
  line-height: var(--line-height-h1);
}

.h1, h1 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  color: var(--text-color-primary);
}

.h2, h2 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  color: var(--text-color-primary);
}

.h3, h3 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-weight-medium);
  font-size: 28px;
  line-height: 1.2;
  color: var(--text-color-primary);
}

.h4, h4 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-weight-medium);
  font-size: 24px;
  line-height: 1.25;
  color: var(--text-color-primary);
}

.h5, h5 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-weight-medium);
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-color-primary);
}

.h6, h6 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-weight-medium);
  font-size: 18px;
  line-height: 1.35;
  color: var(--text-color-primary);
}

.p, p, .body-text {
  font-family: var(--font-body-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-color-primary);
  margin: 0 0 1em 0;
}

.subtitle, .subtitle-text {
  font-family: var(--font-subtitle-family);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-subtitle);
  line-height: var(--line-height-subtitle);
  color: var(--text-color-primary);
  margin: 0;
}

.text--small {
  font-size: 12px;
  line-height: 1.4;
}
.text--large {
  font-size: 18px;
  line-height: 1.4;
}
.text--bold {
  font-weight: var(--font-weight-bold);
}
.text--semibold {
  font-weight: var(--font-weight-semibold);
}
.text--light {
  font-weight: var(--font-weight-light);
}
.text--center {
  text-align: center;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--uppercase {
  text-transform: uppercase;
}
.text--lowercase {
  text-transform: lowercase;
}
.text--capitalize {
  text-transform: capitalize;
}

.link, a {
  color: var(--text-color-primary);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.link:hover, a:hover {
  opacity: 0.7;
}
.link:focus, a:focus {
  outline: 2px solid var(--text-color-primary);
  outline-offset: 2px;
}

.list, ul, ol {
  font-family: var(--font-body-family);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-color-primary);
}
.list li, ul li, ol li {
  margin-bottom: 0.5em;
}

.blockquote, blockquote {
  font-family: var(--font-body-family);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-style: italic;
  color: var(--text-color-primary);
  border-left: 4px solid var(--text-color-primary);
  padding-left: 1em;
  margin: 1.5em 0;
}

.code, code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: calc(var(--font-size-body) - 1px);
  background-color: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--text-color-primary);
}

.highlight, mark {
  background-color: #ffeb3b;
  color: var(--text-color-primary);
  padding: 0.1em 0.2em;
}

::-moz-selection {
  background-color: var(--text-color-primary);
  color: #ffffff;
}

::selection {
  background-color: var(--text-color-primary);
  color: #ffffff;
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 28px;
    --font-size-h2: 32px;
    --font-size-body: 14px;
    --font-size-subtitle: 16px;
  }
  .h3, h3 {
    font-size: 24px;
  }
  .h4, h4 {
    font-size: 20px;
  }
  .h5, h5 {
    font-size: 18px;
  }
  .h6, h6 {
    font-size: 16px;
  }
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropdown__trigger:hover {
  color: rgba(28, 53, 94, 0.8);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(28, 53, 94, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(28, 53, 94, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
}
.dropdown__menu::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 19px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(28, 53, 94, 0.1);
}

.dropdown__item {
  display: block;
  padding: 12px 16px;
  color: #1C355E;
  text-decoration: none;
  font-family: "Rig Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(28, 53, 94, 0.05);
}
.dropdown__item:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}
.dropdown__item:first-child {
  border-radius: 8px 8px 0 0;
}
.dropdown__item:hover {
  background: rgba(184, 204, 234, 0.1);
  color: rgba(28, 53, 94, 0.8);
  transform: translateX(4px);
}
.dropdown:hover .dropdown__item {
  animation: dropdownItemSlide 0.3s ease forwards;
}
.dropdown__item:nth-child(1) {
  animation-delay: 0.05s;
}
.dropdown__item:nth-child(2) {
  animation-delay: 0.1s;
}
.dropdown__item:nth-child(3) {
  animation-delay: 0.15s;
}
.dropdown__item:nth-child(4) {
  animation-delay: 0.2s;
}
.dropdown__item:nth-child(5) {
  animation-delay: 0.25s;
}

.dropdown__header {
  padding: 12px 16px 8px;
  font-family: "Rig Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(28, 53, 94, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(28, 53, 94, 0.1);
}

.dropdown__divider {
  height: 1px;
  background: rgba(28, 53, 94, 0.1);
  margin: 8px 0;
}

.dropdown--open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown--mega .dropdown__menu {
  min-width: 400px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.dropdown--mega .dropdown__menu::before, .dropdown--mega .dropdown__menu::after {
  display: none;
}
.dropdown--mega .dropdown__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dropdown--mega .dropdown__column-title {
  font-family: "Rig Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1C355E;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(28, 53, 94, 0.1);
}

.dropdown--right .dropdown__menu {
  left: auto;
  right: 0;
}
.dropdown--right .dropdown__menu::before {
  left: auto;
  right: 20px;
}
.dropdown--right .dropdown__menu::after {
  left: auto;
  right: 19px;
}

.dropdown--center .dropdown__menu {
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
}
.dropdown:hover .dropdown--center .dropdown__menu {
  transform: translateX(-50%) translateY(0);
}
.dropdown--center .dropdown__menu::before {
  left: 50%;
  transform: translateX(-50%);
}
.dropdown--center .dropdown__menu::after {
  left: 50%;
  transform: translateX(-50%);
}

@keyframes dropdownItemSlide {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .dropdown__menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: auto;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .dropdown:hover .dropdown__menu {
    transform: translateY(0);
  }
  .dropdown__menu::before, .dropdown__menu::after {
    display: none;
  }
  .dropdown__item {
    padding: 16px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(28, 53, 94, 0.1);
  }
  .dropdown__item:hover {
    transform: none;
    background: rgba(184, 204, 234, 0.1);
  }
}
@media (max-width: 768px) and (hover: none) {
  .dropdown__menu {
    display: none;
  }
  .dropdown.dropdown--open .dropdown__menu {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dropdown__menu {
    transition: opacity 0.1s ease;
  }
  .dropdown__item {
    transition: background-color 0.1s ease;
    animation: none;
  }
  .dropdown__item:hover {
    transform: none;
  }
  @keyframes dropdownItemSlide {
    0%, 100% {
      opacity: 1;
      transform: none;
    }
  }
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropdown__trigger:hover {
  color: rgba(28, 53, 94, 0.8);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(28, 53, 94, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(28, 53, 94, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
}
.dropdown__menu::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 19px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(28, 53, 94, 0.1);
}

.dropdown__item {
  display: block;
  padding: 12px 16px;
  color: #1C355E;
  text-decoration: none;
  font-family: "Rig Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(28, 53, 94, 0.05);
}
.dropdown__item:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}
.dropdown__item:first-child {
  border-radius: 8px 8px 0 0;
}
.dropdown__item:hover {
  background: rgba(184, 204, 234, 0.1);
  color: rgba(28, 53, 94, 0.8);
  transform: translateX(4px);
}
.dropdown:hover .dropdown__item {
  animation: dropdownItemSlide 0.3s ease forwards;
}
.dropdown__item:nth-child(1) {
  animation-delay: 0.05s;
}
.dropdown__item:nth-child(2) {
  animation-delay: 0.1s;
}
.dropdown__item:nth-child(3) {
  animation-delay: 0.15s;
}
.dropdown__item:nth-child(4) {
  animation-delay: 0.2s;
}
.dropdown__item:nth-child(5) {
  animation-delay: 0.25s;
}

.dropdown__header {
  padding: 12px 16px 8px;
  font-family: "Rig Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(28, 53, 94, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(28, 53, 94, 0.1);
}

.dropdown__divider {
  height: 1px;
  background: rgba(28, 53, 94, 0.1);
  margin: 8px 0;
}

.dropdown--open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown--mega .dropdown__menu {
  min-width: 400px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.dropdown--mega .dropdown__menu::before, .dropdown--mega .dropdown__menu::after {
  display: none;
}
.dropdown--mega .dropdown__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dropdown--mega .dropdown__column-title {
  font-family: "Rig Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1C355E;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(28, 53, 94, 0.1);
}

.dropdown--right .dropdown__menu {
  left: auto;
  right: 0;
}
.dropdown--right .dropdown__menu::before {
  left: auto;
  right: 20px;
}
.dropdown--right .dropdown__menu::after {
  left: auto;
  right: 19px;
}

.dropdown--center .dropdown__menu {
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
}
.dropdown:hover .dropdown--center .dropdown__menu {
  transform: translateX(-50%) translateY(0);
}
.dropdown--center .dropdown__menu::before {
  left: 50%;
  transform: translateX(-50%);
}
.dropdown--center .dropdown__menu::after {
  left: 50%;
  transform: translateX(-50%);
}

@keyframes dropdownItemSlide {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .dropdown__menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: auto;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .dropdown:hover .dropdown__menu {
    transform: translateY(0);
  }
  .dropdown__menu::before, .dropdown__menu::after {
    display: none;
  }
  .dropdown__item {
    padding: 16px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(28, 53, 94, 0.1);
  }
  .dropdown__item:hover {
    transform: none;
    background: rgba(184, 204, 234, 0.1);
  }
}
@media (max-width: 768px) and (hover: none) {
  .dropdown__menu {
    display: none;
  }
  .dropdown.dropdown--open .dropdown__menu {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dropdown__menu {
    transition: opacity 0.1s ease;
  }
  .dropdown__item {
    transition: background-color 0.1s ease;
    animation: none;
  }
  .dropdown__item:hover {
    transform: none;
  }
  @keyframes dropdownItemSlide {
    0%, 100% {
      opacity: 1;
      transform: none;
    }
  }
}
