/*=====================================*/
/*-------------- DEFAULT --------------*/
/*=====================================*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}

/*=====================================*/
/*--------------- GLOBAL --------------*/
/*=====================================*/

html {scroll-behavior: smooth;}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  line-height: 1.5;
  background-color: var(--switch-color-light);
  animation: fadeInPage 0.4s ease forwards;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: none;
}

/*----------- ROOT VARIABLES ----------*/

:root {
  /* -- fixed -- */
  --color-primary: #1d232d;
  --color-secondary: #044EE3;
  --color-quaternary: #1661f7;
  --color-tertiary: #333E51;
  --color-quinary: #f6f5f4;
  --color-senary: #f6f5f3;
  --color-septenary: #0087ff;
  --color-octonary: #f2eee6;
  --color-nonary: #3d4d66;

  /* -- light theme -- */
  --switch-btn-black: var(--color-primary);
  --switch-btn-black-hover: var(--color-tertiary);
  --switch-btn-black-active: var(--color-primary);

  --switch-btn-blue: var(--color-secondary);
  --switch-btn-blue-hover: var(--color-quaternary);
  --switch-btn-blue-active: var(--color-secondary);

  --switch-btn-light: #ebebeb;
  --switch-btn-light-border: #e4e4e4;
  --switch-btn-light-hover: #d9d9d9;
  --switch-btn-light-active: #d6d6d6;

  --switch-btn-grey: #e2e2e2;
  --switch-btn-grey-hover: #d9dfeb;

  --switch-color-black: #1d232d;
  --switch-color-blue: #044EE3;
  --switch-color-blue-hover: #1661f7;
  --switch-color-light: #f6f5f4;
  --switch-color-grey: #8d949d;
  --switch-color-white: #fff;
  --switch-color-search: #ebebeb;
  --switch-border-color-light: #e5e7eb;
  --switch-color-tags: #f3e5c1;
  --switch-color-tags-filter: #e5e7eb;

  --switch-header-bg: #fff;

  --switch-menu-toggle: var(--color-primary);

  --switch-card-unlimited: #f4ecd8;
  --switch-card-days-unlimited: #fffbf0;
  
  --switch-color-tariff-detail: #f1f0ec;
}

/* -- dark theme -- */
[data-theme="dark"] {
  --switch-color-black: #f6f5f4;
  --switch-color-black-hover: #1661f7;
  --switch-color-blue: #4A8DFF;
  --switch-color-blue-hover: #8BB8FF;
  --switch-color-light: #1d232d;
  --switch-color-grey: #3d4d66;
  --switch-color-white: #29374F;
  --switch-color-tab: #1d232d;
  --switch-color-search: #34486b;
  --switch-border-color-light: #39588d;
  --switch-color-tags: #426198;
  --switch-color-tags-filter: #425982;

  --switch-btn-black: var(--color-quinary);
  --switch-btn-black-hover: var(--color-septenary);
  --switch-btn-black-active: var(--color-quinary);

  --switch-btn-blue: var(--color-quaternary);
  --switch-btn-blue-hover: var(--color-septenary);
  --switch-btn-blue-active: var(--color-quaternary);

  --switch-btn-light: var(--color-nonary);
  --switch-btn-light-border: var(--color-nonary);
  --switch-btn-light-hover: #34486b;
  --switch-btn-light-active: var(--color-nonary);

  --switch-btn-grey: #485e84;
  --switch-btn-grey-hover: #426198;

  --switch-header-bg: #3d4d66;

  --switch-menu-toggle: #29374f;

  --switch-card-unlimited: #426198;
  --switch-card-days-unlimited: #607fb5;

  --switch-color-tariff-detail: #3d5379;
}

/*----------- TYPOGRAPHY ----------*/

h1 {
  font-size: 40px;
  line-height: 1.2;
}

p {
  font-size: 16px;
  font-weight: 300;
  margin: 10px 0;
}

/*------------ LAYOUT -----------*/

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.page-content {
  width: 100%;
  max-width: 1280px;
  /* background-color: var(--switch-color-white); */
  border-radius: 30px;
  z-index: 1;
  /* padding: 40px; */
}

/*------------- FLEX -------------*/

.row-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.column-flex {
  display: flex;
  flex-direction: column;
}

.row-flex-align-items-center {align-items: center;}

.flex-gap-20 {gap: 20px;}

.flex-gap-40 {gap: 40px;}

.flex-gap-60 {gap: 60px;}

.justify-content-space-between {justify-content: space-between;}

.justify-content-center {justify-content: center;}

.flex-wrap-nowrap {flex-wrap: nowrap;}

.align-items-center {align-items: center;}

.align-items-stretch {align-items: stretch;}

/*----------- BUTTONS -----------*/

button {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  cursor: pointer;
  border-radius: 15px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button-dark {
  background-color: var(--switch-btn-black);
  color: var(--switch-color-white);
}

.button-dark:hover {
  background-color: var(--switch-btn-black-hover);
  color: var(--color-quinary);
}

.button-blue {
  background-color: var(--switch-btn-blue);
  color: var(--color-quinary);
}

.button-blue:hover {
  background-color: var(--switch-btn-blue-hover);
  color: var(--color-quinary);
}

.button-light {
  background-color: var(--switch-btn-light);
  color: var(--switch-color-black);
}

.button-light:hover {
  background-color: var(--switch-btn-light-hover);
  color: var(--switch-color-black);
}

/*----------- INPUTS -----------*/

input {
  border: none;
  outline: none;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  background: var(--color-quinary);
  color: var(--color-tertiary);
  height: 100%;
  align-self: stretch;
  border-radius: 15px;
}


/*--------- NOTIFICATIONS ---------*/

   .global-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--switch-color-black);
    color: var(--switch-color-white);
    padding: 14px 32px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    max-width: 90%;
    text-align: center;
    pointer-events: none;
    white-space: nowrap;
}

.global-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

[data-theme="dark"] .global-notification {
    background: var(--switch-color-white);
    color: var(--switch-color-black);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}


/*----------- HEADER -----------*/

.header {
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--switch-header-bg);
  border-radius: 30px;
  margin: 20px 0 40px 0;
}

.header_left a {display: flex;}

.header div {align-content: center;}

.header_right {gap: 40px;}

.header_btn {
  gap: 20px;
  align-content: center;
}

/*----------- NAVIGATION -----------*/

.site-nav {gap: 40px;}

.site-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 40px;
  color: var(--switch-color-black);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav li {transition: color 0.3s ease;}

.site-nav li:hover {color: var(--switch-color-blue);}

.user-nav {
  position: relative;
  padding-left: 40px;
}

.user-nav::before {
  content: '';
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #ccc;
}

/*----------- LOGO -----------*/

.logo .logo-dark {display: none;}

[data-theme="dark"] .logo .logo-light {display: none;}

[data-theme="dark"] .logo .logo-dark {display: block;}

/*------ TOGGLE SWITCH -----*/

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {display: none;}

.switch-toggle {
  position: absolute;
  inset: 0;
  background-color: #29374f;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.switch-toggle::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background-color: #f6f5f5;
  background-image: url("/src/assets/icons/moon-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked+.switch-toggle {background-color: #e2e2e2;}

.switch input:checked+.switch-toggle::before {
  transform: translateX(24px);
  background-image: url("/src/assets/icons/sun-icon.svg");
}

/*-------- USER BUTTONS --------*/

.wallet-btn,
.user-btn {
  color: var(--switch-color-grey);
}

.wallet-btn path,
.user-btn path {
  color: #f6f5f4;
}

button.user-btn,
button.wallet-btn {
  padding: 0;
  background-color: transparent;
}

.auth-user {display: none;}

body.logged-in .auth-guest {display: none;}

body.logged-in .auth-user {display: inline-block;}

/*----------- MOBILE MENU -----------*/

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--color-primary);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 35px 15px 30px 20px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.open {right: 0;}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.mobile-menu-close {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--color-quinary);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.mobile-menu-content .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content .nav-list li {margin-bottom: 20px;}

.mobile-menu-content .nav-list li a {
  color: var(--color-quinary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 10px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-content .nav-list li a:hover {color: var(--color-quaternary);}

.mobile-menu-content .mobile-rate-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-content .mobile-rate-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
}

.mobile-menu-content .rate-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.mobile-menu-content .rate-indicator {
  position: relative;
  top: auto;
  right: auto;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #4a8dff;
  border-radius: 50%;
  display: none;
  animation: ratePulse 2s ease-in-out infinite;
  margin-left: 2px;
}

.mobile-menu-content .rate-indicator.active {display: inline-block;}

.mobile-menu-content .rate-indicator::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #4a8dff;
  opacity: 0;
  animation: rateRipple 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ratePulse {
  0%, 100% {
      transform: scale(0.85);
      opacity: 0.7;
  }
  50% {
      transform: scale(1.15);
      opacity: 1;
  }
}

@keyframes rateRipple {
  0% {
      opacity: 0.6;
      transform: scale(0.95);
      border-width: 2px;
  }
  100% {
      opacity: 0;
      transform: scale(1.3);
      border-width: 1px;
  }
}

.mobile-menu-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-full-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

.mobile-full-btn.button-dark {
  background: var(--color-tertiary);
  color: var(--color-quinary);
}

.mobile-full-btn.button-dark:hover {background: var(--color-quaternary);}

.mobile-full-btn.button-blue {
  background: var(--color-secondary);
  color: var(--color-quinary);
}

.mobile-full-btn.button-blue:hover {background: var(--color-quaternary);}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--switch-menu-toggle);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background-color .25s ease;
}

