* { font-family: 'Exo 2', sans-serif; }

html, body { margin: 0; padding: 0; }

.custom-scrollbar::-webkit-scrollbar { width: 8px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #5c5c62; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #7a7a80; }

/* Section page layout (replacement for Tailwind classes) */
.section-page {
  background-color: #040404;
  overflow-x: hidden;
}


.section-app {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.section-main {
  position: relative;
  padding: 40px 16px;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 10;
}

@media (min-width: 640px) {
  .section-main {
    padding: 56px 24px;
  }
}

@media (min-width: 1024px) {
  .section-main {
    padding: 80px 120px;
  }
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 8px;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 46px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 58px;
  }
}

.section-description {
  color: #adadad;
  font-size: 16px;
  margin: 0 0 32px;
}

@media (min-width: 640px) {
  .section-description {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .section-description {
    font-size: 20px;
  }
}

.section-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .section-articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .section-articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.article-card {
  border: 1px solid #5c5c62;
  border-radius: 16px;
  overflow: hidden;
}

.article-image {
  height: 140px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .article-image {
    height: 160px;
  }
}

@media (min-width: 1024px) {
  .article-image {
    height: 180px;
  }
}

.article-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-title {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  padding: 16px;
  margin: 0;
}

@media (min-width: 640px) {
  .article-title {
    font-size: 22px;
  }
}

.article-text {
  color: #dcdcdc;
  padding: 0 16px 16px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-actions {
  padding: 0 16px 16px;
}

.readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  border: 1px solid #5c5c62;
  border-radius: 10px;
  padding: 8px 16px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.readmore-link:hover {
  background-color: #ffffff;
  color: #000000;
}

.section-paging {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
}

.section-empty {
  border: 1px solid #5c5c62;
  border-radius: 16px;
  padding: 24px;
  color: #dcdcdc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-enter { animation: fadeIn 0.2s ease-out; }

.gradient-radial {
  background: radial-gradient(circle at center,
    rgba(46,46,50,1) 0%,
    rgba(30,30,33,1) 40%,
    rgba(14,14,16,1) 80%,
    rgba(13,13,15,1) 100%);
}

.hidden {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact page */
.contact-page {
  background-color: #040404;
  overflow-x: hidden;
}

.contact-app {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.contact-bg {
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.contact-bg--top {
  top: 0;
}

.contact-bg--bottom {
  bottom: 0;
  transform: translateX(-50%) scaleY(-1);
}

.contact-bg__inner {
  position: relative;
  width: 100%;
  height: 420px;
}

@media (min-width: 640px) {
  .contact-bg__inner {
    height: 620px;
  }
}

@media (min-width: 1024px) {
  .contact-bg__inner {
    height: 760px;
  }
}

.contact-bg__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, #040404);
}

.contact-hero,
.contact-content {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 10;
  padding-left: 16px;
  padding-right: 16px;
}

.contact-hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-content {
  padding-bottom: 48px;
}

@media (min-width: 640px) {
  .contact-hero,
  .contact-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (min-width: 1024px) {
  .contact-hero,
  .contact-content {
    padding-left: 120px;
    padding-right: 120px;
  }

  .contact-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-content {
    padding-bottom: 90px;
  }
}

.contact-hero__content {
  max-width: 980px;
}

.contact-hero__title {
  margin: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
}

.contact-hero__description {
  margin-top: 12px;
  color: #dcdcdc;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .contact-hero__title {
    font-size: 46px;
  }

  .contact-hero__description {
    margin-top: 16px;
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .contact-hero__title {
    font-size: 58px;
  }

  .contact-hero__description {
    font-size: 22px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  border: 1px solid #5c5c62;
  border-radius: 20px;
  padding: 20px;
}

@media (min-width: 640px) {
  .contact-card {
    border-radius: 28px;
    padding: 28px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info__icon {
  width: 28px;
  height: 28px;
}

.contact-info__link {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
}

@media (min-width: 640px) {
  .contact-info__link {
    font-size: 22px;
  }
}

.contact-info__link:hover {
  text-decoration: underline;
}

.contact-info__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info__social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.contact-info__social-link:hover {
  background-color: #ffffff;
  color: #000000;
}

.contact-info__social-icon {
  width: 22px;
  height: 22px;
}

.contact-locations {
  margin-top: 20px;
  color: #dcdcdc;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .contact-locations {
    font-size: 18px;
  }
}

.contact-locations ul {
  margin: 8px 0 0;
  padding-left: 20px;
  list-style: disc;
  display: grid;
  gap: 4px;
}

.contact-locations__link {
  color: inherit;
  text-decoration: underline;
}

.contact-locations__link:hover {
  color: #ffffff;
}

.contact-maps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-maps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-map {
  border: 1px solid #5c5c62;
  border-radius: 14px;
  overflow: hidden;
}

.contact-map__frame {
  width: 100%;
  height: 260px;
}

@media (min-width: 640px) {
  .contact-map__frame {
    height: 280px;
  }
}

.contact-map__caption {
  padding: 8px 12px;
  color: #dcdcdc;
  font-size: 14px;
  border-top: 1px solid #5c5c62;
}

.contact-form {
  border: 1px solid #5c5c62;
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-form {
    border-radius: 28px;
  }
}

.contact-form__inner {
  padding: 24px 20px 32px;
}

@media (min-width: 640px) {
  .contact-form__inner {
    padding: 32px;
  }
}

.contact-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-form__logo {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.contact-form__logo-ring {
  position: absolute;
  inset: 0;
}

.contact-form__logo-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.contact-form__title {
  text-transform: uppercase;
}

.contact-form__title-main {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  color: #ffffff;
}

.contact-form__title-sub {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #adadad;
}

@media (min-width: 640px) {
  .contact-form__title-main {
    font-size: 34px;
  }

  .contact-form__title-sub {
    font-size: 18px;
  }
}

.contact-alert {
  margin-top: 24px;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}

.contact-alert--success {
  border: 1px solid #4ade80;
  background-color: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
}

.contact-alert--error {
  border: 1px solid #f87171;
  background-color: rgba(220, 38, 38, 0.15);
  color: #fecaca;
}

.contact-alert ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  display: grid;
  gap: 4px;
}

.contact-form__fields {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-field__label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #adadad;
}

.contact-field__input {
  width: 100%;
  background: transparent;
  border: 1px solid #5c5c62;
  border-radius: 10px;
  padding: 12px 16px;
  color: #ffffff;
  outline: none;
  font-size: 16px;
}

.contact-field__input::placeholder {
  color: #adadad;
}

.contact-field__textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form__agreement {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-field__checkbox {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  accent-color: #ffffff;
}

.contact-field__agreement {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: #adadad;
  cursor: pointer;
}

@media (min-width: 640px) {
  .contact-field__agreement {
    font-size: 16px;
  }
}

.contact-form__submit {
  width: 100%;
  height: 62px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 0 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form__submit:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

@media (min-width: 640px) {
  .contact-form__submit {
    font-size: 20px;
  }
}

.site-footer {
  position: relative;
  border-top: 1px solid #5c5c62;
  padding: 48px 0;
  margin-top: 40px;
  z-index: 30;
}

.site-footer__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.site-footer__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.site-footer__heading-icon {
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  flex-shrink: 0;
  display: block;
}

.site-footer__heading-text {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  color: #ffffff;
}

.site-footer__links,
.site-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
}

.site-footer__links {
  color: #dcdcdc;
}

.site-footer__hours {
  gap: 6px;
}

.site-footer__hours-item {
  margin: 0;
}

.site-footer__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #ffffff;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.site-footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.site-footer__social-link:hover {
  background-color: #ffffff;
  color: #000000;
}

.site-footer__social-icon {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-shrink: 0;
  display: block;
}

.site-footer__hours {
  color: #dcdcdc;
}

.site-footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #5c5c62;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.site-footer__copyright {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #adadad;
}

.site-footer__partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-footer__partner-logo {
  width: 218px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: block;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.order-modal__dialog {
  position: relative;
  width: 80%;
  max-width: 520px;
  margin: 10vh auto 0;
  padding: 20px;
  background-color: #131316;
  border: 1px solid #5c5c62;
  border-radius: 16px;
  color: #ffffff;
}

.order-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.order-modal__title {
  font-size: 20px;
  font-weight: 500;
}

.order-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #5c5c62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.order-modal__close:hover {
  background-color: #ffffff;
  color: #000000;
}

.order-modal__close-icon {
  width: 20px;
  height: 20px;
}

.order-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-modal__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-modal__label {
  font-size: 14px;
  color: #adadad;
}

.order-modal__input {
  width: 90%;
  background: transparent;
  border: 1px solid #5c5c62;
  border-radius: 10px;
  padding: 12px 16px;
  color: #ffffff;
  outline: none;
}

.order-modal__submit {
  margin-top: 8px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.order-modal__submit:hover {
  opacity: 0.9;
}

@media (min-width: 640px) {
  .site-footer {
    padding: 80px 0;
    margin-top: 100px;
  }

  .site-footer__container {
    padding: 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__heading {
    gap: 15px;
    margin: 0;
  }

  .site-footer__heading-icon {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .site-footer__heading-text {
    font-size: 28px;
  }

  .site-footer__links,
  .site-footer__hours {
    gap: 20px;
    font-size: 22px;
  }

  .site-footer__hours {
    gap: 10px;
  }

  .site-footer__social {
    gap: 15px;
  }

  .site-footer__social-link {
    width: 40px;
    height: 40px;
  }

  .site-footer__social-icon {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
  }

  .site-footer__bottom {
    margin-top: 80px;
    padding-top: 30px;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .site-footer__copyright {
    font-size: 18px;
  }

  .order-modal__dialog {
    padding: 28px;
  }

  .order-modal__title {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .site-footer__container {
    padding: 0 120px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 80px;
  }

  .site-footer__links,
  .site-footer__hours {
    font-size: 24px;
  }
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Flags via CSS (data-URI) */
.flag { background-repeat: no-repeat; background-position: center; background-size: cover; display:block; border-radius: 3px; }
/* USA (USD) */
.flag-USD,
.flag-USDn,
.flag-USDs {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23B22234'/><g fill='white'><rect y='1.846' width='36' height='1.846'/><rect y='5.538' width='36' height='1.846'/><rect y='9.231' width='36' height='1.846'/><rect y='12.923' width='36' height='1.846'/><rect y='16.615' width='36' height='1.846'/><rect y='20.308' width='36' height='1.846'/></g><rect width='14.4' height='12.923' fill='%233C3B6E'/><g fill='white' opacity='0.9'><circle cx='2.1' cy='1.9' r='0.35'/><circle cx='4.2' cy='1.9' r='0.35'/><circle cx='6.3' cy='1.9' r='0.35'/><circle cx='8.4' cy='1.9' r='0.35'/><circle cx='10.5' cy='1.9' r='0.35'/><circle cx='12.6' cy='1.9' r='0.35'/><circle cx='3.15' cy='3.6' r='0.35'/><circle cx='5.25' cy='3.6' r='0.35'/><circle cx='7.35' cy='3.6' r='0.35'/><circle cx='9.45' cy='3.6' r='0.35'/><circle cx='11.55' cy='3.6' r='0.35'/><circle cx='2.1' cy='5.3' r='0.35'/><circle cx='4.2' cy='5.3' r='0.35'/><circle cx='6.3' cy='5.3' r='0.35'/><circle cx='8.4' cy='5.3' r='0.35'/><circle cx='10.5' cy='5.3' r='0.35'/><circle cx='12.6' cy='5.3' r='0.35'/></g></svg>");
}

/* EU (EUR) */
.flag-EUR {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%230039A6'/><g fill='%23FFCC00'><circle cx='18' cy='4.2' r='0.7'/><circle cx='22.1' cy='5.3' r='0.7'/><circle cx='25.1' cy='8.2' r='0.7'/><circle cx='26.2' cy='12' r='0.7'/><circle cx='25.1' cy='15.8' r='0.7'/><circle cx='22.1' cy='18.7' r='0.7'/><circle cx='18' cy='19.8' r='0.7'/><circle cx='13.9' cy='18.7' r='0.7'/><circle cx='10.9' cy='15.8' r='0.7'/><circle cx='9.8' cy='12' r='0.7'/><circle cx='10.9' cy='8.2' r='0.7'/><circle cx='13.9' cy='5.3' r='0.7'/></g></svg>");
}

/* Switzerland (CHF) */
.flag-CHF {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23D52B1E'/><rect x='14' y='5' width='8' height='14' fill='white'/><rect x='11' y='8' width='14' height='8' fill='white'/></svg>");
}

/* United Kingdom (GBP) */
.flag-GBP {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23012169'/><path d='M0 0L36 24M36 0L0 24' stroke='white' stroke-width='6'/><path d='M0 0L36 24M36 0L0 24' stroke='%23C8102E' stroke-width='3'/><rect x='15' width='6' height='24' fill='white'/><rect y='9' width='36' height='6' fill='white'/><rect x='16.2' width='3.6' height='24' fill='%23C8102E'/><rect y='10.2' width='36' height='3.6' fill='%23C8102E'/></svg>");
}

/* Australia (AUD) */
.flag-AUD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%2300008B'/><g transform='scale(0.5)'><rect width='36' height='24' fill='%23012169'/><path d='M0 0L36 24M36 0L0 24' stroke='white' stroke-width='6'/><path d='M0 0L36 24M36 0L0 24' stroke='%23C8102E' stroke-width='3'/><rect x='15' width='6' height='24' fill='white'/><rect y='9' width='36' height='6' fill='white'/><rect x='16.2' width='3.6' height='24' fill='%23C8102E'/><rect y='10.2' width='36' height='3.6' fill='%23C8102E'/></g><g fill='white'><circle cx='26' cy='14' r='1.2'/><circle cx='30' cy='18' r='0.9'/><circle cx='24' cy='19' r='0.9'/><circle cx='31.5' cy='10' r='0.7'/><circle cx='22.5' cy='12' r='0.7'/></g></svg>");
}

/* Canada (CAD) */
.flag-CAD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><rect width='9' height='24' fill='%23D52B1E'/><rect x='27' width='9' height='24' fill='%23D52B1E'/><path d='M18 5l1.2 3.2 3-1.1-1.8 2.8 3.2.3-2.7 2 1.8 2.6-3-1-1.7 3.1-1.7-3.1-3 1 1.8-2.6-2.7-2 3.2-.3-1.8-2.8 3 1.1L18 5z' fill='%23D52B1E'/></svg>");
}

/* Denmark (DKK) */
.flag-DKK {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23C60C30'/><rect x='10' width='4' height='24' fill='white'/><rect y='10' width='36' height='4' fill='white'/></svg>");
}

/* Norway (NOK) */
.flag-NOK {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23BA0C2F'/><rect x='10' width='6' height='24' fill='white'/><rect y='9' width='36' height='6' fill='white'/><rect x='11.5' width='3' height='24' fill='%23002776'/><rect y='10.5' width='36' height='3' fill='%23002776'/></svg>");
}

/* Sweden (SEK) */
.flag-SEK {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%230066AA'/><rect x='11' width='4' height='24' fill='%23FECC00'/><rect y='10' width='36' height='4' fill='%23FECC00'/></svg>");
}

/* Czechia (CZK) */
.flag-CZK {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='12' fill='white'/><rect y='12' width='36' height='12' fill='%23D7141A'/><path d='M0 0L18 12L0 24V0Z' fill='%2311457E'/></svg>");
}

/* Hungary (HUF) */
.flag-HUF {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='%23CE2939'/><rect y='8' width='36' height='8' fill='white'/><rect y='16' width='36' height='8' fill='%23477A2E'/></svg>");
}

/* Bulgaria (BGN) */
.flag-BGN {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='white'/><rect y='8' width='36' height='8' fill='%23009266'/><rect y='16' width='36' height='8' fill='%23D62612'/></svg>");
}

/* Romania (ROL) */
.flag-ROL {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='12' height='24' fill='%230025A9'/><rect x='12' width='12' height='24' fill='%23FCD116'/><rect x='24' width='12' height='24' fill='%23CE1126'/></svg>");
}

/* Georgia (GEL) */
.flag-GEL {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><rect x='15.2' width='5.6' height='24' fill='%23D40000'/><rect y='9.2' width='36' height='5.6' fill='%23D40000'/><g fill='%23D40000'><rect x='6' y='4.5' width='2.2' height='6'/><rect x='4.9' y='6.2' width='4.4' height='2.2'/><rect x='27.8' y='4.5' width='2.2' height='6'/><rect x='26.7' y='6.2' width='4.4' height='2.2'/><rect x='6' y='13.5' width='2.2' height='6'/><rect x='4.9' y='15.2' width='4.4' height='2.2'/><rect x='27.8' y='13.5' width='2.2' height='6'/><rect x='26.7' y='15.2' width='4.4' height='2.2'/></g></svg>");
}

/* Ukraine (UAH) */
.flag-UAH {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='12' fill='%230056B9'/><rect y='12' width='36' height='12' fill='%23FFD500'/></svg>");
}

/* Russia (RUB) */
.flag-RUB {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='white'/><rect y='8' width='36' height='8' fill='%230039A6'/><rect y='16' width='36' height='8' fill='%23D52B1E'/></svg>");
}

/* Japan (JPY) */
.flag-JPY {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><circle cx='18' cy='12' r='6' fill='%23BC002D'/></svg>");
}

/* Croatia (HRK) */
.flag-HRK {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='%23FF0000'/><rect y='8' width='36' height='8' fill='white'/><rect y='16' width='36' height='8' fill='%23002147'/><g transform='translate(15 8)'><rect width='6' height='8' fill='white' stroke='%23D00000' stroke-width='0.5'/><g fill='%23D00000'><rect width='2' height='2'/><rect x='2' y='2' width='2' height='2'/><rect x='4' width='2' height='2'/><rect y='4' width='2' height='2'/><rect x='2' y='6' width='2' height='2'/><rect x='4' y='4' width='2' height='2'/></g></g></svg>");
}

/* Turkey (TRL) */
.flag-TRL {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23E30A17'/><circle cx='14' cy='12' r='6' fill='white'/><circle cx='15.6' cy='12' r='4.8' fill='%23E30A17'/><path d='M21 12l3.2 1.1-2 2.7.1-3.4-2.8 1.9 1.6-3-3.2.9 2.6-2.2-2.6-2.2 3.2.9-1.6-3 2.8 1.9-.1-3.4 2 2.7L21 12z' fill='white'/></svg>");
}

/* Israel (ILS) */
.flag-ILS {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><rect y='3' width='36' height='3' fill='%230056B9'/><rect y='18' width='36' height='3' fill='%230056B9'/><g fill='none' stroke='%230056B9' stroke-width='1.2'><path d='M18 7l5 8H13l5-8z'/><path d='M18 17l-5-8h10l-5 8z'/></g></svg>");
}

/* Egypt (EGP) */
.flag-EGP {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='%23CE1126'/><rect y='8' width='36' height='8' fill='white'/><rect y='16' width='36' height='8' fill='black'/><rect x='17' y='10' width='2' height='4' fill='%23C9B037'/></svg>");
}

/* Iceland (ISK) */
.flag-ISK {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23003D7C'/><rect x='10' width='6' height='24' fill='white'/><rect y='9' width='36' height='6' fill='white'/><rect x='11.5' width='3' height='24' fill='%23D72828'/><rect y='10.5' width='36' height='3' fill='%23D72828'/></svg>");
}

/* Serbia (RSD) */
.flag-RSD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='%23C6363C'/><rect y='8' width='36' height='8' fill='%230C4076'/><rect y='16' width='36' height='8' fill='white'/><rect x='6' y='8' width='4' height='6' rx='1' fill='%23F4C430'/></svg>");
}

/* North Macedonia (MKD) */
.flag-MKD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23D20000'/><g stroke='%23FFD200' stroke-width='3'><path d='M18 12L18 0'/><path d='M18 12L36 12'/><path d='M18 12L18 24'/><path d='M18 12L0 12'/><path d='M18 12L34 2'/><path d='M18 12L34 22'/><path d='M18 12L2 22'/><path d='M18 12L2 2'/></g><circle cx='18' cy='12' r='4' fill='%23FFD200'/></svg>");
}

/* Bosnia and Herzegovina (BAM) */
.flag-BAM {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%230025B7'/><path d='M12 0h24v24H12l12-12L12 0z' fill='%23F7D116'/><g fill='white'><circle cx='14' cy='4' r='0.7'/><circle cx='16' cy='6' r='0.7'/><circle cx='18' cy='8' r='0.7'/><circle cx='20' cy='10' r='0.7'/><circle cx='22' cy='12' r='0.7'/><circle cx='24' cy='14' r='0.7'/><circle cx='26' cy='16' r='0.7'/><circle cx='28' cy='18' r='0.7'/><circle cx='30' cy='20' r='0.7'/></g></svg>");
}

/* Albania (ALL) */
.flag-ALL {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23E41E20'/><path d='M18 7c2 0 4 2 4 5s-2 5-4 5-4-2-4-5 2-5 4-5z' fill='black'/><path d='M14 9c-2 1-3 3-3 3s1 2 3 3c1-2 1-4 0-6zM22 9c2 1 3 3 3 3s-1 2-3 3c-1-2-1-4 0-6z' fill='black'/></svg>");
}

/* Morocco (MAD) */
.flag-MAD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23C1272D'/><path d='M18 6l2.2 6.7h7l-5.7 4.1 2.2 6.7-5.7-4.1-5.7 4.1 2.2-6.7-5.7-4.1h7L18 6z' fill='none' stroke='%23006A4E' stroke-width='1.5' stroke-linejoin='round'/></svg>");
}

/* Qatar (QAR) */
.flag-QAR {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%238A1538'/><path d='M0 0h12v24H0z' fill='white'/><path d='M12 0l-3 1.333L12 2.666l-3 1.334L12 5.333l-3 1.334L12 8l-3 1.333L12 10.666l-3 1.334L12 13.333l-3 1.334L12 16l-3 1.333L12 18.666l-3 1.334L12 21.333l-3 1.334L12 24' fill='white'/></svg>");
}

/* Saudi Arabia (SAR) */
.flag-SAR {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23006C35'/><rect x='7' y='7' width='22' height='3' fill='white' opacity='0.9'/><rect x='11' y='15.5' width='16' height='1.2' fill='white'/><rect x='24.5' y='15' width='3' height='2.2' fill='white'/></svg>");
}

/* United Arab Emirates (AED) */
.flag-AED {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><rect width='9' height='24' fill='%23FF0000'/><rect x='9' width='27' height='8' fill='%23007A3D'/><rect x='9' y='8' width='27' height='8' fill='white'/><rect x='9' y='16' width='27' height='8' fill='black'/></svg>");
}

/* Mexico (MXN) */
.flag-MXN {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='12' height='24' fill='%23006647'/><rect x='12' width='12' height='24' fill='white'/><rect x='24' width='12' height='24' fill='%23CE1126'/><circle cx='18' cy='12' r='2' fill='%238B5A2B'/></svg>");
}

/* Peru (PEN) */
.flag-PEN {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='12' height='24' fill='%23D91023'/><rect x='12' width='12' height='24' fill='white'/><rect x='24' width='12' height='24' fill='%23D91023'/></svg>");
}

/* Brazil (BRL) */
.flag-BRL {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23009B3A'/><path d='M18 3l12 9-12 9L6 12 18 3z' fill='%23FFDF00'/><circle cx='18' cy='12' r='5' fill='%23002776'/><path d='M13 12c4-2 8-2 12 0' stroke='white' stroke-width='1' fill='none'/></svg>");
}


/* Dominican Republic (DOP) */
.flag-DOP {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><rect width='16' height='10' fill='%2300205B'/><rect x='20' width='16' height='10' fill='%23CE1126'/><rect y='14' width='16' height='10' fill='%23CE1126'/><rect x='20' y='14' width='16' height='10' fill='%2300205B'/><rect x='16' width='4' height='24' fill='white'/><rect y='10' width='36' height='4' fill='white'/><circle cx='18' cy='12' r='1.3' fill='%23009266'/></svg>");
}

/* China (CNY) */
.flag-CNY {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23DE2910'/><path d='M7 4l1.2 3.2 3.4.1-2.7 2 1 3.2L7 10.6 4.1 12.5l1-3.2-2.7-2 3.4-.1L7 4z' fill='%23FFDE00'/></svg>");
}

/* Hong Kong (HKD) */
.flag-HKD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23DE2910'/><g fill='white' transform='translate(18 12)'><path d='M0-5c2 0 3 2 2 4-1 2-4 2-5 0 1-2 1-4 3-4z'/><path d='M4-1c0 2-2 3-4 2-2-1-2-4 0-5 2 1 4 1 4 3z'/><path d='M1 5c-2 0-3-2-2-4 1-2 4-2 5 0-1 2-1 4-3 4z'/><path d='M-5 2c0-2 2-3 4-2 2 1 2 4 0 5-2-1-4-1-4-3z'/><path d='M-2-3c1-2 3-2 4 0 1 2-1 4-3 4-1-2-2-2-1-4z'/></g></svg>");
}

/* Singapore (SGD) */
.flag-SGD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='12' fill='%23EF3340'/><rect y='12' width='36' height='12' fill='white'/><circle cx='9' cy='6' r='4' fill='white'/><circle cx='10.2' cy='6' r='3.2' fill='%23EF3340'/><g fill='white'><circle cx='13' cy='4' r='0.5'/><circle cx='14.5' cy='5.2' r='0.5'/><circle cx='14' cy='7' r='0.5'/><circle cx='12.6' cy='7.2' r='0.5'/><circle cx='12' cy='5.6' r='0.5'/></g></svg>");
}

/* South Korea (KRW) */
.flag-KRW {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><path d='M18 6a6 6 0 1 0 0 12a3 3 0 1 1 0-6a3 3 0 1 0 0-6z' fill='%23CD2E3A'/><path d='M18 6a6 6 0 0 1 0 12a3 3 0 1 0 0-6a3 3 0 0 1 0-6z' fill='%230046A0' opacity='0.9'/></svg>");
}

/* Vietnam (VND) */
.flag-VND {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23DA251D'/><path d='M18 5.5l2.2 6.2h6.6l-5.3 3.8 2 6.2-5.5-3.9-5.5 3.9 2-6.2-5.3-3.8h6.6L18 5.5z' fill='%23FFDF00'/></svg>");
}

/* South Africa (ZAR) */
.flag-ZAR {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='12' fill='%23E03C31'/><rect y='12' width='36' height='12' fill='%23002F6C'/><path d='M0 0h14l10 8v8L14 24H0z' fill='black'/><path d='M0 3h13l9 7v4l-9 7H0z' fill='%23FFB612'/><path d='M0 5h12l8 6v2l-8 6H0z' fill='%23007A4D'/><path d='M0 5h6l8 7-8 7H0z' fill='white' opacity='0.9'/></svg>");
}

/* Indonesia (IDR) */
.flag-IDR {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='12' fill='%23CE1126'/><rect y='12' width='36' height='12' fill='white'/></svg>");
}

/* Malaysia (MYR) */
.flag-MYR {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><g fill='%23CC0001'><rect y='0' width='36' height='2'/><rect y='4' width='36' height='2'/><rect y='8' width='36' height='2'/><rect y='12' width='36' height='2'/><rect y='16' width='36' height='2'/><rect y='20' width='36' height='2'/></g><rect width='16' height='12' fill='%230032A0'/><circle cx='7' cy='6' r='4' fill='%23FFD100'/><circle cx='8.2' cy='6' r='3.2' fill='%230032A0'/><path d='M12.2 6l1 2.2 2.4.2-1.9 1.4.7 2.3-2-1.3-2 1.3.7-2.3-1.9-1.4 2.4-.2 1-2.2z' fill='%23FFD100'/></svg>");
}

/* Thailand (THB) */
.flag-THB {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%23A51931'/><rect y='4' width='36' height='4' fill='white'/><rect y='8' width='36' height='8' fill='%232F2A7D'/><rect y='16' width='36' height='4' fill='white'/></svg>");
}

/* New Zealand (NZD) */
.flag-NZD {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='%2300008B'/><g transform='scale(0.5)'><rect width='36' height='24' fill='%23012169'/><path d='M0 0L36 24M36 0L0 24' stroke='white' stroke-width='6'/><path d='M0 0L36 24M36 0L0 24' stroke='%23C8102E' stroke-width='3'/><rect x='15' width='6' height='24' fill='white'/><rect y='9' width='36' height='6' fill='white'/><rect x='16.2' width='3.6' height='24' fill='%23C8102E'/><rect y='10.2' width='36' height='3.6' fill='%23C8102E'/></g><g fill='%23C8102E' stroke='white' stroke-width='0.8'><circle cx='26' cy='8' r='1.2'/><circle cx='30' cy='12' r='1.2'/><circle cx='24' cy='15' r='1.2'/><circle cx='30' cy='18' r='1.2'/></g></svg>");
}

/* Kenya (KES) */
.flag-KES {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='black'/><rect y='8' width='36' height='8' fill='%23BB0000'/><rect y='16' width='36' height='8' fill='%23006B3F'/><rect y='7.2' width='36' height='1.6' fill='white'/><rect y='15.2' width='36' height='1.6' fill='white'/><ellipse cx='18' cy='12' rx='4' ry='7' fill='%23BB0000' stroke='white' stroke-width='1'/><path d='M18 6v12' stroke='black' stroke-width='1.4'/></svg>");
}

/* Philippines (PHP) */
.flag-PHP {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='12' fill='%23003A8C'/><rect y='12' width='36' height='12' fill='%23CE1126'/><path d='M0 0l14 12L0 24V0z' fill='white'/><circle cx='5.2' cy='12' r='2' fill='%23FCD116'/><path d='M5.2 7.8l.6 1.6 1.7.1-1.3 1 .5 1.7-1.5-1-1.5 1 .5-1.7-1.3-1 1.7-.1.6-1.6z' fill='%23FCD116'/></svg>");
}

/* Myanmar (MMK) */
.flag-MMK {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='8' fill='%23FECB00'/><rect y='8' width='36' height='8' fill='%2334B233'/><rect y='16' width='36' height='8' fill='%23EA2839'/><path d='M18 6l2.4 6.8h7.2l-5.8 4.2 2.2 6.8-6-4.3-6 4.3 2.2-6.8-5.8-4.2h7.2L18 6z' fill='white'/></svg>");
}

/* Oman (OMR) */
.flag-OMR {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='24' fill='white'/><rect width='9' height='24' fill='%23D21034'/><rect x='9' width='27' height='8' fill='white'/><rect x='9' y='8' width='27' height='8' fill='%23D21034'/><rect x='9' y='16' width='27' height='8' fill='%23009066'/><rect x='3.5' y='5' width='2' height='8' fill='white' opacity='0.9'/><rect x='2.5' y='8' width='4' height='2' fill='white' opacity='0.9'/></svg>");
}

/* (Optional) Poland (PLN) – you already have it */
.flag-PLN {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><rect width='36' height='12' fill='white'/><rect y='12' width='36' height='12' fill='%23DC143C'/></svg>");
}

.is-hidden {
  display: none !important;
}

.is-scroll-locked {
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  pointer-events: none;
  z-index: 0;
  transform: translateX(-50%);
}

.hero-bg--top {
  top: 0;
}

.hero-bg--bottom {
  bottom: 0;
  transform: translateX(-50%) scaleY(-1);
}

.hero-bg__inner {
  position: relative;
  width: 100%;
}

.hero-bg__inner--header {
  height: 680px;
}

.hero-bg__inner--content {
  height: 420px;
}

@media (min-width: 640px) {
  .hero-bg__inner--header {
    height: 820px;
  }

  .hero-bg__inner--content {
    height: 620px;
  }
}

@media (min-width: 1024px) {
  .hero-bg__inner--header {
    height: 1079px;
  }

  .hero-bg__inner--content {
    height: 760px;
  }
}

.hero-bg__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, #040404);
}

.site-header {
  position: relative;
  border-bottom: 1px solid #5c5c62;
  z-index: 20;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 12px 16px;
}

@media (min-width: 640px) {
  .site-header__inner {
    padding: 12px 24px;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: 80px;
    padding: 0 120px;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

@media (min-width: 1024px) {
  .site-header__brand {
    gap: 40px;
  }
}

.site-header__logo {
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.site-header__logo-link {
  display: block;
}

@media (min-width: 640px) {
  .site-header__logo {
    height: 72px;
  }
}

@media (min-width: 1024px) {
  .site-header__logo {
    height: 80px;
  }
}

.site-header__nav {
  display: none;
  gap: 40px;
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
  }
}

.site-header__link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-header__link:hover {
  opacity: 0.8;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__lang {
  display: none;
}

@media (min-width: 640px) {
  .site-header__lang {
    display: flex;
  }
}

.site-header__lang-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.site-header__lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 640px) {
  .site-header__lang-btn {
    padding: 8px 16px;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .site-header__lang-btn {
    font-size: 18px;
  }
}

.site-header__lang-btn--mobile {
  font-size: 16px;
  padding: 8px 16px;
}

.site-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #5c5c62;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.site-header__menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .site-header__menu-btn {
    display: none;
  }
}

.site-header__menu-icon {
  width: 22px;
  height: 22px;
}

.site-header__mobile-menu {
  border-top: 1px solid #5c5c62;
  padding: 16px 16px;
}

@media (min-width: 640px) {
  .site-header__mobile-menu {
    padding: 16px 24px;
  }
}

@media (min-width: 1024px) {
  .site-header__mobile-menu {
    display: none;
  }
}

.site-header__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
}

.site-header__mobile-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-header__mobile-link:hover {
  opacity: 0.8;
}

.site-header__mobile-lang {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

@media (min-width: 640px) {
  .site-header__mobile-lang {
    display: none;
  }
}

.hero {
  position: relative;
  padding: 40px 16px;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .hero {
    padding: 56px 24px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 90px 120px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
  }
}

.hero__column {
  position: relative;
}

.hero__slider {
  position: relative;
  width: 100%;
  max-width: 854px;
  margin: 0 auto;
  height: 304px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero__slider {
    height: 525px;
  }
}

@media (min-width: 1024px) {
  .hero__slider {
    height: 614px;
    margin-left: 0;
  }
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
}

.slide--active {
  opacity: 1;
  pointer-events: auto;
}

.slide--inactive {
  opacity: 0;
  pointer-events: none;
}

.slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero__nav--prev {
  left: 8px;
}

.hero__nav--next {
  right: 8px;
}

.hero__nav-icon {
  width: 24px;
  height: 24px;
}

.hero__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .slider-dot {
    width: 14px;
    height: 14px;
  }
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot--inactive {
  background: rgba(255, 255, 255, 0.4);
}

.slider-dot--inactive:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.slider-dot--active {
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero__cta {
  margin-top: 24px;
  width: 90%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 50px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 640px) {
  .hero__cta {
    margin-top: 32px;
    padding: 16px 40px;
    height: 70px;
  }
}

@media (min-width: 1024px) {
  .hero__cta {
    margin-top: 24px;
    width: 547px;
  }
}

.hero__cta-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .hero__cta-text {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .hero__cta-text {
    font-size: 24px;
  }
}

.hero__cta-icon {
  width: 26px;
  height: 26px;
}

@media (min-width: 640px) {
  .hero__cta-icon {
    width: 30px;
    height: 30px;
  }
}

.exchange-card {
  position: relative;
  border: 1px solid #5c5c62;
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
  max-width: 972px;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 639px) {
  .exchange-card {
    width: 80%;
  }
}

@media (min-width: 640px) {
  .exchange-card {
    border-radius: 40px;
  }
}

@media (min-width: 1024px) {
  .exchange-card {
    margin-left: 0;
  }
}

.exchange-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px 0;
}

@media (min-width: 640px) {
  .exchange-card__header {
    padding: 31px 59px 0;
  }
}

.exchange-card__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

@media (min-width: 640px) {
  .exchange-card__brand {
    gap: 20px;
  }
}

.exchange-card__badge {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .exchange-card__badge {
    width: 80px;
    height: 80px;
  }
}

.exchange-card__badge-ring {
  position: absolute;
  inset: 0;
}

.exchange-card__badge-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  color: #ffffff;
}

@media (min-width: 640px) {
  .exchange-card__badge-letter {
    font-size: 50px;
  }
}

.exchange-card__titles {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-transform: uppercase;
}

.exchange-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  color: #ffffff;
}

@media (min-width: 640px) {
  .exchange-card__title {
    font-size: 40px;
  }
}

.exchange-card__subtitle {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: #adadad;
}

@media (min-width: 640px) {
  .exchange-card__subtitle {
    font-size: 24px;
  }
}

.exchange-card__contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 640px) {
  .exchange-card__contacts {
    gap: 15px;
  }
}

.exchange-card__contact {
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

@media (min-width: 640px) {
  .exchange-card__contact {
    width: 40px;
    height: 40px;
  }
}

.exchange-card__contact:hover {
  background: #ffffff;
  color: #000000;
}

.exchange-card__contact-icon {
  width: 22px;
  height: 22px;
}

@media (min-width: 640px) {
  .exchange-card__contact-icon {
    width: 24px;
    height: 24px;
  }
}

.exchange-card__headline {
  margin-top: 19px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: #ffffff;
}

@media (min-width: 640px) {
  .exchange-card__headline {
    margin-top: 40px;
    padding: 0;
    margin-left: 59px;
    font-size: 40px;
    max-width: 648px;
  }
}

@media (min-width: 1024px) {
  .exchange-card__headline {
    font-size: 50px;
  }
}

.exchange-card__form {
  margin-top: 10px;
}

.exchange-card__fields {
  margin-top: 19px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

@media (min-width: 640px) {
  .exchange-card__fields {
    margin-top: 32px;
    margin-left: 59px;
    margin-right: 59px;
    gap: 16px;
  }
}

.exchange-card__field {
  position: relative;
}

.exchange-card__label {
  margin-bottom: 7px;
  margin-left: 14px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #adadad;
}

@media (min-width: 640px) {
  .exchange-card__label {
    margin-left: 40px;
    font-size: 18px;
  }
}

.exchange-card__input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #5c5c62;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 12px;
}

@media (min-width: 640px) {
  .exchange-card__input {
    height: 56px;
    padding: 0 39px;
  }
}

.exchange-card__input--phone {
  justify-content: flex-start;
}

.exchange-card__currency-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: inherit;
  padding: 0;
  transition: opacity 0.2s ease;
}

.exchange-card__currency-trigger:hover {
  opacity: 0.8;
}

.exchange-card__flag {
  width: 36px;
  height: 24px;
}

.exchange-card__currency-code {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #ffffff;
}

@media (min-width: 640px) {
  .exchange-card__currency-code {
    font-size: 30px;
  }
}

.exchange-card__arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

@media (min-width: 640px) {
  .exchange-card__arrow {
    width: 24px;
    height: 24px;
  }
}

.exchange-card__amount {
  width: 45%;
  max-width: 200px;
  background: transparent;
  border: none;
  outline: none;
  text-align: right;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #ffffff;
}

@media (min-width: 640px) {
  .exchange-card__amount {
    font-size: 30px;
  }
}

.exchange-card__dropdown {
  position: absolute;
  margin-top: 8px;
  width: 100%;
  background: #1a1a1c;
  border: 1px solid #5c5c62;
  border-radius: 10px;
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) {
  .exchange-card__dropdown {
    width: 320px;
    max-height: 400px;
  }
}

.exchange-card__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.exchange-card__option:hover {
  background: rgba(255, 255, 255, 0.15);
}

.exchange-card__option-flag {
  width: 36px;
  height: 24px;
  flex-shrink: 0;
}

.exchange-card__option-code {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}

.exchange-card__option-name {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #adadad;
}

.exchange-card__swap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.exchange-card__swap-btn {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #5c5c62;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.exchange-card__swap-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(180deg);
}

@media (min-width: 640px) {
  .exchange-card__swap-btn {
    width: 60px;
    height: 60px;
  }
}

.exchange-card__swap-icon {
  width: 26px;
  height: 26px;
}

@media (min-width: 640px) {
  .exchange-card__swap-icon {
    width: 30px;
    height: 30px;
  }
}

.exchange-card__phone {
  margin-top: 13px;
  margin-left: 20px;
  margin-right: 20px;
}

@media (min-width: 640px) {
  .exchange-card__phone {
    margin-top: 16px;
    margin-left: 59px;
    margin-right: 59px;
  }
}

.exchange-card__phone-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
}

@media (min-width: 640px) {
  .exchange-card__phone-input {
    font-size: 20px;
  }
}

.exchange-card__phone-input::placeholder {
  color: #adadad;
}

.exchange-card__actions {
  padding: 0 20px;
}

@media (min-width: 640px) {
  .exchange-card__actions {
    padding: 0 59px;
  }
}

.exchange-card__submit {
  margin-top: 19px;
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 50px;
  height: 51px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.exchange-card__submit:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 640px) {
  .exchange-card__submit {
    margin-top: 26px;
    height: 56px;
  }
}

@media (min-width: 1024px) {
  .exchange-card__submit {
    margin-top: 32px;
  }
}

.exchange-card__submit-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .exchange-card__submit-text {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .exchange-card__submit-text {
    font-size: 24px;
  }
}

.exchange-card__agreement {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .exchange-card__agreement {
    margin-top: 13px;
    align-items: center;
  }
}

.exchange-card__checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #ffffff;
  margin-top: 3px;
}

@media (min-width: 640px) {
  .exchange-card__checkbox {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
}

.exchange-card__agreement-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.35;
  color: #adadad;
  cursor: pointer;
}

@media (min-width: 640px) {
  .exchange-card__agreement-text {
    font-size: 16px;
  }
}

.exchange-card__agreement-link {
  text-decoration: underline;
  color: inherit;
  transition: color 0.2s ease;
}

.exchange-card__agreement-link:hover {
  color: #ffffff;
}

.exchange-card__spacer {
  height: 19px;
}

@media (min-width: 640px) {
  .exchange-card__spacer {
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .exchange-card__spacer {
    height: 0;
  }
}

.section-heading {
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 32px;
  margin-top: 0px;
}

.section-heading--metals {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .section-heading {
    font-size: 50px;
    margin-bottom: 60px;
  }
}

.services,
.rates {
  position: relative;
  padding: 48px 16px;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 10;
}

@media (min-width: 640px) {
  .services,
  .rates {
    padding: 48px 24px;
  }
}

@media (min-width: 1024px) {
  .services,
  .rates {
    padding: 20px 120px;
  }
}

.rates .section-heading {
  font-size: 28px;
}

@media (min-width: 640px) {
  .rates .section-heading {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .rates .section-heading {
    font-size: 50px;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #5c5c62;
  border-radius: 28px;
  min-height: 200px;
  padding: 20px;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: #ffffff;
}

@media (min-width: 640px) {
  .service-card {
    border-radius: 40px;
    padding: 30px;
  }
}

@media (min-width: 1024px) {
  .service-card {
    height: 300px;
  }
}

.service-card__link {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: inherit;
  text-decoration: none;
}

.service-card__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.service-card__content {
  position: relative;
  z-index: 20;
  pointer-events: none;
}

.service-card__text {
  position: relative;
  z-index: 10;
}

.service-card__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 10px;
}

@media (min-width: 640px) {
  .service-card__title {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .service-card__title {
    font-size: 24px;
  }
}

.service-card__desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: #dcdcdc;
  margin: 0;
}

@media (min-width: 640px) {
  .service-card__desc {
    font-size: 18px;
  }
}

.service-card__cta {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
}

@media (min-width: 640px) {
  .service-card__cta {
    display: none;
  }
}

.service-card__cta-btn {
  background: #ffffff;
  color: #000000;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.service-card__image {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.service-card:hover .service-card__image {
  opacity: 0.7;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__image--gold {
  bottom: 8px;
  right: 8px;
  width: 160px;
  height: 110px;
}

@media (min-width: 640px) {
  .service-card__image--gold {
    bottom: 0;
    left: 12px;
    right: auto;
    width: 320px;
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .service-card__image--gold {
    width: 340px;
    height: 190px;
  }
}

.service-card__image--banknote {
  bottom: 8px;
  right: 8px;
  width: 170px;
  height: 120px;
}

@media (min-width: 640px) {
  .service-card__image--banknote {
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 320px;
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .service-card__image--banknote {
    bottom: 40px;
  }
}

.service-card__image--card {
  bottom: 8px;
  right: 8px;
  width: 130px;
  height: 90px;
}

@media (min-width: 640px) {
  .service-card__image--card {
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 210px;
    height: 130px;
  }
}

@media (min-width: 1024px) {
  .service-card__image--card {
    bottom: 40px;
  }
}

.service-card__image--auto {
  bottom: 8px;
  right: 8px;
  width: 160px;
  height: 110px;
}

@media (min-width: 640px) {
  .service-card__image--auto {
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 257px;
    height: 163px;
  }
}

@media (min-width: 1024px) {
  .service-card__image--auto {
    bottom: 40px;
  }
}

.rates__table {
  border: 1px solid #5c5c62;
  border-radius: 28px;
  overflow: hidden;
}

.rates__table--metals {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rates__table--metals {
    width: 50%;
  }
}

@media (min-width: 640px) {
  .rates__table {
    border-radius: 40px;
  }
}

.rates__table-scroll {
  overflow-x: hidden;
}

@media (min-width: 640px) {
  .rates__table-scroll {
    overflow-x: auto;
  }
}

.rates__table-inner {
  min-width: 100%;
}

@media (min-width: 640px) {
  .rates__table-inner {
    min-width: 900px;
  }
}

.rates__table-inner--metals {
  min-width: 100%;
}

@media (min-width: 640px) {
  .rates__table-inner--metals {
    min-width: 520px;
  }
}

.rates__row {
  display: grid;
  grid-template-columns: minmax(160px, 2fr) minmax(80px, 1fr) minmax(80px, 1fr) minmax(72px, 96px);
  gap: 16px;
  padding: 20px 24px;
  transition: background-color 0.2s ease;
}

.rates__row--metals {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 640px) {
  .rates__row {
    padding: 20px 50px;
  }
}

.rates__row--head {
  border-bottom: 1px solid #5c5c62;
  color: #adadad;
  font-weight: 300;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .rates__row--head {
    font-size: 24px;
  }
}

.rates__row--head .rates__cell {
  font-size: 18px;
  font-weight: 300;
  color: #adadad;
}

@media (min-width: 640px) {
  .rates__row--head .rates__cell {
    font-size: 24px;
  }
}

.rates__row--even {
  background: rgba(255, 255, 255, 0.05);
}

.rates__row--hidden {
  display: none;
}

.rates__row--even:hover,
.rates__row:hover {
  background: rgba(255, 255, 255, 0.1);
}

.rates__cell {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #ffffff;
}

@media (min-width: 640px) {
  .rates__cell {
    font-size: 24px;
  }
}

.rates__cell--label,
.rates__cell--buy,
.rates__cell--sell {
  font-weight: 300;
  color: #adadad;
}

.rates__cell--buy,
.rates__cell--buy-value {
  text-align: right;
}

.rates__cell--sell,
.rates__cell--sell-value {
  text-align: center;
}

.rates__toggle {
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rates__toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.rates__toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .rates__cell--buy,
  .rates__cell--buy-value {
    text-align: center;
  }
}

.rates__cell--currency {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rates__flag {
  width: 36px;
  height: 24px;
  flex-shrink: 0;
}

.rates__code {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}

.rates__code--metal {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 640px) {
  .rates__code {
    font-size: 24px;
  }
}

.metal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #facc15;
  flex-shrink: 0;
}

.metal-icon svg {
  width: 100%;
  height: 100%;
}

.metal-icon--silver {
  color: #d1d5db;
}

.rates__cell--rate {
  text-align: right;
}

.rates__row--metals .rates__cell--buy,
.rates__row--metals .rates__cell--rate {
  text-align: center;
}

.rates__name {
  display: none;
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #adadad;
}

@media (min-width: 640px) {
  .rates__name {
    display: block;
    font-size: 16px;
  }
}

.rates__cell--change {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rates__badge {
  display: none;
  height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

@media (min-width: 640px) {
  .rates__badge {
    display: inline-flex;
  }
}

.rates__badge--up {
  background: rgba(22, 163, 74, 0.8);
  border-color: #4ade80;
}

.rates__badge--down {
  background: rgba(220, 38, 38, 0.8);
  border-color: #f87171;
}

.rates__badge--flat {
  background: rgba(75, 85, 99, 0.8);
  border-color: #9ca3af;
}

.rates__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .rates__arrow {
    display: none;
  }
}

.rates__arrow--up {
  color: #22c55e;
}

.rates__arrow--down {
  color: #ef4444;
}

.rates__arrow--flat {
  color: #9ca3af;
}

.rates__footnote {
  margin-top: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: #dcdcdc;
  text-align: center;
}

@media (min-width: 640px) {
  .rates__footnote {
    margin-top: 20px;
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .rates__footnote {
    font-size: 24px;
  }
}

.content-main {
  position: relative;
  padding: 40px 16px;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 10;
}

@media (min-width: 640px) {
  .content-main {
    padding: 56px 24px;
  }
}

@media (min-width: 1024px) {
  .content-main {
    padding: 80px 120px;
  }
}

.content-main__inner {
  max-width: 896px;
  margin: 0 auto;
}

.content-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 24px;
}

@media (min-width: 640px) {
  .content-title {
    font-size: 46px;
  }
}

@media (min-width: 1024px) {
  .content-title {
    font-size: 58px;
  }
}

.content-body {
  margin-top: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #dcdcdc;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .content-body {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .content-body {
    font-size: 20px;
  }
}
