@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */
:root {
  --bg: #ffffff;
  --surface: #f9fafb;
  --surface-2: #f3f4f6;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --text: #111827;
  --text-2: #4b5563;
  --text-muted: #9ca3af;
  --accent: #4f46e5;
  --accent-h: #4338ca;
  --accent-bg: #eef2ff;
  --accent-text: #4f46e5;
  --star: #f59e0b;
  --star-empty: #e5e7eb;
  --green: #059669;
  --green-bg: #ecfdf5;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --orange: #ea580c;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1);
}

/* =====================================================================
   RESET / BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

:active, :hover, :focus {
  outline: 0;
  outline-offset: 0;
}

body {
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .15s;
}
a:hover { color: var(--accent-h); }
a:focus { outline: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
  margin: 1.2em 0 .5em;
}

pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 18px 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-md);
  margin: 20px 0;
  white-space: pre-wrap;
  word-break: break-word;
}

blockquote {
  padding: 18px 20px;
  margin: 0 0 20px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  border: none;
  border-left: 3px solid var(--accent);
}
blockquote p { line-height: 1.6; margin: 0; }

table {
  margin: 0 0 2em;
  width: 100%;
  font-size: 14px;
}
table tbody tr { border: 1px solid var(--border); border-left: 0; border-right: 0; }
table tbody tr:nth-child(2n+1) { background: var(--surface); }
table td { padding: .6em .75em; }
table th { color: var(--text); font-size: .85em; font-weight: 600; padding: 0 .75em .75em; text-align: left; }
table thead { border-bottom: 2px solid var(--border); }
table tfoot { border-top: 2px solid var(--border); }
.table-wrapper, .tableWrapper { overflow-x: auto; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.relative    { position: relative; }

/* =====================================================================
   LANGUAGE / DETECTION BANNER
   ===================================================================== */
.detectLang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid #c7d2fe;
}
@media (max-width: 760px) {
  .detectLang { flex-direction: column; }
}
.otherLang { color: var(--accent); }
.otherLangBut {
  background: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  margin-left: 10px;
  transition: background .15s;
}
.otherLangBut:hover { background: var(--accent-h); color: #fff; }
@media (max-width: 760px) {
  .otherLangBut { margin-top: 10px; width: 100%; margin-left: 0; text-align: center; }
}

/* =====================================================================
   COUNTRY / LANGUAGE SELECTOR
   ===================================================================== */
.country-collapse label { color: var(--text-2); }
.select-country {
  font-size: 14px;
  border: 0;
  color: var(--text-2);
  cursor: pointer;
  background: none;
}
.select-country:hover { color: var(--text); }

.setListCountry {
  overflow: hidden;
  max-height: 400px;
  transition: max-height .3s ease;
}
#toggleList {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  padding: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-2);
}
#toggleList:hover { background: var(--surface-2); }

/* =====================================================================
   RATING STARS
   ===================================================================== */
.average-rate {
  position: relative;
  font-size: 18px;
}
.average-rate:before {
  content: '★★★★★';
  position: relative;
  color: var(--star-empty);
  background: linear-gradient(90deg, var(--star) var(--percent), var(--star-empty) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.average-rate-s { font-size: 18px; }
.average-rate-s:before {
  content: '★★★★★';
  position: relative;
  color: var(--star-empty);
  background: linear-gradient(90deg, var(--star) var(--percent), var(--star-empty) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .average-rate { font-size: 15px !important; }
  .average-rate-s { font-size: 14px !important; }
}

/* =====================================================================
   SEARCH POPUP
   ===================================================================== */
.search-popup {
  background: var(--bg);
  position: fixed;
  left: 0; top: 0;
  height: 100vh; width: 100%;
  z-index: 6;
  opacity: 0; visibility: hidden;
  overflow-y: auto;
  transition: opacity .25s, visibility .25s;
}
.search-popup.visible {
  opacity: 1; visibility: visible;
  animation: growOut 400ms ease-in-out forwards;
}
.search-popup .search-content { margin-top: 80px; }
.search-popup .btn-close { right: 30px; top: 30px; position: absolute; }
.search-content .search-form {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 0 1%;
}
.search-content #livesearch {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 1%;
}
.search-content #livesearch .serviceBlockSearch {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.search-content #livesearch .serviceBlockSearch a {
  color: var(--text);
  padding: 8px 14px;
  border: 1px solid var(--border);
  margin: 6px;
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color .15s, color .15s;
}
.search-content #livesearch .serviceBlockSearch a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.search-content #livesearch .serviceBlockBlog { width: 100%; margin-top: 20px; }
.search-content #livesearch .serviceBlockBlog a {
  color: var(--text);
  font-size: 15px;
  padding: 10px 14px;
  width: 100%;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.search-content #livesearch .serviceBlockBlog a:hover { background: var(--accent-bg); color: var(--accent); }
.search-content img { max-width: 100px; margin: 8px; }
.search-content .col-sm-4 {
  border-left: 1px solid var(--border);
  margin-bottom: var(--bs-gutter-y, 1rem);
  font-size: 15px;
}
.result-search { text-align: center; margin-top: 10px; display: block; }
.search-but-close { text-align: center; margin-top: 20px; }
.search-but-close .btn-close {
  right: unset !important; top: unset !important;
  position: inherit !important;
  opacity: 1; box-sizing: content-box;
  width: unset; height: unset;
}
@media (max-width: 480px) {
  .search-content #livesearch .serviceBlockSearch a { padding: 5px 8px; margin: 4px; }
}

/* =====================================================================
   SIDEBAR RATING BLOCK
   ===================================================================== */
.service-name-rate-val-s {
  margin-right: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--star);
  display: inline-block;
}
@media (min-width: 1280px) { .service-name-rate-val-s { font-size: 18px; } }
@media (max-width: 480px)  { .service-name-rate-val-s { margin-right: 0; } }