.menu-toggle img {
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

body.menu-open {overflow: hidden;}



/* ----------- FOOTER ------------*/

.footer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 20px;
  background: transparent;
  color: var(--switch-color-black);
  flex-shrink: 0;
  transition: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.footer-nav {width: 100%;}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.footer-nav-list li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.footer-nav-list li a {
  color: var(--switch-color-black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
  padding: 4px 0;
  display: inline-block;
  white-space: nowrap;
}

.footer-nav-list li a:hover {color: var(--switch-color-blue);}

.footer-info {width: 100%;}

.footer-legal {
  font-size: 13px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.5;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  width: 100%;
  justify-content: center;
}

.footer-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.footer-link:hover {
  opacity: 1;
  color: var(--switch-color-blue);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.4;
  margin: 0;
  text-align: center;
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
}

.footer-payments-icon {
  display: block;
  height: 10px;
  width: auto;
  opacity: 0.7;
}

[data-theme="dark"]  {
  .footer-payments-icon {opacity: 0.3;}
}

body.has-footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.has-footer .container {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

body.has-footer .footer {margin-top: auto;}

/*=====================================*/
/*------------ INDEX.HTML -------------*/
/*=====================================*/

.promo {
  position: relative;
  overflow: hidden;
  align-content: center;
  border-radius: 30px;
  height: 450px;
  padding: 60px 40px;
  background:
    url('/src/assets/images/promo-bg-light.svg') center/cover no-repeat,
    linear-gradient(180deg, #DEDEDE 0%, #ebebeb 100% 100%);
}

[data-theme="dark"] .promo {
  background:
    url('/src/assets/images/promo-bg-dark.svg') center/cover no-repeat,
    linear-gradient(180deg, #29374F 0%, #324668 100% 100%);
}

.promo-content {
  color: var(--switch-color-black);
  gap: 20px;
}

.promo-content p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.promo-content button {
  margin-top: 20px;
  width: fit-content;
}

.promo-dots {
  position: absolute;
  right: 0;
  top: 10px;
  width: 40%;
  height: calc(100% - 20px);
  z-index: 10;
  pointer-events: none;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background-color: #1661f7;
  box-shadow: 0 0 8px rgba(0, 160, 239, 0.2);
  transition: background-color 0.3s ease;
  animation: dotPulse 2s ease-in-out infinite;
}

.dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #1661f7;
  opacity: 0;
  animation: ripple 2s ease-out infinite;
  pointer-events: none;
}

[data-theme="dark"] .dot {
  background-color: #4DC9FF;
  box-shadow: 0 0 12px rgba(0, 160, 239, 0.5);
}

[data-theme="dark"] .dot::before {
  border-color: #4DC9FF;
}

.dot-1 {
  top: 3%;
  right: 10%;
  width: 8px;
  height: 8px;
  animation-delay: 0s;
}

.dot-1::before {animation-delay: 0s;}

.dot-2 {
  top: 12%;
  right: 45%;
  width: 6px;
  height: 6px;
  animation-delay: 0.4s;
}

.dot-2::before {animation-delay: 0.4s;}

.dot-3 {
  top: 32%;
  right: 8%;
  width: 10px;
  height: 10px;
  animation-delay: 0.8s;
}

.dot-3::before {animation-delay: 0.8s;}

.dot-4 {
  top: 50%;
  right: 15%;
  width: 8px;
  height: 8px;
  animation-delay: 1.2s;
}

.dot-4::before {animation-delay: 1.2s;}

.dot-5 {
  top: 72%;
  right: 12%;
  width: 7px;
  height: 7px;
  animation-delay: 1.6s;
}

.dot-5::before {animation-delay: 1.6s;}

.dot-6 {
  top: 90%;
  right: 20%;
  width: 9px;
  height: 9px;
  animation-delay: 2.0s;
}

.dot-6::before {animation-delay: 2.0s;}

@keyframes fadeInPage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
    border-width: 2px;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
    border-width: 1px;
  }
}

@keyframes tagAppear {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/*----------- MULTISEARCH -----------*/

.country-multisearch-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding: 40px;
  /* background: var(--switch-color-search); */
  background: linear-gradient(0deg, #29374F 0%, #324668 100% 100%);
  border-radius: 30px;
}

.country-multisearch-wrapper::after {
  content: "ПОИСК";
  position: absolute;
  top: 13px;
  left: 0;
  height: 24px;
  background: #ffab00;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  z-index: 1;
  white-space: nowrap;
  transform: translateY(-100%);
}

.search-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.search-tags-container {
  flex: 1;
  min-width: 0;
  position: relative;
}

.search-tags-container .country-search-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--switch-color-grey);
  border-radius: 15px;
  outline: none;
  transition: border-color 0.3s ease;
  height: 50px;
}

.search-tags-container .country-search-input:focus {border-color: var(--color-secondary);}

.search-tags-container .country-search-input::placeholder {
  color: #333E51;
  transition: opacity 0.3s ease;
}

.search-tags-container .country-search-input:focus::placeholder {opacity: 0.5;}

.country-multisearch-wrapper .button-blue {
  flex-shrink: 0;
  white-space: nowrap;
  height: 50px;
  padding: 0 32px;
}

/*----------- SEARCH SUGGESTIONS -----------*/

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--color-quinary);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  padding: 8px 0;
}

.search-suggestions.active {display: block;}

.search-suggestion-item {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 14px;
  color: var(--color-tertiary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-suggestion-item:hover {background: var(--color-quinary);}

.search-suggestion-item .suggestion-flag {font-size: 20px;}

.search-suggestion-item .suggestion-name {font-weight: 500;}

.search-suggestion-item .suggestion-match {
  color: var(--color-secondary);
  font-weight: 600;
}

.search-tags-wrapper {width: 100%;}

.search-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.search-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 14px;
  background: var(--switch-color-tags);
  color: var(--switch-color-black);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  animation: tagAppear 0.2s ease;
}

.search-tag .tag-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--switch-color-black);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
  line-height: 1.1;
  margin-top: 1px;
}

.search-tag .tag-remove:hover {background: rgba(255, 255, 255, 0.4);}

.search-flag {
  display: inline-block;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  flex-shrink: 0;
}

.fi {border-radius: 6px;}

.search-flag.fi-1x1 {
  width: 20px;
  height: 20px;
}

.search-suggestion-item .search-flag {
  width: 28px;
  height: 21px;
}

.search-suggestion-item .search-flag.fi-1x1 {
  width: 24px;
  height: 24px;
}

.search-tag .search-flag {
  width: 20px;
  height: 15px;
}

.search-tag .search-flag.fi-1x1 {
  width: 18px;
  height: 18px;
}

.search-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-quinary);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  z-index: 9999;
  animation: fadeInUp 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  text-align: center;
}

.directions-section {padding: 80px 40px;}

.directions-header {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.directions-header .section-title {margin-bottom: 0;}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--switch-color-black);
  text-align: left;
}

.tabs-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
}

.tabs-wrapper::-webkit-scrollbar {display: none;}

.tabs-container {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: max-content;
  padding-bottom: 5px;
}

.tab-btn {flex-shrink: 0;}

.tab-btn {
  padding: 10px 30px;
  background: var(--switch-btn-light);
  border: 1px solid var(--switch-btn-light-border);
  color: var(--switch-color-black);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn:hover {background: var(--switch-btn-light-hover);}

.tab-btn.active {
  background: var(--switch-btn-black);
  border: 1px solid var(--switch-color-black);
  color: var(--switch-color-white);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.direction-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--switch-color-search);
  border-radius: 14px;
  border: 1px solid var(--switch-border-color-light);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--switch-color-black);
}

.direction-card:hover {
  border-color: var(--switch-color-blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.direction-flag {
  display: block;
  font-size: 32px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

.direction-icon-fallback {
  font-size: 24px;
  line-height: 1;
}

.global-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.direction-info {
  flex: 1;
  min-width: 0;
}

.direction-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.direction-description {
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.5;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.direction-arrow {
  font-size: 26px;
  color: var(--switch-color-black);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.direction-card:hover .direction-arrow {
  color: var(--switch-color-blue-hover);
  transform: translateX(4px);
}

.directions-load-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 10px 0;
}

.load-more-btn:active {transform: translateY(0);}

.load-more-btn.hidden {display: none;}

.load-more-btn .count {
  font-weight: 300;
  opacity: 0.7;
}

.alphabet-filter-wrapper {display: none;}

.alphabet-filter-wrapper.visible {display: block;}

.alphabet-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--switch-color-black);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Geist', sans-serif;
}

.alphabet-toggle .toggle-arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  font-size: 20px;
}

.alphabet-toggle.open .toggle-arrow {transform: rotate(270deg);}

.alphabet-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.alphabet-container.open {
  max-height: 300px;
  padding: 15px 0 0 0;
}

.alphabet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: #044ee30a;
  border: 1px solid #007bff14;
  border-radius: 12px;
}

.alphabet-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #007BFF;
  border: 1px solid #007BFF;
  user-select: none;
}

.alphabet-letter:hover:not(.disabled) {
  background: #007BFF;
  color: white;
}

.alphabet-letter.active {
  background: #007BFF;
  color: white;
}

.alphabet-letter.disabled {
  background: #a2c7ff29;
  color: #55a7ffc4;
  border-color: #4783dd57;
  cursor: not-allowed;
  opacity: 0.5;
}

.alphabet-all {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #007BFF;
  color: var(--color-quinary);
  border: 1px solid #007BFF;
  user-select: none;
}

.alphabet-all:hover {
  background: #005bff;
  border-color: #005bff;
}

.alphabet-all.active {
  background: #007BFF;
  border-color: #007BFF;
}

.loading-spinner {
  width: 100%;
  text-align: center;
  padding: 40px;
  color: var(--switch-color-black);
  font-size: 16px;
}

/*=====================================*/
/*-------- TARIFF-CATALOG.HTML --------*/
/*=====================================*/

.catalog-results-header p {
  color: var(--switch-btn-black);
  font-size: 15px;
  font-weight: 500;
}

.catalog-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  line-height: 1.5;
}

.route-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.route-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 10px;
  background: var(--switch-color-tags-filter);
  color: var(--switch-color-black);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.route-tag .direction-flag {
  font-size: 18px;
  width: auto;
  height: auto;
}

.route-tag .fi {font-size: 18px;}

.route-tag .direction-icon-fallback {font-size: 18px;}

.catalog-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tariff-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px;
  background: var(--switch-color-search);
  border-radius: 14px;
  border: 1px solid var(--switch-border-color-light);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--switch-color-black);
  min-height: 130px;
  justify-content: space-between;
}

.tariff-card:hover {
  border-color: var(--switch-color-blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tariff-card-row-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  padding-left: 0;
  margin-top: 2px;
  min-width: 0;
  width: 100%;
}

.tariff-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--switch-color-black);
  min-width: 0;
}

.tariff-card-meta-countries {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.tariff-card-meta-countries .tariff-card-meta-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  cursor: help;
}

.tariff-card-meta-item:last-child {flex-shrink: 0;}

.tariff-card-meta-label {
  font-weight: 400;
  flex-shrink: 0;
}

.tariff-card-meta-value {
  font-weight: 500;
  min-width: 0;
}

.tariff-card-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.tariff-card-row-header {gap: 12px;}

.tariff-card-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tariff-card-flag .direction-flag {
  font-size: 32px;
  width: 26px;
  height: auto;
}

.route-tag .direction-flag {
  font-size: 16px;
  width: 16px;
  height: auto;
}

.tariff-card-flag .global-icon {
  width: 20px;
  height: 20px;
}

.tariff-card-flag .direction-icon-fallback {font-size: 36px;}

.tariff-card-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  line-height: 1.3;
}

.tariff-card-column-header {
  display: flex;
  flex-direction: column;
  gap:10px;
}

.tariff-card-row-meta {
  gap: 24px;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 2px;
}

.tariff-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--switch-color-black);
}

.tariff-card-meta-label {
  font-weight: 400;
  opacity: 0.5;
}

.tariff-card-meta-value {font-weight: 500;}

.tariff-card-row-footer {
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.tariff-card-row-footer-left {gap: 10px;}

.tariff-card-gb-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-quinary);
  background: var(--switch-color-blue);
  padding: 5px 10px;
  border-radius: 10px;
}

.tariff-card-days-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--switch-color-black);
  background: var(--switch-border-color-light);
  padding: 5px 10px;
  border-radius: 10px;
}

.tariff-card-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tariff-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--switch-color-black);
  white-space: nowrap;
}

.tariff-card-arrow {
  font-size: 20px;
  color: var(--switch-color-black);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.tariff-card:hover .tariff-card-arrow {
  opacity: 1;
  color: var(--switch-color-blue);
  transform: translateX(2px);
}

.tariff-card-unlimited {
  position: relative;
  overflow: visible;
  background: var(--switch-card-unlimited); 
}

.tariff-card-unlimited::after {
  content: "Безлимит";
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 4px 10px;
  background: #ffca3a;
  color: #1d232d;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  z-index: 2;
  white-space: nowrap;
}

.tariff-card-unlimited .tariff-card-days-value {
  background: var(--switch-card-days-unlimited);
}

.tariff-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.tariff-card-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.tariff-card-network {
  color: #dad8d3;
  font-weight: 500;
  font-size: 14px;
  opacity: 1;
}

[data-theme="dark"] {
  .tariff-card-network {
    color: #6688c4;
  }
}

.sorting-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.sort-select {
  padding: 8px 36px 8px 16px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  font-weight: 400;
  color: var(--switch-color-black);
  background: var(--switch-color-white);
  border: 1px solid var(--switch-border-color-light);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  appearance: none;
  width: 100%;
}

.sort-select:focus {border-color: var(--switch-color-blue);}

.sort-select option {
  background: var(--switch-color-white);
  color: var(--switch-color-black);
}

.sorting-panel::after {
  content: "›";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 20px;
  color: var(--switch-color-black);
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.page-content-header {
  gap: 20px;
  padding-top: 20px;
  min-height: 150px;
}

.catalog-section {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 20px;
  min-height: 500px;
}

.catalog-filters {
  flex: 0 0 280px;
  min-width: 280px;
}

.catalog-filters-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 22px;
  background: var(--switch-color-search);
  border-radius: 16px;
  border: 1px solid var(--switch-border-color-light);
  min-height: 300px;
}

.catalog-results {
  flex: 1;
  min-width: 0;
}

.catalog-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-item {
  padding: 20px;
  background: var(--switch-color-search);
  border-radius: 14px;
  border: 1px solid var(--switch-border-color-light);
  min-height: 120px;
}

.filters-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin-bottom: 10px;
}

.country-filter-wrapper {width: 100%;}

.filter-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--switch-color-black);
  margin-bottom: 10px;
  opacity: 0.7;
}

.country-filter-search-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.country-filter-input-container {
  flex: 1;
  position: relative;
  min-width: 0;
}

.country-filter-input {
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'Onest', sans-serif;
  background: var(--switch-color-white);
  color: var(--switch-color-black);
  border: 1px solid var(--switch-border-color-light);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease;
  height: 44px;
}

.country-filter-input:focus {border-color: var(--switch-color-blue);}

.country-filter-input::placeholder {
  color: var(--switch-color-black);
  opacity: 0.4;
}

.country-filter-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--switch-color-white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  padding: 4px 0;
}

.country-filter-suggestions.active {display: block;}

.country-filter-suggestion-item {
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 14px;
  color: var(--switch-color-black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-filter-suggestion-item:hover {
  background: var(--switch-color-search);
}

.country-filter-suggestion-item .search-flag {
  font-size: 20px;
  width: 28px;
  height: 21px;
}

.country-filter-suggestion-name {font-weight: 400;}

.country-filter-suggestion-match {
  color: var(--switch-color-blue);
  font-weight: 600;
}

.country-filter-tags-wrapper {
  margin-top: 10px;
  min-height: 0;
}

.country-filter-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.country-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 14px;
  background: var(--switch-color-tags);
  color: var(--switch-color-black);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.country-filter-tag .search-flag {
  width: 18px;
  height: 18px;
}

.country-filter-tag-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--switch-color-black);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
  line-height: 1.1;
  margin-top: 1px;
}

.country-filter-tag-remove:hover {background: rgba(255, 255, 255, 0.4);}

.country-filter-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-quinary);
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 9999;
  animation: fadeInUp 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  text-align: center;
}

.global-icon-small {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.route-tag .global-icon-small {
  width: 16px;
  height: 16px;
}

.country-filter-tag .global-icon-small {
  width: 16px;
  height: 16px;
}

.country-filter-disabled {padding: 8px 0;}

.country-filter-disabled p {
  font-size: 14px;
  color: var(--switch-color-black);
  opacity: 0.6;
  margin: 0;
}

.tariff-filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--switch-color-black);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select-wrapper {
  position: relative;
  width: 100%;
}

.filter-select {
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  background: var(--switch-color-white);
  color: var(--switch-color-black);
  border: 1px solid var(--switch-border-color-light);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease;
  cursor: pointer;
  width: 100%;
  appearance: none;
}

.filter-select:focus {border-color: var(--switch-color-blue);}

.filter-select option {
  background: var(--switch-color-white);
  color: var(--switch-color-black);
}

.filter-select-wrapper::after {
  content: "›";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 20px;
  color: var(--switch-color-black);
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.filter-select-wrapper:hover::after {color: var(--switch-color-blue);}

.filter-checkbox-wrapper {gap: 5px;}

.filter-checkbox-group {
  flex-direction: row;
  align-items: center;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--switch-color-black);
  cursor: pointer;
  user-select: none;
}

.filter-checkbox input[type="checkbox"] {display: none;}

.filter-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--switch-border-color-light);
  border-radius: 6px;
  background: var(--switch-color-white);
  transition: all 0.25s ease;
  flex-shrink: 0;
  position: relative;
}

.filter-checkbox input:checked + .filter-checkbox-custom {
  background: var(--switch-color-blue);
  border-color: var(--switch-color-blue);
}

.filter-checkbox input:checked + .filter-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.filter-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Onest', sans-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn-reset {
  background: var(--switch-color-search);
  color: var(--switch-color-black);
  border: 1px solid var(--switch-border-color-light);
}

.filter-btn-reset:hover {background: var(--switch-btn-light-hover);}

.filter-btn-apply {
  background: var(--switch-color-blue);
  color: white;
}

.filter-btn-apply:hover {background: var(--switch-color-blue-hover);}

/*=====================================*/
/*-------------- TARIFF.HT ------------*/
/*=====================================*/

.tariff-detail-page .page-content {padding: 40px;}

.tariff-detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tariff-detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  flex-wrap: wrap;
  margin-left: 40px;
}

.tariff-detail-breadcrumbs a {
  color: var(--switch-color-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tariff-detail-breadcrumbs a:hover {color: var(--switch-color-blue);}

.breadcrumb-separator {opacity: 0.3;}

.breadcrumb-current {
  font-weight: 500;
  opacity: 1;
}

.tariff-detail-country-icon {width: 18px;}

.tariff-detail-card {
  background: var(--switch-color-search);
  border-radius: 20px;
  border: 1px solid var(--switch-border-color-light);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tariff-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--switch-border-color-light);
}


.tariff-detail-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.tariff-detail-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
}

.tariff-detail-header-buttom {
  gap: 10px;
  align-items: center;
}

.tariff-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tariff-detail-icon .direction-flag {
  font-size: 40px;
  width: auto;
  height: auto;
}

.tariff-detail-icon .global-icon {
  width: 28px;
  height: 28px;
}

.tariff-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0;
  line-height: 1.2;
}

.tariff-detail-badge-unlimited {
  padding: 6px 14px;
  background: #ffca3a;
  color: #1d232d;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  white-space: nowrap;
}

.tariff-detail-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tariff-detail-country-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--switch-color-tags);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--switch-color-black);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tariff-detail-country-flag {
  font-size: 16px;
  width: 20px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
}

.tariff-detail-country-emoji {
  font-size: 16px;
  flex-shrink: 0;
}

.tariff-detail-country-tag-more {
  background: var(--switch-color-search);
  border-color: var(--switch-border-color-light);
  color: var(--switch-color-black);
  opacity: 0.7;
  cursor: default;
}