/* =====================================================================
   PROVIDER CARD — SHARED BASE
   ===================================================================== */
.main-service {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text);
  transition: box-shadow .2s;
}
.main-service:hover { box-shadow: var(--shadow-md); }

.service-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.service-block-header .rec-yes {
  color: var(--bg);
  background: var(--green);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  width: auto !important;
  margin-right: 10px !important;
}

.service-position-rating {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 16px;
  white-space: nowrap;
  color: var(--text-2);
  font-weight: 600;
}
.service-position-rating a {
  margin-left: 5px;
  color: var(--text-muted);
  text-decoration: underline dotted;
  text-transform: lowercase;
  font-weight: 400;
}
.service-position-rating a:hover { color: var(--accent); }

.service-recommend { display: none; }
.service-recommend, .service-recommend-mobile {
  width: 100%;
  margin: 8px 0 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.service-recommend-text {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  background: var(--accent-bg);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #c7d2fe;
}

.service-logo-name {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.service-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  margin-right: 12px;
  margin-left: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.service-logo img { border-radius: 0; }

.service-name-title {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  flex-wrap: wrap;
}
.service-name-title h1 {
  color: var(--text);
  display: inline-block;
  line-height: inherit;
  margin: inherit;
  font-size: inherit;
  margin-right: 6px;
}
.service-name-title a {
  display: block;
  padding-bottom: 4px;
  color: var(--text);
  margin-right: 6px;
}
.service-name-title a:hover { color: var(--accent); }
.service-name-title-founded { font-size: 17px; color: var(--text-2); }

.service-name-rate-val {
  margin-right: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--star);
  display: inline-block;
}
.service-name-rate-who {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: 4px;
  display: inline-block;
}

.service-function {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.service-function-right {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.service-function-right h3 {
  color: var(--accent);
  font-size: 14px;
  margin: 8px 0 0;
}
.service-function-right a.link-func { color: var(--text-2); text-decoration: underline dotted; }
.service-function-right a.link-func:hover { color: var(--accent); }

.service-info-footer a, .service-info-footer span {
  color: var(--text-2);
  margin-left: 10px;
  border-left: 1px solid var(--border);
  padding-left: 10px;
}
.service-info-footer a:first-child { margin-left: 0; border-left: none; }
.service-info-footer a:hover { color: var(--accent); }

.service-button-go-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px -18px -18px;
  padding: 14px 18px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
}

.but-go {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  width: 100%;
  text-align: center;
  display: block;
  transition: background .15s;
}
.but-go:hover { background: var(--accent-h); color: #fff; opacity: 1; }

.li-plus li::marker  { color: var(--green);  font-size: 120%; content: "+ "; font-weight: 700; }
.li-minus li::marker { color: var(--red);    font-size: 120%; content: "- "; font-weight: 700; }
.service-function-left ul { padding-left: 1.2rem; }

/* SHOW DESC TOGGLE */
.showDesc {
  cursor: pointer;
  color: var(--text-muted);
  text-align: center;
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  font-size: 13px;
}
.showDesc:hover { color: var(--text); border-color: var(--text); }

/* LANGUAGE SUPPORT BADGES */
.showLang {
  display: flex; align-items: center;
  background: var(--green-bg);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: 13px;
}
.showLangNo {
  display: flex; align-items: center;
  background: var(--red-bg);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--red);
  font-size: 13px;
}
.showLang img, .showLangNo img { max-width: 18px; margin-left: 5px; }

/* PAYMENT ICONS */
ul.ratingList {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0;
  margin: 8px 0 0;
  scrollbar-width: none;
}
ul.ratingList::-webkit-scrollbar { display: none; }
ul.ratingList li {
  list-style: none;
  font-size: 13px;
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
  margin-right: 4px;
  margin-bottom: 4px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-2);
}
ul.ratingList li img.imgPay { max-width: 16px; margin-right: 3px; }

/* =====================================================================
   PROVIDER CARD — DESKTOP LAYOUT
   ===================================================================== */
@media (min-width: 360px) {
  .service-name-title { font-size: 22px; line-height: 26px; }
  .service-button-go-footer { margin: 12px -18px -18px; }
}

@media (min-width: 901px) {
  .service-block-header { flex-wrap: nowrap; justify-content: space-between; }
  .service-position-rating { flex-shrink: 0; width: 150px; margin-right: 40px; }
  .service-recommend-mobile { display: none; }
  .service-recommend { display: flex; align-items: center; overflow-x: auto; margin: 0; width: initial; }
  .service-recommend-text { margin-bottom: 0; }
  .service-block-center { display: flex; align-items: center; margin-bottom: 14px; }
  .service-logo-name { flex-shrink: 0; width: 280px; margin: 0 15px 0 0; }
  .service-function {
    flex-direction: row;
    width: 100%; margin: 0; padding: 10px;
    background: var(--surface);
    border-radius: var(--radius-sm);
  }
  .service-function-left { min-width: 200px; border-right: 1px solid var(--border); padding-right: 15px; }
  .service-function-right {
    width: 100%; margin-left: 15px; padding: 0; border: none;
    max-width: 280px;
  }
  .service-block-footer { display: flex; align-items: center; }
  .service-info-footer { display: flex; align-items: center; width: 100%; flex-direction: initial !important; }
  .service-button-go-footer {
    flex-direction: column; align-items: flex-start;
    flex-shrink: 0; width: 160px;
    margin: 0; padding: 0 0 0 15px;
    background: transparent; border: none; border-radius: 0;
  }
  .service-function-left img { cursor: zoom-in; }
  .service-function-left img:active { transform: scale(2); }
}

@media (min-width: 1124px) {
  .country-collapse { display: inline-flex !important; }
}

@media (min-width: 1024px) {
  .service-logo-name { flex-shrink: initial; width: 100%; }
  .service-function { width: 100%; justify-content: flex-end; padding: 0; background: transparent; }
  .service-function-left {
    width: 320px; padding: 15px;
    background: var(--surface);
    border: 0; border-radius: var(--radius-sm);
  }
  .service-function-right {
    width: 345px; padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    max-width: none;
  }
  .service-block-footer {
    align-items: initial;
    justify-content: space-between;
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin: 0 -18px -18px;
    padding: 14px 18px;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .service-button-go-footer {
    flex-direction: column; align-items: flex-start;
    flex-shrink: 0; width: 170px;
    margin: 0; padding: 0 0 0 15px;
    background: transparent; border: none;
    justify-content: center;
    min-height: 100%;
    border-left: 1px solid var(--border);
    border-radius: 0;
  }
}

@media (max-width: 1024px) {
  .service-info-footer {
    text-align: center; display: flex; flex-direction: column; justify-content: space-between;
  }
  .service-info-footer a, .service-info-footer span {
    width: 47%; display: inline-block; text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 4px; margin: 2% 0;
    font-size: 13px; min-height: 52px;
  }
  .service-info-footer a.icon-folder,
  .service-info-footer a.icon-link,
  .service-info-footer span.icon-globe,
  a.promocodeShow { width: 100%; max-width: 400px; }
  a.promocodeShow { display: flex; align-items: center; justify-content: center; }
  .service-info-footer a { word-break: break-word; min-width: 90px; }
  .service-info-footer a:before, .service-info-footer span:before { display: block; margin-bottom: 8px; }
}
@media (max-width: 901px) {
  .service-info-footer a.icon-folder,
  .service-info-footer a.icon-link,
  .service-info-footer span.icon-globe,
  a.promocodeShow { width: 100%; max-width: 100%; }
}
@media (max-width: 480px) {
  .service-name-rate-who { font-size: 11px; margin-left: 1px; }
  .service-block-header .rec-yes { font-size: 11px; }
  .service-name-rate-val { margin-right: 0; }
}

@media (min-width: 1380px) {
  .service-function-left { width: 450px; }
  .service-position-rating { font-size: 15px; line-height: 22px; }
  .service-block-center { margin-bottom: 20px; }
  .service-logo { width: 90px; height: 90px; margin-right: 14px; }
  .service-name-title { font-size: 28px; line-height: 34px; }
  .service-name-rate { display: flex; align-items: center; }
  .service-name-rate-val { font-size: 22px; line-height: 26px; }
  .service-function-right { margin-left: 22px; }
}
@media (min-width: 1820px) {
  .service-function-left  { width: 500px; }
  .service-function-right { width: 500px; }
}

/* =====================================================================
   LIST-RATING VARIANT (list page, white cards)
   ===================================================================== */
.list-rating {
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.list-rating:hover { box-shadow: var(--shadow-md); }
.list-rating .service-logo { border: 1px solid var(--border); border-radius: var(--radius-sm); }
.list-rating .service-name-title a { color: var(--text); }
.list-rating a.href-link { color: var(--text-muted); word-break: break-all; display: block; font-size: 13px; }
.list-rating a.href-link:hover { color: var(--accent); }
.list-rating .service-block-footer { background: var(--bg); border-top: 1px solid var(--border); }
.list-rating .service-info-footer a, .list-rating .service-info-footer span { border-left: 1px solid var(--border); }
.list-rating .service-button-go-footer { background: var(--bg); }
.list-rating .service-function-right, .list-rating .service-function-right a.link-func { color: var(--text-2); }
.list-rating .service-info-footer a, .list-rating .service-info-footer span { color: var(--text-2); }
.list-rating .service-info-footer span {
  max-width: 37%;
  background: var(--accent-bg);
  border: 1px solid #c7d2fe;
  padding: 2px 10px;
  border-radius: var(--radius);
}
.list-rating .service-function-right a.link-func:hover,
.list-rating a.href-link:hover,
.list-rating .service-name-title a:hover,
.service-info-footer a:hover { color: var(--accent) !important; }
.list-rating .service-block-header { flex-wrap: nowrap; }
.list-rating .service-recommend { width: auto !important; margin: 0 !important; display: flex !important; }
.list-rating .service-name-title a { padding-bottom: 1px !important; }

@media (max-width: 801px) {
  .list-rating .service-info-footer span { max-width: 100% !important; width: 100%; }
}
@media (min-width: 1024px) {
  .list-rating .service-info-footer a:first-child { margin-left: 0; border-left: none; }
  .list-rating .service-block-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin: 0 -18px -18px;
    padding: 14px 18px;
    border-radius: 0 0 var(--radius) var(--radius);
  }
}
@media (max-width: 1024px) {
  .list-rating .service-info-footer a {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    box-shadow: var(--shadow);
  }
  .list-rating .service-info-footer span { padding: 8px 4px; }
  .list-rating .service-block-footer { border-top: none; }
}

/* =====================================================================
   PREMIUM CARDS
   ===================================================================== */
.list-rating-premium {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.list-rating-premium .service-position-rating { font-weight: 800; color: var(--orange); }
@media (min-width: 1024px) {
  .list-rating-premium .service-function-right { border: 1px solid #fde68a; }
  .list-rating-premium .service-block-footer { background: #fffbeb; border-top: 1px solid #fde68a; }
  .list-rating-premium .service-function-left { background: rgba(245,158,11,.04); }
}
.list-rating-premium ul.ratingList li, .list-rating-premium .showDesc { border: 1px solid #fde68a; }
.list-rating-premium .service-button-go-footer { background: #fffbeb; }
.list-rating-premium .service-block-footer  { background: #fffbeb; }
.list-rating-premium .service-function-right { border: 1px solid #fde68a; }
@media (max-width: 1024px) {
  .list-rating-premium .service-info-footer a { background: #fffbeb; border: 1px solid #fde68a; box-shadow: none; }
}

/* =====================================================================
   SECTION LOADING STATE
   ===================================================================== */
.sectionRatingType { transition: opacity .3s ease, filter .3s ease; min-height: 600px; }
.section-loading { opacity: .3; filter: blur(3px); pointer-events: none; }

/* =====================================================================
   LOADING SPINNER (fountain)
   ===================================================================== */
#fountainG { position: relative; width: 234px; height: 28px; margin: auto; }
.fountainG {
  position: absolute; top: 0;
  background: var(--accent);
  width: 28px; height: 28px;
  animation: bounce_fountainG 1.5s infinite normal;
  transform: scale(.3);
  border-radius: 50%;
}
#fountainG_1 { left:   0; animation-delay: .60s; }
#fountainG_2 { left:  29px; animation-delay: .75s; }
#fountainG_3 { left:  58px; animation-delay: .90s; }
#fountainG_4 { left:  88px; animation-delay:1.05s; }
#fountainG_5 { left: 117px; animation-delay:1.20s; }
#fountainG_6 { left: 146px; animation-delay:1.35s; }
#fountainG_7 { left: 175px; animation-delay:1.50s; }
#fountainG_8 { left: 205px; animation-delay:1.64s; }
@keyframes bounce_fountainG {
  0%   { transform: scale(1); background: var(--accent); }
  100% { transform: scale(.3); background: var(--border); }
}

.cssload-container { display: inline-block; }
.cssload-zenith {
  width: 20px; height: 20px;
  margin: 0 auto;
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  box-shadow: 2px 2px 1px var(--border);
  animation: cssload-spin 1140ms infinite linear;
}
@keyframes cssload-spin { 100% { transform: rotate(360deg); } }

/* =====================================================================
   FILTER SECTION
   ===================================================================== */
.blockFilter {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
}
.selectFilter { display: flex; align-items: center; }
.blockFilter select {
  width: 20%;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  border: 1px solid var(--border);
  margin: 1.5% 2.5%;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .15s;
}
.blockFilter select:hover, .blockFilter select:focus { border-color: var(--accent); }
#showBlockFilter { position: relative; }
.langCheckbox {
  margin: 0 2.7%;
  cursor: pointer;
  position: absolute;
  right: 0;
}
.langCheckbox input, .langCheckbox label { cursor: pointer; }
.blockFilter button {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 0;
  margin-top: 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
}
.blockFilter button:hover { background: var(--accent-h); }

#resetFilter {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}
#resetFilter:hover { color: var(--text); }

.countProxyBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.countProxyBlock h2 {
  margin-bottom: 0; margin-top: 0;
  color: var(--text-muted);
  font-size: calc(1rem + .7vw);
  max-width: 75%;
  margin-right: .8em;
}

.blockInteg {
  max-width: 40%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  overflow-x: auto;
}
.blockInteg a {
  padding: 0 10px;
  color: var(--text-muted);
  width: 100%;
  border-right: 1px solid var(--border);
  text-decoration: underline;
  font-size: 13px;
}
.blockInteg a:hover { color: var(--accent); }
.blockInteg a:last-child { border-right: 0; }

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

.switchContents { display: flex; align-items: center; }
.switchContentsBlock { padding-right: 10px; margin-left: 10px; }
.switchContentsBlock:first-child { border-right: 1px solid var(--border); }
.switchContents input {
  display: none;
  &:checked + label {
    border-bottom: 2px solid var(--accent);
    cursor: default;
  }
}
.switchContents label {
  display: inline-block;
  margin: 0 .2em;
  cursor: pointer;
  &:hover { border-bottom: 2px solid var(--text); }
}

.icon-settings {
  font-weight: 600;
  padding: 5px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

@media (max-width: 760px) {
  .langCheckbox { margin: 2.5% 2.7%; position: relative; display: block; }
  .blockFilter { padding: 12px; }
  .selectFilter { flex-direction: column; }
  .blockFilter select { width: 100%; margin: 5px 0; padding: 8px; }
  .countProxyBlock { flex-direction: column; margin-top: 0; padding: 0 10px; }
  .blockInteg { max-width: 100%; margin: 8px 0; }
  .titleAndPartner { flex-direction: column; align-items: flex-start; }
  .titleAndPartner h1 { margin-top: 10px; }
  .titleAndPartner .blockInteg { margin-bottom: 12px; }
  .countProxyBlock .noneDesc { float: right; position: absolute; right: .7em; }
  .countProxyBlock { display: flex; margin-top: 16px; flex-direction: column; align-items: flex-start; }
  .switchContents { text-align: center; width: 100%; align-items: stretch; }
  .switchContentsBlock { width: 50%; margin: 8px 0; display: flex; flex-direction: column; justify-content: center; }
  .switchContents label {
    margin: 3px 5px;
    background: var(--surface);
    padding: 6px;
    width: 100%;
    min-height: 50%;
    height: 100%;
    display: flex; align-items: center; justify-content: center;
    &:hover { border-bottom: 0; opacity: .85; }
  }
  .switchContents input {
    &:checked + label { border-bottom: 0; background: var(--accent-bg); }
  }
  .noneMobile { display: none; }
  .blockFilter h2 {
    color: var(--text-2);
    margin: 0 8px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: calc(1rem + .7vw);
  }
}
@media (min-width: 760px) {
  .noneDesc { display: none; overflow: hidden; }
}
@media (min-width: 992px) {
  .noneDesc { display: none; overflow: hidden; }
}

/* =====================================================================
   TOOLTIP
   ===================================================================== */
.pPrice {
  position: relative;
  margin: .6rem 0;
  font-size: 115%;
  display: flex;
  align-items: center;
}
.pPrice b { margin-left: 4px; }

.tooltipInfo {
  position: initial;
  display: inline-block;
  cursor: pointer;
  text-decoration: underline dotted;
  padding: 0 6px;
  font-size: 13px;
}
.tooltipInfo .tooltiptextInfo {
  visibility: hidden;
  width: 260px;
  background: var(--text);
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  position: absolute;
  z-index: 100000;
  bottom: 100%;
  left: 0;
  font-size: 13px;
}
.tooltipInfo:hover .tooltiptextInfo { visibility: visible; }
@media (max-width: 760px) {
  .tooltipInfo .tooltiptextInfo { width: 230px; left: -10px; }
}

/* =====================================================================
   LITE VIEW (compact list)
   ===================================================================== */
.liteV {
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  margin: 0 4%;
  padding: 6px 0;
}
.liteV:last-child { border-bottom: 0; }
.liteV div { position: relative; margin: 4px 8px; }
.liteBlockOne { display: flex; align-items: center; width: 50%; }
.liteLogo { width: 15%; max-width: 48px; }
.liteBlockOneOne { display: flex; align-items: center; width: 85%; }
.liteTitle { width: 60%; display: flex; align-items: center; }
.liteTitle h3 { font-size: 19px; width: 70%; }
.liteRate { width: 40%; }
.liteBlockTwo { display: flex; align-items: center; width: 30%; }
.litePrice { width: 40%; }
.liteCoupon { width: 60%; }
.liteSite { width: 20%; text-align: right; }
.liteV .average-rate:before { content: '★' !important; }
.liteV .average-rate { font-size: 15px !important; }
.liteV .service-name-rate-val { font-size: 19px; }

@media (max-width: 1180px) { .liteV { margin: 0; } }
@media (max-width: 998px) {
  .liteV div { margin: 2px; }
  .liteBlockTwo { display: flex; align-items: flex-start; width: 20%; flex-direction: column; }
  .litePrice, .liteCoupon { width: 100%; }
  .liteBlockOne { width: 60%; }
  .liteSite .but-go { display: block; }
}
@media (max-width: 748px) {
  .liteV { display: flex; border-bottom: 1px solid var(--border); flex-direction: column; padding-bottom: 10px; margin-bottom: 10px; }
  .liteSite, .liteBlockOne, .liteBlockTwo, .liteRate { width: 100%; }
  .liteSite { display: flex; }
  .liteBlockTwo { display: flex; align-items: center; flex-direction: row; }
  .liteBlockOneOne { display: flex; align-items: flex-start; width: 100%; flex-direction: column; }
  .liteTitle { width: 100%; display: flex; justify-content: flex-start; align-items: flex-start; }
  .liteTitle h3 { font-size: 16px; width: auto; }
  .liteLogo { width: auto; max-width: 56px; margin-right: 7px !important; }
  .liteSite .but-go {
    background: var(--bg);
    box-shadow: none;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 5px; margin: 0 10px;
    font-size: 13px;
  }
  .liteTitle .service-name-title-founded { font-size: 15px; }
  .tooltipCoupon { left: -150px !important; }
}

/* RTL lite */
.right-imp .switchContentsBlock:first-child { border-right: 0; border-left: 2px solid var(--border); }
.right-imp .switchContentsBlock { padding-right: 0; margin-left: 0; padding-left: 10px; margin-right: 10px; }
.right-imp .showLang img, .showLangNo img { margin-left: 0; margin-right: 5px; }
.right-imp .average-rate { transform: scale(-1,1); }
.right-imp .pPrice b { margin-left: 0; margin-right: 5px; }
.right-imp .liteSite { text-align: left; }
@media (max-width: 748px) {
  .right-imp .tooltipCoupon { left: auto; right: -150px !important; }
}
@media (max-width: 760px) {
  .right-imp .tooltipInfo .tooltiptextInfo { left: auto; right: -10px; }
  .right-imp .countProxyBlock .noneDesc { right: auto; left: .7em; }
  .right-imp .switchContentsBlock { margin-right: 0; }
}
.right-imp .proxy-type-description { text-align: right; }

/* =====================================================================
   PROXY TYPE BLOCK
   ===================================================================== */
.proxy-type-block-main {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  padding: 28px 0;
}
.proxy-type-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.proxy-type-content { flex: 1.2; margin: 18px 0 0; }
.proxy-type-title { font-size: 2.1rem; margin-bottom: 10px; margin-top: 0; }
.proxy-type-description { font-size: .95rem; line-height: 1.6; text-align: left; }
.proxy-type-image { flex: 1; text-align: right; margin: 18px 0; }
.proxy-type-image img { max-width: 100%; }

.selectFilter select { cursor: pointer; padding: 9px 10px; border-radius: var(--radius-sm); width: 33%; margin-right: 3%; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: inherit; font-size: 14px; }

@media (max-width: 768px) {
  .proxy-type-block-main { padding: 10px 0; }
  .proxy-type-content { margin-top: 8px; }
  .proxy-type-block { flex-direction: column; text-align: center; }
  .proxy-type-title { font-size: 1.4rem; margin-top: 8px; }
  .proxy-type-image { margin-top: -40px; }
  .proxy-type-description { font-size: .9rem; }
  .selectFilter select { margin: 8px; width: 100%; padding: 8px; }
  #showBlockSort { width: 100%; margin-top: 8px; }
  .sectionRatingType { padding-left: 0; padding-right: 0; }
  .noneDesc .icon-target { font-weight: 600; padding: 5px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
}

.listServiceGridType { grid-template-columns: 1fr 1fr 1fr; }
.borderGridListType {
  display: flex; align-items: center; justify-content: center;
  padding: 10px; color: var(--text); font-weight: 700; text-align: center; font-size: 17px;
}
@media (max-width: 798px) { .listServiceGridType { grid-template-columns: 1fr; grid-gap: 14px; } }

/* =====================================================================
   TYPOGRAPHY — CONTENT AREAS
   ===================================================================== */
.post-content img { margin: 10px 0; }
.post-content p img {
  padding: 4%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent) 0%, #818cf8 50%, #c4b5fd 100%);
}

.post-content h2, .section-header h2 {
  border-left: 5px solid var(--accent);
  padding-left: 12px;
  margin-top: 36px;
}

.post-single ul:not(.setList ul):not(.setListPrice ul):not(.faqBlock ul):not(.ul-anchor):not(.li-plus):not(.li-minus) {
  margin: 18px auto; padding: 0; list-style: none;
}
.post-single ul:not(.setList ul):not(.setListPrice ul):not(.faqBlock ul):not(.about-author ul):not(.li-plus):not(.li-minus) li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 12px 12px 38px;
  margin-bottom: 10px;
  position: relative;
}
.post-single ul:not(.setList ul):not(.setListPrice ul):not(.faqBlock ul):not(.ul-anchor):not(.li-plus):not(.li-minus) li:before {
  content: "✓";
  position: absolute;
  left: 12px; top: 12px;
  color: var(--green);
  font-weight: 700;
}
.post-single .post-content ul li p { margin: 0 !important; }

.about-author {
  background: var(--accent-bg);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius-sm);
  padding: 6px 18px;
  margin-bottom: 18px;
  margin-top: 10px;
}
.about-author h4 { margin: 10px 0; display: flex; justify-content: space-between; align-items: center; }
.about-author h4 span { font-weight: 800; }

.ul-anchor { display: none; }
.ul-anchor li a { color: var(--text); text-decoration: none; }
.ul-anchor li::marker { color: var(--accent); font-size: 130%; }
.ul-anchor li a:hover { color: var(--accent); }

.recommend-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2% 3%;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
}
.title-recommend { color: var(--text-muted); font-weight: 700; font-size: 1.15rem; }

.image-block { display: inline-block; width: 48%; }
.website-block { display: inline-block; margin: 2%; width: 48%; text-align: center; }
.website-block-full { display: block; margin: 2%; text-align: center; }
.website-block p, .website-block-full p {
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 4px;
  font-size: 13px;
}
.button-website {
  display: inline-block;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 9px 14px;
  text-transform: uppercase;
  border-radius: 2px;
  margin: 8px;
  font-size: 13px;
}
.button-website:hover { color: #fff; background: var(--text); }

.reply-comment #deleteReply { color: var(--accent); cursor: pointer; }
.comment p { color: var(--text-2); margin-top: 6px; }

.blockquote { font-size: 17px; }
.blockquote-footer { margin-top: 0; }

.showBannerBlock { padding: 0; margin-top: 10px; text-align: center; display: block; }
.showBannerBlock:hover { opacity: .8; }

/* =====================================================================
   HEADER / NAVBAR
   ===================================================================== */
.header-default {
  padding: 10px 0;
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.header-default .navbar-nav { margin-left: 40px; }

.header-default.clone {
  padding: 5px 0 !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: .2s transform cubic-bezier(.3,.73,.3,.74);
  z-index: 4;
}
body.down .header-default.clone { transform: translateY(0); }

.navbar { padding: 0; }
.navbar-nav { font-size: 14px; }
.navbar-nav .nav-link { padding: .4rem .9rem; color: var(--text-2); font-weight: 500; }
.navbar-nav .nav-link:hover { color: var(--text); }
.navbar-nav li.active .nav-link {
  color: var(--accent);
  background: var(--accent-bg);
  border-radius: 6px;
}
.rating-link-header { color: var(--text-2) !important; }
.rating-link-header:hover { color: var(--text) !important; }

.navbar-brand { padding: 0; margin-right: 0; }
.navbar-brand img, .logo img { max-width: 120px; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.dropdown-menu:after { display: none; }
.dropdown-menu li:after { display: none; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: .5rem 1.2rem;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
}
.dropdown-item:focus, .dropdown-item:hover { color: var(--accent); background: var(--surface); margin-left: 0; }
.dropdown-divider { height: 0; margin: .2rem 0; border-top: 1px solid var(--border); }

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  content: "";
  font-family: "simple-line-icons";
  font-size: 8px;
  border-top: transparent; border-right: transparent; border-bottom: 0; border-left: transparent;
}

.header-right .header-buttons { display: inline-block; margin-left: 30px; }
.header-right .header-buttons button { margin-left: 8px; }
.header-right .header-buttons button:first-child { margin-left: 0; }

.burger-icon:before, .burger-icon:after {
  content: "";
  background: var(--text-2);
  display: block;
  margin: auto;
  height: 1.5px;
  width: 15px;
}
.burger-icon:before { margin-bottom: 6px; }
.burger-icon:after  { margin-top: 6px; }

.icon-button {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  cursor: pointer;
  color: var(--text-2);
  transition: border-color .15s, color .15s;
}
.icon-button:hover { border-color: var(--accent); color: var(--accent); }

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link { padding-right: .9rem; padding-left: .9rem; }
}

/* =====================================================================
   CANVAS MENU
   ===================================================================== */
.canvas-menu {
  background: var(--bg);
  height: 100vh;
  overflow-y: auto; overflow-x: hidden;
  padding: 20px 36px;
  position: fixed;
  right: 0; top: 0;
  width: 300px;
  z-index: 6;
  box-shadow: -4px 0 20px rgba(0,0,0,.08);
  transform: translateX(350px);
  transition: all .3s ease-in-out;
}
.canvas-menu.open { transform: translateX(0); }
.canvas-menu.position-left { left: 0; right: auto; transform: translateX(-350px); }
.canvas-menu.position-left.open { transform: translateX(0); }

.canvas-menu .btn-close {
  box-sizing: content-box; width: 1em; height: 1em;
  position: absolute; padding: .25em;
  color: var(--text); border: 0; border-radius: 4px;
  opacity: .4; right: 24px; top: 18px;
  transition: opacity .2s;
}
.canvas-menu .btn-close:hover { opacity: 1; }
.canvas-menu .logo { margin-bottom: 28px; margin-top: 0; width: 100%; }
.canvas-menu nav { width: 100%; }

.canvas-menu .vertical-menu { list-style: none; padding: 0; margin-bottom: 0; }
.canvas-menu .vertical-menu li {
  padding: 0;
  position: relative;
  list-style: none;
  transition: all .2s ease-in-out;
}
.canvas-menu .vertical-menu li:after {
  content: "";
  display: block;
  height: 1px;
  margin: 8px 0;
  width: 100%;
  background: var(--border);
}
.canvas-menu .vertical-menu li.active a { color: var(--accent); }
.canvas-menu .vertical-menu li.active .submenu a { color: var(--text-2); }
.canvas-menu .vertical-menu li.active .submenu a:hover { color: var(--text); }
.canvas-menu .vertical-menu li.openmenu > a { color: var(--text); }
.canvas-menu .vertical-menu li.openmenu .switch { transform: rotate(180deg); }

.canvas-menu .vertical-menu li .switch {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 10px;
  display: inline-block;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
  color: var(--accent);
  position: absolute;
  top: 0; right: 0;
  transform: rotate(0deg);
  transition: all .2s;
}
.canvas-menu .vertical-menu li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.canvas-menu .vertical-menu li a.rating-vertical-menu { font-weight: 700 !important; }
.canvas-menu .submenu { display: none; padding: 8px 18px; }
.canvas-menu .submenu li { padding: 4px 0; }
.canvas-menu .submenu li:after { display: none; }
.canvas-menu .submenu li a { color: var(--text-2); font-size: 13px; font-weight: 400; }
.canvas-menu .submenu li a:hover { color: var(--text); }

/* =====================================================================
   BOTTOM NAV
   ===================================================================== */
.bottom-nav { display: none; height: 0; }

@media (max-width: 768px) {
  #return-to-top { display: none; overflow: hidden; }
  .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: var(--bg);
    border-top: 1px solid var(--border);
    height: 56px;
    transition: transform .25s ease;
    z-index: 5;
  }
  .bottom-nav.nav-hide { transform: translateY(100%); }
  .nav-item-bot {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-decoration: none;
    color: var(--text-2);
    flex-grow: 1; height: 100%;
    background: var(--bg);
    border: none; cursor: pointer;
    transition: color .15s;
  }
  .nav-item-bot:hover, .nav-item-bot:active { color: var(--accent); }
  .nav-item-bot i { font-size: 20px; }
  .nav-item-bot span { font-size: 10px; margin-top: 3px; }
}
@media (max-width: 480px) { .nav-item-bot i { font-size: 18px; } }

/* =====================================================================
   OVERLAY
   ===================================================================== */
.site-wrapper .main-overlay {
  opacity: 0; visibility: hidden;
  filter: blur(2px);
  background: rgba(255,255,255,.8);
  position: fixed;
  height: 100vh; width: 100%;
  z-index: 5;
  transition: all .3s ease-in-out;
}
.site-wrapper .main-overlay.active { opacity: .7; visibility: visible; }

/* =====================================================================
   SECTIONS / LAYOUT
   ===================================================================== */
section { position: relative; }
.main-content { margin-top: 36px; }
.main-content-lg { margin-top: 120px; margin-bottom: 120px; }
.container-minimal { max-width: 900px; margin: auto; padding: 0 15px; }
.section-header { margin-bottom: 18px; margin-top: 8px; position: relative; }
.section-title { font-size: 22px; margin: 0; }

/* =====================================================================
   BLOG / POST CARDS
   ===================================================================== */
.post.post-grid {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.post.post-grid:hover { box-shadow: var(--shadow-md); }
.post-title a { color: var(--text); }
.post-title a:hover { color: var(--accent); }
.category-badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
}
.more-button a, .more-button span { color: var(--accent); font-weight: 500; }
.more-button a:hover { color: var(--accent-h); }

/* =====================================================================
   BOTTOM BAR (post page sticky)
   ===================================================================== */
.bottomBar {
  position: fixed;
  left: 0; bottom: -100px; width: 100%;
  background: var(--bg);
  box-shadow: 0 -2px 10px rgba(0,0,0,.08);
  border-top: 1px solid var(--border);
  padding: 10px 18px;
  display: flex; justify-content: space-between; align-items: center;
  transition: bottom .3s;
  z-index: 9999;
  user-select: none;
}
.bottomBar.show { bottom: 0; }
.bb-left { display: flex; align-items: center; gap: 12px; }
.bb-logo { width: 50px; height: 50px; object-fit: contain; border-radius: var(--radius-sm); }
.bb-name { font-weight: 600; font-size: 14px; }
.bb-rating { font-size: 13px; color: var(--star); font-weight: 600; }
.bb-right { display: flex; gap: 8px; }
.bb-btn {
  border: 1px solid var(--border);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  background: var(--surface);
  color: var(--text);
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.bb-btn:hover { background: var(--surface-2); color: var(--text); }
.bb-btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.bb-btn.primary:hover { background: var(--accent-h); }
.bb-btn .label { padding: 0 4px; }
@media (max-width: 768px) {
  .bb-logo { width: 42px; height: 42px; }
  .bb-name, .bb-rating { display: none; }
  .bb-btn:not(.primary) { background: none; border-color: transparent; }
  .bb-btn .label { display: none; }
  .bb-btn { padding: 9px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 32px;
}
.footer-inner { padding: 0; }
.footer-logo { margin-bottom: 24px; margin-left: -4px; }
.footer-logo img { max-width: 110px; }
.footer-columns { display: flex; gap: 48px; margin: auto; }
.footer-left, .footer-right { display: flex; gap: 28px; flex-direction: column; min-width: 260px; justify-content: space-between; }
.footer-right { width: 100%; }
.footer-block p, .footer-columns p { font-weight: 600; margin-bottom: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.footer-block a { color: var(--text-2); text-decoration: none; font-size: 14px; }
.footer-block a:hover { color: var(--accent); }
.footer-socials a img { width: 20px; margin-right: 8px; opacity: .7; transition: opacity .2s; }
.footer-socials a img:hover, .footer-block a:hover { opacity: 1; }
.footer-menus { display: flex; justify-content: space-between; gap: 36px; }
.footer-menus ul { list-style: none; padding: 0; }
.footer-menus li { margin-bottom: 6px; }
.footer-menus a { color: var(--text-2); text-decoration: none; font-size: 14px; }
.footer-menus a:hover { color: var(--accent); }
.footer-lang {
  margin-top: 8px;
  display: flex; flex-wrap: wrap; gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 10px 8px;
  border-radius: var(--radius-sm);
}
.footer-bottom { opacity: .55; font-size: 13px; }
.footer-bottom-mobile { display: none; }

@media (max-width: 900px) {
  .footer-columns { flex-direction: column; text-align: center; gap: 36px; }
  .footer-logo { text-align: center; }
  .footer-menus { justify-content: center; flex-direction: column; }
  .footer-lang { gap: 6px; justify-content: center; }
  .footer-bottom { display: none; }
  .footer-bottom-mobile { display: block; opacity: .55; font-size: 13px; margin-top: 10px; }
  .footer-left, .footer-right { min-width: 180px; }
}

/* =====================================================================
   MISC: HIGHLIGHT, COUPON, BANNER, ETC
   ===================================================================== */
.highlight-block { animation: highlightAnim 2.5s ease; }
@keyframes highlightAnim {
  0%   { background: #fef9c3; }
  50%  { background: var(--bg); }
  100% { background: var(--bg); }
}

.showBannerBlock img { border-radius: var(--radius); }

/* Coupon tooltip */
.tooltipCoupon {
  visibility: hidden;
  width: 220px;
  background: var(--text);
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  position: absolute;
  z-index: 100000;
  left: -150px;
  bottom: 100%;
  font-size: 13px;
}
.promocodeShow:hover .tooltipCoupon { visibility: visible; }

/* Image viewer */
#imgViewer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#imgViewer img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.imgViewer-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  opacity: .7;
  line-height: 1;
}
.imgViewer-close:hover { opacity: 1; }

/* Header rating section */
.header-rating {
  padding: 20px 0 16px;
}
.header-rating h1 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
@keyframes growOut {
  0%   { transform: scale(.97); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

/* =====================================================================
   PARTNET BLOCK (partner carousel)
   ===================================================================== */
.partnetBlock {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 8px;
  padding: 14px 18px;
  cursor: pointer;
  transition: box-shadow .2s, border-color .2s;
}
.partnetBlock.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.partnetBackgroundNone { opacity: .7; }
.partnetIcon { font-size: 18px; }

/* =====================================================================
   FAQ BLOCK
   ===================================================================== */
.faqBlock > ul { list-style: none; padding: 0; }
.faqBlock > ul > li {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color .15s;
}
.faqBlock > ul > li.active { border-color: var(--accent); }
.faqBlock > ul > li > ul { display: none; padding-top: 10px; }

/* =====================================================================
   STICKY NAV (post sidebar)
   ===================================================================== */
.thisIsNav.isSticky { position: fixed; }

/* =====================================================================
   RESPONSIVE HELPERS
   ===================================================================== */
@media (max-width: 768px) {
  body { padding-bottom: 56px; }
}