.tariff-detail-country-tag-more:hover {
  border-color: var(--switch-border-color-light);
  transform: none;
  box-shadow: none;
}

.rate-add-btn {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  cursor: pointer;
  border-radius: 15px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 8px;
  text-decoration: none;  
}

.tariff-detail-header-right {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.tariff-detail-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.tariff-detail-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--switch-color-black);
}

.tariff-detail-currency {
  font-size: 18px;
  font-weight: 500;
  color: var(--switch-color-black);
  opacity: 0.6;
}

.tariff-detail-buy-btn {
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.tariff-detail-rate-btn {
  background: var(--switch-btn-grey);
  color: var(--switch-color-black);
}

.tariff-detail-rate-btn:hover {
  background: var(--switch-btn-grey-hover);
  color: var(--switch-color-black);
}

.tariff-detail-header-right-bottons {gap: 10px;}

.tariff-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tariff-detail-specs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tariff-detail-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: stretch;
}

.tariff-detail-operators-btn {
  background: #4A8DFF !important;
  border-color: #4A8DFF !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.tariff-detail-operators-btn:hover {
  background: #3078f2 !important;
  border-color: #3a7ae0 !important;
}

.tariff-detail-operators-btn:active {transform: scale(0.98);}

.tariff-detail-operators-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-direction: row !important;
  padding: 4px 0;
}

.tariff-detail-operators-label {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px;
  opacity: 1 !important;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tariff-detail-operators-arrow {
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.tariff-detail-operators-btn:hover .tariff-detail-operators-arrow {transform: translateX(4px);}

.tariff-detail-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--switch-border-color-light);
  transition: border-color 0.2s ease;
}

[data-theme="dark"]  {
  .tariff-detail-spec-item {
    background: #426198;
}
}

.tariff-detail-spec-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.tariff-detail-spec-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tariff-detail-spec-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tariff-detail-spec-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--switch-color-black);
  word-break: break-word;
}

.tariff-detail-extra-attributes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--switch-color-white);
  border-radius: 12px;
  border: 1px solid var(--switch-border-color-light);
}

.tariff-detail-attribute {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.tariff-detail-attribute:not(:last-child) {border-bottom: 1px solid var(--switch-border-color-light);}

.tariff-detail-attribute-label {
  font-size: 14px;
  color: var(--switch-color-black);
  opacity: 0.6;
}

.tariff-detail-attribute-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--switch-color-black);
}

.tariff-detail-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tariff-detail-description-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0;
}

.tariff-detail-description-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--switch-color-black);
  opacity: 0.8;
  margin: 0;
}

.tariff-traffic-table {
  padding: 16px 20px;
  background: var(--switch-color-tariff-detail);
  border-radius: 12px;
  border: 1px solid var(--switch-border-color-light);
  height: stretch;
}

.tariff-traffic-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0 0 10px 0;
}

.tariff-traffic-table table {
  width: 100%;
  border-collapse: collapse;
}

.tariff-traffic-table tr {border-bottom: 1px solid var(--switch-border-color-light);}

.tariff-traffic-table tr:last-child {border-bottom: none;}

.tariff-traffic-table td {
  padding: 6px 4px;
  font-size: 14px;
  color: var(--switch-color-black);
}

.tariff-traffic-label {
  text-align: left;
  opacity: 0.7;
  font-weight: 400;
}

.tariff-traffic-value {
  text-align: right;
  font-weight: 500;
}

.tariff-detail-mobile-buy {
  display: none;
  padding-top: 20px;
  border-top: 1px solid var(--switch-border-color-light);
}

.tariff-detail-mobile-buy .tariff-detail-buy-btn {width: 100%;}

.tariff-detail-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.tariff-detail-error-icon {font-size: 64px;}

.tariff-detail-error h2 {
  font-size: 24px;
  color: var(--switch-color-black);
  margin: 0;
}

.tariff-detail-error p {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.6;
  margin: 0;
}

.tariff-detail-error a {
  margin-top: 8px;
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  cursor: pointer;
  border-radius: 15px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/*======================================*/
/*-------------- RATE.HTML --------------*/
/*======================================*/

.rate-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rate-indicator {
  display: none;
  width: 7px;
  height: 7px;
  background: #4a8dff;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -10px;
  transition: all 0.3s ease;
  animation: ratePulse 2s ease-in-out infinite;
  animation-delay: 0s;
}

.rate-indicator::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #4a8dff;
  opacity: 0;
  animation: rateRipple 2s ease-out infinite;
  pointer-events: none;
}

.rate-indicator.active {display: block;}


@keyframes ratePulse {
  0%, 100% {
      transform: scale(0.85);
      opacity: 0.7;
  }
  50% {
      transform: scale(1.15);
      opacity: 1;
  }
}

@keyframes rateRipple {
  0% {
      opacity: 0.6;
      transform: scale(0.95);
      border-width: 2px;
  }
  100% {
      opacity: 0;
      transform: scale(1.3);
      border-width: 1px;
  }
}

.rate-page .page-content {padding: 40px;}

.rate-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rate-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rate-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0;
}

.rate-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
  background: var(--switch-color-search);
  border-radius: 20px;
}

.rate-empty-icon {font-size: 64px;}

.rate-empty h2 {
  font-size: 24px;
  color: var(--switch-color-black);
  margin: 0;
}

.rate-empty p {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 1;
  margin: 0;
}

.rate-empty a {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  cursor: pointer;
  border-radius: 15px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 8px;
  text-decoration: none;
}

.rate-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rate-table-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.rate-clear-btn {
  padding: 8px 20px;
  font-size: 14px;
}

.rate-count {
  font-size: 14px;
  color: var(--switch-color-black);
  opacity: 0.6;
}

.rate-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--switch-border-color-light);
}

.rate-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}

.rate-table thead {background: var(--switch-color-search);}

.rate-table th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--switch-color-black);
  opacity: 0.7;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--switch-border-color-light);
  white-space: nowrap;
}

.rate-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--switch-border-color-light);
  color: var(--switch-color-black);
  vertical-align: middle;
  font-size: 14px;
}

.rate-table tbody tr:hover {background: var(--switch-color-search);}

.rate-table tbody tr:last-child td {border-bottom: none;}

.rate-cell-name-link {
  color: var(--switch-color-black);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-block;
}

.rate-cell-name-link:hover {
  color: var(--switch-color-blue);
  text-decoration: underline;
}

.rate-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--switch-color-black);
  white-space: nowrap;
}

.rate-col-action {
  white-space: nowrap;
  text-align: right;
  min-width: 100px;
}

.rate-remove-btn {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--switch-color-black);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.rate-remove-btn:hover {
  color: var(--switch-color-black);
  opacity: 1;
}

.rate-buy-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  margin-left: 4px;
  white-space: nowrap;
}

.tariff-detail-rate-btn.in-rate {
  background: var(--switch-color-tags);
  color: var(--switch-btn-black);
}

.tariff-detail-rate-btn.in-rate:hover {
  background: var(--switch-color-tags);
  color: var(--switch-btn-black);
}

/*========================================*/
/*-------------- POPUP СЕТИ --------------*/
/*========================================*/

.operators-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  inset: 0;
  overflow: hidden;
}

.operators-popup-overlay.active {
  display: flex;
  opacity: 1;
}

body.popup-open {
  overflow: hidden !important;
  padding-right: var(--scrollbar-width, 0px);
}

.operators-popup-overlay {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.operators-popup-overlay::-webkit-scrollbar {display: none;}

.operators-popup {
  background: var(--switch-color-white);
  border-radius: 24px;
  max-width: 560px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 36px 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.operators-popup-overlay.active .operators-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.operators-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--switch-border-color-light);
  margin-bottom: 20px;
}

.operators-popup-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0;
  line-height: 1.2;
}

.operators-popup-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--switch-color-search);
  color: var(--switch-color-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  padding: 0;
}

.operators-popup-close:hover {
  background: var(--switch-btn-light-hover);
  transform: rotate(90deg);
}

.operators-popup-close svg {
  width: 20px;
  height: 20px;
}

.operators-popup-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.operators-popup-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--switch-color-black);
  margin: 0;
  padding: 0;
}

.operators-popup-content {
  background: var(--switch-color-search);
  border-radius: 16px;
  padding: 32px 24px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--switch-border-color-light);
}

.operators-popup-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

/*======================================*/
/*-------------- FAQ.HTML --------------*/
/*======================================*/

.faq-page .page-content {padding: 40px;}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80%;
}

.faq-item {
  border: 1px solid var(--switch-border-color-light);
  border-radius: 14px;
  background: var(--switch-color-white);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: var(--switch-color-blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item.open {
  border-color: var(--switch-color-blue);
  box-shadow: 0 4px 16px rgba(74, 141, 255, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
  background: var(--switch-color-search);
  transition: all 0.25s ease;
}

.faq-question:hover {
  background: var(--switch-color-search);
  border-color: var(--switch-color-blue);
}

.faq-item.open .faq-question {background: var(--switch-color-search);}

.faq-question-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--switch-color-black);
  line-height: 1.4;
  flex: 1;
}

.faq-arrow {
  font-size: 24px;
  font-weight: 300;
  color: var(--switch-color-black);
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  transform: rotate(0deg);
}

.faq-item:hover .faq-arrow {opacity: 0.7;}

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
  opacity: 1;
  color: var(--switch-color-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {max-height: 2000px;}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--switch-color-black);
}

.faq-answer-content p {margin: 0 0 12px 0;}

.faq-answer-content p:last-child {margin-bottom: 0;}

.faq-answer-content code {
  background: var(--switch-color-search);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--switch-color-black);
}

.faq-answer-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}

.faq-answer-content table th,
.faq-answer-content table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--switch-border-color-light);
}

.faq-answer-content table th {
  background: var(--switch-color-search);
  font-weight: 600;
  color: var(--switch-color-black);
}

.faq-answer-content table td {color: var(--switch-color-black);}

.faq-answer-content table tr:last-child td {border-bottom: 1px solid var(--switch-border-color-light);}

/*=========================================*/
/*-------------- FABOUT.HTML --------------*/
/*=========================================*/

.about-page .page-content {padding: 40px;}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.about-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hero-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--switch-color-black);
  line-height: 1.2;
  margin: 0;
  padding-top: 20px;
}

.about-hero-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--switch-color-black);
  line-height: 1.5;
  margin: 0;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0;
}

.about-section-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  line-height: 1.5;
  margin: 0;
}

.about-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.about-grid-4 {grid-template-columns: repeat(2, 1fr);}

.about-card {
  border: 1px solid var(--switch-border-color-light);
  border-radius: 14px;
  padding: 24px 22px;
  background: var(--switch-color-search);
  transition: all 0.25s ease;
}

.about-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--switch-color-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.about-card-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.7;
  line-height: 1.5;
  margin: 0;
}

.about-card-reason {padding: 22px 22px;}

.about-card-reason .about-card-title {margin-bottom: 6px;}

.about-security-block {
  background: var(--switch-color-search);
  border-radius: 14px;
  padding: 28px 30px;
  border: 1px solid var(--switch-border-color-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-security-block .about-section-text {
  max-width: 100%;
  font-size: 15px;
}

.about-cta {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.about-cta-btn {
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.about-cta-btn:hover {
  background: var(--switch-btn-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 141, 255, 0.25);
}

/*===========================================*/
/*-------------- CHECKOUT.HTML --------------*/
/*===========================================*/

.checkout-page .page-content {
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.checkout-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.checkout-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0;
}

.checkout-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.checkout-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-tariff-card {
  border: 1px solid var(--switch-border-color-light);
  border-radius: 14px;
  background: var(--switch-color-search);
  padding: 20px 24px;
  transition: all 0.25s ease;
}

.checkout-tariff-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.checkout-tariff-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-tariff-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.checkout-tariff-icon .direction-flag {
  font-size: 28px;
  width: 32px;
  height: auto;
}

.checkout-tariff-icon .global-icon {
  width: 28px;
  height: 28px;
}

.checkout-tariff-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--switch-color-black);
}

.checkout-tariff-right {flex-shrink: 0;}

.checkout-tariff-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--switch-color-black);
}

.checkout-tariff-loading {
  text-align: center;
  color: var(--switch-color-black);
  opacity: 0.5;
  font-size: 14px;
}

.checkout-tariff-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.checkout-tariff-error p {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0;
}

.checkout-tariff-error a {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  cursor: pointer;
  border-radius: 15px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 8px;
  text-decoration: none; 
}

.checkout-attributes {
  border: 1px solid var(--switch-border-color-light);
  border-radius: 14px;
  background: var(--switch-color-white);
  padding: 20px 24px;
  transition: all 0.25s ease;
}

.checkout-attributes-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0 0 12px 0;
  padding: 20px 0;
}

.checkout-attributes-table table {
  width: 100%;
  border-collapse: collapse;
}

.checkout-attributes-table tr {border-bottom: 1px solid var(--switch-border-color-light);}

.checkout-attributes-table tr:last-child {border-bottom: none;}

.checkout-attributes-table td {
  padding: 10px 4px;
  font-size: 14px;
  color: var(--switch-color-black);
}

.checkout-attributes-label {
  text-align: left;
  opacity: 0.6;
  font-weight: 400;
}

.checkout-attributes-value {
  text-align: right;
  font-weight: 500;
}

.checkout-attributes-loading {
  text-align: center;
  color: var(--switch-color-black);
  opacity: 0.5;
  font-size: 14px;
}

.checkout-attributes-error {
  text-align: center;
  color: var(--switch-color-black);
  font-size: 14px;
  margin: 0;
}

.checkout-right {
  background: var(--switch-color-search);
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.checkout-form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0 0 4px 0;
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--switch-color-black);
}

.checkout-required {color: #e72121;}

.checkout-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-input-icon {
  position: absolute;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--switch-color-black);
  opacity: 0.4;
  pointer-events: none;
}

.checkout-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 15px;
  font-family: 'Onest', sans-serif;
  background: var(--switch-color-white);
  color: var(--switch-color-black);
  border: 1px solid var(--switch-border-color-light);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 48px;
}

.checkout-input:focus {
  border-color: var(--switch-color-blue);
  box-shadow: 0 0 0 3px rgba(74, 141, 255, 0.12);
}

.checkout-input::placeholder {
  color: var(--switch-color-black);
  opacity: 0.35;
}

.checkout-input-error {border-color: #e72121 !important;}

.checkout-input-error:focus {
  border-color: #e72121 !important;
  box-shadow: 0 0 0 3px rgba(231, 33, 33, 0.12) !important;
}

.checkout-form-group-error .checkout-input {border-color: #e72121;}

.checkout-form-group-error .checkout-input:focus {
  border-color: #e72121;
  box-shadow: 0 0 0 3px rgba(231, 33, 33, 0.12);
}

.checkout-hint {
  font-size: 13px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.5;
  margin: 4px 0 0 0;
}

.checkout-error {
  font-size: 13px;
  font-weight: 400;
  color: #e72121;
  margin: 0;
  min-height: 20px;
}

.checkout-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-checkbox-group-error .checkout-checkbox-custom {border-color: #e72121 !important;}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  line-height: 1.5;
}

.checkout-checkbox input[type="checkbox"] {display: none;}

.checkout-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--switch-border-color-light);
  border-radius: 6px;
  background: var(--switch-color-white);
  transition: all 0.25s ease;
  position: relative;
}

.checkout-checkbox input:checked + .checkout-checkbox-custom {
  background: var(--switch-color-blue);
  border-color: var(--switch-color-blue);
}

.checkout-checkbox input:checked + .checkout-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkout-checkbox-text {
  flex: 1;
  line-height: 1.2;
}

.checkout-link {
  color: var(--switch-color-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.checkout-link:hover {
  color: var(--switch-color-blue-hover);
  text-decoration: underline;
}

.checkout-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.checkout-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.checkout-footer-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  opacity: 0.5;
  margin: 0;
}

.checkout-footer-text svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.checkout-tariff-name-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--switch-color-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.checkout-tariff-name-link:hover {
  color: var(--switch-color-blue);
  text-decoration: underline;
}

.checkout-account-fields {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 4px 0;
  border-top: 1px solid var(--switch-border-color-light);
  margin-top: 4px;
}

.checkout-password-toggle,
.checkout-password-generate {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--switch-color-black);
  opacity: 0.4;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-password-toggle:hover,
.checkout-password-generate:hover {opacity: 0.8;}

.checkout-password-generate {right: 40px;}

.checkout-password-toggle svg,
.checkout-password-generate svg {display: block;}

.checkout-password-strength {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  min-height: 20px;
}

.password-strength-bar {
  flex: 1;
  height: 4px;
  background: var(--switch-border-color-light);
  border-radius: 4px;
  overflow: hidden;
  max-width: 200px;
}

.password-strength-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease, background 0.3s ease;
}

.password-strength-label {
  font-size: 12px;
  font-weight: 500;
}

/*========================================*/
/*-------------- LOGIN.HTML --------------*/
/*========================================*/

.login-page {
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.login-logo {
  display: flex;
  justify-content: center;
}

.login-logo .logo {display: block;}

.login-logo img {max-width: 120px;}

.login-logo .logo .logo-dark {display: none;}

[data-theme="dark"] .login-logo .logo .logo-light {
  display: none;
}

[data-theme="dark"] .login-logo .logo .logo-dark {
  display: block;
}

.login-form-wrapper {
  width: 100%;
  background: var(--switch-color-white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--switch-border-color-light);
}

.login-form-container {display: block;}

.login-form-container.hidden {display: none;}

.login-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0 0 24px 0;
  text-align: left;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--switch-color-black);
}

.login-required {color: #e72121;}

.login-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-input-icon {
  position: absolute;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--switch-color-black);
  opacity: 0.4;
  pointer-events: none;
}

.login-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 15px;
  font-family: 'Onest', sans-serif;
  background: var(--switch-color-white);
  color: var(--switch-color-black);
  border: 1px solid var(--switch-border-color-light);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 48px;
}

.login-input:focus {
  border-color: var(--switch-color-blue);
  box-shadow: 0 0 0 3px rgba(74, 141, 255, 0.12);
}

.login-input::placeholder {
  color: var(--switch-color-black);
  opacity: 0.35;
}

.login-input-error {border-color: #e72121 !important;}

.login-input-error:focus {
  border-color: #e72121 !important;
  box-shadow: 0 0 0 3px rgba(231, 33, 33, 0.12) !important;
}

.login-form-group-error .login-input {border-color: #e72121;}

.login-form-group-error .login-input:focus {
  border-color: #e72121;
  box-shadow: 0 0 0 3px rgba(231, 33, 33, 0.12);
}

.login-error {
  font-size: 13px;
  font-weight: 400;
  color: #e72121;
  margin: 0;
  min-height: 20px;
}

.login-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--switch-color-black);
  opacity: 0.4;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-password-toggle:hover {opacity: 0.8;}

.login-password-toggle svg {display: block;}

.login-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.login-switch {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--switch-border-color-light);
}

.login-switch-btn {
  background: transparent;
  border: none;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
  font-family: 'Onest', sans-serif;
}

.login-switch-btn:hover {
  opacity: 1;
  color: var(--switch-color-blue);
}

.login-back {
  display: flex;
  justify-content: center;
  width: 100%;
}

.login-back-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.login-back-link:hover {color: var(--switch-color-blue);}

/*==========================================*/
/*-------------- ACCOUNT.HTML --------------*/
/*==========================================*/

.account-page .page-content {padding: 40px;}

.account-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.account-sidebar {
  flex: 0 0 240px;
  min-width: 200px;
}

.account-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--switch-color-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  opacity: 0.6;
}

.account-nav-link:hover {
  background: var(--switch-color-search);
  opacity: 1;
}

.account-nav-link.active {
  background: var(--switch-color-search);
  opacity: 1;
  color: var(--switch-color-blue);
}

.account-nav-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.5;
}

.account-nav-link.active .account-nav-icon {opacity: 1;}

.account-main {
  flex: 1;
  min-width: 0;
}

.account-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.account-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0;
}

.account-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0;
}

.account-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--switch-color-search);
  border-radius: 16px;
  border: 1px solid var(--switch-border-color-light);
  gap: 12px;
}

.account-empty-icon {
  color: var(--switch-color-black);
  opacity: 0.2;
}

.account-empty-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0;
}

.account-empty-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0 0 8px 0;
  max-width: 400px;
}

.account-empty-btn {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Onest', sans-serif;
  cursor: pointer;
  border-radius: 15px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 8px;
  text-decoration: none;
}

.account-section {margin-bottom: 40px;}

.account-section:last-child {margin-bottom: 0;}

.account-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0 0 20px 0;
}

.account-profile-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.account-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.account-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--switch-color-black);
}

.account-required {color: #e72121;}

.account-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.account-input-icon {
  position: absolute;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--switch-color-black);
  opacity: 0.4;
  pointer-events: none;
}

.account-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 15px;
  font-family: 'Onest', sans-serif;
  background: var(--switch-color-white);
  color: var(--switch-color-black);
  border: 1px solid var(--switch-border-color-light);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 48px;
}

.account-input:focus {
  border-color: var(--switch-color-blue);
  box-shadow: 0 0 0 3px rgba(74, 141, 255, 0.12);
}

.account-input::placeholder {
  color: var(--switch-color-black);
  opacity: 0.35;
}

.account-input-error {border-color: #e72121 !important;}

.account-form-group-error .account-input {border-color: #e72121;}

.account-error {
  font-size: 13px;
  font-weight: 400;
  color: #e72121;
  margin: 0;
  min-height: 20px;
}

.account-submit-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 4px;
}

.account-password-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

.account-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--switch-color-black);
  color: var(--switch-color-white);
  padding: 14px 32px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  text-align: center;
  pointer-events: none;
}

.account-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-theme="dark"] .account-notification {
  background: var(--switch-color-white);
  color: var(--switch-color-black);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/*=========================================*/
/*-------------- LEGAL.PAGES --------------*/
/*=========================================*/

.legal-page .page-content {padding: 40px;}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.legal-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0;
  padding-top: 20px;
}

.legal-body, .legal-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--switch-color-black);
  line-height: 1.5;
}

.legal-body p {
  margin: 0 0 16px 0;
  font-weight: 400;
}

.legal-body p:last-child {margin-bottom: 0;}

.legal-subtitle {font-weight: 500;}

.legal-section-title {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.legal-section ul, .legal-section ol {
  padding: 0 0 0 20px;
  margin: 0;
}

.legal-section ol {
  margin-top: 10px;
}

/*====================================*/
/*-------------- COOKIE --------------*/
/*====================================*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--switch-color-white);
  border-top: 1px solid var(--switch-border-color-light);
  padding: 20px 40px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.cookie-banner.show {transform: translateY(0);}

.cookie-banner-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--switch-color-black);
  margin: 0 0 4px 0;
}

.cookie-banner-description {
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-link {
  color: var(--switch-color-blue);
  text-decoration: none;
  white-space: nowrap;
}

.cookie-banner-link:hover {text-decoration: underline;}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Onest', sans-serif;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--switch-color-blue);
  color: #fff;
}

.cookie-btn-primary:hover {background: var(--switch-color-blue-hover);}

.cookie-btn-secondary {
  background: var(--switch-color-search);
  color: var(--switch-color-black);
}

.cookie-btn-secondary:hover {background: var(--switch-btn-light-hover);}

.cookie-btn-outline {
  background: transparent;
  color: var(--switch-color-black);
  border: 1px solid var(--switch-border-color-light);
}

.cookie-btn-outline:hover {
  background: var(--switch-color-search);
  border-color: var(--switch-color-blue);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.active {opacity: 1;}

.cookie-modal {
  background: var(--switch-color-white);
  border-radius: 20px;
  max-width: 720px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 36px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.cookie-modal-overlay.active .cookie-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--switch-border-color-light);
  margin-bottom: 20px;
}

.cookie-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--switch-color-black);
  margin: 0;
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--switch-color-search);
  color: var(--switch-color-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}

.cookie-modal-close:hover {
  background: var(--switch-btn-light-hover);
  transform: rotate(90deg);
}

.cookie-modal-close svg {
  width: 20px;
  height: 20px;
}

.cookie-modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-modal-description {
  font-size: 14px;
  font-weight: 400;
  color: var(--switch-color-black);
  line-height: 1.6;
  margin: 0;
}

.cookie-modal-description strong {
  opacity: 1;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  border: 1px solid var(--switch-border-color-light);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.25s ease;
}

.cookie-option-required {background: var(--switch-color-search);}

.cookie-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-option-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: var(--switch-color-grey);
  padding: 2px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.cookie-option-required .cookie-option-badge {background: var(--switch-color-blue);}

.cookie-option-description {
  font-size: 13px;
  font-weight: 400;
  color: var(--switch-color-black);
  line-height: 1.5;
  margin: 8px 0 0 0;
  padding-left: 0;
}

.cookie-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--switch-color-black);
}

.cookie-checkbox input[type="checkbox"] {display: none;}

.cookie-checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--switch-border-color-light);
  border-radius: 5px;
  background: var(--switch-color-white);
  transition: all 0.25s ease;
  position: relative;
}

.cookie-checkbox input:checked + .cookie-checkbox-custom {
  background: var(--switch-color-blue);
  border-color: var(--switch-color-blue);
}

.cookie-checkbox input:checked + .cookie-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cookie-checkbox input:disabled + .cookie-checkbox-custom {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-checkbox-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--switch-color-black);
}

.cookie-modal-footer {
  display: flex;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--switch-border-color-light);
  margin-top: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}



/*======================================*/
/*-------------- ADAPTIVE --------------*/
/*======================================*/

/*----------- RESPONSIVE: 1240px -----------*/

@media (max-width: 1240px) {
  .promo {
    height: auto;
    padding: 60px 40px;
  }
}

/*----------- RESPONSIVE: 1195px -----------*/

@media (max-width: 1195px) {
  .site-nav {display: none;}
  .menu-toggle {display: flex;}
  .faq-list {width: 100%;}
}

/*----------- RESPONSIVE: 1080px -----------*/

@media (max-width: 1080px) {
  .catalog-section {
    flex-direction: column;
    gap: 20px;
  }
}

/*----------- RESPONSIVE: 1024px -----------*/

@media (max-width: 1024px) {

  .catalog-filters {
    flex: 0 0 240px;
    min-width: 240px;
  }


  .catalog-filters {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }

  .catalog-filters-content {
    min-height: auto;
    padding: 20px 10px;
  }

  .cookie-banner {padding: 16px 24px;}

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .cookie-banner-actions {justify-content: flex-end;}
  
  .account-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .account-main {width: 100%;}
  
  .account-sidebar {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }
  
  .account-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .account-nav-link {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .account-form-row {grid-template-columns: 1fr;}
  
  .account-profile-form {max-width: 100%;}
  
  .account-password-form {max-width: 100%;}
  
  .tariff-card-name {font-size: 16px;}
  
  .tariff-detail-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tariff-detail-card {padding: 30px;}
  
  .about-grid-4 {grid-template-columns: repeat(2, 1fr);}
  
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .checkout-page .page-content {max-width: 720px;} 
}

/*----------- RESPONSIVE: 985px -----------*/

@media (max-width: 985px) {
  .dot-3 {
    top: 35%;
    right: 5%;
  }
}

/*----------- RESPONSIVE: 770px -----------*/

@media (max-width: 770px) {
  .catalog-results-grid {grid-template-columns: 1fr !important;
  } 

  .page-content-header {min-height: 185px;}

  .catalog-section {margin-top: 0;}

}

/*----------- RESPONSIVE: 768px -----------*/

@media (max-width: 768px) {

  .load-more-btn {width: 100%;}

  .operators-popup {
    padding: 24px 20px 32px;
    max-width: 94%;
    border-radius: 20px;
  }
  
  .operators-popup-title {font-size: 20px;}
  
  .operators-popup-close {
    width: 36px;
    height: 36px;
  }
  
  .operators-popup-close svg {
    width: 18px;
    height: 18px;
  }
  
  .operators-popup-content {
    padding: 24px 16px;
    min-height: 100px;
  }
  
  .operators-popup-subtitle {font-size: 15px;}
  
  .cookie-modal {
    padding: 24px 20px 28px;
    max-width: 96%;
    border-radius: 16px;
  }
  
  .cookie-modal-title {font-size: 18px;}
  
  .cookie-option {padding: 14px 14px;}
  
  .cookie-option-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .cookie-modal-footer {flex-direction: column;}
  
  .cookie-modal-footer .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .rate-page .page-content {padding: 20px;}
  
  .rate-table {
    min-width: 550px;
    font-size: 13px;
  }
  
  .rate-table th,
  .rate-table td {padding: 10px 12px;}
  
  .rate-price {font-size: 14px;}
  
  .rate-buy-btn {
    padding: 4px 10px;
    font-size: 11px;
  }
  
  .rate-remove-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .rate-header h1 {font-size: 28px;}
  
  .rate-subtitle {font-size: 16px;}
  
  .rate-col-action {min-width: 80px;}
  
  .faq-page .page-content {padding: 20px;}
  
  .faq-question {padding: 14px 18px;}
  
  .faq-question-text {font-size: 15px;}
  
  .faq-arrow {font-size: 20px;}
  
  .faq-answer-content {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }
  
  .faq-subtitle {font-size: 16px;}
  
  .faq-answer-content table {font-size: 13px;}
  
  .faq-answer-content table th,
  .faq-answer-content table td {padding: 8px 10px;}
  
  .checkout-page .page-content {padding: 20px;}
  
  .checkout-title {font-size: 24px;}
  
  .checkout-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .checkout-tariff-card {padding: 16px 18px;}
  
  .checkout-tariff-name {font-size: 15px;}
  
  .checkout-tariff-price {font-size: 18px;}
  
  .checkout-form-title {font-size: 18px;}
  
  .checkout-input {
    height: 44px;
    font-size: 14px;
    padding: 10px 14px 10px 40px;
  }
  
  .checkout-input-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .checkout-submit-btn {
    padding: 14px;
    font-size: 16px;
  }
  
  .checkout-footer-text {font-size: 13px;}
  
  .checkout-attributes-table td {
    font-size: 13px;
    padding: 6px 2px;
  }
  
  .about-page .page-content {padding: 20px;}
  
  .about-content {gap: 40px;}
  
  .about-hero-title {font-size: 26px;}
  
  .about-hero-text {font-size: 16px;}
  
  .about-section-title {font-size: 20px;}
  
  .about-grid-4 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .about-card {padding: 18px 16px;}
  
  .about-security-block {padding: 20px 18px;}
  
  .about-cta-btn {
    padding: 14px 36px;
    font-size: 16px;
  }
  
  .tariff-detail-page .page-content {padding: 20px;}
  
  .tariff-detail-card {
    padding: 20px;
    gap: 20px;
  }
  
  .tariff-detail-header {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-bottom: 16px;
  }
  
  .tariff-detail-header-right {
    justify-content: space-between;
    width: 100%;
  }
  
  .tariff-detail-title-wrapper {gap: 14px;}
  
  .tariff-detail-title {font-size: 30px;}
  
  .tariff-detail-price {font-size: 26px;}
  
  .tariff-detail-currency {font-size: 16px;}
  
  .tariff-detail-buy-btn {
    padding: 14px 26px;
    font-size: 16px;
  }
  
  .tariff-detail-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .tariff-detail-icon .direction-flag {font-size: 32px;}
  
  .tariff-detail-icon .global-icon {
    width: 28px;
    height: 28px;
  }
  
  .tariff-detail-description-text {font-size: 15px;}
  
  .tariff-detail-mobile-buy {display: block;}
  
  .tariff-detail-breadcrumbs {font-size: 13px;}
  
  .tariff-detail-country-tag {
    font-size: 13px;
    padding: 4px 12px;
  }
  
  .filter-actions {flex-direction: column;}
  
  .filter-btn {padding: 12px 16px;}
  
  .country-filter-input {
    height: 40px;
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .country-filter-add-btn {
    width: 40px;
    height: 40px;
  }
  
  .country-filter-add-icon {font-size: 20px;}
  
  .country-filter-tag {
    font-size: 12px;
    padding: 3px 8px 3px 10px;
  }
  
  .country-filter-tag .search-flag {
    width: 16px;
    height: 12px;
  }
  
  .country-filter-tag-remove {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
  
  .route-tag .global-icon-small {
    width: 14px;
    height: 14px;
  }
  
  .country-filter-tag .global-icon-small {
    width: 14px;
    height: 14px;
  }
  
  .catalog-subtitle {font-size: 16px;}
  .catalog-results-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .tariff-card {
    padding: 14px 16px;
    min-height: 110px;
    gap: 10px;
  }
  
  .tariff-card-flag .direction-flag {font-size: 30px;}
  
  .tariff-card-flag .global-icon {
    width: 30px;
    height: 30px;
  }
  
  .tariff-card-flag .direction-icon-fallback {font-size: 30px;}
  
  .tariff-card-name {font-size: 15px;}
  
  .tariff-card-row-header {gap: 10px;}
  
  .tariff-card-row-meta {gap: 16px;}
  
  .tariff-card-meta-item {font-size: 13px;}
  
  .tariff-card-gb-value, .tariff-card-days-value {font-size: 14px;}
  
  .tariff-card-price {font-size: 18px;}
  
  .tariff-card-arrow {font-size: 20px;}
  
  .footer {padding: 80px 20px 16px;}
  
  .footer-nav-list {gap: 16px;}
  
  .footer-nav-list li a {font-size: 14px;}
  
  .footer-links {gap: 12px 20px;}
  
  .footer-link {
    font-size: 12px;
    white-space: normal;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  
  .footer-copyright {font-size: 12px;}
  
  .footer-payments-icon {height: 10px;}
  
  .header {padding: 20px 20px;}
 
  button {padding: 14px 26px;}
  
  h1 {
    font-size: 30px;
    line-height: 1.2;
  }
  
  .page-content {
    margin-top: 0;
    width: 100%;
  }
  
  .hero {min-height: auto;}
  
  .promo {
    height: auto;
    padding: 40px 20px;
  }
  
  .promo-content {padding: 0;}
  
  .promo-content p {line-height: 1.3;}
  
  .promo-dots {
    width: 35%;
    top: 8px;
    height: calc(100% - 16px);
  }
  
  .dot-1 {
    top: 6%;
    right: 12%;
    width: 6px;
    height: 6px;
  }
  
  .dot-2 {
    top: 14%;
    right: 40%;
    width: 5px;
    height: 5px;
  }
  
  .dot-3 {
    top: 34%;
    right: 6%;
    width: 8px;
    height: 8px;
  }
  
  .dot-4 {
    top: 52%;
    right: 30%;
    width: 6px;
    height: 6px;
  }
  
  .dot-5 {
    top: 74%;
    right: 10%;
    width: 5px;
    height: 5px;
  }
  
  .dot-6 {
    top: 88%;
    right: 35%;
    width: 7px;
    height: 7px;
  }
  
  .country-multisearch-wrapper {
    padding: 30px 20px;
    gap: 10px;
  }
  
  .country-multisearch-wrapper::after {top: 10px;}
  
  .search-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .country-multisearch-wrapper .button-blue {width: 100%;}
  
  .search-suggestions {max-height: 160px;}
  
  .search-tag {
    font-size: 13px;
    padding: 4px 10px 4px 12px;
  }
  
  .search-tag .tag-remove {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
  
  .search-suggestion-item .search-flag {
    width: 24px;
    height: 18px;
  }
  
  .search-tag .search-flag {
    width: 18px;
    height: 14px;
  }
  
  .directions-section {padding: 60px 0;}
  
  .directions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
  
  .directions-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .direction-card {padding: 14px 16px;}
  
  .direction-flag {font-size: 30px;}
  
  .global-icon {
    width: 28px;
    height: 28px;
  }
  
  .direction-name {font-size: 15px;}
  
  .direction-description {font-size: 13px;}
  
  .alphabet-grid {
    padding: 12px;
    gap: 6px;
  }
  
  .alphabet-letter {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  
  .alphabet-all {
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }
  
  .alphabet-toggle {
    padding: 12px 16px;
    font-size: 15px;
  }
  
  .legal-page .page-content {padding: 20px;}
  
  .legal-title {font-size: 24px;}
  
  .legal-body {font-size: 15px;}
  
  .legal-section-title {font-size: 18px;}
  
  .account-page .page-content {padding: 20px;}
  
  .account-title {font-size: 24px;}
  
  .account-nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .account-nav-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .account-empty {padding: 40px 16px;}
  
  .account-submit-btn {width: 100%;}
  
  .login-page .page-content {
    padding: 20px;
    max-width: 100%;
    min-height: 100vh;
  }
  
  .login-form-wrapper {padding: 28px 24px;}
  
  .login-title {font-size: 22px;}
  
  .login-input {
    height: 44px;
    font-size: 14px;
    padding: 10px 14px 10px 40px;
  }
  
  .login-input-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .login-submit-btn {
    padding: 14px;
    font-size: 16px;
  }
}

/*----------- RESPONSIVE: 720px -----------*/

@media (max-width: 720px) {
  .header_btn .topup-btn {display: none;}
}

/*----------- RESPONSIVE: 520px -----------*/

@media (max-width: 520px) {
  .header_btn .login-btn {display: none;}
}

/*----------- RESPONSIVE: 480px -----------*/

@media (max-width: 480px) {

    .container {
    padding-left: 10px;
    padding-right: 10px;
  }
 
  .header {
    padding: 16px 20px;
    border-radius: 20px;
    margin: 20px 0 30px 0;
  }

  .logo img {width: 110px;}

  .page-content {
    padding: 0;
    border-radius: 20px;
  }

  .promo {border-radius: 20px;}

  .country-multisearch-wrapper {
    padding: 30px 20px;
    gap: 12px;
    border-radius: 20px;
  }

  .search-row {gap: 14px;}

  .country-multisearch-wrapper .button-blue {
    padding: 14px;
    font-size: 16px;
    border-radius: 14px;
  }

  .search-tag {
    font-size: 12px;
    padding: 6px 10px 6px 10px;
  }
  
  .search-tag .tag-remove {
    width: 14px;
    height: 14px;
    font-size: 11px;
  }
  
  .search-tag .search-flag {
    width: 16px;
    height: 12px;
    border-radius: 4px;
  }

  .directions-header {margin-bottom: 10px}

  .fi {border-radius: 4px;}

  .search-tags-container .country-search-input {border-radius: 14px;}

  .checkout-right {
    padding: 20px 10px;
  }

  .tariff-detail-header-right-bottons {
    align-items: stretch;
    width: 100%;
  }

  .filters-title, .page-content-header, .checkout-header {padding-left: 10px;}

  .checkout-header {
    padding-top: 10px;
  }

  .operators-popup {
    padding: 20px 16px 28px;
    max-width: 96%;
    border-radius: 16px;
  }

  .operators-popup-title {font-size: 18px;}

  .operators-popup-close {
    width: 32px;
    height: 32px;
  }

  .operators-popup-close svg {
    width: 16px;
    height: 16px;
  }

  .operators-popup-content {
    padding: 20px 14px;
    min-height: 80px;
  }

  .operators-popup-subtitle {font-size: 14px;}

  .operators-popup-placeholder {font-size: 14px;}

  .catalog-results-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tariff-card-row-meta {align-content: start;}

  .legal-page .page-content {padding: 12px;}

  .legal-title {font-size: 20px;}
  
  .legal-body {font-size: 14px;}
  
  .cookie-banner {padding: 14px 16px;}
  
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }

  .directions-load-more {margin-top: 20px;}
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-banner-description {font-size: 13px;}
  
  .search-suggestion-item {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .search-suggestion-item .search-flag {
    width: 20px;
    height: 15px;
  }
  
  .promo-dots {display: none}
    
  .direction-card {
    padding: 14px 20px;
    gap: 14px;
  }
  
  .direction-flag {font-size: 28px;}
  
  .global-icon {
    width: 24px;
    height: 24px;
  }
  
  .section-title {font-size: 24px;}
  
  .tab-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .load-more-btn {
    padding: 14px;
    font-size: 16px;
  }
  
  .alphabet-grid {
    padding: 10px;
    gap: 5px;
  }
  
  .alphabet-letter {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  .alphabet-all {
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }
  
  .alphabet-toggle {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .account-page .page-content {padding: 12px;}
  
  .account-title {font-size: 20px;}
  
  .account-nav-link {
    font-size: 12px;
    padding: 6px 10px;
    gap: 6px;
  }
  
  .account-nav-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .account-input {
    height: 40px;
    font-size: 13px;
    padding: 8px 12px 8px 36px;
    border-radius: 10px;
  }
  
  .account-input-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .account-label {font-size: 13px;}
  
  .account-error {font-size: 12px;}
  
  .login-page .page-content {
    padding: 12px;
    max-width: 100%;
    min-height: 100dvh;
    align-items: flex-start;
    padding-top: 40px;
  }
  
  .login-form-wrapper {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .login-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .login-input {
    height: 40px;
    font-size: 13px;
    padding: 8px 12px 8px 36px;
    border-radius: 10px;
  }
  
  .login-input-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .login-label {font-size: 13px;}
  
  .login-submit-btn {
    padding: 12px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .login-switch-btn {font-size: 13px;}
  
  .login-password-toggle svg {
    width: 16px;
    height: 16px;
  }
  
  .global-notification {
    bottom: 20px;
    padding: 12px 20px;
    font-size: 14px;
    white-space: normal;
    max-width: 92%;
    border-radius: 12px;
  }
  
  .footer {
    padding: 80px 14px 14px;

  }
  
  .footer-nav-list {gap: 12px;}
  
  .footer-nav-list li a {font-size: 13px;}
  
  .footer-legal {font-size: 12px;}
  
  .footer-link {font-size: 11px;}
  
  .footer-payments-icon {height: 10px;}
  
  .sorting-panel {width: 100%;}
  .sort-select {width: 100%;}
  
  .tariff-card {min-height: 100px;}
  
  .tariff-card-flag .direction-flag {font-size: 26px;}
  
  .tariff-card-flag .global-icon {
    width: 26px;
    height: 26px;
  }
  
  .tariff-card-flag .direction-icon-fallback {font-size: 26px;}
  
  .tariff-card-name {font-size: 14px;}
  
  .tariff-card-row-header {gap: 8px;}
  
  .tariff-card-row-meta {
    gap: 10px;
    flex-direction: column;
    gap: 2px;
  }
  
  .tariff-card-meta-item {font-size: 12px;}
  
  .tariff-card-gb-value, .tariff-card-days-value {font-size: 13px;}
  
  .tariff-card-price {font-size: 16px;}
  
  .tariff-card-arrow {font-size: 18px;}
  
  .tariff-card-right {gap: 8px;}
  
  .country-filter-search-row {gap: 6px;}
  
  .country-filter-input {
    height: 36px;
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .country-filter-add-btn {
    width: 36px;
    height: 36px;
  }
  
  .country-filter-add-icon {font-size: 18px;}
  
  .country-filter-suggestion-item {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .country-filter-tag {
    font-size: 11px;
    padding: 6px 8px;
  }
  
  .country-filter-tag .search-flag {
    width: 14px;
    height: 10px;
  }
  
  .country-filter-tag-remove {
    width: 14px;
    height: 14px;
    font-size: 10px;
  }
  
  .tariff-detail-operators-label {font-size: 13px !important;}
  
  .tariff-detail-operators-arrow {font-size: 20px !important;}
  
  .tariff-traffic-table {padding: 12px 14px;}
  
  .tariff-traffic-table td {
    font-size: 13px;
    padding: 4px 2px;
  }
  
  .tariff-detail-page .page-content {padding: 12px;}
  
  .tariff-detail-card {
    padding: 30px 10px;
    /* border-radius: 16px; */
  }
  
  .tariff-detail-title {font-size: 30px;}
  
  .tariff-detail-price {font-size: 26px;}
  
  .tariff-detail-currency {font-size: 14px;}
  
  .tariff-detail-buy-btn {
    padding: 14px 26px;
    font-size: 16px;
  }
  
  .tariff-detail-specs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tariff-detail-spec-item {padding: 10px 12px;}
  
  .tariff-detail-spec-value {font-size: 14px;}
  
  .tariff-detail-description-text {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .tariff-detail-country-tag {
    font-size: 12px;
    padding: 3px 10px;
    gap: 4px;
  }
  
  .tariff-detail-country-flag {
    font-size: 14px;
    width: 16px;
    height: 12px;
  }
  
  .tariff-detail-country-emoji {font-size: 14px;}
  
  .tariff-detail-header-right {
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
    align-content: flex-end;
  }
  
  .about-page .page-content {padding: 12px;}
  
  .about-content {gap: 32px;}
  
  .about-hero-title {font-size: 22px;}
  
  .about-hero-text {font-size: 15px;}
  
  .about-section-title {font-size: 18px;}
  
  .about-card {padding: 16px 14px;}
  
  .about-card-title {font-size: 15px;}
  
  .about-card-text {font-size: 13px;}
  
  .about-security-block {padding: 16px 14px;}
  
  .about-security-block .about-section-text {font-size: 14px;}
  
  .about-cta-btn {
    padding: 12px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
  
  .checkout-password-generate {right: 36px;}
  
  .checkout-password-toggle svg,
  .checkout-password-generate svg {
    width: 16px;
    height: 16px;
  }
  
  .checkout-page .page-content {padding: 12px;}
  
  .checkout-title {font-size: 20px;}
  
  .checkout-subtitle {font-size: 14px;}
  
  .checkout-tariff-card {padding: 14px 16px;}
  
  .checkout-tariff-icon .direction-flag {
    font-size: 24px;
    width: 26px;
  }
  
  .checkout-tariff-icon .global-icon {
    width: 24px;
    height: 24px;
  }
  
  .checkout-tariff-name {font-size: 14px;}
  
  .checkout-tariff-price {font-size: 16px;}
  
  .checkout-form-title {font-size: 16px;}
  
  .checkout-input {
    height: 40px;
    font-size: 13px;
    padding: 14px 12px 14px 36px;
    border-radius: 10px;
  }
  
  .checkout-input-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .checkout-label {
    font-size: 13px;
    padding-left: 10px;
  }
  
  .checkout-checkbox {
    font-size: 13px;
    gap: 10px;
  }
  
  .checkout-checkbox-custom {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }
  
  .checkout-checkbox input:checked + .checkout-checkbox-custom::after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
  }
  
  .checkout-submit-btn {
    padding: 12px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .checkout-footer-text {
    font-size: 12px;
    text-align: center;
  }
  
  .checkout-footer-text svg {
    width: 14px;
    height: 14px;
  }
  
  .checkout-hint {font-size: 12px;}
  
  .checkout-attributes {padding: 14px 16px;}
  
  .checkout-attributes-title {font-size: 14px;}
  
  .checkout-attributes-table td {
    font-size: 12px;
    padding: 4px 2px;
  }
  
  
  .faq-page .page-content {padding: 12px;}
  
  .faq-question {padding: 12px 14px;}
  
  .faq-question-text {font-size: 14px;}
  
  .faq-arrow {font-size: 18px;}
  
  .faq-answer-content {
    padding: 0 14px 14px 14px;
    font-size: 13px;
  }
  
  .faq-subtitle {font-size: 14px;}
  
  .faq-answer-content table {font-size: 12px;}
  
  .faq-answer-content table th,
  .faq-answer-content table td {padding: 6px 8px;}
  
  .rate-page .page-content {padding: 12px;}
  
  .rate-table {
    min-width: 420px;
    font-size: 12px;
  }
  
  .rate-table th,
  .rate-table td {padding: 8px 10px;}
  
  .rate-price {font-size: 13px;}
  
  .rate-buy-btn {
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 6px;
  }
  
  .rate-remove-btn {
    width: 20px;
    height: 20px;
    font-size: 11px;
    border-radius: 4px;
  }
  
  .rate-table-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .rate-clear-btn {
    width: 100%;
    justify-content: center;
  }
  
  .rate-count {text-align: center;}
  
  .rate-header h1 {font-size: 24px;}
  
  .rate-subtitle {font-size: 14px;}
  
  .rate-col-action {min-width: 60px;}
  
  .rate-cell-name-link {font-size: 13px;}
  
  .rate-empty h2 {font-size: 20px;}
  
  .rate-empty p {font-size: 14px;}
  
  .rate-notification {
    font-size: 14px;
    padding: 12px 20px;
    bottom: 20px;
  }
  
  .cookie-modal {
    padding: 18px 14px 22px;
    border-radius: 12px;
  }
  
  .cookie-modal-title {font-size: 16px;}
  
  .cookie-modal-close {
    width: 32px;
    height: 32px;
  }
  
  .cookie-modal-close svg {
    width: 18px;
    height: 18px;
  }
  
  .cookie-option {padding: 12px 12px;}
  
  .cookie-option-description {font-size: 12px;}
  
  .cookie-checkbox-label {font-size: 13px;}
  
  .cookie-modal-description {font-size: 13px;}
}