/* PLUGINS CUSTOMIZATION */
/* Force home-right-tabs icon sizing */
body#home .home-right-tabs button i.fa,
body#home .home-right-tabs button i.fas,
body#home .home-right-tabs button i.fab {
  width: 24px !important;
  height: 24px !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  line-height: 1 !important;
}

#blg-body {padding:0!important;}
body .blg-content h1 {font-size:24px;line-height:26px;margin-bottom:12px;}
body #faq-post-block .faq-post-inside {background:transparent;}
body #faq-post-block .faq-post-inside .faq-row {background:#fff;}
body .frm-title-right {margin-bottom:15px;}
body #frm-body {padding:0;margin:0;}

/* Loan plugin - rounded modal */
#lon-fancy-dialog .lon-box {
  border-radius: 16px !important;
  overflow: hidden;
}

#lon-fancy-dialog .lon-header {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

#lon-fancy-dialog .lon-footer {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.vrool-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vrool-auth-modal[aria-hidden="false"] {
  display: flex;
}

.vrool-auth-modal .vrool-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.vrool-auth-modal .vrool-auth-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(2, 6, 23, 0.10);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.35);
  padding: 18px;
}

.vrool-auth-modal .vrool-auth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.vrool-auth-modal .vrool-auth-title {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 1000;
  color: #0f172a;
}

.vrool-auth-modal .vrool-auth-desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.70);
}

.vrool-auth-modal .vrool-auth-close {
  border: 1px solid rgba(2, 6, 23, 0.10);
  background: rgba(255, 255, 255, 0.75);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.75);
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.vrool-auth-modal .vrool-auth-close:hover {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.90);
}

.vrool-auth-modal .vrool-auth-close:active {
  transform: scale(0.98);
}

.vrool-auth-modal .vrool-auth-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.vrool-auth-modal .vrool-auth-btn {
  text-decoration: none;
  font-weight: 1000;
  min-width: 140px;
  text-align: center;
  border-radius: 14px;
}

@media (max-width: 480px) {
  .vrool-auth-modal {
    padding: 14px;
  }

  .vrool-auth-modal .vrool-auth-actions {
    justify-content: stretch;
  }

  .vrool-auth-modal .vrool-auth-btn {
    width: 100%;
    min-width: 0;
  }
}

#vrool-car-more {
  margin: 18px 0;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  box-shadow: 0 10px 30px rgba(17,24,39,0.08);
  overflow: hidden;
  position: relative;
}

#vrool-car-more .vrool-car-more-head {
  display: none;
}

#vrool-car-more .vrool-car-more-body {
  padding: 14px 14px 18px 14px;
  max-height: 220px;
  overflow: hidden;
  position: relative;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

#vrool-car-more .vrool-car-more-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  /* background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1)); */
  pointer-events: none;
  transition: opacity .3s;
}

#vrool-car-more.open .vrool-car-more-body {
  max-height: 5000px;
  overflow: visible;
}

#vrool-car-more.open .vrool-car-more-body::after {
  opacity: 0;
}

#vrool-car-more .vrool-car-showmore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: background .15s;
}

#vrool-car-more .vrool-car-showmore:hover {
  background: rgba(0,0,0,0.02);
}

#vrool-car-more .vrool-car-showmore i {
  font-size: 12px;
  animation: epsCarArrowBounce 1.5s ease-in-out infinite;
  transition: transform .3s;
}

#vrool-car-more.open .vrool-car-showmore i {
  transform: rotate(180deg);
  animation: none;
}

@keyframes epsCarArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

#vrool-car-more .vrool-car-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px 0;
}

#vrool-car-more .vrool-car-highlight {
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, rgba(0,186,118,0.08), rgba(255,255,255,0.0));
  padding: 10px 10px;
}

#vrool-car-more .vrool-car-highlight .t {
  font-size: 11px;
  line-height: 14px;
  font-weight: 800;
  color: #065f46;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

#vrool-car-more .vrool-car-highlight .v {
  margin-top: 6px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 1000;
  color: #111827;
}

#vrool-car-more .vrool-car-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px 0;
}

#vrool-car-more .vrool-car-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(17,24,39,0.03);
}

#vrool-car-more .vrool-car-chip .k {
  font-size: 11px;
  line-height: 14px;
  font-weight: 900;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#vrool-car-more .vrool-car-chip .v {
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  color: #111827;
}

#vrool-car-more .vrool-car-box.vrool-car-timeline {
  grid-column: 1 / -1;
}

#vrool-car-more .vrool-car-timeline-list {
  position: relative;
  margin-top: 6px;
  padding-left: 22px;
}

#vrool-car-more .vrool-car-timeline-list:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
}

#vrool-car-more .vrool-car-timeline-item {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 10px 0;
}

#vrool-car-more .vrool-car-timeline-item .dot {
  position: absolute;
  left: -18px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #00ba76;
  box-shadow: 0 0 0 3px #fff;
}

#vrool-car-more .vrool-car-timeline-item .content {
  flex: 1;
  padding-left: 13px;
}

#vrool-car-more .vrool-car-timeline-item .top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

#vrool-car-more .vrool-car-timeline-item .label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 1000;
  color: #111827;
}

#vrool-car-more .vrool-car-timeline-item .date {
  font-size: 11px;
  line-height: 14px;
  font-weight: 800;
  color: #6b7280;
  white-space: nowrap;
}

#vrool-car-more .vrool-car-timeline-item .desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #374151;
}

#vrool-car-more .vrool-car-power-graph {
  margin: 4px 0 10px 0;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(17,24,39,0.02);
}

#vrool-car-more .vrool-car-power-row + .vrool-car-power-row {
  margin-top: 10px;
}

#vrool-car-more .vrool-car-power-row .meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

#vrool-car-more .vrool-car-power-row .meta .k {
  font-size: 11px;
  line-height: 14px;
  font-weight: 900;
  color: #6b7280;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#vrool-car-more .vrool-car-power-row .meta .v {
  font-size: 14px;
  line-height: 18px;
  font-weight: 1000;
  color: #111827;
}

#vrool-car-more .vrool-car-power-row .bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  overflow: hidden;
}

#vrool-car-more .vrool-car-power-row .bar .fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  position: relative;
}

#vrool-car-more .vrool-car-power-row .bar .fill .in {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 12px;
  font-weight: 1000;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  white-space: nowrap;
  pointer-events: none;
}

#vrool-car-more .vrool-car-power-row .bar .max {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 12px;
  font-weight: 900;
  color: rgba(17,24,39,0.55);
  white-space: nowrap;
  pointer-events: none;
}

#vrool-car-more .vrool-car-power-row .bar .fill.bhp {
  background: linear-gradient(90deg, rgba(0,186,118,0.30), rgba(0,186,118,0.95));
}

#vrool-car-more .vrool-car-power-row .bar .fill.kw {
  background: linear-gradient(90deg, rgba(59,130,246,0.30), rgba(59,130,246,0.95));
}

#vrool-car-more .vrool-car-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#vrool-car-more .vrool-car-box {
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 12px 12px 10px 12px;
}

#vrool-car-more .vrool-car-box h3 {
  margin: 0 0 10px 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #111827;
}

#vrool-car-more .vrool-car-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px dashed rgba(0,0,0,0.08);
}

#vrool-car-more .vrool-car-row:first-of-type {
  border-top: 0;
}

#vrool-car-more .vrool-car-row .k {
  font-size: 12px;
  line-height: 16px;
  color: #6b7280;
  font-weight: 600;
}

#vrool-car-more .vrool-car-row .v {
  font-size: 12px;
  line-height: 16px;
  color: #111827;
  font-weight: 800;
  text-align: right;
  max-width: 58%;
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  #vrool-car-more .vrool-car-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #vrool-car-more .vrool-car-chip {
    width: 100%;
    justify-content: space-between;
  }

  #vrool-car-more .vrool-car-more-grid {
    grid-template-columns: 1fr;
  }

  #vrool-car-more .vrool-car-more-body {
    padding: 12px;
  }

  #vrool-car-more .vrool-car-box {
    padding: 12px;
  }
}

body #frm-body {
  margin:0;
  padding:0;
}

body #frm-body .frm-content {
  background:transparent;
}

body #frm-body .frm-title-left h1 {
  font-size:24px;
  line-height:28px;
  font-weight:800;
  margin:0 0 6px 0;
  color:#111;
}

body #frm-body .frm-title-left h2 {
  font-size:13px;
  line-height:18px;
  font-weight:400;
  margin:0;
  color:#666;
}

body #frm-body .frm-title-right a.frm-new-topic,
body #frm-body .frm-auth,
body #frm-body .frm-answer .frm-area .frm-buttons button {
  border-radius:999px;
  padding:10px 16px;
  font-weight:800;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

body #frm-body .frm-title-right a.frm-new-topic {
  background:transparent;
  color:#333;
}

body #frm-body .frm-title-right a.frm-new-topic:hover {
  background:rgba(0,0,0,0.04);
  color:#111;
}

body #frm-body .frm-box,
body #frm-body .frm-topics,
body #frm-body .frm-post,
body #frm-body .frm-answer {
  background:#fff;
  border:1px solid rgba(0,0,0,0.10);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  overflow:hidden;
}

body #frm-body .frm-category {
  background:transparent;
  border:none;
  padding:14px 16px;
}

body #frm-body .frm-category .frm-c-name {
  font-size:14px;
  line-height:18px;
  font-weight:900;
  color:#111;
}

body #frm-body .frm-board,
body #frm-body .frm-topic {
  border:none;
  background:transparent;
}

body #frm-body .frm-board + .frm-board,
body #frm-body .frm-topic + .frm-topic {
  border-top:1px solid rgba(0,0,0,0.08);
}

body #frm-body .frm-board {
  padding:14px 16px;
}

body #frm-body .frm-boards .frm-board {
  display:flex;
  align-items:center;
  gap:14px;
}

body #frm-body .frm-boards .frm-board .frm-icon {
  position:relative;
  left:auto;
  top:auto;
  width:44px;
  height:44px;
  flex:0 0 44px;
}

body #frm-body .frm-boards .frm-board .frm-icon .frm-icon-outer {
  position:relative;
  top:auto;
  left:auto;
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
}

body #frm-body .frm-boards .frm-board .frm-icon .frm-icon-outer i {
  line-height:1;
}

body #frm-body .frm-boards .frm-board .frm-about {
  float:none;
  width:auto;
  flex:1 1 auto;
  padding:0;
}

body #frm-body .frm-boards .frm-board .frm-stats {
  float:none;
  width:auto;
  flex:0 0 auto;
  text-align:right;
  padding:0;
}

body #frm-body .frm-boards .frm-board .frm-last {
  float:none;
  width:auto;
  flex:0 0 auto;
}

body #frm-body .frm-topic {
  padding:14px 16px;
}

body #frm-body .frm-board .frm-name a,
body #frm-body .frm-topic .frm-data a {
  color:#111;
  font-weight:800;
}

body #frm-body .frm-board .frm-desc,
body #frm-body .frm-topic .frm-description {
  color:#666;
}

body #frm-body .frm-post {
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

body #frm-body .frm-post .frm-left {
  background:#fbfbfc;
  border-right:1px solid rgba(0,0,0,0.08);
}

body #frm-body .frm-post .frm-user {
  font-size:16px;
  line-height:20px;
}

body #frm-body .frm-post .frm-right {
  padding:16px 18px 18px 18px;
}

body #frm-body .frm-post .frm-posted {
  color:#777;
}

body #frm-body .frm-post .frm-message {
  font-size:14px;
  line-height:20px;
  color:#171717;
}

body #frm-body .frm-topic-manage a {
  border-radius:999px;
  padding:7px 10px;
  border:1px solid rgba(0,0,0,0.10);
  background:transparent;
}

body #frm-body .frm-topic-manage a.frm-remove {
  background:transparent;
  color:#d9534f;
  border-color:rgba(217,83,79,0.3);
}

body #frm-body .frm-answer {
  padding:16px;
}

body #frm-body .frm-answer .frm-area {
  padding-left:16px;
}

body #frm-body .frm-answer .frm-area .frm-text {
  border:1px solid rgba(0,0,0,0.12);
  border-radius:12px;
}

body #frm-body .frm-answer .frm-area .frm-text:before,
body #frm-body .frm-answer .frm-area .frm-toptext:before {
  display:none;
}

body #frm-body .frm-answer .frm-area .frm-buttons {
  background:transparent;
  padding:12px 0 0 0;
}

@media (max-width: 767px) {
  body #frm-body {margin:0;}

  body #frm-body .frm-title-left,
  body #frm-body .frm-title-right {
    width:100%;
  }

  body #frm-body .frm-title-right a.frm-new-topic {
    width:100%;
    text-align:center;
    margin-top:10px;
  }

  body #frm-body .frm-post .frm-left {
    width:100%;
    border-right:none;
    border-bottom:1px solid rgba(0,0,0,0.08);
  }

  body #frm-body .frm-post .frm-right {
    width:100%;
  }

  body #frm-body .frm-answer {
    padding:14px;
  }

  body #frm-body .frm-answer .frm-left {
    width:90px;
  }

  body #frm-body .frm-answer .frm-area {
    width:calc(100% - 90px);
    padding-left:12px;
  }
}

body#home .home-search-right .social-widget {position: relative;}

body#home .home-search-right .social-widget {display:flex;flex-direction:column;}

body#home .home-search-right .social-widget .home-right-tabs {flex:0 0 auto;}

body#home .home-search-right .social-widget .home-right-panel {display:none;}

body#home .home-search-right .social-widget .home-right-panel.is-active {display:flex;flex-direction:column;flex:1 1 auto;min-height:0;}

body#home .home-search-right .social-widget .home-right-latest,
body#home .home-search-right .social-widget .social-widget-list {flex:1 1 auto;min-height:0;overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;}

body#home .home-search-right .social-widget .social-widget-footer {flex:0 0 auto;}

body#home .home-search-right .social-widget #mlHomeThemeToggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
}

body#home .home-search-right .social-widget h2 {
  padding-right: 54px;
}
body #mo-check.styled .input-box-check label {line-height:18px;}
body .sms-body {margin-left:auto;margin-right:auto;}
body .vrool-chat.vrool-closed .vrool-global-head span:not(.vrool-alt) {font-size:0;color:transparent;display:block;width:auto;position:initial;padding:0;max-width:100%;}
body .vrool-chat.vrool-closed .vrool-global-head span:not(.vrool-alt):before {content:"\f27a";font-family:"Font Awesome 5 Free";display:inline-block;width:60px;text-indent:1px;font-size:24px;height:60px;text-align:center;color:#f9f9f9;line-height:62px;}
body .vrool-chat.vrool-closed .vrool-global-head svg {display:none;}
body.body-ua #ur-box-show {display: flex; flex-direction: column; align-items: flex-start;}
body.body-ua #ur-box-show .ur-over, body.body-ua #ur-box-show .ur-charts {max-width:360px;text-align:left;}
body.body-ua #ur-box-show .ur-over .ur-glob {margin-top:0;}
body .atr-input-box input[type="radio"], body .atr-input-box input[type="checkbox"] {opacity:1;position:relative;left:auto;top:auto;z-index:1;visibility:visible;overflow:visible;padding: 0!important; width: 18px!important; height: 18px!important; margin: 0 4px 0 0!important; box-shadow: none!important;}
body #atr-form.atr-styled .control-group > label {float:left;line-height:28px;}
body .atr-form .controls select {margin:0 6px 4px 0;}
body .atr-form li {margin:0 0 4px 0;}
body .atr-form li:last-child {margin-bottom:0;}
body form#im-create-thread-form {padding:16px;}
body .vrool-promote-form .vrool-pb-line .vrool-pb-desc {font-weight:normal;line-height:15px;}
body .vrool-body.vrool-body-itempay {background:transparent;}
body .vrool-body-itempay .vrool-h1 {font-size: 18px; font-weight: bold; line-height: 20px;color:#171717;}
body .vrool-body-itempay .vrool-h2, body .vrool-body-itempay .vrool-cart-col.prod .p3, body .vrool-group .vrool-perc {font-weight:normal;}
body .vrool-body-itempay .vrool-promote-form .vrool-h1, body .vrool-pay-button li a > strong {font-weight:600;}
body .vrool-body-pack .vrool-h1, body .vrool-body-group .vrool-h1, body .vrool-body-banner .vrool-h2, body .vrool-body-order .vrool-h2, body .vrool-body-payments .vrool-h2 {font-weight:normal;}
body .vrool-group .vrool-h2 {font-weight:bold;}
.bpr-prof .bpr-btn {cursor:pointer;}
body .bpr-box-check label:after {font-size:13px;font-weight:900;text-indent:-1px;line-height:16px;}
.qr-code {float:right;margin:4px 0 12px 12px;display:inline-block;width:96px;height:96px;padding:4px;background:#fff;border:1px solid #ccc;position:relative;border-radius:3px 3px 0 3px;}
.qr-code > strong {position:absolute;right:-1px;bottom:-16px;font-weight:600;font-size:11px;line-height:11px;color:#000;height:16px;padding:0px 4px;border:1px solid #ccc;border-top-color:#fff;border-radius:0 0 3px 3px;background:#fff;}
div[id^="anr_captcha_field_"] {margin:0 0 16px 0;}
.MCtooltip {display:none;position: absolute; top:auto;bottom: 24px; left: 10px; border-radius: 5px; padding: 8px 10px; background: #e4e4e4;z-index:9;width:auto;font-weight:normal;white-space:nowrap;font-size:13px;line-height:16px;}
.simple-prod .MCtooltip {background: #171717; color: #f9f9f9; padding: 5px 6px;}
.simple-prod .MCtooltip:before {background:#171717;}
ul.breadcrumb li .MCtooltip {left:auto;right:0;}
.MCtooltip .fa {display:none;}
.MCtooltip:before {content:"";position:absolute;left:15px;top:auto;bottom:-5px;width:10px;height:10px;background:#e4e4e4;transform:rotate(-135deg);border-bottom-right-radius:10px;}
*:hover > .MCtooltip {display:block;}

@media (max-width: 767px) {
  #breadcrumbs.container {
    padding-left: 14px;
  }
}

body.demo {padding-bottom:41px;}

/* SHOWCASE BOX */
#showcase-box {position: fixed;bottom:0;left:0;z-index:90;display:inline-block;background: #171717; padding: 6px 0px; font-size: 13px; font-family: monospace; line-height: 1.1;width: auto;width:100%;color: #f9f9f9;}
#showcase-box .container {overflow-x:auto;display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; }
#showcase-box .container > a {white-space:nowrap;padding:6px 8px;color:#f9f9f9;transition:0.2s;background:#575757;float:left;margin:2px 8px 2px 0;height:26px;}
#showcase-box .container > a:hover {color:#f9f9f9;background:#474747;text-decoration:none;}
#showcase-box .switch-color {float:left;margin:0;}
#showcase-box .switch-color a {position:relative;width:28px;height:28px;margin:1px 4px;float:left;display:block;opacity:0.85;transition:0.2s;border:1px solid #bbb;}
#showcase-box .switch-color a:hover {opacity:1;box-shadow:0 0 0 3px #676767;}
#showcase-box .switch-color a.active {opacity:1;}
#showcase-box .switch-color a.active:after {position:absolute;content:"\f00c";left:calc(50% - 7px);font-weight:900;top:calc(50% - 7px);z-index:2;font-family:"Font Awesome 5 Free";font-size:12px;width:14px;height:14px;text-align:center;line-height:14px;color:#fff;}
#showcase-button {position:relative;text-decoration:none;padding:3px 0 0 0;transition:0.3s;z-index:4;background: #171717;position:fixed;left:8px;bottom:25%;color:#f9f9f9;width:36px;height:38px;margin-bottom:-3px;text-align:center;border-radius:6px;box-shadow:0 1px 3px rgba(0,0,0,0.1);}
#showcase-button > i {line-height:23px;font-size:17px;display:block;}
#showcase-button > span {line-height:8px;font-weight:600;font-size:8px;display:block;letter-spacing:-0.2px;}
#showcase-button.active:after {content:"\f063";font-weight:900;width:24px;height:16px;line-height:20px;font-size:15px;color:#3b49df;font-family: "Font Awesome 5 Free";position:absolute;left:50%;top:100%;margin-left:-12px;z-index:2;}
body.demo {padding-bottom:41px;}

/* SUBDOMAIN NAVIGATION */
body.subdomain-navigation div.m25 {margin:55px 0 55px 0;}
body.subdomain-navigation header {text-align:center;}
body.subdomain-navigation header #logo {float:none;display:inline-block;}
body.subdomain-navigation header #logo img {max-height:75px;height:auto;margin:25px 0;}
body.subdomain-navigation section {text-align:center;font-size:18px;}
body.subdomain-navigation section div {display:inline-block;width:100%;}
body.subdomain-navigation section strong {display:inline-block;margin-bottom:15px;}
body.subdomain-navigation footer {background:transparent;text-align:center;padding:20px;margin:30px 0 0 0;color:#888;font-size:14px;}
body.subdomain-navigation header .links, body.subdomain-navigation section.promo, body.subdomain-navigation section.one {display:none;}
body.subdomain-navigation header .menu.btn, body.subdomain-navigation #navi-bar {display:none;} 
#subdomains-list {max-width:980px;display: flex;flex-wrap: wrap; justify-content: center; align-items: flex-start; flex-direction: row;margin:0 auto;}
#subdomains-list a { display: inline-block; max-width: 33.33%; width: 100%; font-size: 16px; margin: 0px 0 15px 0px;padding:0 15px 0 0;text-align:left; }
#subdomains-list a em {font-size:12px;font-style:normal;line-height:1;color:#999}
body.subdomain-navigation.sd-with-icon #subdomains-list { display: flex; padding: 5px 30px; flex-wrap: wrap; justify-content: center; align-items: flex-start; flex-direction: row; }
body.subdomain-navigation.sd-with-icon #subdomains-list a { display: inline-block; max-width: 116px; padding:0;text-align:center;line-height:16px;width: 100%; font-size: 14px; margin: 0px 1px 20px 1px; }
body.subdomain-navigation.sd-with-icon #subdomains-list a span { display: block; margin: 6px 0 0 0; }
body.subdomain-navigation.sd-with-icon #subdomains-list a img { display: inline-block; height: 48px; width: auto; max-width: 76px; border: 1px solid #aaa; }
body.subdomain-navigation.sd-with-icon #subdomains-list a.restricted img {opacity:0.4;}
footer #subdomains-list {margin:15px 0;justify-content: flex-start;}
footer #subdomains-list a {max-width:25%;font-size:14px;margin:0 0 8px 0;}

/* COMMENT REPLIES */
#comment-replies {padding-left:24px;}
#comment-replies + .comment-reply-row {padding-left:24px;}
.btn.comment-reply {padding:8px 16px;font-size:14px;line-height:16px;height:auto;margin:0px 0 24px 0;}

/* PRINT BODY */
body.print #item-side {position:relative;top:auto;}

/* PUBLIC PROFILE */
body#public .container.primary {padding-bottom:24px;gap:18px;}
#public-main {width: calc(100% - 325px);position:relative;display:flex;flex-direction: column;}
#public #about {background:#fefefe;padding:16px;border-radius:14px;border:1px solid rgba(0,0,0,0.08);box-shadow:0 10px 30px rgba(0,0,0,0.06);background:#fff;}
#public #about strong {font-size:13px;line-height:18px;color:#111;font-weight:900;margin-bottom:10px;}
#public #about div {font-size:13px;line-height:20px;color:#444;}
#public #share {padding: 0 3px; margin:-4px 0 10px 0; border: none;font-size:13px; background: transparent; display: flex; flex-direction: row; justify-content: space-evenly;}
#public #share a {color:#666;}
#public h1 {font-size:22px;line-height:24px;margin:0 0 12px 0;}
#public #item-side {top:72px;}
#public #item-side > .box,
#public #item-side > #seller,
#public #item-side > #about,
#public #item-side > #share {border-radius:14px;border:1px solid rgba(0,0,0,0.08);box-shadow:0 10px 30px rgba(0,0,0,0.06);background:#fff;}
#public #item-side #seller {padding:16px;}
#public #item-side #seller .line1 {display:flex;gap:12px;align-items:center;}
#public #item-side #seller .img {width:56px;min-width:56px;height:56px;border-radius:16px;overflow:hidden;border:1px solid rgba(0,0,0,0.08);}
#public #item-side #seller .img img {width:100%;height:100%;object-fit:cover;}
#public #item-side #seller .data {display:flex;flex-direction:column;gap:4px;}
#public #item-side #seller .data .name {font-size:16px;line-height:20px;font-weight:900;color:#111;}
#public #item-side #seller .data .social-meta {display:flex;flex-wrap:wrap;gap:10px;font-size:12px;line-height:16px;color:#475569;}
#public #item-side #seller .data .social-meta span {display:inline-flex;align-items:center;gap:4px;}
#public #item-side #seller .data .pro {margin-top:2px;display:inline-flex;align-items:center;height:22px;padding:0 10px;border-radius:999px;background:rgba(0,186,118,0.12);border:1px solid rgba(0,186,118,0.28);color:#0a7d57;font-size:12px;font-weight:800;line-height:18px;width:max-content;}
#public #item-side #seller .line2 {margin-top:12px;display:flex;flex-direction:column;gap:4px;color:#666;font-size:12px;line-height:16px;}
#public #item-side #seller .line3 {margin-top:12px;display:flex;flex-direction:column;gap:10px;}
#public #item-side #seller .line-rating {margin-top:8px;display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
#public #item-side #seller .line-rating .rating-stars {display:inline-flex;align-items:center;gap:2px;color:#f59e0b;font-size:14px;line-height:14px;}
#public #item-side #seller .line-rating .rating-count {display:inline-flex;align-items:center;font-size:13px;line-height:16px;font-weight:700;color:#334155;}
#public #item-side #seller .line-rating .rating-link {display:inline-flex;align-items:center;font-size:12px;line-height:16px;font-weight:700;}
#public #item-side #seller .line3 .address {display:flex;gap:10px;align-items:flex-start;font-size:13px;line-height:18px;color:#111;}
#public #item-side #seller .line3 .address i {margin:0;width:18px;height:18px;opacity:0.7;}
#public #item-side #seller .line3 .address img {margin:0;width:16px;height:16px;opacity:0.7;object-fit:contain;display:block;flex:0 0 16px;}
#item-side #seller .line3 .address {display:flex;gap:10px;align-items:flex-start;}
#item-side #seller .line3 .address img {margin:2px 0 0 0;width:16px;height:16px;opacity:0.7;object-fit:contain;display:block;flex:0 0 16px;}
#public #item-side #seller a.phone {display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:999px;background:rgba(0,186,118,0.10);border:1px solid rgba(0,186,118,0.20);color:#0a7d57;font-weight:800;font-size:13px;line-height:18px;text-decoration:none;}
#public #item-side #seller a.phone i {margin:0;}
#public #item-side #seller a.phone:hover {background:rgba(0,186,118,0.14);}
#public #item-side .master-button.public-contact {height:46px;border-radius:14px;background:#00ba76;color:#fff;border:none;box-shadow:0 10px 30px rgba(0,0,0,0.10);font-weight:900;}
#public #item-side .master-button.public-contact:hover {background:#00a867;}
#public #item-side .seller-button {border-radius:14px;border:1px solid rgba(0,0,0,0.08);background:#fff;box-shadow:0 10px 30px rgba(0,0,0,0.06);}
#public #item-side .seller-button:hover {background:#f8f8f8;}

/* ── BnB Booking Card: Date Display Divs ── */
.vrool-airbnb-date-field {
  position: relative;
}

#vrool-airbnb-checkin-display,
#vrool-airbnb-checkout-display {
  cursor: pointer;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: #fff;
  min-height: 42px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s, box-shadow 0.15s;
  user-select: none;
}

#vrool-airbnb-checkin-display:hover,
#vrool-airbnb-checkout-display:hover {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.10);
}

#vrool-airbnb-checkin-display:active,
#vrool-airbnb-checkout-display:active {
  border-color: rgba(16,185,129,0.6);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.18);
}

.vrool-airbnb-date-field .vrool-airbnb-date-ico {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.vrool-airbnb-date-field .vrool-airbnb-date-ico img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  opacity: 0.85;
}

/* ── Guest Display Div ── */
#vrool-airbnb-guest-display {
  cursor: pointer;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: #fff;
  min-height: 42px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s, box-shadow 0.15s;
  user-select: none;
}

#vrool-airbnb-guest-display:hover {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.10);
}

/* ══ Calendar Popup ══ */
.vrool-cal-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.vrool-cal-popup-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px 24px 16px;
}

.vrool-cal-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.vrool-cal-popup-title {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #111;
}

.vrool-cal-nav-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.15s;
}

.vrool-cal-nav-btn:hover {
  background: #f5f5f5;
}

.vrool-cal-close-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  margin-left: 4px;
  transition: background 0.15s;
}

.vrool-cal-close-btn:hover {
  background: #f0f0f0;
}

.vrool-cal-months-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vrool-cal-month {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.vrool-cal-month-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  padding: 0 0 8px;
}

.vrool-cal-dow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  padding: 4px 0;
  text-transform: uppercase;
}

.vrool-cal-blank {
  min-height: 1px;
}

/* Day cell base */
.vrool-cal-day {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #fff;
  padding: 6px 4px;
  min-height: 52px;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background 0.12s, border-color 0.12s, box-shadow 0.12s;
  display: flex;
  flex-direction: column;
}

.vrool-cal-day:hover:not(:disabled) {
  border-color: rgba(0,0,0,0.18);
  background: #fafafa;
}

.vrool-cal-day-num {
  font-weight: 900;
  font-size: 12px;
  line-height: 14px;
  color: #0f172a;
}

.vrool-cal-day-price {
  margin-top: 4px;
  font-weight: 800;
  font-size: 10px;
  line-height: 12px;
  opacity: 0.7;
  white-space: nowrap;
}

.vrool-cal-day-blocked-label {
  position: absolute;
  left: 4px;
  bottom: 4px;
  font-size: 9px;
  font-weight: 900;
  color: #991b1b;
  opacity: 0.85;
  white-space: nowrap;
  max-width: calc(100% - 8px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Past dates */
.vrool-cal-day.past {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Blocked dates */
.vrool-cal-day.blocked {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Selected endpoints (check-in / checkout) */
.vrool-cal-day.selected {
  border-color: rgba(16,185,129,0.9);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.06);
}

/* In-range (between check-in and checkout) */
.vrool-cal-day.in-range {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.15);
}

/* Hover preview */
.vrool-cal-day.hover-preview {
  background: rgba(16,185,129,0.05);
  border-color: rgba(16,185,129,0.12);
}

.vrool-cal-day:disabled {
  cursor: not-allowed;
}

.vrool-cal-popup-footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.vrool-cal-clear-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  text-decoration: underline;
  transition: background 0.15s;
}

.vrool-cal-clear-btn:hover {
  background: #f5f5f5;
}

/* ══ Guest Picker Dropdown ══ */
.vrool-guest-picker {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 16px 20px;
  width: 340px;
  max-width: 90vw;
}

.vrool-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.vrool-guest-row:last-of-type {
  border-bottom: none;
}

.vrool-guest-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vrool-guest-label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.vrool-guest-desc {
  font-size: 12px;
  font-weight: 500;
  color: #888;
}

.vrool-guest-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vrool-guest-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.12s, border-color 0.12s;
}

.vrool-guest-btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.25);
}

.vrool-guest-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vrool-guest-count {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  min-width: 20px;
  text-align: center;
}

.vrool-guest-close-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.vrool-guest-close-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.vrool-guest-close-btn:hover {
  background: #444;
}

/* ── Guest picker root needs relative positioning ── */
#vrool-guest-picker-root {
  position: relative;
}

/* ══ Mobile Responsive ══ */
@media (max-width: 699px) {
  .vrool-cal-popup {
    padding: 8px;
    align-items: flex-end;
  }

  .vrool-cal-popup-container {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 16px 12px 12px;
    max-height: 85vh;
  }

  .vrool-cal-months-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vrool-cal-day {
    min-height: 46px;
    padding: 4px 3px;
  }

  .vrool-cal-day-num {
    font-size: 11px;
  }

  .vrool-cal-day-price {
    font-size: 9px;
  }

  .vrool-guest-picker {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 28px;
    z-index: 10000;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
    max-height: 70vh;
    overflow-y: auto;
  }
}

@media (max-width: 767px) {
  #vrool-airbnb-reserve {
    width: 100%;
  }
}
#public #public-main h1 {font-size:22px;line-height:28px;font-weight:900;color:#111;margin:0 0 14px 0;}
body#public #public-main .products.list {
  margin:0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
 }
body#public #public-main .products.list > .simple-prod,
body#public #public-main .products.list > div {border-radius:14px;border:1px solid rgba(0,0,0,0.08);box-shadow:0 10px 30px rgba(0,0,0,0.06);background:#fff;overflow:hidden;}

body#public #public-main .products.list .simple-prod {width:100%;margin:0;}
body#public #public-main .products.list .simple-prod .simple-wrap {display:flex;flex-direction:column;gap:10px;padding:14px;}

body#public #public-main .products.list .simple-prod .img-wrap {
  width:100%;
  min-width:0;
  height:190px;
  border-radius:12px;
  overflow:hidden;
  background:#f2f4f8;
  border:1px solid rgba(0,0,0,0.06);
  position:relative;
}
body#public #public-main .products.list .simple-prod .img-wrap > a.img {display:block;width:100%;height:100%;}
body#public #public-main .products.list .simple-prod .img-wrap img {width:100%;height:100%;object-fit:cover;border-radius:0;position:static;}

body#public #public-main .products.list .simple-prod .img-wrap .view-counter,
body#public #public-main .products.list .simple-prod .img-wrap .bar,
body#public #public-main .products.list .simple-prod .img-wrap .image-counter {display:block;}

body#public #public-main .products.list .simple-prod .img-wrap .user-image,
body#public #public-main .products.list .simple-prod .img-wrap .premium-mark,
body#public #public-main .products.list .simple-prod .img-wrap .day-offer-mark {display:none!important;}

body#public #public-main .products.list .simple-prod .img-wrap .vrool-mobile-img-overlay > div:first-child {display:none;}

body#public #public-main .products.list .simple-prod .vrool-mm-badge {
  position:static;
  display:grid;
  grid-template-columns:1fr auto;
  column-gap:10px;
  margin:0;
  background:transparent;
  border:0;
  border-radius:0;
  padding:0;
  box-shadow:none;
}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-make,
body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-model {display:none;}
body#home .simple-prod .vrool-mm-badge .vrool-mm-make,
body#home .simple-prod .vrool-mm-badge .vrool-mm-model {display:none;}
body#public .simple-prod .vrool-mm-badge .vrool-mm-make,
body#public .simple-prod .vrool-mm-badge .vrool-mm-model {display:none;}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-make {grid-column:1;grid-row:1;}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-model {grid-column:1;grid-row:2;margin-top:2px;}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .favorite {grid-column:2;grid-row:1 / span 2;align-self:start;position:static;top:auto;right:auto;float:none;margin:0;z-index:auto;transform:none;}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .favorite i {color:#00d253;background:transparent;}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-make {font-size:13px;line-height:16px;font-weight:400;color:#111;}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-model {font-size:12px;line-height:15px;color:#444;font-weight:700;}

body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-year {font-weight:400;}
body#public #public-main .products.list .simple-prod .vrool-mm-badge .vrool-mm-make-name {font-weight:800;}

body#public #public-main .products.list .simple-prod .data {min-width:0;display:flex;flex-direction:column;gap:8px;}

body#public #public-main .products.list .simple-prod .data .info {font-size:12px;line-height:16px;color:#666;margin:0;}
body#public #public-main .products.list .simple-prod .data .info i.vrool-loc-pin {margin-right:6px;opacity:0.7;}

body#public #public-main .products.list .simple-prod .data .title {
  font-size:16px;
  font-weight:900;
  color:#111;
  margin:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

body#public #public-main .products.list .simple-prod .data .description {
  font-size:12px;
}

body#public #public-main .products.list .simple-prod .vrool-trader-see-ad:hover {background:#f7f7f7;}

body#public #public-main .products.list .simple-prod .vrool-trader-card {margin:0;padding:0;border:0;background:transparent;}
body#public #public-main .products.list .simple-prod .vrool-trader-specs {display:flex;align-items:flex-start;justify-content:space-between;gap:10px;margin:0;}
body#public #public-main .products.list .simple-prod .vrool-trader-spec {
  flex:1 1 0;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:6px;
  text-align:center;
  padding:0;
  border:0;
  background:transparent;
 }
body#public #public-main .products.list .simple-prod .vrool-trader-spec img {width:20px;height:20px;opacity:0.85;}

body#public #public-main .products.list .simple-prod .vrool-trader-name {font-size:13px;line-height:18px;font-weight:800;color:#111;}
body#public #public-main .products.list .simple-prod .vrool-trader-phone {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:4px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(0,186,118,0.08);
  border:1px solid rgba(0,186,118,0.18);
}
body#public #public-main .products.list .simple-prod .vrool-trader-phone-left {display:inline-flex;align-items:center;gap:10px;color:#0a7d57;font-weight:900;font-size:13px;min-width:0;}
body#public #public-main .products.list .simple-prod .vrool-trader-phone-left i {margin:0;opacity:0.9;}
body#public #public-main .products.list .simple-prod .vrool-trader-see-ad {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:auto;
  padding:9px 12px;
  border:1px solid rgba(0,0,0,0.06);
  background:#00ba76;
  color:#fff;
  font-weight:900;
  font-size:13px;
  white-space:normal;
  border-radius:999px;
  box-shadow:0 8px 20px rgba(0,0,0,0.10);
 }
body#public #public-main .products.list .simple-prod .vrool-trader-see-ad:hover {text-decoration:none;background:#00a867;color:#fff;}

body#public #public-main .products.list .simple-prod .extra {display:none;}

@media (max-width: 980px) {
  body#public #public-main .products.list {grid-template-columns:repeat(2, minmax(0, 1fr));}
}

@media (max-width: 767px) {
  body#public #public-main .products.list {grid-template-columns:1fr;}
}

/* ITEM - LISTING PAGE */
body#item header .container.main,
body#item .container.primary {max-width:min(95%, 1349px);}
body#item .container.primary {padding-bottom:24px;flex-direction: column;align-items: stretch;}
body#item .data-box {display: flex;align-items: flex-start; flex-direction: row; justify-content: space-between;gap:35px;}
body#item .data-box.sold {position:relative;overflow:hidden;user-select: none;padding:4px;}
body#item .data-box.sold:after {content:"";position:absolute;left:0;top:0;right:0;bottom:0;z-index:2;background:rgba(245,245,245,0.18);border-radius:5px;}
body#item .data-box.sold:before {content:""; position:absolute; left:40px; top:40px; z-index:3; width:140px; height:140px; background:url('../../../../images/sold-out.png') no-repeat center center; background-size:contain; transform:rotate(-8deg); transform-origin:0 0;}
.data-box.sold #item-side {top:0;}
#item .sticky-button {position: fixed;bottom: 58px; left: 8px; z-index: 3;max-width:calc(50% - 16px);height:36px;font-size:14px;padding:9px 9px;line-height:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
#item .sticky-button i {fill:#fff;font-size:14px;margin:0px 6px 0px 0;float:left;}
#item .sticky-button.contact {left:auto;right:8px;background:#fff;}
#item .sticky-button.phone i {margin-top:1px;margin-bottom:-1px;}
#item .sticky-button.disabled {background:#d0d0d0;color: #999;box-shadow:none;font-weight:600;letter-spacing:-0.3px;opacity:1;border-color:transparent;}
#item .sticky-button.disabled i {position:relative;}
#item .sticky-button.disabled i:after {content: ""; width: 23px; height: 2px; background: #999; z-index: 2; position: absolute; left: 0; bottom: 0; transform: rotate(-45deg); transform-origin: 3px 3px; border-radius: 6px; box-shadow: 0 0 0px 2px #d0d0d0;}
#item-main {flex: 1 1 auto;width:auto;min-width:0;position:relative;display:flex;flex-direction: column;}
#item-side {flex: 0 0 400px;width:400px;max-width:400px;margin:0;display:flex;flex-direction: column;flex-wrap: wrap;justify-content: flex-start;position:sticky;top:72px;}
#item-side > .box {background: #fff; border-radius: 16px; border: 1px solid #ccc; padding: 16px; margin: 0 0 16px 0;}

/*
 * Related / recent sections use <section><div class="container">. Global .container uses
 * flex-direction: inherit + align-items: center. Under .container.primary (column), that
 * shrink-wraps the inner container and collapses the product grid to a few pixels wide.
 */
body#item section.related-ads {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-self: stretch;
  box-sizing: border-box;
}
body#item section.related-ads > .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
body#item section.related-ads .rel-block {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
body#item section.related-ads #rel-block .products.grid,
body#item section.related-ads .rel-block .products.grid {
  width: 100% !important;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}
body#item section.related-ads #rel-block .simple-prod {
  flex-shrink: 0;
}

/* Suggested / similar ads below Print & share (main column) */
body#item #item-main section.related-ads.vrool-item-suggested {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
body#item #item-main section.related-ads.vrool-item-suggested .rel-block h2 {
  margin-top: 0;
}

/* ITEM IMAGE */
#item-image {position:relative;width:100%;margin:0 0 18px 0;}
#item-image.noimg {display:none;}
#item-image li {list-style:none;position:relative;}
#item-image .swiper-wrapper li {padding-top:75%;}
#item-image .swiper-wrapper li.ratio1to1 {padding-top:100%;}
#item-image .swiper-wrapper li.ratio16to9 {padding-top:56.25%;}
#item-image .swiper-wrapper li.ratio2to1 {padding-top:50%;}
/* Gallery: cover frame (no grey letterboxing). Full image: tap slide link, slideshow, or swipe */
#item-image li a img {border-radius:16px 0 0 16px;float:left;width:100%;position:absolute;left:0;top:0;height:100%;min-height:100%;max-height:100%;max-width:unset;background:#fff;object-fit:cover;object-position:center 20%;}
#item-image .swiper-container .swiper-wrapper li a img {object-fit:cover;object-position:center 20%;background:#fff;}
#item-image .swiper-thumbs li img {width:100%;height:100%;object-fit:cover;object-position:center;transition:0.2s;border-radius:5px;border:1px solid transparent;background:#fff;}

body#item:not(.vrool-offer) #item-image li a img,
body#item:not(.vrool-offer) #item-image .swiper-container .swiper-wrapper li a img,
body#item:not(.vrool-offer) #item-image .swiper-thumbs li img {
  object-fit:cover !important;
  object-position:center center !important;
  background:#fff !important;
}

body#item:not(.vrool-offer) #item-image li a img.lazy.loaded,
body#item:not(.vrool-offer) #item-image li a img.lazy:not(.loaded),
body#item:not(.vrool-offer) #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li a img,
body#item:not(.vrool-offer) #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li a img.lazy.loaded,
body#item:not(.vrool-offer) #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li a img.lazy:not(.loaded) {
  object-fit:cover !important;
  object-position:center center !important;
  background:#fff !important;
  height:100% !important;
}

body#item:not(.vrool-offer) #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li img {
  object-fit:cover !important;
  object-position:center center !important;
  background:#fff !important;
  min-width:0 !important;
  max-width:100% !important;
}

/* Offers (catId=3038): show full image on item page gallery (no crop) */
body#item.vrool-offer #item-image li a img {object-fit:contain !important;object-position:center center !important;background:#f3f4f6;float:none !important;left:12px !important;top:12px !important;width:calc(100% - 24px) !important;height:calc(100% - 24px) !important;min-height:unset !important;max-height:unset !important;}
body#item.vrool-offer #item-image .swiper-container .swiper-wrapper li a img {object-fit:contain !important;object-position:center center !important;background:#f3f4f6;}
body#item.vrool-offer #item-image .swiper-thumbs li img {object-fit:contain !important;object-position:center center !important;background:#f3f4f6;}
#item-image li a img.lazy.loaded {object-fit:cover;}
#item-image li a img.lazy:not(.loaded) {height:240px;object-fit:cover;}

body#item.vrool-offer #item-image li a img.lazy.loaded {object-fit:contain !important;object-position:center center !important;background:#ffffff;}
body#item.vrool-offer #item-image li a img.lazy:not(.loaded) {object-fit:contain !important;object-position:center center !important;background:#ffffff;}

body#item.vrool-offer #item-image li a {background:#f3f4f6;}
body#item.vrool-offer #item-image li a img {width:100% !important;height:100% !important;}
#item-image .swiper-container {overflow:hidden;position:relative;border-radius:16px 0 0 16px;border:1px solid rgba(209, 213, 219, 1);border-right:none;background:#fff;}
#item-image .swiper-button {transition:0.2s;color:#171717;margin-top:-26px;position:absolute;border-radius:100px;left:10px;top:50%;height:52px;width:52px;padding:8px;z-index:2;text-indent:-2px;}
#item-image .swiper-button.swiper-button-disabled {cursor:default;opacity:0.25;}
#item-image .swiper-button.swiper-button-disabled i {cursor:default;}
#item-image .swiper-button.swiper-prev, #item-image .swiper-container.hide-buttons .swiper-button {display:none;}
#item-image .swiper-container.hide-buttons .swiper-button {display:none;}
#item-image .swiper-button.swiper-next {right:10px;left:auto;text-indent:2px;}
#item-image .swiper-button:not(.swiper-button-disabled):hover {transform:scale(1.15);color:#3b49df;}
#item-image .swiper-button i {transition:0.2s;cursor:pointer;width:36px;height:36px;line-height:36px;border-radius:100px;background:#fff;text-align:center;box-shadow:0 1px 3px rgba(0,0,0,0.35);background:#fff;font-size:20px;}
#item-image .swiper-button.swiper-next:not(.swiper-button-disabled):active i {text-indent:5px;}
#item-image .swiper-button.swiper-prev:not(.swiper-button-disabled):active i {text-indent:-5px;}
#item-image .swiper-button:not(.swiper-button-disabled):focus i {box-shadow:0 1px 3px rgba(0,0,0,0.35), 0 0 0 2px #3b49df;}
#item-image .swiper-container {position:relative;}
#item-image .gallery-mode-btn {transition:0.2s;color:#171717;position:absolute;border-radius:12px;right:15px;top:35px;height:auto;width:auto;z-index:2;text-decoration:none;display:flex;align-items:center;justify-content:center;opacity:0;transform:translateX(100%);pointer-events:none;background:rgba(255,255,255,0.95);padding:12px 20px;box-shadow:0 4px 15px rgba(0,0,0,0.2);backdrop-filter:blur(10px);}
#item-image .swiper-container:hover .gallery-mode-btn {opacity:1;transform:translateX(0);pointer-events:auto;transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);}
#item-image .gallery-mode-btn:hover {transform:translateX(-5px) scale(1.02);background:rgba(255,255,255,1);box-shadow:0 6px 20px rgba(0,0,0,0.25);}
#item-image .gallery-mode-btn .gallery-text {transition:0.2s;cursor:pointer;color:#333;font-size:14px;font-weight:600;white-space:nowrap;text-align:center;position:relative;}
#item-image .gallery-mode-btn .gallery-text::after {content:'';position:absolute;bottom:-2px;left:0;width:0;height:2px;background:linear-gradient(90deg, #3b49df, #6366f1);transition:width 0.3s ease;}
#item-image .gallery-mode-btn:hover .gallery-text::after {width:100%;}
#item-image .gallery-mode-btn:focus .gallery-text {box-shadow:0 0 0 2px #3b49df;border-radius:4px;padding:2px 4px;margin:-2px -4px;}
#item-image .swiper-pg {background:rgba(0,0,0,0.75);color:#fff;font-size:14px;font-weight:600;border-radius:12px;line-height:15px;padding:6px 10px;width:auto;position:absolute;right:8px;bottom:8px;z-index:2;left:auto;}
#item-image .swiper-thumbs ul {margin:0 -8px 24px 0;display: flex; flex-direction: row; flex-wrap: wrap;width:calc(100% + 8px);}
#item-image .swiper-thumbs li {margin:8px 8px 0 0;cursor:pointer;width:calc(12.5% - 8px);min-width:84px;height:72px;}
#item-image .swiper-thumbs li img {width:100%;height:100%;object-fit:cover;transition:0.2s;border-radius:14px;border:1px solid rgba(209, 213, 219, 1);border-left:none;background:#fff;box-sizing:border-box;display:block;}
#item-image .swiper-thumbs li:nth-child(2) img {border-radius:0;border-top:none !important;border-bottom:none !important;}
#item-image .swiper-thumbs li:first-child img {border-bottom:none !important;box-shadow:inset 0 1px 0 rgba(209, 213, 219, 1), inset -1px 0 0 rgba(209, 213, 219, 1);}
#item-image .swiper-thumbs li:last-child img {border-top:none !important;}
#item-image .swiper-thumbs li:first-child img {border-radius:0 16px 0 0;}
#item-image .swiper-thumbs li:last-child img {border-radius:0 0 16px 0;}
#item-image .swiper-thumbs li:first-child.active img,
#item-image .swiper-thumbs li:first-child:hover img {border-bottom:none !important;box-shadow:inset 0 1px 0 rgba(209, 213, 219, 1), inset -1px 0 0 rgba(209, 213, 219, 1);}
#item-image .swiper-thumbs li:nth-child(2).active img,
#item-image .swiper-thumbs li:nth-child(2):hover img {border-top:none !important;border-bottom:none !important;box-shadow:none !important;}
 #item-image .swiper-thumbs li.active img, #item-image .swiper-thumbs li:hover img {box-shadow:0 0 0 2px #3b49df;border-color:#f5f5f5;}

/* Remove image borders/lines inside item gallery (keep layout/radius) */
body#item #item-image .swiper-container {border:0 !important;}
body#item #item-image .swiper-thumbs li img {border:0 !important;box-shadow:none !important;}
body#item #item-image .swiper-thumbs li.active img,
body#item #item-image .swiper-thumbs li:hover img {box-shadow:none !important;border-color:transparent !important;}

 @media (min-width: 992px) {
  #item-image .vrool-item-gallery {--vrool-item-gallery-h:655px;display:grid;grid-template-columns:minmax(0,1fr) minmax(0, 380px);gap:4px;align-items:stretch;}
  #item-image .vrool-item-gallery .swiper-container {grid-column:1;height:var(--vrool-item-gallery-h);}
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li {height:100%;}
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio1to1,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio16to9,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio2to1 {padding-top:0;}
  #item-image .vrool-item-gallery .swiper-thumbs {grid-column:2;display:flex;flex-direction:column;gap:4px;margin:0;position:relative;}
  #item-image .vrool-item-gallery .swiper-thumbs .thumb-nav {display:none;}
  #item-image .vrool-item-gallery .swiper-thumbs .thumbs-viewport {overflow:hidden;height:var(--vrool-item-gallery-h);padding-bottom:0;border-radius:0 16px 16px 0;}
  #item-image .vrool-item-gallery .swiper-thumbs ul {margin:0;display:grid;grid-template-rows:repeat(2, minmax(0, 1fr));gap:4px;width:100%;height:100%;min-height:0;}
  #item-image .vrool-item-gallery .swiper-thumbs li {margin:0;width:100%;min-width:0;min-height:0;height:100%;align-self:stretch;overflow:hidden;display:flex;}
  #item-image .vrool-item-gallery .swiper-thumbs li:nth-child(n+3) {display:none;}
  #item-image .vrool-item-gallery .swiper-thumbs li img {border-radius:0 !important;width:100%;height:calc(100% + 5px);object-fit:cover;flex:1 1 auto;min-height:0;display:block;}
  #item-image .vrool-item-gallery .swiper-thumbs li:first-child img {border-radius:0 16px 0 0 !important;}
  #item-image .vrool-item-gallery .swiper-thumbs li:nth-child(2) img {border-radius:0 0 16px 0 !important;}

  /* Exactly 3 photos: main = #1; right column = #2 + #3 only (full column height, no duplicate of main) */
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li:nth-child(1) {display:none !important;}
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li:nth-child(2),
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li:nth-child(3) {display:flex !important;}
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li:nth-child(n+4) {display:none !important;}
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs ul {gap:4px;}
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li {overflow:hidden;}
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li img {height:calc(100% + 5px) !important;flex:1 1 auto;min-height:0;}
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li:nth-child(2) img {border-radius:0 16px 0 0 !important;}
  #item-image .vrool-item-gallery.vrool-gallery-three .swiper-thumbs li:nth-child(3) img {border-radius:0 0 16px 0 !important;}
  #item-image .vrool-item-gallery.vrool-gallery-three {gap:4px;}

  /* Exactly 2 photos (desktop): 50/50 split, full gallery width — no side rail */
  #item-image .vrool-item-gallery.vrool-gallery-two {
    grid-template-columns:1fr;
    gap:0;
  }
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-thumbs {display:none !important;}
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-container {
    grid-column:1;
    width:100%;
    max-width:100%;
    border-radius:16px;
    overflow:hidden;
  }
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-slide {height:100%;overflow:hidden;}
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-slide > a {display:block;height:100%;}
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-slide:first-child > a {border-radius:16px 0 0 16px;}
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-slide:last-child > a {border-radius:0 16px 16px 0;}
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-slide img {border-radius:inherit;}
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-button,
  #item-image .vrool-item-gallery.vrool-gallery-two .swiper-pg,
  #item-image .vrool-item-gallery.vrool-gallery-two .gallery-mode-btn {display:none !important;}

  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs ul {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    grid-template-rows:repeat(2, minmax(0, 1fr));
    justify-items:stretch;
    align-items:stretch;
  }
  #item-image .vrool-item-gallery.vrool-thumbs-4up {gap:4px;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs {gap:4px;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs ul {gap:4px;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs ul {place-items:stretch;}
  /* Equal column widths: min-width 0 + flex so intrinsic image size cannot shrink the grid track */
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li {
    height:100%;
    min-height:0;
    min-width:0;
    width:100%;
    max-width:100%;
    align-self:stretch;
    justify-self:stretch;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    box-sizing:border-box;
  }
  #item-image .vrool-item-gallery.vrool-thumbs-4up {grid-template-columns:minmax(0,1fr) minmax(0, 420px);}
  #item-image .vrool-item-gallery.vrool-thumbs-4up {--vrool-item-gallery-h:655px;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-container {height:var(--vrool-item-gallery-h);}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs .thumbs-viewport {height:var(--vrool-item-gallery-h);}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs .thumbs-viewport {border-radius:0 16px 16px 0;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(n+5) {display:none;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(3),
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(4) {display:flex;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:first-child {overflow:hidden;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li img {
    width:100% !important;
    height:100% !important;
    min-width:0;
    min-height:0;
    flex:1 1 0;
    object-fit:cover;
    object-position:center;
    display:block;
  }
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:first-child img {border-radius:0 !important;height:calc(100% + 5px) !important;flex:1 1 auto;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(2) img {border-radius:0 16px 0 0 !important;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(3) {overflow:hidden;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(3) img {border-radius:0 0 0 0 !important;height:calc(100% + 5px) !important;flex:1 1 auto;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(4) {overflow:hidden;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(4) img {border-radius:0 0 16px 0 !important;height:calc(100% + 5px) !important;flex:1 1 auto;}
 }

 @media (min-width: 992px) and (max-width: 1366px) {
  #item-image .vrool-item-gallery {--vrool-item-gallery-h:455px;}
  #item-image .vrool-item-gallery .swiper-thumbs .thumbs-viewport {height:var(--vrool-item-gallery-h);}
  #item-image .vrool-item-gallery .swiper-container {height:var(--vrool-item-gallery-h);}
  /* Let 2×1fr grid fill column height (fixed px here left empty space under thumbs) */
  #item-image .vrool-item-gallery:not(.vrool-thumbs-4up) .swiper-thumbs li {height:100%;min-height:0;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up {--vrool-item-gallery-h:455px;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs .thumbs-viewport {height:var(--vrool-item-gallery-h);}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-container {height:var(--vrool-item-gallery-h);}
 }

 #item-image .swiper-thumbs .thumbs-viewport {scrollbar-width:none;-ms-overflow-style:none;}
 #item-image .swiper-thumbs .thumbs-viewport::-webkit-scrollbar {width:0;height:0;}

 @media (max-width: 991px) {
  #item-image .vrool-item-gallery {--vrool-item-gallery-h:344px;}
  #item-image .vrool-item-gallery .swiper-container {height:var(--vrool-item-gallery-h);}
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li {height:100%;}
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio1to1,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio16to9,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio2to1 {padding-top:0;}
  #item-image .vrool-item-gallery .swiper-thumbs .thumb-nav {display:none;}
  #item-image .vrool-item-gallery .swiper-thumbs .thumbs-viewport {overflow:hidden;overflow-y:auto;height:var(--vrool-item-gallery-h);border-radius:0 16px 16px 0;}
 }

 @media (max-width: 767px) {
  body#item header .container.main,
  body#item .container.primary {max-width:100%;width:100%;padding-left:10px;padding-right:10px;}
  #item-image .vrool-item-gallery {--vrool-item-gallery-h:344px;display:grid;grid-template-columns:1fr;grid-template-rows:auto auto;gap:8px;align-items:start;}
  #item-image .vrool-item-gallery .swiper-container {grid-column:1;grid-row:1;width:100%;height:var(--vrool-item-gallery-h);border-radius:16px !important;}
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li {height:100%;}
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio1to1,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio16to9,
  #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li.ratio2to1 {padding-top:0;}
  #item-image .vrool-item-gallery li a img {border-radius:16px !important;}

  #item-image .vrool-item-gallery .swiper-thumbs {grid-column:1;grid-row:2;display:flex;flex-direction:column;gap:0;margin:0;width:100%;position:relative;}
  #item-image .vrool-item-gallery .swiper-thumbs .thumb-nav {display:none;}
  #item-image .vrool-item-gallery .swiper-thumbs .thumbs-viewport {height:auto;max-height:none;overflow-x:auto;overflow-y:hidden;border-radius:0;-webkit-overflow-scrolling:touch;}
  #item-image .vrool-item-gallery .swiper-thumbs ul {margin:0;display:flex;flex-direction:row;flex-wrap:nowrap;gap:8px;width:max-content;min-width:100%;height:auto;align-items:stretch;}
  #item-image .vrool-item-gallery .swiper-thumbs li {margin:0;flex:0 0 auto;width:76px;height:76px;min-width:76px;display:block !important;}
  #item-image .vrool-item-gallery .swiper-thumbs li img {border-radius:10px !important;width:100%;height:100%;object-fit:cover !important;}

  #item-image .vrool-item-gallery.vrool-thumbs-4up {grid-template-columns:1fr;gap:8px;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-container {grid-column:1;grid-row:1;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs {grid-column:1;grid-row:2;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs .thumbs-viewport {height:auto;overflow-x:auto;overflow-y:hidden;border-radius:0;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs ul {display:flex;flex-direction:row;flex-wrap:nowrap;grid-template-columns:unset;grid-template-rows:unset;width:max-content;height:auto;place-items:unset;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li {width:76px;height:76px;min-width:76px;overflow:hidden;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li:nth-child(n+5) {display:block !important;}
  #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-thumbs li img {height:100% !important;border-radius:10px !important;}

  /* One photo: full-width hero only (no duplicate strip) */
  #item-image .vrool-item-gallery:has(.swiper-thumbs ul li:only-child) .swiper-thumbs {display:none !important;}
  #item-image .vrool-item-gallery:has(.swiper-thumbs ul li:only-child) {gap:0;}

  body#item:not(.vrool-offer) #item-image .vrool-item-gallery .swiper-container .swiper-wrapper li a img,
  body#item:not(.vrool-offer) #item-image .vrool-item-gallery.vrool-thumbs-4up .swiper-container .swiper-wrapper li a img {
    object-fit:cover !important;
    object-position:center center !important;
    background:#fff !important;
  }
  body#item:not(.vrool-offer) #item-image li a img,
  body#item:not(.vrool-offer) #item-image .swiper-container .swiper-wrapper li a img {
    object-fit:cover !important;
    object-position:center center !important;
    background:#fff !important;
  }
  body#item:not(.vrool-offer) #item-image .vrool-item-gallery .swiper-thumbs li img {
    object-fit:cover !important;
    object-position:center center !important;
    background:#fff !important;
  }
}

/* ITEM DATA */
#item-main .row {display:block;margin:0 0 12px 0;}
#item-main .basic {position:relative;margin:0 0 20px 0;}
#item-main .basic h1 {font-size:24px;line-height:26px;font-weight:600;padding-right:48px;}
#item-main .basic .vrool-item-views {display:inline-flex;align-items:center;gap:6px;width:fit-content;max-width:100%;padding:6px 10px;border-radius:999px;background:rgba(15,23,42,0.04);border:1px solid rgba(15,23,42,0.08);font-size:12px;line-height:14px;color:rgba(15,23,42,0.72);margin:-4px 0 10px 0;}
#item-main .basic .vrool-item-views strong {font-weight:900;color:#0f172a;}
#item-main .basic .price {font-size:20px;font-weight:bold;line-height:22px;position:relative;}
#item-main .basic .mo-make-offer-price {margin:-10px 0 12px 0;color:#333;display:inline-block;font-size:14px;font-weight:600;text-decoration:underline;}
#item-main .basic .mo-make-offer-price:hover {text-decoration:none;}
#item-main .basic .favorite {top:-1px;}
#item-main .basic .favorite i {font-weight:bold;}
#item-main .basic .labels {display: flex; flex-direction: row; flex-wrap: wrap;}

/* Make Offer (plugin): redesign Offers / Submit offer tabs */
#item-main #mo-buttons.mo-item-buttons-wrap{display:none;}
#item-side #mo-buttons.mo-item-buttons-wrap{display:none;}
body#item.vrool-make-offer #item-side #mo-buttons.mo-item-buttons-wrap{display:flex;}
#mo-buttons.mo-item-buttons-wrap{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin:12px 0 6px 0;}
#mo-buttons.mo-item-buttons-wrap a.mo-button-new{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 14px;border-radius:999px;border:1px solid rgba(15,23,42,0.12);background:#fff;color:#0f172a;text-decoration:none;font-weight:1000;font-size:14px;line-height:16px;box-shadow:0 10px 22px rgba(2,6,23,0.06);transition:transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;}
#mo-buttons.mo-item-buttons-wrap a.mo-button-new:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(2,6,23,0.10);border-color:rgba(0,186,118,0.28);}

#mo-buttons.mo-item-buttons-wrap a.mo-button-counts{background:rgba(0,186,118,0.06);border-color:rgba(0,186,118,0.18);color:rgba(15,23,42,0.92);}
#mo-buttons.mo-item-buttons-wrap a.mo-button-counts strong{font-weight:1100;color:#00ba76;}

#mo-buttons.mo-item-buttons-wrap a.mo-button-create{background:linear-gradient(135deg,#00ba76,#10b981);border-color:rgba(0,186,118,0.28);color:#fff;box-shadow:0 14px 30px rgba(0,186,118,0.20);}
#mo-buttons.mo-item-buttons-wrap a.mo-button-create:hover{box-shadow:0 18px 40px rgba(0,186,118,0.26);}

@media (max-width: 520px){
  #mo-buttons.mo-item-buttons-wrap{gap:8px;}
  #mo-buttons.mo-item-buttons-wrap{flex-wrap:nowrap;}
  #mo-buttons.mo-item-buttons-wrap a.mo-button-new{flex:1 1 0;min-width:0;width:50%;}
  #mo-buttons.mo-item-buttons-wrap a.mo-button-new{padding:10px 12px;}
}

@media (max-width: 768px){
  /* Avoid duplicate size on mobile (size is already shown in specs block) */
  #item-side #vrool-clothes-size{display:none !important;}
}
#item-main .basic .labels > span {font-size:12px;font-weight:bold;padding:5px 8px;line-height:13px;white-space:nowrap;background:rgb(59 73 223 / 12%);color:#3b49df;margin:0 8px 8px 0;border-radius:6px;}
#item-main .basic .labels > span.premium {background:#e4d51b;color:rgba(0,0,0,0.8);}
#item-main .basic .labels > span.expired, #item-main .basic .labels > span.sold {background:#171717;color:#fff;}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  margin-top: 8px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, #00ba76, #00ba58);
  color: #fff;
  font-weight: 600;
  font-size: 9px;
  line-height: 12px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  max-width: 100%;
  flex-wrap: wrap;
}

.discount-badge .discount-icon {
  width: 12px;
  height: 12px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.discount-badge .discount-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 9px;
  line-height: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.discount-badge .discount-percent {
  padding: 3px 8px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  animation: vrool-discount-pulse 1.35s ease-in-out infinite;
}

@keyframes vrool-discount-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.0); }
  55% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.0); }
}

@media (prefers-reduced-motion: reduce) {
  .discount-badge .discount-percent {
    animation: none;
  }
}

.discount-badge .discount-text strong {
  font-weight: 700;
}

@media (max-width: 767px) {
  .discount-badge {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }
}

#item-main .row.details {display:flex;flex-wrap:wrap;align-items:center;font-size:14px;line-height:1.4;color:#474747;}
#item-main .row.details span:after {content: "\2022"; margin: 0 2px 0 6px;}
#item-main .row.details span:last-child:after {display:none;}
#item-main .row.details .vrool-item-pubdate {font-size:inherit;line-height:inherit;color:inherit;font-weight:inherit;}
#item-main h2 {font-size:18px;line-height:20px;font-weight:600;margin:0 0 12px 0;}
#item-main .description {display:flex;flex-direction: column;padding-top:30px;border-top:1px solid #ccc;margin-bottom:30px;}
#item-main .description .text {font-size:14px;line-height:21px;width:100%;display:block;}
#item-main .description .text.hidden {display:none;}
#item-main .description .read-more-desc {display:inline-block;}
#item-main .description .read-more-desc, #item-main .location .directions {font-weight:600;margin-top:12px;}
#item-main .description .read-more-desc i, #item-main .location .directions i {font-size: 12px; margin-left: 1px;}
 #item-main .description .desc-parts {display: flex; flex-direction: row; align-items: flex-start;}
 #item-main .description .desc-text {width:100%;display: flex; flex-direction: column; align-items: flex-start;}
 #item-main .props.style {padding-top:30px;border-top:none;margin-bottom:8px;}
 #item-main #item-hook:empty {display:none;}
 #item-main .vrool-item-condition {margin-top:12px;}
 #item-main .vrool-item-condition-card {display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px;padding:12px 14px;border-radius:16px;background:rgba(0,186,118,0.04);border:1px solid rgba(17,24,39,0.10);box-shadow:0 12px 26px rgba(2,6,23,0.08);position:relative;}
 #item-main .vrool-item-condition-card:before {content:"";position:absolute;left:0;top:10px;bottom:10px;width:3px;border-radius:999px;background:#00ba76;}
 #item-main .vrool-item-condition-label {order:1;font-weight:900;letter-spacing:0.16em;text-transform:uppercase;font-size:12px;line-height:14px;color:#064e3b;opacity:0.95;padding-left:10px;}
 #item-main .vrool-item-condition-value {order:2;margin:0;display:inline-flex;align-items:center;justify-content:center;padding:7px 12px;border-radius:999px;background:rgba(0,186,118,0.14);border:1px solid rgba(0,186,118,0.26);font-weight:900;font-size:14px;line-height:16px;color:#047857;white-space:nowrap;}
 #item-main .vrool-item-condition-desc {order:3;flex:0 0 100%;margin-top:2px;padding-left:10px;font-size:13px;line-height:18px;color:rgba(17,24,39,0.72);}
 #item-main .location {position:sticky;top:72px;min-width:180px;width:240px;margin-left:20px;margin-bottom:0;padding:14px 14px 14px 14px;border:1px solid rgba(17,24,39,0.10);border-radius:16px;background:#ffffff;box-shadow:0 12px 26px rgba(2,6,23,0.08);}
 #item-main .location h2 {display:flex;align-items:center;gap:8px;font-size:14px;line-height:18px;font-weight:700;margin:0 0 10px 0;color:#111827;}
 #item-main .location h2 svg {width:18px;height:18px;display:block;color:#00ba76;flex:0 0 auto;}
 #item-main .location .row.address {font-family:inherit;font-size:13px;line-height:18px;color:#111827;}
 #item-main .location .row.cords {margin-top:10px;font-size:12px;line-height:16px;color:rgba(17,24,39,0.70);font-family:inherit;}
 #item-main .location .directions {display:inline-flex;align-items:center;justify-content:center;gap:8px;margin-top:12px;padding:10px 12px;border-radius:12px;background:rgba(0,186,118,0.10);border:1px solid rgba(0,186,118,0.25);color:#00ba76;text-decoration:none;font-weight:700;}
 #item-main .location .directions:hover {background:rgba(0,186,118,0.16);border-color:rgba(0,186,118,0.38);text-decoration:none;}
 #item-main .location .directions:focus {outline:none;}
 #item-main .location .directions:focus-visible {box-shadow:0 0 0 3px rgba(0,186,118,0.22);}

 #item-main #item-hook #show-loan{
   position:static !important;
   float:none !important;
   clear:both !important;
   display:inline-flex;
   max-width:100%;
   margin:0 0 12px 0;
 }

 #item-main #item-hook .vrool-tiktok-box{
   float:none;
   clear:both;
   display:block;
   max-width:100%;
 }
#item-main .address {font-family:monospace;}
#item-main .cords {font-size:12px;}
#item-main #location-hook {width:100%;margin:24px 0 0 0;position:relative;z-index:1;}
#item-main #location-hook:empty {display:none;}
#item-main .mlink {transition:0.2s;position:absolute;z-index:2;position: absolute; left: 8px; top: 8px; width: 36px; background: rgba(0,0,0,0.82); color: #f9f9f9; height: 36px; border-radius: 6px; text-align: center;padding: 8px;}
#item-main .mlink i {line-height:20px;font-size:15px;}
#item-main .mlink:focus, #item-main .mlink:active, #item-main .mlink:hover {background:#171717;box-shadow:0 0 0 2px #3b49df}
#item-main .mlink.share {right:8px;left:auto;}
#item-main .mlink.contact {right:52px;left:auto;}
#item-main #item-hook h2, #item-main #item-hook h3, #item-main #item-hook h4 {font-size: 16px;width:100%;margin:0 0 10px 0;font-weight:600;}
#item-hook table, .custom-fields, #item-hook .list-other-attributes {width:100%;display:block;margin:0 0 16px 0;}
#item-hook table tbody, .custom-fields, .job-detail, #item-hook .list-other-attributes {display: flex; flex-direction: row; flex-wrap: wrap; align-items: flex-start;}
#item-hook table tr, .custom-fields .field, .job-detail > div, #item-hook .realestate-details .list-other-attributes li {width: 174px; display: flex; flex-direction: column; margin: 0 8px 14px 0; padding:0 0 0 34px; line-height: 16px; position: relative;}
#item-hook table tr:after, .custom-fields .field:after, .job-detail > div:after, #item-hook .realestate-details .list-other-attributes li:after {content: "\f00c"; width: 26px; height: 26px; background: rgb(59 73 223 / 10%); border-radius: 100px; line-height: 28px; position: absolute; left: 0; font-family: "Font Awesome 5 Free"; top: 2px; font-weight: 900; text-align: center; color: #2f3ab2; font-size: 11px; text-indent: 1px;}
#item-hook table td:first-child, #item-hook table td:first-child label, .custom-fields .field .name, .job-detail > div label {font-weight: normal; font-size: 13px; color: #777;line-height:13px;margin-bottom:3px;}
#item-hook table td, #item-hook .realestate-details .row-title {width:100%;}
#item-hook table td:last-child, .custom-fields .field .value, .job-detail > div p, #item-hook .realestate-details .list-other-attributes li {font-weight: bold; color: #171717; font-size: 15px;}
#item-hook table td:last-child label {font-weight: bold;}
#item-hook .realestate-details .table-attributes {margin:0;}
#item-hook .job-detail > div:last-child {margin-bottom:30px;}
#item-hook .realestate-details .list-other-attributes li {font-weight:600;margin-bottom:18px;font-size:14px;}
#item-hook .realestate-details .list-other-attributes li img {display:none;}
#item-hook .realestate-details .list-other-attributes li:after {top:-4px;}
.custom-fields .field:first-child:last-child {width: 100%;}
.custom-fields .field.type-CHECKBOX {min-height:28px;justify-content: center;}
.custom-fields .field.type-CHECKBOX .value {display:none;}
.custom-fields .field.type-CHECKBOX .name {font-weight: bold; color: #171717; font-size: 15px;margin:0;}
.custom-fields .field.type-CHECKBOX.value-0:after {content:"\f00d";}


/* Attributes section: make it independent & responsive (avoid empty square whitespace from fixed widths) */
#item-main .props .custom-fields {display:grid;grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));gap:14px;width:100%;align-items:stretch;}
#item-main .props .custom-fields .field {width:auto;margin:0;padding:0 0 0 34px;}

@media (max-width: 520px) {
  #item-main .props .custom-fields {grid-template-columns:1fr;}

  #item-main .props .custom-fields .field{display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:10px;padding:10px 12px;border-radius:14px;border:1px solid rgba(15,23,42,0.10);background:#fff;box-shadow:0 10px 24px rgba(2,6,23,0.06);}
  #item-main .props .custom-fields .field:after{content:none!important;display:none!important;}
  #item-main .props .custom-fields .field{padding-left:12px;}
  #item-main .props .custom-fields .field .name{font-size:12px;line-height:14px;color:rgba(15,23,42,0.65);margin:0;font-weight:900;}
  #item-main .props .custom-fields .field .value{font-size:14px;line-height:18px;color:#0f172a;font-weight:1000;text-align:right;}
}


#rel-block {margin:32px 0 12px 0;}

#rel-block h2 {font-size:18px;margin:0 0 8px 0;}
#rel-block .products {width:calc(100% + 10px);margin:0 -5px;}
#rel-block .simple-prod {width:170px;margin:0 1px 6px 1px;}
#rel-block .simple-prod .extra {display:none;}
#rel-block .simple-prod .title {font-size:15px;line-height:16px;min-height:17px;max-height:17px;margin:0;}
#rel-block .simple-prod .info {margin-bottom:3px;}
#rel-block .simple-prod .data {padding:10px 0 4px 0;}
#recent-ads {margin:32px 0 12px 0;width:100%}
#recent-ads.onsearch {display: inline-block;margin: 24px 0 30px 0; padding: 30px 0 24px 0; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc;}
 #recent-ads.onhome {margin:0 0 12px 0;}
#recent-ads h2 {font-size:18px;margin:0 0 8px 0;display: flex; justify-content: space-between; align-items: center; flex-direction: row;}
#recent-ads .products {width:calc(100% + 10px);margin:0 -5px;}
#recent-ads .simple-prod .extra {display:none;}
#recent-ads .simple-prod .data .title,
.recent-ads .simple-prod .data .title,
#recent-items .simple-prod .data .title {
  display:block !important;
  font-size:12px !important;
  line-height:17px !important;
  font-weight:400 !important;
  color:#111827 !important;
  margin:0 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
 #recent-ads .simple-prod .info {margin-bottom:3px;font-size:11px;line-height:14px;}
 #recent-ads .simple-prod .data {padding:10px 0 4px 0;}
 #recent-ads .simple-prod {width:calc(16.666% - 6px);margin:0 3px 6px 3px;}
 #recent-ads #recent-items.products.nice-scroll {flex-wrap:wrap !important;overflow-x:visible !important;margin:0 -3px !important;width:calc(100% + 6px) !important;}
 #recent-ads #recent-items.products.nice-scroll .simple-prod {flex:0 0 auto !important;}
 #recent-ads .simple-prod .img-wrap {padding-top:125%!important;aspect-ratio:auto!important;height:auto!important;}
 #recent-ads .simple-prod.verywide .img-wrap,
 #recent-ads .simple-prod.megatall .img-wrap,
 #recent-ads .simple-prod.extratall .img-wrap,
 #recent-ads .simple-prod.verywide .img-wrap,
 #recent-ads .simple-prod .img-wrap {padding-top:100%!important;aspect-ratio:auto!important;height:auto!important;}
 #recent-ads .simple-prod .img-wrap {background:#f3f4f6;border-radius:12px;overflow:hidden;}
 #recent-ads .simple-prod .img-wrap img {object-fit:cover !important;object-position:center center !important;}
 #recent-ads .simple-prod .img-wrap > a img {object-fit:cover !important;object-position:center center !important;}
 #recent-ads .simple-prod .img-wrap,
 .recent-ads .simple-prod .img-wrap,
 #recent-items .simple-prod .img-wrap {overflow:hidden;transform:none !important;perspective:none !important;transform-style:flat !important;}
 #recent-ads .simple-prod:hover .img-wrap,
 #recent-ads .simple-prod:nth-child(odd):hover .img-wrap,
 #recent-ads .simple-prod:nth-child(even):hover .img-wrap,
 #recent-ads .simple-prod:nth-child(3n):hover .img-wrap,
 .recent-ads .simple-prod:hover .img-wrap,
 .recent-ads .simple-prod:nth-child(odd):hover .img-wrap,
 .recent-ads .simple-prod:nth-child(even):hover .img-wrap,
 .recent-ads .simple-prod:nth-child(3n):hover .img-wrap,
 #recent-items .simple-prod:hover .img-wrap,
 #recent-items .simple-prod:nth-child(odd):hover .img-wrap,
 #recent-items .simple-prod:nth-child(even):hover .img-wrap,
 #recent-items .simple-prod:nth-child(3n):hover .img-wrap {transform:none !important;box-shadow:none !important;}
 #recent-ads .simple-prod .img-wrap img,
 #recent-ads .simple-prod .img-wrap > a img,
 .recent-ads .simple-prod .img-wrap img,
 .recent-ads .simple-prod .img-wrap > a img,
 #recent-items .simple-prod .img-wrap img,
 #recent-items .simple-prod .img-wrap > a img {width:100% !important;height:100% !important;max-width:100% !important;max-height:100% !important;transform:none !important;object-fit:cover !important;object-position:center center !important;}
 #recent-ads .simple-prod.vrool-offer .img-wrap img,
 #recent-ads .simple-prod.vrool-offer .img-wrap > a img,
 #recent-items .simple-prod.vrool-offer .img-wrap img,
 #recent-items .simple-prod.vrool-offer .img-wrap > a img {object-fit:cover !important;background:#f3f4f6;}
 #recent-ads.onsearch .simple-prod .img-wrap .user-image, #recent-ads.onsearch .simple-prod .favorite {display:none;}
 #recent-ads.onhome .simple-prod {width:calc(16.666% - 6px);}

/* Latest listings near me - 5 cards in a row */
.home-location-fashion #location-items-fashion.products.nice-scroll {display:flex !important;flex-wrap:wrap !important;overflow-x:visible !important;overflow-y:visible !important;margin:0 -3px !important;width:calc(100% + 6px) !important;}
.home-location-fashion #location-items-fashion.products.nice-scroll .simple-prod {width:calc(16.666% - 6px) !important;margin:0 3px 6px 3px !important;flex:0 0 auto !important;max-width:calc(16.666% - 6px) !important;min-width:calc(16.666% - 6px) !important;}
.home-location-fashion #location-items-fashion.products.nice-scroll::-webkit-scrollbar {display:none !important;width:0 !important;height:0 !important;}
.home-location-fashion #location-items-fashion.products.nice-scroll {scroll-behavior:auto !important;}
.home-location-fashion .nice-scroll-wrap .nice-scroll-prev,
.home-location-fashion .nice-scroll-wrap .nice-scroll-next {display:none !important;}

/* Disable lightGallery on homepage - let links work normally */
body#home .simple-prod .img-wrap {
  pointer-events:auto !important;
}

body#home .simple-prod .img-wrap a {
  pointer-events:auto !important;
  cursor:pointer !important;
}

/* Prevent any lightGallery initialization on homepage */
body#home .simple-prod .img-wrap a[data-lg-id] {
  data-lg-id: none !important;
}

/* Unique card image rotation effects */
.simple-prod .img-wrap {
  transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  transform-style:preserve-3d;
  perspective:1000px;
  cursor:pointer;
}

.simple-prod:hover .img-wrap {
  transform:rotateY(8deg) rotateX(-2deg) scale(1.05);
  box-shadow:0 20px 40px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
}

/* Alternating rotation patterns for variety */
.simple-prod:nth-child(odd):hover .img-wrap {
  transform:rotateY(-8deg) rotateX(2deg) scale(1.05);
}

.simple-prod:nth-child(even):hover .img-wrap {
  transform:rotateY(8deg) rotateX(-2deg) scale(1.05);
}

/* Special rotation for every 3rd card */
.simple-prod:nth-child(3n):hover .img-wrap {
  transform:rotateY(12deg) rotateX(-4deg) scale(1.08);
  box-shadow:0 25px 50px rgba(0,0,0,0.2), 0 15px 30px rgba(0,0,0,0.15);
}

/* Image inside rotation counter-effect */
.simple-prod:hover .img-wrap img {
  transform:rotateY(-2deg) scale(1.02);
  transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events:none;
}

.simple-prod:nth-child(odd):hover .img-wrap img {
  transform:rotateY(2deg) scale(1.02);
}

.simple-prod:nth-child(3n):hover .img-wrap img {
  transform:rotateY(-3deg) scale(1.03);
}

/* Ensure slideshow/lightbox links work */
.simple-prod .img-wrap a,
.simple-prod .img-wrap a img {
  pointer-events:auto !important;
  position:relative;
  z-index:10;
}

/* Fix for slideshow overlay */
.simple-prod .img-wrap:hover a {
  transform:none !important;
}

 @media (max-width: 767px) {
  #recent-ads .simple-prod,
  #recent-ads.onhome .simple-prod {width:calc(100% - 8px)!important;min-width:calc(100% - 8px)!important;max-width:calc(100% - 8px)!important;}

  #recent-ads .simple-prod .img-wrap,
  #recent-ads .simple-prod.verywide .img-wrap,
  #recent-ads .simple-prod.megatall .img-wrap,
  #recent-ads .simple-prod.extratall .img-wrap {height:auto!important;}

  #recent-ads .simple-prod .simple-wrap {min-height:0!important;height:auto!important;}

  /* Latest listings near me - 2 cards in a row on mobile */
  .home-location-fashion #location-items-fashion.products.nice-scroll {margin:0 -4px !important;width:calc(100% + 8px) !important;}
  .home-location-fashion #location-items-fashion.products.nice-scroll .simple-prod {width:calc(50% - 8px) !important;margin:0 4px 8px 4px !important;max-width:calc(50% - 8px) !important;min-width:calc(50% - 8px) !important;}

  /* Reorder sections on mobile - move latest listings near me below recently viewed */
  body#home main > .container {display:flex;flex-direction:column;}
  .home-location-fashion {order:2;}
  .home-recent {order:1;}
  body#home main > .container > .home-location-fashion + .home-recent {margin-top:20px;}
}
 #recent-ads .simple-prod .vrool-trader-card {padding:14px 14px;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-spec i {font-size:18px;line-height:18px;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-spec img {width:18px;height:18px;object-fit:contain;display:block;opacity:0.9;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-spec > span {font-size:10px;line-height:12px;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-name {font-size:13px;line-height:16px;margin:0 0 10px 0;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-phone {font-size:13px;line-height:15px;font-weight:300;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-see-ad {font-size:12px;line-height:14px;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-phone-left {display:none;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-phone {justify-content:center;}
 #recent-ads .simple-prod .vrool-trader-card .vrool-trader-see-ad {width:100%;justify-content:center;}
 #comments .data h3 {font-size:14px;font-weight:bold;margin:0 0 6px 0;}
 #comments .data .date {font-size:13px;color:#777;margin:0 0 8px 0;line-height:14px;}
 #comments .data h3 + .date {margin-top:-5px;}
 
 body#home .vrool-home-search-inputs {margin-top:7px;}
.vrool-trader-cta {margin:17px auto 0 auto;padding:14px 16px;border-radius:16px;background:linear-gradient(135deg, rgba(0,186,118,0.10), rgba(0,186,118,0.04));border:1px solid rgba(0,186,118,0.22);display:flex;align-items:center;justify-content:space-between;gap:14px;width:100%;max-width:621px;}
.vrool-trader-cta-text {min-width:0;}
.vrool-trader-cta-title {font-size:16px;line-height:20px;font-weight:900;color:#0a7d57;margin:0 0 4px 0;}

@media screen and (max-width: 767px) {
  body#home .home-search-left .input-box.vrool-home-postcode {flex:1 1 100%;width:100%;max-width:100%;}
}
 .vrool-trader-cta-desc {font-size:13px;line-height:17px;color:#111;margin:0 0 8px 0;}
 .vrool-trader-cta-points {font-size:12px;line-height:15px;color:#111;opacity:0.85;}
 .vrool-trader-cta-actions {flex:0 0 auto;}
 .vrool-trader-cta-btn {display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 14px;border-radius:999px;background:#00ba76;color:#fff;font-weight:900;font-size:13px;line-height:1;text-decoration:none;border:1px solid rgba(0,0,0,0.06);box-shadow:0 8px 20px rgba(0,0,0,0.10);white-space:nowrap;}
 .vrool-trader-cta-btn:hover {text-decoration:none;background:#00a867;color:#fff;}

 @media (min-width: 768px) {
   .vrool-trader-cta {position:relative;left:-7px;}
   body#home .vrool-trader-cta {left:0;}
 }

 @media (max-width: 767px) {
   .vrool-trader-cta {flex-direction:column;align-items:stretch;max-width:100%;}
   .vrool-trader-cta-actions {width:100%;}
   .vrool-trader-cta-btn {width:100%;}
 }
 
#comments .data .remove {margin-top:12px;font-size:12px;font-weight:600;}
#comments .add {height:34px;font-size:14px;border-radius:5px;padding:9px 12px;line-height:15px;}
#comments .title-has {font-weight:bold;font-size:16px;margin:0 0 18px 0;}
#comments .empty-comments {margin: -8px 0 18px 0; color: #666;}
#comments .rating {margin:0 0 6px 0;display: flex; flex-direction: row; align-items: flex-end;}
#comments .rating > span {font-size: 10px; margin-left: 5px; line-height: 12px;color:#777;}
#comments .rating i {margin:0 1px 0 0;font-size:16px;line-height:16px;color:#bbb;}
#comments .rating i.fill, .comment-leave-rating i.is-rating-item.fill {color:#ffb900;}
#comments .rating i.is-rating-item {cursor:pointer;float:left;text-align:center;font-size:20px;color:#bbb;margin:0 2px 0 0;}
.comment-leave-rating {display: flex; flex-direction: row; align-items: flex-end;}
.comment-leave-rating i.is-rating-item {cursor:pointer;float:left;text-align:center;font-size:20px;color:#bbb;margin:0 2px 0 0;transition:color 0.2s ease;}
.comment-leave-rating i.is-rating-item:hover {color:#ffb900;}
.comment-rating-selected {float:left;margin:0 0 0 5px;line-height:16px;font-size:13px;color:#777;}
.comment-rating span {margin: 0 0 0 4px; font-size: 12px;}
.comment-stars {display: flex; flex-direction: row; align-items: flex-end;margin:0 0 12px 0;}

#shortcuts {
  margin-top: 24px;
  padding: 12px 14px;
  line-height: 16px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 13px;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

#shortcuts a {
  color: #444;
  margin: 0 14px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

#shortcuts a i {
  font-size: 14px;
}

#shortcuts a:hover {
  color: #171717;
  text-decoration: none;
}

#shortcuts .item-share {
  margin-left: auto;
  display: flex;
  align-items: center;
  line-height: 16px;
}

#shortcuts .item-share a.facebook { color:#fff;background:#1877f2; }
#shortcuts .item-share a.twitter { color:#fff;background:#0f1419; }
#shortcuts .item-share a.pinterest { color:#fff;background:#e60023; }
#shortcuts .item-share a.whatsapp { color:#fff;background:#25d366; }

#shortcuts .item-share a {
  display:inline-flex !important;align-items:center !important;justify-content:center !important;
  width:32px !important;height:32px !important;border-radius:50% !important;
  color:#fff !important;font-size:14px !important;text-decoration:none !important;
  margin:0 !important;padding:0 !important;cursor:pointer !important;
  position:relative !important;z-index:1 !important;
}

#shortcuts .item-share a:hover {
  opacity:0.85;
}

#item-side .item-whatsapp-row .wac-box {
  display:block;
  width:100%;
  margin-bottom:18px;
}

#item-side .item-whatsapp-row .wac-box a.wac-btn {
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background: rgba(0,186,118,0.06) !important;
  color: #079a66 !important;
  border: 2px dotted rgba(0,186,118,0.40) !important;
  border-radius:6px !important;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06) !important;
  padding:10px 10px 10px 52px !important;
  position:relative;
}

#item-side .item-whatsapp-row .wac-box a.wac-btn .wac-icon {
  position:absolute;
  left:0;
  top:0;
  width:42px;
  height:100%;
  border-radius:6px 0 0 6px;
  background:rgba(0,186,118,0.18) !important;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:0;
}

#item-side .item-whatsapp-row .wac-box a.wac-btn .wac-icon { border-right: 1px dotted rgba(255,255,255,0.55); }

#item-side .item-whatsapp-row .wac-box a.wac-btn:hover {
  background: rgba(0,186,118,0.10) !important;
  color: #079a66 !important;
}

#item-side .item-whatsapp-row .wac-box a.wac-btn .wac-icon img {
  width:18px;
  height:18px;
}

#item-side .item-whatsapp-row .wac-box a.wac-btn .wac-text {
  font-size:14px;
}

#item-side .seller-whatsapp-message {
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:600;
  color:#00ba76;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid #00ba76;
  text-decoration:none;
  background:#ffffff;
}

#seller .seller-whatsapp-row .seller-whatsapp-message:hover {
  background:#e8fbf2;
  text-decoration:none;
}

#seller .line1 {display:flex;align-items: center;margin:0 0 12px 0;}
#seller .line1 .img {width:72px;height:72px;max-width:72px;min-width:72px;max-height:72px;margin-right:12px;position:relative;}
#seller .line1 .img img {width:100%;height:100%;border-radius:100px;box-shadow:0 1px 2px rgba(0,0,0,0.4);}

/* Modern PRO badge */
#seller .pro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00c16a, #00a85a);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

#seller .pro::before {
  content: "★";
  font-size: 11px;
}

/* Extra spacing between status, address and phone pills */
#seller .line2 {
  margin: 0 0 8px 0;
}

#seller .line3 .address {
  margin: 0 0 10px 0;
}

/* Lay out phone pills in a flexible row so they are wider on desktop & mobile */
#seller .line3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#seller .line3 .phone-mobile.phone,
#seller .line3 .phone-land.phone {
  width: 100%;
}

@media (min-width: 480px) {
  #seller .line3 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  #seller .line3 .phone-mobile.phone,
  #seller .line3 .phone-land.phone {
    flex: 0 0 auto;
    width: auto;
  }
}

/* Revert seller phone links to original theme look (no custom pill styling) */

#seller a.phone-mobile.phone,
#seller a.phone-land.phone {
  display:inline-flex;
  align-items:center;
  width:auto;
  padding:6px 14px;
  font-size:13px;
  border-radius:999px;
  background-color:#e5f9ee;
  color:#00ba76;
  border:1px solid #b6ecd2;
  text-decoration:none;
  margin:6px 0 10px 0;
}

#seller a.phone-mobile.phone i,
#seller a.phone-land.phone i {
  margin-right:8px;
  font-size:14px;
}

#seller a.phone-mobile.phone:hover,
#seller a.phone-land.phone:hover {
  background-color:#d4f4e3;
  border-color:#88e0b8;
}

#item-side .seller-button, #item-side .report-button, #item-side .manage-button {
  transition: 0.2s;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  margin: -8px 0 16px 0;
  font-weight: 300;
  font-size: 13px;
  color: #171717;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

#item-side .seller-button:hover, #item-side .report-button:hover, #item-side .manage-button:hover {
  background: #fff;
  text-decoration: none;
  border-color: #aaa;
}

#item-side .seller-button i, #item-side .report-button i, #item-side .manage-button i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

#item-side .seller-button img {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px 0 0 4px;
  width: 42px;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-right: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.08);
  object-fit: contain;
  display: block;
}

#item-side .seller-button {
  position: relative;
  padding-left: 52px;
}

#item-side .master-button img {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px 0 0 6px;
  width: 42px;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-right: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.08);
  object-fit: contain;
  display: block;
}

#item-side .report-button {
  color: #404040;
  font-weight: normal;
  margin: 0;
}

#item-side .vrool-consumer-notice {
  margin: 14px 0 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #f9fafb;
}

#item-side .vrool-consumer-notice-title {
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

#item-side .vrool-consumer-notice-text {
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
}

#item-side .vrool-consumer-notice-text p {
  margin: 0 0 10px 0;
}

#item-side .vrool-consumer-notice-text p:last-child {
  margin-bottom: 0;
}

#item-side .vrool-consumer-notice-text a {
  color: #0f766e;
  font-weight: 700;
  word-break: break-word;
}

#item-side .vrool-consumer-notice-text a:hover {
  color: #115e59;
}

#item-side .manage-button {
  background: #404040;
  color: #fff;
  border: none;
}

#item-side .manage-button:hover {
  background: #202020;
  color: #fff;
}

#item-side .vrool-qr-pay-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: -8px 0 16px 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(236, 253, 245, 0.92) 46%, rgba(209, 250, 229, 0.92) 100%);
  color: #0f172a;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.10);
  text-decoration: none;
}

#item-side .vrool-qr-pay-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,0.22), transparent 48%),
    radial-gradient(circle at bottom left, rgba(59,130,246,0.14), transparent 52%);
  pointer-events: none;
}

#item-side .vrool-qr-pay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.20);
  color: #0f172a;
  text-decoration: none;
}

#item-side .vrool-qr-pay-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

#item-side .vrool-qr-pay-icon i {
  margin: 0;
  width: auto;
  font-size: 24px;
  color: #0f766e;
}

#item-side .vrool-qr-pay-body {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#item-side .vrool-qr-pay-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #065f46;
}

#item-side .vrool-qr-pay-title {
  display: block;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

#item-side .vrool-qr-pay-subtitle {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.72);
}

#item-side .vrool-qr-pay-action {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

#item-side .vrool-qr-pay-action i {
  margin: 0;
  width: auto;
  font-size: 12px;
}

#price-only-section .vrool-qr-pay-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin: 16px 0 0 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(236, 254, 255, 0.92) 44%, rgba(237, 233, 254, 0.92) 100%);
  color: #0f172a;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.10);
  text-decoration: none;
}

#price-only-section .vrool-qr-pay-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at -10% -30%, rgba(56, 189, 248, 0.20), transparent 52%),
    radial-gradient(1200px 520px at 110% 130%, rgba(167, 139, 250, 0.18), transparent 52%),
    radial-gradient(circle at 20% 40%, rgba(16, 185, 129, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(2,6,23,0.02), rgba(2,6,23,0));
  pointer-events: none;
}

#price-only-section .vrool-qr-pay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 186, 118, 0.18);
  color: #0f172a;
  text-decoration: none;
}

#price-only-section .vrool-qr-pay-icon,
#price-only-section .vrool-qr-pay-body,
#price-only-section .vrool-qr-pay-action {
  position: relative;
  z-index: 1;
}

#price-only-section .vrool-qr-pay-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(167, 139, 250, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 10px 24px rgba(2, 6, 23, 0.10);
}

#price-only-section .vrool-qr-pay-icon i {
  margin: 0;
  width: auto;
  font-size: 24px;
  color: #0f172a;
}

#price-only-section .vrool-qr-pay-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  width: 100%;
}

#price-only-section .vrool-qr-pay-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  line-height: 12px;
  color: rgba(15, 23, 42, 0.78);
}

#price-only-section .vrool-qr-pay-title {
  display: block;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
}

#price-only-section .vrool-qr-pay-subtitle {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}

#price-only-section .vrool-qr-pay-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

#price-only-section .vrool-qr-pay-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 55%, #8b5cf6 100%);
  color: #fff;
  font-weight: 1000;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(59, 130, 246, 0.24);
  font-size: 15px;
  white-space: nowrap;
}

#price-only-section .vrool-qr-pay-action i {
  margin: 0;
  width: auto;
  font-size: 12px;
}

#price-only-section .vrool-qr-accept-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
  border: 1px solid rgba(16, 185, 129, 0.16);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.10);
}

#price-only-section .vrool-qr-accept-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(45, 212, 191, 0.18), transparent 38%), radial-gradient(circle at bottom left, rgba(125, 211, 252, 0.16), transparent 40%);
  pointer-events: none;
}

#price-only-section .vrool-qr-accept-icon,
#price-only-section .vrool-qr-accept-body {
  position: relative;
  z-index: 1;
}

#price-only-section .vrool-qr-accept-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #dcfce7 0%, #cffafe 100%);
  border: 1px solid rgba(16, 185, 129, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

#price-only-section .vrool-qr-accept-icon i {
  margin: 0;
  width: auto;
  font-size: 23px;
  color: #0f766e;
}

#price-only-section .vrool-qr-accept-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#price-only-section .vrool-qr-accept-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.10);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

#price-only-section .vrool-qr-accept-title {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
}

#price-only-section .vrool-qr-accept-subtitle {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

#item-side .vrool-remove-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px 0;
  padding: 15px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
  border: 1px solid rgba(220, 38, 38, 0.18);
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.10);
  text-decoration: none;
  color: #7f1d1d;
}

#item-side .vrool-remove-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.10), transparent 40%);
  pointer-events: none;
}

#item-side .vrool-remove-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(220, 38, 38, 0.14);
  border-color: rgba(220, 38, 38, 0.28);
  text-decoration: none;
  color: #7f1d1d;
}

#item-side .vrool-remove-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.12);
}

#item-side .vrool-remove-icon i {
  margin: 0;
  width: auto;
  font-size: 20px;
  color: #dc2626;
}

#item-side .vrool-remove-body {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#item-side .vrool-remove-title {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #7f1d1d;
}

#item-side .vrool-remove-subtitle {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.45;
  color: #991b1b;
  opacity: 0.84;
}

#item-side .vrool-remove-action {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #dc2626;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.22);
}

@media (max-width: 768px) {
  #item-side .vrool-qr-pay-card {
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  #item-side .vrool-qr-pay-title {
    font-size: 18px;
  }

  #item-side .vrool-qr-pay-subtitle {
    font-size: 12px;
  }

  #item-side .vrool-qr-pay-action {
    width: 100%;
    justify-content: center;
  }

  #price-only-section .vrool-qr-pay-card {
    padding: 18px;
    gap: 14px;
    border-radius: 16px;
  }

  #price-only-section .vrool-qr-pay-row {
    flex-wrap: wrap;
  }

  #price-only-section .vrool-qr-pay-title {
    font-size: 18px;
  }

  #price-only-section .vrool-qr-pay-subtitle {
    font-size: 13px;
  }

  #price-only-section .vrool-qr-pay-action {
    width: 100%;
    justify-content: center;
  }

  #price-only-section .vrool-qr-accept-card {
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  #price-only-section .vrool-qr-accept-title {
    font-size: 16px;
  }

  #price-only-section .vrool-qr-accept-subtitle {
    font-size: 12px;
  }

  #item-side .vrool-remove-card {
    padding: 14px;
    gap: 12px;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  #item-side .vrool-remove-title {
    font-size: 16px;
  }

  #item-side .vrool-remove-subtitle {
    font-size: 12px;
  }

  #item-side .vrool-remove-action {
    width: 100%;
  }
}

#item-side .master-button {
  transition: 0.2s;
  position: relative;
  font-weight: 600;
  background: #3b49df;
  color: #f9f9f9;
  margin: 0 0 8px 0;
  height: auto;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: none;
}

#item-side .master-button i {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px 0 0 6px;
  width: 42px;
  height: 100%;
  line-height: 41px;
  text-indent: 1px;
  border-right: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.08);
}

#item-side .master-button:hover {
  text-decoration: none;
  background: #2f3ab2;
  color: #f9f9f9;
}

#item-side .master-button.email {
  background: rgba(59,130,246,0.06);
  color: #2563eb;
  border: 2px dashed rgba(59,130,246,0.25);
}

#item-side .master-button.email i {
  color: #fff;
  background: #2563eb;
}

#item-side .master-button.phone {
  background: rgba(0,186,118,0.08);
  color: #00ba76;
  border: 2px dotted rgba(0,186,118,0.65);
  border-radius: 14px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  width: auto;
}

#item-side .master-button.phone i {
  background: #00ba76;
  color: #fff;
  border-right: 1px dotted rgba(255,255,255,0.55);
  border-radius: 12px 0 0 12px;
}

#item-side .master-button.phone:hover {
  background: rgba(0,186,118,0.12);
  color: #00ba76;
}

#item-side-contact-actions .mo-item-page-pay-now {
  width: 100%;
}

#item-side-contact-actions .mo-item-page-pay-now .vrool-product {
  margin: 0;
}

#item-side-contact-actions .mo-item-page-pay-now .vrool-product-to-cart {
  transition: 0.2s;
  font-weight: 600;
  background: #00ba76;
  color: #fff;
  margin: 0 0 8px 0;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  min-height: 44px;
}

#item-side-contact-actions .mo-item-page-pay-now .vrool-product-to-cart:hover {
  background: #00a867;
  color: #fff;
  text-decoration: none;
}

#item-side .master-button.email:hover {
  background: rgba(59,130,246,0.12);
  color: #1d4ed8;
  border-color: rgba(59,130,246,0.35);
}

#item-side .master-button.contact:not(:first-child) {
  background: transparent;
  color: #171717;
  border: 1px solid #d0d0d0;
  padding: 9px;
  width: auto;
}

#item-side .master-button.contact:not(:first-child) i {
  color: #00ba76;
  left: -1px;
  top: -1px;
  height: calc(100% + 2px);
}

#item-side .master-button.contact:not(:first-child):hover {
  background: #e0e0e0;
  color: #000;
  border-color: #c0c0c0;
}

#item-side #quote-box {
  margin: 0 0 12px 0;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.08);
}

#item-side #quote-box .vrool-quote-title {
  margin: 2px 0 14px 0;
  font-size: 17px;
  line-height: 22px;
  font-weight: 900;
  color: #0f172a;
}

#item-side #quote-box .vrool-uk-plate {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(2, 6, 23, 0.12);
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
  margin: 0 0 14px 0;
  background: #FADC43;
}

#item-side #quote-box .vrool-uk-plate-left {
  width: 62px;
  background: linear-gradient(180deg, #114C98, #0b3a73);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#item-side #quote-box .vrool-uk-plate-flag {
  width: 30px;
  height: auto;
  display: block;
}

#item-side #quote-box .vrool-uk-plate-code {
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  line-height: 12px;
}

#item-side #quote-box .vrool-uk-plate-right {
  position: relative;
  flex: 1;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#item-side #quote-box .vrool-uk-plate-input {
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 1000;
  font-size: 26px;
  font-family: 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.78);
  letter-spacing: 0.02em;
}

#item-side #quote-box .vrool-uk-plate-input:focus {
  outline: none;
  color: #111;
}

#item-side #quote-box .vrool-quote-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 14px 0;
}

#item-side #quote-box .vrool-quote-input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.16);
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 14px;
  font-size: 15px;
  line-height: 20px;
  color: #111;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.06);
}

#item-side #quote-box .vrool-quote-input:focus {
  outline: none;
  border-color: rgba(0, 186, 118, 0.55);
  box-shadow: 0 10px 24px rgba(0, 186, 118, 0.18);
}

#item-side #quote-box .vrool-quote-cta {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #00ba76, #00a867);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 32px rgba(0, 186, 118, 0.18);
  font-weight: 900;
}

#item-side #quote-box .vrool-quote-cta:hover {
  background: linear-gradient(135deg, #00a867, #009e61);
}

#item-side #quote-box .vrool-quote-foot {
  margin: 10px 0 0 0;
  font-size: 12px;
  line-height: 16px;
  color: rgba(15, 23, 42, 0.72);
  text-align: center;
  font-weight: 600;
}

#item-side #protection {
  margin: 0 0 8px 0;
  background: #fefefe;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#item-side #protection h2 {
  font-size: 17px;
  margin: 20px 20px 14px 0px;
}

#item-side #protection .point {
  margin: 0 0 10px 0;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}

#item-side #protection .point:last-child {
  margin: 0;
}

#item-side #protection .point .icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  text-align: center;
  color: #3b49df;
  box-shadow: 0 1px 1px rgba(0,0,0,0.25);
  font-size: 16px;
  padding: 10px 2px;
  margin: 2px 12px 0 0;
  border-radius: 10px;
  position: relative;
  background: rgb(59 73 223 / 15%);
}

#item-side #protection .point .icon:after {
  content: "";
  width: 53px;
  height: 2px;
  background: #2f3ab2;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-45deg);
  transform-origin: 3px 3px;
  border-radius: 6px;
  box-shadow: 0 0 0px 1px #fff;
}

/* Ensure valuation/discount button spans full width */
#item-side #protection .buttons-block {
  width: 100%;
}

#item-side #protection .buttons-block .master-button {
  width: 100%;
  border-radius: 999px;
}

div.sms-payments {
  display: flex;
  padding: 0;
  background: transparent;
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
  clear: both;
}

div.sms-payments a.sp-promote-button, div.sms-payments a.sp-movetop-button {
  margin: 0;
}

div.sms-payments a:first-child {
  margin-right: 6px;
}

div.sms-payments a:first-child:last-child {
  margin-right: 0px;
}

/* CONTACT SELLER, ADD NEW COMMENT, SEND TO FRIEND */
#item-forms header, #item-forms footer, #item-forms #breadcrumbs, #item-forms #flashbox, #item-forms #debug-mode, #item-forms #navi-bar, #item-forms #showcase-box, #item-forms section.promo {display:none!important;}
#item-forms {padding:16px;background:#fff;}
#item-forms fieldset, #item-forms .middle {display: flex; flex-direction: column; align-items: stretch;}
#item-forms .head {margin:0 0 16px 0;padding:0;width:100%;font-size:20px;font-weight:bold;color:#171717;line-height:1.2;}
#item-forms .subhead {display:block;width:100%;font-weight:600;color:#171717;line-height:1.2;padding:0 0 16px 0;margin:-8px 0 16px 0;border-bottom:1px solid #ccc;}
#item-forms .row {display: flex; flex-direction: column; align-items: stretch;}
#item-forms .row input, #item-forms .row textarea {width:100%;}
#item-forms .row textarea {height:116px;}
#item-forms #sendfriend .row textarea {height:96px;}
#item-forms label {margin:0 0 2px 0;}
#item-forms .btn {margin-top:20px;}
#item-forms .input-box {margin-bottom:12px;}
#item-forms .input-box.no-margin {margin-bottom:0;}
#item-forms .content form {position:relative;padding-bottom:64px;}
#item-forms .content form .row.buttons {position:fixed;bottom:0;left:0;width:100%;background:#fff;box-shadow:0 0 3px #fff;z-index:3;padding:12px 16px 16px 16px;}
#item-forms .content form .row.buttons .btn {margin:0;height:44px;padding:11px;}
#item-forms #scroll-to-top {display:none!important;}
#item-forms div.g-recaptcha, #item-forms div[id^="anr_captcha_field_"] {margin:12px 0 0 0;}
#item-forms br, #item-forms #showcase-button {display:none;}
#item-forms .grecaptcha-badge[data-style="bottomright"] {bottom:84px!important;z-index:9;}
#item-forms .grecaptcha-badge[data-style="bottomleft"] {bottom:84px!important;z-index:9;}
#item-forms .cc_banner-wrapper, #item-forms #header-admin {display:none!important;}

#item-card {display: flex; flex-direction: row;margin:0 0 16px 0;}

#item-card .img {width:90px;min-width:90px;margin-right:12px;}

#item-card .img img {width:100%;height:80px;border-radius:6px;box-shadow:0 1px 3px rgba(0,0,0,0.2);object-fit:cover;}

#item-card .dsc {width:100%;font-weight:600;padding:4px 0;display: flex; flex-direction: column; align-items: flex-start;}

#item-card .dsc strong {font-size:15px;max-height: 36px; overflow: hidden;line-height: 18px;margin-bottom:3px;}

#item-card .dsc div {margin:4px 0 -2px 0;padding:2px 4px;background:#111;color:#fff;}

#item-card .dsc span {margin:0;display:block;color:#777;font-weight:normal;line-height:18px;}
#item-card.user .dsc {justify-content: center;}
#item-card.user .dsc strong {margin-bottom:1px;}
#item-card.user .img {width:64px;min-width:64px;}
#item-card.user .img img {width:100%;height:100%;border-radius:100px;box-shadow:0 1px 2px rgba(0,0,0,0.35);}


/* SEARCH MENU */
body#search .container.primary {padding-bottom:35px;}

@media (min-width: 981px) {
  body#search .container {
    max-width:1420px;
    width:100%;
  }
}
#search-items, #search-premium-items, #search-alert-items {
  position:relative;
  z-index:1;
}
#search-items .products, #search-premium-items .products, #search-alert-items .products {
  position:relative;
  z-index:1;
}
body#search .simple-prod .img-wrap .view-counter,
body#search .simple-prod .favorite {
  display:none !important;
}

body#search #search-items .simple-prod .favorite,
body#search #search-premium-items .simple-prod .favorite,
body#search #search-alert-items .simple-prod .favorite {
  display:block !important;
}
body#search #showcase-box,
body#search #showcase-button,
body#search #scroll-to-top {
  z-index:2;
}
#search-menu {width:320px;}
#search-menu form.search-side-form {position:relative;background:#fff;border-radius:16px;border:1px solid rgba(15,23,42,0.08);padding:16px;margin:0 0 16px 0;box-shadow:0 1px 4px rgba(15,23,42,0.04);}
.filter-menu label, .filter-menu h6, .filter-menu #atr-search .control-group > label {line-height:16px;margin:0 0 3px 0;display:block;font-weight:400;width:100%;text-align:left;font-size:13px;color:#64748b;}
.filter-menu .input-box {margin-bottom:12px;}
.filter-menu input[type="text"], .filter-menu input[type="number"], .filter-menu select {border-radius:10px;width:100%;max-width:100%;min-width:initial;height:42px;padding:8px 12px;border:1px solid rgba(15,23,42,0.10);font-size:14px;font-weight:400;color:#0f172a;transition:border-color 0.15s;}
.filter-menu .price .line {display:flex;border:1px solid #d4d4d4;transition:0.2s;background:#fff;border-radius:4px;padding:2px;height:36px;margin-bottom:6px;position:relative;flex-direction: row; justify-content: space-between;}
.filter-menu .price .line input[type="number"] {width:49%;border:none;outline:none;box-shadow:none;height:30px;padding:4px 6px;-moz-appearance: textfield;}
.filter-menu .price .line input::-webkit-outer-spin-button, .filter-menu .price .line input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.filter-menu .price .delim {width:1px;margin:3px 4px;height:26px;background:#ccc;}
.filter-menu .picker .clean {right:1px;}
.filter-menu .picker.location.loading:after {right:2px;}
.filter-menu .input-box-check {margin:0 0 4px 0;}
.filter-menu .input-box-check label {font-size:13px;}
.filter-menu .row.buttons {margin:16px 0 0 0;}
.filter-menu #search-button {width:100%;margin:0;display:flex;align-items: center; justify-content: center;line-height:19px;}
.filter-menu #search-button span {margin-top:-1px;}
.filter-menu #search-button svg, .filter-menu #search-button i {margin:0 6px 0 -4px;fill:#fff;width:auto;height:18px;text-align:center;line-height:18px;font-size:16px;}
.filter-menu .sidebar-hooks > fieldset, .filter-menu .sidebar-hooks > div {margin:20px 0 0 0;}
.filter-menu .row.sidebar-hooks, #side-menu .box.filter .row.sidebar-hooks {margin-top:16px;}
.filter-menu .row.sidebar-hooks:empty {display:none;}
.filter-menu .sidebar-hooks .row {margin:0 0 12px 0;display:inline-block;width:100%;}
.filter-menu .sidebar-hooks input[type="radio"] {max-width:18px;float:left;clear:both;margin:0 4px 5px 0;}
.filter-menu .sidebar-hooks input[type="radio"] + label {max-width:calc(100% - 26px);margin:0;line-height:18px;float:left;font-weight:normal;}
.filter-menu .sidebar-hooks br {display:none;}
.filter-menu .sidebar-hooks h3 {margin:0 0 2px 0;font-size:16px;}
.filter-menu .sidebar-hooks > :last-child, .filter-menu .sidebar-hooks > :last-child > :last-child {margin-bottom:0!important;}
.filter-menu .sidebar-hooks .rad_search_box {float:none;display:inline-block;width:100%;}
.filter-menu .sidebar-hooks #atr-search .control-group {margin-bottom:12px;}
.filter-menu .sidebar-hooks #atr-search ul.atr-ul li {width:100%;margin:0 0 3px 0;}
#side-menu .filter-menu .row.buttons {margin-bottom:10px;}

#side-menu .filter-menu form.search-side-form {position:relative;width:100%;display:block;padding-bottom:56px;}
#side-menu .box .section.filter-menu .row.buttons.srch {position:sticky;bottom:0px;left:0;width:100%;background:#fff;box-shadow:0 0 3px #fff;z-index:3;padding:10px 0 16px 0px;margin:0;}
#side-menu .filter-menu .row.buttons.srch .btn {margin:0;height:44px;padding:11px;}
.filter-menu .price {margin-bottom:8px;}
.filter-menu .price .input-box-check {margin-bottom:1px;}
.filter-menu .price .input-box-check label {font-size:13px;line-height:14px;padding:0px 0 0 18px!important;}
.filter-menu .price .input-box-check label:before {width:14px;height:14px;}
.filter-menu .price .input-box-check label:after {width:14px;height:14px;line-height:14px;font-size:9px;}
.filter-menu #atr-search {margin:0;}
.filter-menu .product-attributes tr td {padding:0 0 12px 0;}
.filter-menu .product-attributes tr:last-child td {padding:0;}
.filter-menu table {border-spacing:0;}

/* SEARCH CATEGORY BOX */
#search-category-box {}
#search-category-box h3 {font-size:16px;margin:0 0 6px 0;}
#search-category-box a {display:flex;align-items: center;padding:10px 8px;border-radius:5px;transition:0.2s;color:#333;font-size:14px;font-weight:600;}
#search-category-box a:hover {text-decoration:none;background:rgb(59 73 223 / 12%);color:#2f3ab2;}
#search-category-box .icon {min-width:32px;width:32px;height:32px;margin:-6px 6px -6px -4px;box-shadow:0 1px 2px rgb(0 0 0 / 25%);background:#fff;border-radius:100px;padding:6px;}
#search-category-box .icon img {width:100%;height:100%;object-fit:contain;}
#search-category-box .icon i {margin:auto;font-size:14px;line-height:14px;}
#search-category-box a > div {display:flex;align-items: baseline;}
#search-category-box span {margin-right:4px;}
#search-category-box em {color:#777;font-size:11px;font-weight:normal;font-style:normal;white-space:nowrap;}
#search-category-box .catbox.notroot {max-height:400px;overflow-y:auto;}
#search-category-box .catbox.notroot a.child {padding:4px 6px;}
#search-category-box .catbox.notroot a.parent {background:rgb(59 73 223 / 10%);color:#2f3ab2;margin-bottom:2px;}
#search-category-box a.gotop {font-weight:bold;color:#000;margin:6px 0 0 0;padding:5px 6px;}
#search-category-box a.gotop i {margin-right:6px;}
#search-category-box a.child.active span {font-weight:bold;text-decoration:underline;}
#search-category-box .catbox.notroot::-webkit-scrollbar {width: 6px;}


  
/* SEARCH MAIN CONTENT */
#search-main {width: calc(92% - 245px);position:relative;padding:12px;border-radius:15px;border: 1px solid #ccc;}
#search-main:after {display:none;content:"";position:absolute;left:0;top:0;right:0;bottom:0;background:rgba(245,245,245,0.65);z-index:2;cursor:wait;}
#search-main.loading:after {display:block;}
#search-filters {margin:20px 0 14px 0;display:flex;flex-direction: row; flex-wrap: wrap; justify-content: flex-start;}
#search-filters a {transition:0.2s;padding:7px 34px 7px 8px;margin:0 6px 6px 0;height:32px;font-weight:600;line-height:17px;font-size:14px;background:rgb(59 73 223 / 10%);color:#2f3ab2;border-radius:6px;position:relative;}
#search-filters a:after {transition:0.2s;color:rgba(0,0,0,0.5);content:"\f057";font-family: "Font Awesome 5 Free";position:absolute;right:3px;top:4px;width:24px;text-align:center;height:22px;line-height:24px;font-size:14px;border-left:1px solid rgba(0,0,0,0.1);}
#search-filters a:hover {text-decoration:none;background:#fff;box-shadow:0 0 0 1px #2f3ab2;}
#search-filters a:hover:after {color:#171717;}
#search-filters a.bold {font-weight:bold;}

#search-items .products.grid .simple-prod {width:calc(33.33% - 8px);}
#search-items .products.detail .simple-prod, #search-items .products.list .simple-prod {width:100%;}

#search-items .products.grid .simple-prod .img-wrap,
#search-items .products.grid .simple-prod.verywide .img-wrap,
#search-items .products.grid .simple-prod.megatall .img-wrap,
#search-items .products.grid .simple-prod.extratall .img-wrap {
  padding-top:0;
  aspect-ratio:auto;
  height:auto;
  padding-top:125%;
}

#search-items .products.grid .simple-prod .img-wrap > a.img {
  display:block;
  width:100%;
  height:100%;
}

#search-items .products.grid .simple-prod .img-wrap > a.bar {
  height:auto;
}

#search-items .products.grid .simple-prod .img-wrap img {
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Tall cards without cropping (show full uploaded image) */
#search-items .products.grid .simple-prod .img-wrap img,
#search-premium-items .simple-prod .img-wrap img {
  object-fit:contain !important;
  object-position:center center !important;
  background:#f3f4f6;
}

#search-items .products.grid .simple-prod .img-wrap > a img,
#search-premium-items .simple-prod .img-wrap > a img {
  object-fit:contain !important;
  object-position:center center !important;
}

/* Clamp card title to 2 lines in search grid */
#search-items .products.grid .simple-prod a.title {
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  white-space:normal;
}

/* Close empty bottom gap on search cards */
#search-items .products.grid .simple-prod .data {
  padding-top:0;
  padding-bottom:0;
}

#search-items .products.grid .simple-prod .vrool-trader-card {
  margin-bottom:0;
}

#search-items .products.grid .simple-prod .vrool-trader-card {
  padding-bottom:11px;
}

body .simple-prod .vrool-mm-badge {margin-top:-6px;}
body .simple-prod .vrool-mm-badge .vrool-mm-make {font-weight:400;}
body .simple-prod .vrool-mm-badge .vrool-mm-year {font-weight:400;}
body .simple-prod .vrool-mm-badge .vrool-mm-make-name {font-weight:800;}

body#search #search-items .simple-prod .vrool-payment-accepted .vrool-pay-icons,
body#search #search-premium-items .simple-prod .vrool-payment-accepted .vrool-pay-icons,
body#search #search-alert-items .simple-prod .vrool-payment-accepted .vrool-pay-icons {
  flex-wrap:nowrap;
  gap:6px;
}

body#search #search-items .simple-prod .vrool-payment-accepted .vrool-pay-ico,
body#search #search-premium-items .simple-prod .vrool-payment-accepted .vrool-pay-ico,
body#search #search-alert-items .simple-prod .vrool-payment-accepted .vrool-pay-ico {
  padding:4px 8px;
  font-size:10px;
  line-height:12px;
  white-space:nowrap;
}

#search-items .products.grid .simple-prod .simple-wrap {
  padding-bottom:0;
}

#search-items .products.grid .simple-prod .vrool-trader-card .vrool-trader-phone {
  margin-top:0;
}

/* Reduce bottom gap on other card sections */
#recent-ads .simple-prod .data {
  padding-bottom:0;
}

#recent-ads .simple-prod .vrool-trader-card {
  margin-bottom:0;
}

#search-premium-items .simple-prod .data {
  padding-bottom:0;
}

#search-premium-items .simple-prod .vrool-trader-card {
  margin-bottom:0;
}

.products#latest-items .simple-prod .data {
  padding-bottom:0;
}
.products#latest-items .simple-prod .simple-wrap {
  padding-bottom:10px;
}
.products#latest-items .simple-prod .data {
  padding-top:8px;
}
.products#latest-items .simple-prod .data .price.underloc {
  margin-bottom:2px;
}

.products#latest-items .simple-prod .vrool-trader-card {
  margin-bottom:0;
}

#search-items .list-empty {font-size:15px;line-height:20px;margin:30px 0;}
#search-items .list-empty .titles {font-size:18px;margin:0 0 15px 0;font-weight:bold;display:block;}
#search-items .list-empty .row {margin:0 0 4px 0;}
#search-items .list-empty .tips {padding:13px 15px;background:#fff;border-left:5px solid #3b49df;}
#search-items .list-empty .tips .row.last {font-weight:600;margin:20px 0 0 0;}
#search-items .list-empty .tips a {font-weight:600;}
#search-items .list-empty .tips i {font-size: 6px; line-height: 22px; float: left; margin: 0 6px 0 1px;}
#search-items .list-empty .tips a:hover {text-decoration:none;}
#search-items .simple-prod.day-offer .simple-wrap, #latest-items .simple-prod.day-offer .simple-wrap, #related-items .simple-prod.day-offer .simple-wrap {background-color:#e1f5ea;}
.simple-prod.day-offer .simple-wrap {box-shadow:0 0 0 1px #3b49df;}

@media (max-width: 767px) {
  body#search #search-items .products.grid .simple-prod .vrool-trader-card .vrool-trader-phone-left {
    display:none;
  }

  body#search #search-items .products.grid .simple-prod .vrool-trader-card .vrool-trader-see-ad {
    width:100%;
    justify-content:center;
  }

  body#search #search-items .products.grid .simple-prod .vrool-trader-card .vrool-trader-phone {
    justify-content:center;
  }

  body#search #search-items .products.grid .simple-prod .vrool-trader-card .vrool-trader-spec > span {
    font-size:10px;
    line-height:12px;
  }

  body#search #search-premium-items .simple-prod .vrool-trader-card .vrool-trader-phone-left {
    display:none;
  }

  body#search #search-premium-items .simple-prod .vrool-trader-card .vrool-trader-see-ad {
    width:100%;
    justify-content:center;
  }

  body#search #search-premium-items .simple-prod .vrool-trader-card .vrool-trader-phone {
    justify-content:center;
  }

  body#search #search-premium-items .simple-prod .vrool-trader-card .vrool-trader-spec > span {
    font-size:10px;
    line-height:12px;
  }

  body#search #search-items .products.grid .simple-prod .vrool-trader-card .vrool-trader-name,
  body#search #search-premium-items .simple-prod .vrool-trader-card .vrool-trader-name {
    font-size:14px;
    line-height:18px;
  }

  body#search #search-items .products.grid .simple-prod .vrool-trader-card .vrool-trader-see-ad,
  body#search #search-premium-items .simple-prod .vrool-trader-card .vrool-trader-see-ad {
    animation:epsPulseCta 1.6s ease-in-out infinite;
  }
}

@keyframes epsPulseCta {
  0% {transform:scale(1);box-shadow:0 8px 20px rgba(0,0,0,0.10);}
  50% {transform:scale(1.03);box-shadow:0 10px 26px rgba(0,0,0,0.16);}
  100% {transform:scale(1);box-shadow:0 8px 20px rgba(0,0,0,0.10);}
}

/* Safety: hide professional seller badge on listing cards */
.simple-prod .img-wrap .user-image .business,
.simple-prod .img-wrap .pro {
  display:none !important;
}

/* Hide seller avatar overlay on listing cards (prevents PRO overlay covering main image) */
.simple-prod .img-wrap .user-image {
  display:none !important;
}

#filter-user-type {border-bottom:2px solid #ccc;display:flex;margin:20px 0 10px 0;}
#filter-user-type a {padding:10px 13px;font-size:15px;color:#171717;margin:0 6px -2px 0;font-weight:600;border-bottom:3px solid transparent;}
#filter-user-type a.active, #filter-user-type a:hover {border-color:#3b49df;color:#3b49df;text-decoration:none;}
#filter-user-type a.active {font-weight:bold;}

#open-search-filters {position: fixed; bottom: 58px; right: 8px; z-index: 6;display:flex;align-items: center;}
#open-search-filters > .svg-wrap {margin:0 6px 0 -6px;width:26px;height:26px;border-radius:100px;padding:5px;background:#2f3ab2;}
#open-search-filters svg {fill:#fff;width:16px;height:16px;}

.ajax-load-failed.flashmessage {width:100%;margin:0 0 25px 0;padding:10px 12px;display: flex; justify-content: space-between; align-items: center;}
.ajax-load-failed .btn.mini {background:#333;white-space:nowrap;margin-left:8px;}
.ajax-load-failed .btn.mini:hover {background:111;}

/* VIEW TYPE LIST, GRID, DETAIL */
#search-quick-bar .view-type {margin-left:auto;display:flex;align-items: center; flex-wrap: nowrap; flex-direction: row;}
#search-quick-bar .view-type a {transition:0.2s;color:#171717;border-radius:5px;font-weight:600;height:36px;margin:2px 0 2px 2px;padding:8px 10px;border:2px solid transparent;line-height:16px;display:flex;flex-wrap: nowrap; align-items: center;white-space:nowrap;}
#search-quick-bar .view-type a svg {transition:0.2s;margin:0 8px 0 -2px;width:auto;height:18px;fill:#777;}
#search-quick-bar .view-type a:hover {background:rgb(59 73 223 / 10%);text-decoration:none;}
#search-quick-bar .view-type a:hover svg {fill:#171717;}
#search-quick-bar .view-type a.active {border-color:#3b49df;color:#3b49df;}
#search-quick-bar .view-type a.active svg {fill:#3b49df;}
#search-quick-bar .view-type a.grid svg {width:12px;}
#search-quick-bar .view-type a.detail svg {transform: scaleY(-1);}

/* SORTING */
#search-quick-bar .sort-type {margin-left:auto;display:flex;flex-direction:column;align-items:flex-end;gap:6px;}
#search-quick-bar .sort-type label {position:static;font-size:12px;font-weight:700;color:#111827;line-height:1;}
#search-quick-bar .sort-type select {min-width:240px;height:48px;line-height:48px;padding:0 46px 0 14px;border:1px solid #e5e7eb;border-radius:14px;background:#fff;font-weight:600;font-size:16px;color:#111827;box-shadow:0 10px 26px rgba(15, 23, 42, 0.06);-webkit-appearance:none;appearance:none;}
#search-quick-bar .sort-type select:focus {outline:none;border-color:rgba(0,186,118,0.65);box-shadow:0 10px 26px rgba(15, 23, 42, 0.06), 0 0 0 4px rgba(0,186,118,0.14);}

/* ALERTS */
#search-quick-bar {display:flex;flex-wrap: wrap; align-items: center;flex-direction: row;justify-content: flex-start;margin:25px 0 0 0;}
#search-premium-items + #search-quick-bar {margin:5px 0 0 0;padding:30px 0 0 0;border-top:1px solid #ccc;}
#search-alert .open-alert-box {display:flex;flex-wrap: nowrap; align-items: center;white-space:nowrap;position:relative;}
#search-alert .open-alert-box svg {fill:#fff;width:20px;height:20px;margin:0 8px 0 -1px;}
#search-alert .open-alert-box .active-badge {width:18px;height:18px;text-align:center;line-height:18px;background:#000;color:#fff;position:absolute;top:3px;left:3px;font-size:9px;border-radius:100px;}

#alert-form, #report {padding:30px;position:relative;}
#alert-form.loading:after {top:0;left:0;width:100%;height:100%;z-index:2;position:absolute;background:rgba(255,255,255,0.65);cursor:wait;content:"";display:block;}
#alert-form > img, #report > img {width:128px;height:auto;margin:0 0 35px 0;}
#alert-form .header, #report .header {font-size:22px;font-weight:bold;line-height:1.2;margin:0 0 20px 0;}
#alert-form .text, #report .text {font-size:16px;line-height:1.3;margin:0 0 30px 0;}
#alert-form .inputs {display:flex;width:100%;flex-wrap: nowrap;flex-direction: row;}
#alert-form .inputs input[name="alert_email"] {border:2px solid #333;margin:0 8px 0 0;width:240px;}
#alert-form .inputs input[name="alert_email"]:read-only {border-color:#c3c3c3;}
#alert-form .inputs .btn {margin:0;white-space:nowrap;}
#alert-form .response {display:none;border-left:6px solid;padding:10px 12px;margin:-5px 0 0 0;font-size:15px;line-height:1.2;box-shadow: 0 1px 3px rgb(0 0 0 / 25%);}
#alert-form .response.ok {border-color:#11c55c;}
#alert-form .response.duplicate {border-color:#4b39e9;}
#alert-form .response.error {border-color:#e72b2b;}
#report .subheader {font-size:14px;font-weight:normal;line-height:1.2;margin:0 0 20px 0;}
#report .text {display: flex; flex-direction: column; align-items: flex-start;margin:0;font-size:14px;}
#report .text a {margin:0 0 5px 0;padding:3px 0;font-weight:600;}
#report .text a:hover {text-decoration:none;color:#2f3ab2;}
#report .text a:last-child {margin-bottom:0;}
#report .text a:after {content:"\2192";margin-left:5px;display:none;transition:0.2s;}
#report .text a:hover:after {display:initial;}

/* SEARCH PREMIUM ITEMS */
#search-premium-items {margin:5px 0 30px 0;}
#search-premium-items h2 {margin:0 0 10px 0;font-size:19px;}
#search-premium-items .products {margin: 0 -4px; width: calc(100% + 8px);position:relative;}
#search-premium-items .products.nice-scroll {flex-wrap:nowrap;overflow-x:auto;}
#search-premium-items .simple-prod {width:calc(33.33% - 8px);margin:0 4px 6px 4px;}
#search-premium-items .simple-prod.day-offer {margin-left:2px;}
#search-premium-items .simple-prod {background:#e1fbf3;}
#search-premium-items .simple-prod .simple-wrap {background:#e1fbf3;}
#search-premium-items .simple-prod:hover {background:rgb(59 73 223 / 10%);}
#search-premium-items .simple-prod:hover .simple-wrap {background:rgb(59 73 223 / 10%);}
#search-premium-items .simple-prod .img-wrap {
  padding-top:0;
  aspect-ratio:auto;
  height:clamp(130px, 18vw, 160px);
}

#search-premium-items .simple-prod .img-wrap > a.img {
  display:block;
  width:100%;
  height:100%;
}

#search-premium-items .simple-prod .img-wrap img {
  width:100%;
  height:100%;
  object-fit:cover;
}
#search-premium-items .simple-prod .info {height:17px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:5px 0 2px 0;}
#search-premium-items .simple-prod .title {overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;white-space:normal;font-size:16px;margin:0;}
#search-premium-items .simple-prod .extra, #search-premium-items .simple-prod .labels {display:none;}

.simple-prod.placeholder {}
.simple-prod.placeholder .simple-wrap, #search-premium-items .simple-prod.placeholder .simple-wrap {height:100%;display:flex;align-items: center; justify-content: center;box-shadow: 0 0 0 1px #ccc inset;background:transparent;}
.simple-prod.placeholder:hover .simple-wrap, #search-premium-items .simple-prod.placeholder:hover .simple-wrap {box-shadow: 0 0 0 2px #171717 inset;text-decoration:none;}
.simple-prod.placeholder .simple-wrap .dx {display:flex;flex-direction: column;align-items: center;}
.simple-prod.placeholder .simple-wrap .dx svg {margin:-12px 0 12px;fill:#ccc;}
.simple-prod.placeholder .simple-wrap .dx span {font-weight:600;font-size:15px;}


/* LATEST SEARCH WORDS */
#latest-search {display:inline-block;width:100%;margin:30px 0;padding:30px 0 24px 0;border-top:1px solid #ccc;border-bottom:1px solid #ccc;}
#latest-search h3 {font-size:16px;margin:0 0 8px 0;}
#latest-search .wrap {display: inline-block;width: 100%;}
#latest-search a {transition: 0.2s; float: left; font-size: 13px; line-height: 1; font-weight: 600; padding: 5px 8px; background: rgb(59 73 223 / 8%); margin: 0 5px 5px 0; border-radius: 4px; color: #2f3ab2;}
#latest-search a:hover {background:rgb(59 73 223 / 14%);}



/* FAVORITE LISTINGS */
body #fi_message .fi_simple { width:auto;max-width:100%;margin-bottom:7px; background: #fff; border: none; box-shadow: 0 1px 5px rgba(0,0,0,0.25); border-radius: 5px; border-top-right-radius: 0; padding: 10px; font-size: 13px; opacity:1; }
body #fi_message {width:220px;top:15px;right:15px;}
#body-user-custom.body-ua.plugin-favorite_items #main .inside {padding:0;background:transparent;box-shadow:none;}

#fi_select_list_modal.fi_modal .fi_modal_overlay {background:rgba(2, 6, 23, 0.55);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);}
#fi_select_list_modal.fi_modal .fi_modal_dialog {width:560px;max-width:94%;margin:8vh auto 0 auto;border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 30px 80px rgba(0,0,0,0.40);}
#fi_select_list_modal.fi_modal .fi_modal_head {padding:16px 18px;background:linear-gradient(135deg, #00ba76 0%, #00d98a 100%);color:#fff;}
#fi_select_list_modal.fi_modal .fi_modal_title {float:none;font-size:16px;font-weight:700;line-height:20px;}
#fi_select_list_modal.fi_modal .fi_modal_close {float:none;position:absolute;top:10px;right:10px;width:36px;height:36px;line-height:36px;text-align:center;border-radius:10px;background:rgba(255,255,255,0.18);color:#fff;font-size:22px;opacity:1;}
#fi_select_list_modal.fi_modal .fi_modal_close:hover {background:rgba(255,255,255,0.26);}
#fi_select_list_modal.fi_modal .fi_modal_body {padding:16px 18px;background:#fff;}
#fi_select_list_modal.fi_modal .fi_modal_loading {color:#64748b;font-size:13px;}
#fi_select_list_modal.fi_modal .fi_modal_list_group {border:1px solid #e5e7eb;border-radius:14px;overflow:auto;max-height:260px;background:#fff;}
#fi_select_list_modal.fi_modal .fi_modal_list_row {display:flex;align-items:center;gap:12px;padding:12px 14px;border-bottom:1px solid #f1f5f9;cursor:pointer;}
#fi_select_list_modal.fi_modal .fi_modal_list_row:last-child {border-bottom:none;}
#fi_select_list_modal.fi_modal .fi_modal_list_row:hover {background:#f8fafc;}
#fi_select_list_modal.fi_modal .fi_modal_list_row input[type="radio"] {accent-color:#00ba76;transform:scale(1.05);}
#fi_select_list_modal.fi_modal .fi_modal_list_name {flex:1 1 auto;font-weight:600;color:#0f172a;}
#fi_select_list_modal.fi_modal .fi_modal_list_badge {margin-left:auto;background:rgba(0,186,118,0.12);color:#00ba76;border:1px solid rgba(0,186,118,0.20);font-weight:700;border-radius:999px;padding:4px 10px;font-size:12px;line-height:14px;}
#fi_select_list_modal.fi_modal .fi_modal_new {margin-top:12px;}
#fi_select_list_modal.fi_modal .fi_modal_new_name {width:100%;height:46px;border-radius:14px;border:1px solid #e5e7eb;padding:0 14px;font-size:14px;}
#fi_select_list_modal.fi_modal .fi_modal_new_name:focus {outline:none;border-color:rgba(0,186,118,0.65);box-shadow:0 0 0 4px rgba(0,186,118,0.14);}
#fi_select_list_modal.fi_modal .fi_modal_set_current {display:flex;align-items:center;gap:10px;margin-top:10px;font-size:13px;color:#0f172a;font-weight:600;}
#fi_select_list_modal.fi_modal .fi_modal_set_current input[type="checkbox"] {accent-color:#00ba76;width:16px;height:16px;}
#fi_select_list_modal.fi_modal .fi_modal_foot {display:flex;justify-content:flex-end;gap:10px;padding:14px 18px;background:#f8fafc;border-top:1px solid #e5e7eb;}
#fi_select_list_modal.fi_modal .fi_modal_cancel, #fi_select_list_modal.fi_modal .fi_modal_add {height:42px;padding:0 16px;border-radius:12px;font-weight:700;font-size:14px;}
#fi_select_list_modal.fi_modal .fi_modal_cancel {background:#e5e7eb;color:#0f172a;border:1px solid #e5e7eb;}
#fi_select_list_modal.fi_modal .fi_modal_cancel:hover {background:#dbe1ea;}
#fi_select_list_modal.fi_modal .fi_modal_add {background:#00ba76;color:#fff;border:1px solid rgba(0,0,0,0.00);}
#fi_select_list_modal.fi_modal .fi_modal_add:hover {background:#00a767;}
body #main .fi_user_menu_wrap h2.r1 {width: 100%;float:left;margin:0;border:none;padding-bottom:0;}
body #fi_list_items h2.r3 {width: 100%;float:left;margin:0 1% 12px 1%;font-family: inherit; font-weight: bold;font-size: 18px; line-height: 22px; color: #111;border:none;}
body #fi_list_items h2.r3 a {color:#111;text-decoration:none;text-transform:none;}
body #fi_user_new_list {font-size:14px;padding:16px;border-radius:3px;border:1px solid rgba(0,0,0,0.1);background:#f2f4f8;margin:10px 0 20px 0;}
body #fi_user_new_list .fi_new_name {float:left;padding:8px;height:36px;border-radius:4px;font-size:14px;width:43%;margin-right:2%;}
body #fi_user_new_list .fi_check.first, body #fi_user_new_list .fi_check {float:left;width:20%;padding-right:20px;margin:0;}
#fi_user_new_list .fi_title {display:block!important;float:left;clear:both;width:100%;margin:0 0 5px 0;font-size:13px;color:#111;}
#fi_user_new_list button {font-weight:bold;font-size:14px;height:36px;padding:8px 15px;line-height:20px;border-radius:6px;width:15%;text-align:center;}
body #fi_user_new_list .fi_check label {font-size:13px;}
body #fi_list_items.fi_user_menu .fi_tool {position:absolute;right:10px;bottom:8px;width:auto;z-index:9;}
body #fi_list_items.fi_user_menu .fi_tool span {color:#666;font-size:15px;width:32px;height:32px;padding:8px;text-align:center;border-radius:4px;background:transparent;transition:0.1s;}
body #fi_list_items.fi_user_menu .fi_tool span:hover {color:#333;background:#eee;}
body #fi_list_items.fi_user_menu .fi_tool span:before {content:"\f1f8";font-weight:900;}

body #fi_list_items.fi_user_menu .fi_item {border: 1px solid transparent; border-radius: 3px; background: transparent; line-height: 16px; font-size: 13px; box-shadow: 0 0 0 1px rgba(0,0,0,0.15);padding:0;}
body #fi_list_items .fi_left a {float: left; width: 100%; position: relative; margin: 0; overflow: hidden; border-top-left-radius: 6px; border-top-right-radius: 6px; border-bottom: 1px solid #eee;}
body #fi_list_items .fi_left img {background-size: cover; width: 100%; max-height: 100%; max-width: 100%; transition: 0.2s; overflow: hidden; background-position: center center;}
body #fi_list_items.fi_user_menu .fi_right {text-align:left;float: left; width: 100%; padding: 14px 2px;margin:0; z-index: 3; position: relative; background: #fff; border-radius: 0px;border-top:1px solid #ddd;}

/* FAVORITE LISTINGS */
.fi_left a, body #fi_list_items .fi_left a:hover {border:none;}
body #fi_list_items.fi_user_menu .fi_left {margin:0;}
body #fi_list_items.fi_user_menu .fi_right a {float: left; text-align:left;font-size: 14px; clear: both; font-weight: normal; color: #363433; margin: 0px 0 8px 0; padding: 0 ; height: 19px; white-space: nowrap; width: 100%; overflow: hidden; word-break: break-all; text-overflow: ellipsis;}
body #fi_list_items.fi_user_menu .fi_right a:hover {color:#363433;text-decoration:underline;}
body #fi_list_items .fi_right .fi_top, body #fi_list_items .fi_right .fi_bottom {max-width: 100%; float: left; clear: both; font-weight: bolder; color: #000; margin: 0; padding: 0 5px 0 10px; position: relative; font-size: 17px; line-height: 20px;}
.fi_check > span {float:left;width:100%;clear:both;margin:3px 0;}
.fi_check > span input[type="checkbox"] {opacity:0.01;position:absolute;z-index:1;overflow:hidden;background:transparent;padding:0!important;width:1px!important;height:1px!important;margin:0!important;box-shadow:none!important;}
.fi_check > span label {cursor:pointer;position:relative;float:left;padding:2px 0 0 26px!important;line-height:16px;font-size:13px;width:auto;clear:both;font-weight:normal;}
.fi_check > span label:hover {text-decoration:underline;}
.fi_check > span label:before {cursor:pointer;content: ""; width: 18px; height: 18px; border: 1px solid rgba(0,0,0,0.3);font-weight:500; text-shadow: none; position: absolute; top: 0; left: 0;text-shadow:none;box-shadow: 0px 1px 1px rgba(0,0,0,0.06);border-radius: 3px;transition:0.1s;}
.fi_check > span label:hover:before {border-color:#aaa;}
.fi_check > span label:after {cursor: pointer; text-indent: 1px; font-family: "Font Awesome 5 Free"; content: "\f00c"; color: transparent; font-size: 11px; width: 18px; height: 18px; line-height: 18px; text-align: center; font-weight: 900; text-shadow: none; position: absolute; top: 0px; left: 0px;border-radius: 5px;transition:0.1s;}
.fi_check > span input[type="checkbox"]:checked + label:after {color:#000;}

body .fi_user_menu_wrap h2.r2 {display:none;}
body #fi_user_lists .fi_list.fi_head {border:none;background:#f2f4f8;text-transform:none;font-weight: bold; color: #171717; font-size: 13px; border: none;border-bottom:1px solid #3b49df; padding: 10px 10px;margin:0;white-space:nowrap;}
body #fi_user_lists .fi_list.fi_head .fi_count, body #fi_user_lists .fi_list.fi_head .fi_user_list_remove {color:inherit;}
body #fi_user_lists .fi_name a:hover {color:#111;text-decoration:underline;}
body #fi_user_lists .fi_list:not(.fi_head) {padding:10px 10px;margin: 0 0 5px 0;background:#fff;border-bottom:1px solid #ccc;}
body #fi_user_lists .fi_user_list_remove a {color:#666;}
body #fi_user_lists .fi_user_list_remove a:hover {color:#111;}
body #fi_user_lists {margin:15px 0;}
body .fi_current a, body .fi_notification a, body .fi_user_list_remove a {display:inline-block;width:32px;height:32px;text-align:center;padding:8px;margin:-8px 0;border-radius:5px;background:#f9f9f9;transition:0.1s;}
body .fi_current a i, body .fi_notification a i, body .fi_user_list_remove a i {line-height:16px;transition:0.1s;}
body .fi_current a:hover, body .fi_notification a:hover, body .fi_user_list_remove a:hover {background:#eee;}
body #fi_user_lists .fi_explain {margin-top:10px;font-size:12px;line-height:15px;color:#777;}
body #fi_user_lists .fi_explain > div {margin-bottom:6px;}
body #fi_user_lists .fi_explain sup {color:#888;width:auto;margin-right:4px;}
body #fi_user_lists .fi_current.fi_active .fa-check {color:#3b49df;}
body #fi_list_items .fi_tool span {font-family:"Font Awesome 5 Free";}
body #fi_list_items .fi_tool span:before {content:"\f1f8";font-weight:900;}

/* USER ACCOUNT */
body.body-ua {background:#fff;}
.body-ua .container.primary {margin-top:10px; margin-bottom:35px;align-items:flex-start;justify-content:flex-start;flex-direction:row;}
.body-ua .content.no-breadcrumbs {padding-top:20px;}
body.body-ua #breadcrumbs .bread-text {margin-left:0;}
#epsUaMenuToggle, .vrool-ua-menu-toggle {display:none;}
#user-menu {width:280px;margin-left:-15px;position:sticky;top:72px;margin-bottom:20px;z-index:0;}
#user-main {width:calc(93% - 200px);}
#user-menu .vrool-ua-menu {display:flex;flex-direction:column;gap:4px;}
#user-menu .vrool-ua-section-title {margin:12px 0 6px 0;padding:0 10px;font-size:11px;line-height:14px;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;color:rgba(15,23,42,0.55);}

@media (max-width: 980px) {
  #user-menu {
    width:100%;
    margin-left:0;
    position:relative;
    top:auto;
  }

  #user-main {
    width:100%;
  }

  #epsUaMenuToggle,
  .vrool-ua-menu-toggle {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin:0 0 10px 0;
    padding:12px 14px;
    border:1px solid rgba(15,23,42,0.14);
    border-radius:12px;
    background:#fff;
    color:#111827;
    font-size:14px;
    line-height:1;
    font-weight:700;
  }

  #epsUaMenuToggle .chevron,
  .vrool-ua-menu-toggle .chevron {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:transform 0.2s ease;
  }

  #user-menu.is-open #epsUaMenuToggle .chevron,
  #user-menu.is-open .vrool-ua-menu-toggle .chevron {
    transform:rotate(180deg);
  }

  #user-menu .vrool-ua-menu {
    display:none;
  }

  #user-menu.is-open .vrool-ua-menu {
    display:flex;
  }
}

@media (min-width: 981px) {
  body.body-ua .container.primary {
    max-width:1450px;
    width:100%;
    padding-left:16px;
    padding-right:16px;
    box-sizing:border-box;
    margin-left:auto;
    margin-right:auto;
    gap:18px;
    justify-content:flex-start;
    align-items:flex-start;
  }

  /* Sidebar fixed width; main column grows to the right padding edge (matches header / Sell rail) */
  #user-menu {
    margin-left:0;
    flex:0 0 280px;
    width:280px;
    max-width:280px;
  }
  #user-main {
    flex:1 1 auto;
    width:auto;
    min-width:0;
    max-width:none;
  }

  body.body-ua #user-main .user-custom-box,
  body.body-ua #user-main .vrool-body {
    width:100%;
    max-width:100%;
    box-sizing:border-box;
  }
}

#user-menu a {position:relative;transition:0.15s;line-height:1.2;display:flex;align-items:center;gap:10px;margin:0;font-size:13px;padding:10px 12px;border-radius:12px;border-left:0;color:#171717;text-decoration:none;}
#user-menu a .vrool-ua-icon {width:30px;height:30px;min-width:30px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;background:rgba(15,23,42,0.05);color:rgba(15,23,42,0.80);}
#user-menu a .vrool-ua-icon i {font-size:14px;line-height:1;}
#user-menu a .vrool-ua-label {display:inline-block;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

#user-menu a:not(.logout):not(.public):hover {background:#f2f4f8;}
#user-menu a.active {background:#eef2ff;box-shadow:inset 0 0 0 1px rgba(59,73,223,0.15);}
#user-menu a.active .vrool-ua-icon {background:rgba(59,73,223,0.12);color:#2f3ab2;}

#user-menu a.public {margin:0 0 10px 0;background: linear-gradient(135deg, #12b981 0%, #10cd7b 45%, #11c876 100%);color:#ffffff;box-shadow:0 10px 26px rgba(0,0,0,0.14);}
#user-menu a.public .vrool-ua-icon {background:rgba(255,255,255,0.20);color:#ffffff;}
#user-menu a.public:hover {filter:brightness(1.02);}
#user-menu a.public .ext {margin-left:auto;height:20px;width:20px;text-align:center;line-height:20px;font-size:13px;color:#ffffff;opacity:0.95;}

#user-menu a.logout {font-weight:800;margin-top:12px;background:rgba(15,23,42,0.04);}
#user-menu a.logout:hover {background:rgba(15,23,42,0.07);}

#user-menu a.has-counter {padding-right:12px;}
#user-menu a .counter, #user-menu a .im-user-account-count {margin-left:auto;position:relative;right:auto;top:auto;min-width:22px;height:22px;padding:0 7px;display:inline-flex;align-items:center;justify-content:center;line-height:1;font-size:11px;font-weight:800;border-radius:999px;color:#fff;background:#d55e5e;box-shadow:0 0 0 3px rgba(255,255,255,0.95);}
#user-menu li {list-style-type:none;margin:0;display:inherit;padding:0;}
#user-menu li a > i, #user-menu li a > svg {display:none;}
#user-menu li a .vrool-ua-icon i, #user-menu li a .vrool-ua-icon svg {display:inline-block;}

/* User menu - plugin hooks (items injected as <li><a> without vrool-ua-icon markup) */
#user-menu .menu-hooks li {list-style:none;margin:0;padding:0;}
#user-menu .menu-hooks li > a {padding-left:52px;}
#user-menu .menu-hooks li > a:before {
  content:"\f0c8";
  font-family:"Font Awesome 5 Free";
  font-weight:400;
  position:absolute;
  left:12px;
  top:calc(50% - 15px);
  width:30px;
  height:30px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(15,23,42,0.05);
  color:rgba(15,23,42,0.80);
  font-size:13px;
  line-height:1;
}

#user-menu .menu-hooks li > a.vrool-ua-hook {padding-left:12px;}
#user-menu .menu-hooks li > a.vrool-ua-hook:before {content:none;display:none;}

#user-menu .menu-hooks li > a.active:before,
#user-menu .menu-hooks li > a:hover:before {background:rgba(59,73,223,0.12);color:#2f3ab2;}

 body .vrool-delacc-modal {position:fixed;inset:0;z-index:100000;display:none;}
 body .vrool-delacc-backdrop {position:absolute;inset:0;background:rgba(17,17,17,0.72);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);}
 body .vrool-delacc-dialog {position:relative;max-width:520px;width:calc(100% - 24px);margin:12vh auto 0 auto;border-radius:16px;overflow:hidden;background:#fff;box-shadow:0 18px 60px rgba(0,0,0,0.45);}
 body .vrool-delacc-head {display:flex;align-items:center;justify-content:space-between;padding:14px 16px;background:#fff;border-bottom:1px solid rgba(15,23,42,0.10);}
 body .vrool-delacc-title {font-size:16px;line-height:1.2;font-weight:800;color:#0f172a;}
 body .vrool-delacc-x {width:38px;height:38px;border-radius:12px;border:0;background:rgba(15,23,42,0.06);color:#0f172a;font-size:26px;line-height:38px;cursor:pointer;}
 body .vrool-delacc-x:hover {background:rgba(15,23,42,0.10);}
 body .vrool-delacc-body {padding:16px;}
 body .vrool-delacc-msg {font-size:13px;line-height:1.4;color:rgba(15,23,42,0.85);margin:0 0 12px 0;}
 body .vrool-delacc-phrase {font-size:12px;line-height:1.4;color:rgba(15,23,42,0.65);margin:0 0 6px 0;font-weight:700;}
 body .vrool-delacc-phrasebox {font-size:12px;line-height:1.4;background:rgba(15,23,42,0.05);border:1px solid rgba(15,23,42,0.08);border-radius:12px;padding:10px 12px;color:#0f172a;margin:0 0 10px 0;}
 body .vrool-delacc-input {width:100%;height:42px;border-radius:12px;border:1px solid rgba(15,23,42,0.16);padding:0 12px;font-size:13px;outline:none;}
 body .vrool-delacc-input:focus {border-color:rgba(59,73,223,0.55);box-shadow:0 0 0 4px rgba(59,73,223,0.14);}
 body .vrool-delacc-foot {display:flex;gap:10px;justify-content:flex-end;padding:14px 16px;background:#fff;border-top:1px solid rgba(15,23,42,0.10);}
 body .vrool-delacc-cancel {height:40px;border-radius:12px;border:1px solid rgba(15,23,42,0.16);background:#fff;color:#0f172a;padding:0 14px;font-weight:800;cursor:pointer;}
 body .vrool-delacc-cancel:hover {background:rgba(15,23,42,0.04);}
 body .vrool-delacc-confirm {height:40px;border-radius:12px;border:0;background:#ef4444;color:#fff;padding:0 14px;font-weight:900;cursor:pointer;}
 body .vrool-delacc-confirm:disabled {opacity:0.45;cursor:not-allowed;}

/* Favorites */
#user-menu .menu-hooks li.opt_favorite_items > a:before,
#user-menu .menu-hooks li > a[href*="favorite"]:before {content:"\f005";}

/* Watchlist */
#user-menu .menu-hooks li.opt_watchlist > a:before,
#user-menu .menu-hooks li > a[href*="watchlist"]:before {content:"\f02e";}

/* Promote Listing / Promotions / Vrool Pay */
#user-menu .menu-hooks li.opt_osp_item > a:before,
#user-menu .menu-hooks li.opt_osp_payment > a:before {content:"\f0a1";}

/* Wallet & Packs */
#user-menu .menu-hooks li.opt_osp_pack > a:before {content:"\f555";}

/* Membership */
#user-menu .menu-hooks li.opt_osp_membership > a:before {content:"\f2c2";}

/* Cart */
#user-menu .menu-hooks li.opt_osp_cart > a:before {content:"\f07a";}

/* Orders & Sales */
#user-menu .menu-hooks li.opt_osp_order > a:before {content:"\f2b5";}

/* Banners */
#user-menu .menu-hooks li.opt_osp_banner > a:before {content:"\f1ea";}

/* Delete account */
#user-menu .menu-hooks li.opt_del_user > a:before,
#user-menu .menu-hooks li > a[href*="action=delete"]:before {content:"\f2ed";}

/* Offers */
#user-menu .menu-hooks li.opt_user_offers > a:before,
#user-menu .menu-hooks li > a[href*="mo-offers"]:before {content:"\f0e3";}

/* Messages */
#user-menu .menu-hooks li.opt_instant_messenger > a:before,
#user-menu .menu-hooks li > a[href*="im-threads"]:before {content:"\f0e0";}

/* Business profile */
#user-menu .menu-hooks li.opt_bpr_profile > a:before,
#user-menu .menu-hooks li > a[href*="bpr-profile"]:before {content:"\f0b1";}

/* Auction plugin (My auctions / bids) */
#user-menu .menu-hooks li.opt_auction > a:before,
#user-menu .menu-hooks li > a[href*="act-auctions"]:before,
#user-menu .menu-hooks li > a[href*="act-bids"]:before,
#user-menu .menu-hooks li > a[href*="auctions"]:before {content:"\f0e3";}

#user-menu li.opt_osp_item > a {
  border-left-color:#10b981;
  animation:vrool-promote-pulse 2.8s ease-in-out infinite;
}

#user-menu li.opt_osp_item > a:hover,
#user-menu li.opt_osp_item > a.active {
  background:rgba(16,185,129,0.12);
}

@keyframes vrool-promote-pulse {
  0% { box-shadow:0 0 0 0 rgba(16,185,129,0.00); background:transparent; }
  50% { box-shadow:0 0 0 10px rgba(16,185,129,0.12); background:rgba(16,185,129,0.08); }
  100% { box-shadow:0 0 0 0 rgba(16,185,129,0.00); background:transparent; }
}

@media (prefers-reduced-motion: reduce) {
  #user-menu li.opt_osp_item > a { animation:none; }
}
#user-main h1, #user-main h2, #user-main h3 {margin:0 0 10px 0;}
#user-main h1 + h2, #user-main h2 + h3 {margin-top:-5px;}
#user-main h2 {font-weight:600;font-size:16px;}
#user-main .user-custom-box h2 {font-size:22px;font-weight:bold;}
.body-ua #flashbox #flash_js + .flashmessage {margin-top:5px;}
.body-ua #flashbox .flashmessage:last-child {margin-bottom:20px;}

@media (min-width: 981px) {
  /* Breadcrumbs: same 1450px + 16px rail as header (overrides base .container min(90%,1032px) after load order quirks) */
  body.body-ua #breadcrumbs.container,
  body#custom #breadcrumbs.container {
    max-width:1450px;
    width:100%;
    box-sizing:border-box;
    margin-left:auto;
    margin-right:auto;
    padding-left:16px;
    padding-right:16px;
  }

  /* Plugin pages rendered via custom.php (e.g. OSP wallet when not using user-custom wrapper) */
  body#custom .container.primary {
    max-width:1450px;
    width:100%;
    box-sizing:border-box;
    margin-left:auto;
    margin-right:auto;
    padding-left:16px;
    padding-right:16px;
    align-items:stretch;
  }
}

/* Section hub + per-section custom pages: less air under header (aligns with BNB treatment) */
body#custom:has(.vrool-section-only-wrap) > .content,
body#custom:has(.vrool-sections-wrap) > .content {
  padding-top: 10px;
}
body#custom:has(.vrool-section-only-wrap) .container.primary,
body#custom:has(.vrool-sections-wrap) .container.primary {
  padding-top: 8px;
}
body#custom:has(.vrool-section-only-wrap) #breadcrumbs.container,
body#custom:has(.vrool-sections-wrap) #breadcrumbs.container {
  padding-top: 4px;
  padding-bottom: 4px;
}

/* USER DASHBOARD */
#user-main h1 .wave {height: 26px; display: inline-block; vertical-align: 3px; margin-top: -3px; margin-left: 3px;}
#user-main .headers {margin:0 0 10px 0;padding-top:3px;}
#user-main .headers h1, #user-main .headers h2 {margin:0;}
#user-dashboard .card-box {display:grid;grid-template-columns: repeat(3, 1fr);grid-gap: 16px;margin:20px 0;width:1050px;max-width:100%;}
#user-dashboard .card {padding:16px;background:#f2f4f8;color:#171717;border-radius:6px;transition:0.25s;line-height:1.4;}

@media (min-width: 981px) {
  body.post-category .container {
    max-width:1450px;
    width:100%;
    padding-left:16px;
    padding-right:16px;
    box-sizing:border-box;
    margin-left:auto;
    margin-right:auto;
  }
}
#user-dashboard .card:hover {text-decoration:none;background:#e5e9f0;}
#user-dashboard .card .icon {width:52px;height:52px;padding:13px 4px;margin:0 0 4px 0;text-align:center;position:relative;border-radius:8px;background:rgba(0,0,0,0.05);display:inline-block;}
#user-dashboard .card .icon > i {font-size:26px;line-height:26px;color:rgba(0,0,0,0.6);}
#user-dashboard .card .icon > svg {width:26px;height:26px;fill:rgba(0,0,0,0.6);}
#user-dashboard .card .icon img {width:26px;height:26px;}
#user-dashboard .card .icon .count {box-shadow:0 0 0 2px #f2f4f8;position:absolute;right:-5px;top:-5px;font-size:12px;text-align:center;line-height:16px;padding:4px;min-width:24px;height:24px;border-radius:100px;background:#3b49df;color:#fff;font-weight:600;}
#user-dashboard .card .icon .count i {font-size:13px;line-height:16px;}
#user-dashboard .card .header {font-size:18px;font-weight:bold;margin:5px 0;}
#user-dashboard .card .description {font-size:15px;color:#444;}

@media (min-width: 981px) {
  body#user-dashboard .container.primary {padding-left:16px;}
  body#user-dashboard #user-main {width:100%;max-width:1450px;}
  #user-dashboard .daq-delete-sidebar {width:100%;}
}

@media (max-width: 767px) {
  #user-dashboard .card-box{grid-template-columns:repeat(2,1fr) !important;width:100% !important;gap:10px !important;}
  #user-dashboard .card{padding:12px !important;}
  #user-dashboard .card .icon{width:42px !important;height:42px !important;padding:9px 4px !important;}
  #user-dashboard .card .icon img{width:22px !important;height:22px !important;}
  #user-dashboard .card .header{font-size:14px !important;}
  #user-dashboard .card .description{font-size:12px !important;}
  #user-dashboard .headers{padding-left:72px !important;}
  #user-dashboard .headers h1{font-size:22px !important;}
  #user-dashboard .headers h2{font-size:13px !important;}
  #user-dashboard .headers .img-container{width:56px !important;height:56px !important;}
}

/* USER ITEMS */
.items-box {margin:10px 0;}
.items-box .item {margin:0 0 20px 0;padding:0 0 20px 0;border-bottom:1px solid #ccc;position:relative;display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start;}
.items-box.all .item.inactive:after {border-radius:6px;transition:0.2s;content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.55);z-index:2;}
.items-box.all .item.inactive:hover:after {opacity:0;bottom:50%;top:50%;}
.items-box .item .image {width:200px;height:195px;position:relative;display:block;margin:0 20px 0 0;border-radius:14px;overflow:hidden;background:#f2f4f8;}
.items-box .item .image img {width:100%;height:100%;object-fit:cover;object-position:center 20%;border-radius:0;}
.items-box .item .image .image-counter {position:absolute;right:6px;bottom:6px;padding:3px 5px;border-radius:4px;background:rgba(0,0,0,0.5);color:#fff;font-size:13px;line-height: 14px;}
.items-box .item .label-premium {top:6px;left:6px;bottom:auto;max-width:calc(100% - 12px);}
.items-box.all .item.inactive .label-premium {top:38px;}
.items-box .item .label-reserved, .items-box .item .label-sold {
  z-index:3;
  position:absolute;
  top:8px;
  left:8px;
  bottom:auto;
  padding:4px 8px;
  font-size:10px;
  line-height:12px;
  font-weight:800;
  border-radius:999px;
  letter-spacing:0.2px;
  text-transform:uppercase;
  max-width:calc(100% - 16px);
  box-shadow:none;
}
.items-box .item .label-sold {background:rgba(218, 23, 23, 0.92);color:#fff;}
.items-box .item .label-reserved {background:rgba(23, 74, 218, 0.92);color:#fff;}
.items-box .item .label-inactive, .items-box .item .label-expired {font-style:italic;background: #222; color: #fff;z-index:3;position:absolute;top:0;left:0;width:100%;min-height:32px;padding:8px 4px;line-height:16px;font-size:13px;font-weight:bold;text-align:center;border-radius:6px 6px 0 0;box-shadow:0 1px 2px rgba(0,0,0,0.2);}
.items-box:not(.all) .item .label-inactive, .items-box:not(.all) .item .label-expired {display:none;}
.items-box .item .label-expired {background:#f30000;}
.items-box .item .body {width:calc(100% - 220px);height:195px;display:flex;flex-direction: column;align-items: flex-start;padding:10px 0;position:relative;}
.items-box .item .top {font-size: 12px; color: #555; line-height: 16px; margin: 0 0 7px 0;padding-right:130px;}
.items-box .item .top span:empty {display:none;}
.items-box .item .top span:after {content: "\2022"; margin: 0 4px 0 8px;color:#999;}
.items-box .item .top span:last-child:after {display:none;}
.items-box .item .title {font-weight:bold;color:#171717;font-size:16px;line-height:1.18;margin:0 0 10px 0;}
.items-box .item .description {font-size: 15px; color: #555; line-height: 20px;max-height:61px;overflow:hidden;}
.items-box .item .price {max-width:120px;position:absolute;top:3px;right:0;font-size:18px;font-weight:bold;line-height:1.2;padding:4px 8px;border-radius: 5px;background:#15ad70;color:#fff;}
.items-box .item .buttons {display:flex;width:100%;margin-top:auto;flex-wrap: wrap;}
.items-box .item .buttons a {padding:5px 7px;margin:4px 4px 0 0;border-radius:6px;background:rgb(59 73 223 / 10%);color:#2f3ab2;font-size:11px;font-weight:300;line-height:1.15;}
.items-box .item .buttons a.delete {box-shadow:0 0 0 1px rgb(59 73 223 / 30%) inset;background:#fff;color:#171717;margin-left:auto;}
.items-box .item .buttons a.delete i {color:#888;margin-right:2px;}
.items-box .item .buttons .delim {display:none;}
.items-box .item.vrool-item-is-highlight {background:#fffece!important;}

/* USER ALERTS */
.alerts-box {margin:10px 0;}
.alerts-box .alert {margin:0 0 16px 0;padding:16px;border:1px solid #ccc;border-radius:6px;box-shadow:0 2px 8px rgba(0,0,0,0.2);}
.alerts-box .alert .details {background:#15ad70;padding:10px;}
.alerts-box .head-row {margin:0 0 12px 0;line-height:1.3;display:flex;justify-content: space-between; flex-direction: row; align-items: flex-start;}
.alerts-box .head-row .data strong {font-size:15px;font-weight:normal;font-weight:600;}
.alerts-box .head-row .data div {font-size:14px;margin-top:5px;}
.alerts-box .head-row .btn {white-space:nowrap;margin-left:12px;}
.alerts-box .head-row .alert-title {background:rgb(59 73 223 / 8%);}
.alerts-box .head-row .show-technical-details {margin-left:6px;font-size:13px;}
.alerts-box .details {display:none;margin:0 0 12px 0;font-size:13px;font-family:"Consolas";border-radius:5px;}
.alerts-box .items {margin:10px 0 0 0;}
.alerts-box .items .empty {margin-top:10px;}
.alerts-box .show-all {margin:0 0 15px 0;font-size:15px;display:block;}
#alert-items {flex-wrap: nowrap;overflow-x:auto;}
#alert-items .simple-prod {width:180px;margin-bottom:6px;}

/* USER PROFILE */
.profile-box {margin:0px 0 40px 0;}
#user-main .profile-box.alt h2 {margin:0 0 10px 0;font-size:22px;font-weight:bold;}
#user-main .right-block h2 {margin:0 0 10px 0;font-size:18px;font-weight:bold;}
.profile-box.alt {padding-top:30px;border-top:2px solid #ccc;}
.profile-box select {width:100%;max-width:240px;}
.profile-box input {width:100%;max-width:320px;}
.profile-box textarea {width:100%;max-width:100%;min-width:100%;margin-bottom:0;}
.profile-box form.profile > .wrap {display:flex;flex-direction: row; justify-content: space-between; align-items: flex-start;}
.profile-box .left-block {padding-right:25px;}
.profile-box .right-block {min-width:280px;max-width:280px;background:#f0f0f0;padding:16px;border-radius:4px;position: sticky;top: 72px;}
.profile-box .tabberlive .tabbertab, .profile-box .tabberlive {margin-bottom:0;padding-bottom:0;} 
.profile-box label {font-size:14px;margin:0 0 3px 0;display:block;}
.profile-box label a.change-email {font-size:13px;margin-left:6px;}
.profile-box .profile-img {padding-bottom:25px;margin-bottom:25px;border-bottom:1px solid #ccc;}
.profile-box .profile-img .btn {padding: 6px 8px; height: auto; font-size: 14px;margin-right:5px;}
.profile-box input#zip {width:120px;}
.profile-box input#s_name {max-width:240px;}
.profile-box.prim .row.user-buttons {margin:20px 0 10px 0;display:flex;}
.profile-box.prim .row.user-buttons .btn-secondary {margin-left:auto;}
.profile-box.alt .input-box {max-width:320px;}
.profile-box a.toggle-pass {top:calc(50% - 15px);right:3px;font-size:14px;}
.body-ua .profile-img .img-container {position:initial;left:auto;top:auto;width:initial;height:initial;border-radius:0;overflow:visible;box-shadow:none!important;}
.body-ua .profile-img .img-container img {width:initial;height:initial;max-width:100%;max-height:initial;object-fit:unset;}
.body-ua .profile-img .img-preview {border-radius:6px;box-shadow:0 2px 6px rgba(0,0,0,0.25);}


/* PAGINATION */
.paginate {margin:10px 0;}
.paginate ul {display:flex;list-style-type:none;flex-wrap: wrap; flex-direction: row; justify-content: center; align-items: flex-start;}
.paginate ul li {margin:0 2px;}
.paginate ul li a, .paginate ul li span {font-weight:bold;transition:0.2s;min-width:36px;text-align:center;height:36px;border-radius:5px;font-size:14px;padding:8px 4px;display:inline-block;background: rgb(59 73 223 / 10%); color: #2f3ab2;}
.paginate ul li a.searchPaginationSelected, .paginate ul li span.searchPaginationSelected, .paginate ul li a:hover, .paginate ul li span:hover {color: #f9f9f9; background: #3b49df;text-decoration:none;}
.paginate ul li i {line-height:20px;font-size:14px;}

/* FONT AWESOME ICONS COMPATIBILITY */
.fa-star-o:before {font-weight:400;content:"\f005"}
i.fa:before {font-family:"Font Awesome 5 Free";font-weight:900;}
i.fa-dollar:before {content:"\f155";}
i.fa-gear:before {content:"\f013";}
i.fa-mobile:before {content:"\f3cd";}
i.fa-star-o:before {content:"\f005";font-weight: 400;}
i.fa-warning:before {content:"\f071";}
i.fa-handshake-o:before {content:"\f2b5";font-weight:400;}
i.fa-file-archive-o:before {content:"\f1c6";font-weight:400;}
i.fa-flag-o:before {content:"\f024";font-weight:400;}
i.fa-trash-o:before {content:"\f1f8";}
i.fa-envelope-o:before {content:"\f0e0";font-weight:400;}
i.fa-sign-in:before {content:"\f2f6";}
i.fa-pencil-square-o:before {content:"\f044";font-weight:400;}
i.fa-folder-o:before {content:"\f07b";font-weight:400;}
i.fa-user-o:before {content:"\f007";font-weight:400;}
i.fa-sign-out:before {content:"\f2f5";}
i.fa-clock-o:before {content:"\f017";}
i.fa-repeat:before {content:"\f01e";}
i.fa-newspaper-o:before {content:"\f1ea";font-weight:400;}
i.fa-file-pdf-o:before {content:"\f571";font-weight:900;}
i.fab.fa-share {font-family: "Font Awesome 5 Free"!important;}
i.fab.fa-share:before {content:"\f064";font-weight:900;}
i.fa-mail-reply:before {content:"\f3e5";font-weight:900;}
body .vrool-options label > div:after, .vrool-promote-form label.vrool-chk div:after {font-size:11px!important;font-weight:900!important;}
body .im-error-list.error-list li:before {font-family: "Font Awesome 5 Free";font-size:16px;}
body #mo-check.styled .input-box-check label:after {font-family: "Font Awesome 5 Free";font-weight:900;font-size: 12px; left: 0;}
body .vrool-stat > span.vrool-issue:after, body .vrool-stat > span.vrool-201:after, body .vrool-stat > span.vrool-801:after, body .vrool-stat > span.vrool-401:after, body .vrool-stat > span.vrool-601:after {font-weight:bold;font-family: "Font Awesome 5 Free";}
body .sms-body .sms-button.loading:before, body .sms-body .sms-button-resend.loading:before {font-family: "Font Awesome 5 Free";top:10px;}
body .vrool-chat-button .vrool-user-left i.fa-comments-o:before {content:"\f27a";font-weight:400;}
body i.fa-youtube:before,body i.fa-vimeo:before,body i.fa-pinterest-p:before,body i.fa-facebook:before, body i.fa-instagram:before,body i.fa-whatsapp:before, body i.fa-twitter:before, body i.fa-google-plus:before, body i.fa-linkedin:before, body i.fa-pinterest:before {font-family:"Font Awesome 5 Brands"!important;}
body i.fa-cc-mastercard:before {font-family: "Font Awesome 5 Brands"!important;font-weight: 400;}

/* SCROLL TO TOP */
#scroll-to-top {display:none;position:fixed;bottom:25%;right:15px;z-index:98;cursor:pointer;box-shadow:0 1px 2px rgba(0,0,0,0.25);border-radius:6px;background:#00ba76;padding:8px 0;text-align:center;width:36px;height:36px;transition:0.2s;}
#scroll-to-top img {width:auto;height:20px;display:inline-block;margin-top:1px;transition:0.2s;filter:brightness(0) invert(1);}
#scroll-to-top:hover {height:42px;}

/* BANNERS */
.container.banner-box {text-align:center;}
.container.banner-box > .inside {margin:0 auto;max-width:100%;}
.banner-theme { display: block; margin: 16px 0; float: left; text-align: center;width:100%;border:none; }
.banner-theme.is-demo {display:none;}
.banner-theme .myad {display:inline-block;max-width:100%;margin:0 auto;overflow:hidden;}
.banner-theme#banner-theme .myad {text-align:center;display:flex;}
.banner-theme#banner-theme .myad .text {margin:auto;text-align:center;line-height: 18px; font-size: 16px;}
.banner-theme#banner-theme.opt-adsense .myad .text {margin:0;display:inline-block;width:100%;height:auto;}
.banner-theme#banner-theme.is-demo, .home-container.banner-box.is-demo {display:none;}
.banner-theme#banner-theme.is-demo .myad {border:1px solid #3b49df;font-family:monospace;color:#3b49df;}
.banner-theme#banner-theme.is-demo .myad .text span {display:block;}
.banner-theme#banner-theme.is-demo .myad .text strong {display:block;font-size:12px;line-height:14px;margin:3px 0 0 0;color:#666;font-weight:normal;}

.banner-home_top {margin:0 0 16px 0;}
.banner-search_top, .banner-item_top, .banner-item_sidebar, .banner-search_middle {margin:0 0 16px 0;}
.banner-home_middle {margin:16px 0;}
.banner-search_sidebar, .banner-public_profile_sidebar, .banner-public_profile_bottom {margin:16px 0 0 0;}
.banner-search_middle {margin:8px 0 16px 0;}
.banner-search_bottom {margin:12px 0 0 0;}
.banner-item_bottom {margin:16px 0 8px 0;}
.banner-item_description {margin:8px 0 16px 0;}
.banner-item_sidebar_bottom {margin:10px 0 0 0;}
.banner-static_page_top {margin:0 0 24px 0;}
.banner-static_page_bottom {margin:0 0 24px 0;}

.banner-search_top .myad, .banner-search_middle .myad, .banner-search_bottom .myad, .banner-item_description .myad, .banner-public_profile_middle .myad, .banner-public_profile_bottom .myad {width:728px;height:90px;}
.banner-home_top .myad, .banner-home_bottom .myad, .banner-item_top .myad, .banner-item_bottom .myad, .banner-home_middle .myad, .banner-static_page_top .myad, .banner-static_page_bottom .myad {width:970px;height:90px;}
.banner-item_sidebar .myad, .banner-public_profile_sidebar .myad {width:300px;height:250px;}
.banner-item_sidebar_bottom .myad {width:300px;height:600px;margin:12px 0 0 0;}
.banner-body_left .myad, .banner-body_right .myad {width:160px;height:600px;background:#fff;}
.banner-search_sidebar .myad {width:200px;height:200px;}
.banner-theme#banner-theme.opt-adsense .myad {width:100%;height:auto;}
/* ITEM GRID & LIST */
.products {display: flex; flex-wrap: wrap; flex-direction: row;margin:0 -10px;width:calc(100% + 20px);padding:2px 0;align-items:flex-start;}
.products.nice-scroll {flex-wrap: nowrap;overflow-x:auto;}
.products.grid .isList, .products .isList, .products .isDetail {display:none;}
.products.grid .isList, .products.grid .isDetail {display:none;}
.products.list .isGrid, .products.list .isDetail {display:none;}
.products.detail .isGrid, .products.detail .isList {display:none;}
.products.grid .isGrid {display:block;}

@media (max-width: 767px) {
  body#home .products#latest-items,
  body#home #latest-vehicles-items.products.grid,
  body#home #latest-property-items.products.grid,
  body#home #fashion-items.products.grid,
  body#home #latest-mobile-items.products.grid {
    display:grid !important;
    grid-template-columns:repeat(2, 1fr) !important;
    gap:10px !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    flex-wrap:nowrap !important;
    box-sizing:border-box !important;
  }
  body#home .products#latest-items > .simple-prod,
  body#home .products#latest-items > .simple-prod.medium,
  body#home #latest-vehicles-items > .simple-prod,
  body#home #latest-vehicles-items > .simple-prod.medium,
  body#home #latest-property-items > .simple-prod,
  body#home #latest-property-items > .simple-prod.medium,
  body#home #latest-mobile-items > .simple-prod,
  body#home #latest-mobile-items > .simple-prod.medium,
  body#home #fashion-items > .simple-prod,
  body#home #fashion-items > .simple-prod.medium {
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    margin:0 !important;
    flex:none !important;
    box-sizing:border-box !important;
  }

  body#home > .content > section > .container {
    max-width:100% !important;
    padding-left:14px !important;
    padding-right:14px !important;
  }

  body#home > .content > section > .container > .block {
    padding-left:0 !important;
    padding-right:0 !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  body#home .products#latest-items {align-items:flex-start!important;align-content:flex-start!important;}
  body#home .products#latest-items .simple-prod {align-self:flex-start!important;height:auto!important;min-height:0!important;}
  body#home .products#latest-items .simple-prod .simple-wrap {flex:0 0 auto!important;height:auto!important;min-height:0!important;}
  body#home .products#latest-items .simple-prod .vrool-trader-card {margin-bottom:0!important;}
  body#home .products#latest-items .simple-prod .simple-wrap {padding:12px!important;}
  body#home .products#latest-items .simple-prod .vrool-trader-card {padding:12px!important;}
  body#home .products#latest-items .simple-prod .vrool-trader-card .vrool-trader-name {margin:0 0 8px 0!important;}
  body#home .products#latest-items .simple-prod .vrool-trader-card .vrool-trader-phone {margin-top:4px!important;}
  body#home .products#latest-items .simple-prod .data > .vrool-trader-specs {margin-top:25px!important;}

  .products.grid {align-items:flex-start!important;align-content:flex-start!important;}
  .products.grid .simple-prod {align-self:flex-start!important;height:auto!important;min-height:0!important;}
  .products.grid .simple-prod .simple-wrap {flex:0 0 auto!important;height:auto!important;min-height:0!important;}
  .products.grid .simple-prod .data > .vrool-trader-specs {margin-top:25px!important;}
}
.products.list .isList {display:block;}
  .products.list .isList.right, .products.detail .isDetail.contact {display:flex;}
  .products.detail .isDetail {display:block;}
  .simple-prod {flex:0 0 auto;width:calc(25% - 8px);margin:0 4px 8px 4px;border-radius:12px;border:1px solid rgba(0,0,0,0.14);background:#fff;overflow:hidden;display:flex;flex-direction:column;}
  .simple-prod.mini {width:calc(12.5% - 8px);}
  .simple-prod.small {width:calc(16.66% - 8px);}
  .simple-prod.medium {width:calc(20% - 8px);}
  .simple-prod.large {width:calc(25% - 8px);}
  .simple-prod.extralarge {width:calc(33.33% - 8px);}
  .simple-prod.megalarge {width:calc(50% - 8px);}

@media (min-width: 768px) and (max-width: 1199px) {
  .products.grid .simple-prod,
  .products.grid .simple-prod.mini,
  .products.grid .simple-prod.small,
  .products.grid .simple-prod.medium,
  .products.grid .simple-prod.large,
  .products.grid .simple-prod.extralarge,
  .products.grid .simple-prod.megalarge {width:calc(33.33% - 8px)!important;}
}
  .simple-prod .simple-wrap {background:transparent;border-radius:7px;padding:16px;transition:0.2s;position:relative;border:none;flex:1;display:flex;flex-direction:column;}
  .simple-prod.st-sold .simple-wrap {position:relative;overflow:hidden;user-select: none;}
  .simple-prod.st-sold .simple-wrap:after {content:"";position:absolute;left:0;top:0;right:0;bottom:0;z-index:2;background:rgba(255,255,255,0.20);border-radius:7px;pointer-events:none;}
  .simple-prod.st-sold .simple-wrap:before {content: attr(title);position:absolute;left:14px;top:14px;z-index:3;background:#CF0234;color:#fff;font-size:12px;font-weight:500;line-height:1;padding:7px 11px;border-radius:999px;letter-spacing:0.2px;box-shadow:0 6px 18px rgba(0,0,0,0.18);border:1px solid rgba(255,255,255,0.18);pointer-events:none;}
  .simple-prod:hover {border-color:#23be68;background:rgb(35 190 104 / 10%);}
  .simple-prod:hover .simple-wrap {background:transparent;}
  .simple-prod .img-wrap {position:relative;width:100%;padding-top:125%;overflow:hidden;border-radius:6px;}
 .simple-prod.megatall .img-wrap {padding-top:200%;}
 .simple-prod.extratall .img-wrap {padding-top:175%;}
 .simple-prod .img-wrap .view-counter {position:absolute;top:8px;font-size:12px;line-height:14px;z-index:3;display:inline-flex;align-items:center;gap:6px;padding:6px 8px;border-radius:10px;background:rgba(0,0,0,0.70);color:#fff;backdrop-filter: blur(2px);right:8px;}
  .simple-prod .img-wrap .view-counter i {font-size:12px;color:#fff;}
  .simple-prod .img-wrap .view-counter .vrool-view-id {display:inline-flex;align-items:center;margin-left:4px;padding:2px 6px;border-radius:999px;background:rgba(255,255,255,0.15);font-size:11px;line-height:12px;font-weight:800;letter-spacing:0.2px;}
  .simple-prod .img-wrap .day-offer-mark {position:absolute;left:0;top:0;z-index:4;display:inline-flex;align-items:center;max-width:calc(100% - 16px);padding:6px 10px;border-radius:0 0 10px 0;background:linear-gradient(135deg, #0bbf6a, #089e57);color:#fff;font-size:12px;line-height:14px;font-weight:700;letter-spacing:0.2px;box-shadow:0 6px 18px rgba(0,0,0,0.18);text-shadow:0 1px 1px rgba(0,0,0,0.18);}
  .simple-prod .img-wrap .rent-mark {position:absolute;left:0;top:0;z-index:4;display:inline-flex;align-items:center;max-width:calc(100% - 16px);padding:6px 10px;border-radius:0 0 10px 0;background:linear-gradient(135deg, #FFAE42, #F59E0B);color:#111;font-size:12px;line-height:14px;font-weight:900;letter-spacing:0.2px;box-shadow:0 6px 18px rgba(0,0,0,0.16);text-shadow:none;}
  .simple-prod .img-wrap .day-policy-mark {position:absolute;left:0;top:28px;z-index:4;display:inline-flex;align-items:center;max-width:calc(100% - 16px);padding:5px 10px;border-radius:0 0 10px 0;background:rgba(0,0,0,0.78);color:#fff;font-size:11px;line-height:13px;font-weight:800;letter-spacing:0.15px;box-shadow:0 6px 18px rgba(0,0,0,0.18);}
  .simple-prod.verywide .img-wrap {padding-top:50%;}
  .simple-prod .img-wrap > a.img {position:absolute;inset:0;display:block;width:100%;height:100%;}
  .simple-prod .img-wrap > a img {box-shadow: 0 1px 3px rgb(0 0 0 / 25%);border-radius:6px;position:absolute;top:0;left:0;right:0;bottom:0;max-width:inherit;max-height:inherit;object-fit:cover;width:100%;height:100%;}
  .simple-prod .img-wrap > a img {display:block;}

  /* Offers: use same image style as regular cards (cover, no gray background) */
  .simple-prod.vrool-offer .img-wrap {background:#f3f4f6;}
  .simple-prod.vrool-offer .img-wrap > a img {object-fit:cover;}
  .simple-prod.vrool-offer .img-wrap > a.vrool-home-collage .vrool-home-collage-main img,
  .simple-prod.vrool-offer .img-wrap > a.vrool-home-collage .vrool-home-collage-side img {object-fit:cover;background:#f3f4f6;}
  .simple-prod .img-wrap > a.vrool-home-collage {position:absolute;inset:0;display:grid;grid-template-columns:minmax(0,1fr) 40%;gap:3px;}
 .simple-prod .img-wrap > a.vrool-home-collage .vrool-home-collage-main,
 .simple-prod .img-wrap > a.vrool-home-collage .vrool-home-collage-side {display:flex;flex-direction:column;min-width:0;min-height:0;}
  .simple-prod .img-wrap > a.vrool-home-collage .vrool-home-collage-main {flex:1 1 auto;}
 .simple-prod .img-wrap > a.vrool-home-collage .vrool-home-collage-side {flex:1 1 auto;gap:3px;}
 .simple-prod .img-wrap > a.vrool-home-collage .vrool-home-collage-main img,
 .simple-prod .img-wrap > a.vrool-home-collage .vrool-home-collage-side img {position:static;width:100%;height:100%;object-fit:cover;border-radius:0;box-shadow:none;display:block;}
 .simple-prod .img-wrap > a.vrool-home-collage .vrool-home-collage-side img {flex:1 1 0;}

  .simple-prod .img-wrap .vrool-home-collage-scroll {position:absolute;inset:0;overflow:hidden;border-radius:6px;}
  .simple-prod .img-wrap .vrool-home-collage-scroll .vrool-home-collage-slide {position:absolute;inset:0;display:none;}
  .simple-prod .img-wrap .vrool-home-collage-scroll .vrool-home-collage-slide:first-of-type {display:block;}
  .simple-prod .img-wrap.no-image > a img {box-shadow:0 0 1px 1px rgba(0,0,0,0.1);}
  .simple-prod .img-wrap .bar {font-size:17px;line-height:20px;position:absolute;bottom:0;left:0;right:0;width:100%;border-radius:6px;padding:24px 36px 8px 8px;color:#fff;font-weight:600;z-index:4;background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.58) 100%);}
  .simple-prod .img-wrap .bar .price {float:left;position:relative;}
  .simple-prod .img-wrap .bar .image-counter {position:absolute;right:8px;bottom:8px;font-size:13px;line-height: 14px;}
  .simple-prod .img-wrap .bar .image-counter i {font-size:11px;}
  .simple-prod .img-wrap .bar .image-counter:after {content:"x";font-size: 10px;}
  .simple-prod .img-wrap .user-image {z-index:1;position:absolute;top:8px;left:8px;width:40px;height:40px;border-radius:100px;}
  .simple-prod .img-wrap .user-image > img {transition:0.2s;border:3px solid #3b49df;position:absolute;width:100%;height:100%;top:0;left:0;max-width:inherit;max-height:inherit;object-fit:cover;border-radius:100px;}
  .simple-prod .img-wrap .user-image .business {position: absolute; text-transform:uppercase;right: 0px; bottom: 0px; height: 16px; background: #3b49df; color: #fff; font-size: 8px;font-weight: 600; max-width:100%;width: auto; padding: 0 2px;min-width:50%; line-height: 16px; text-align: center; border-radius: 3px;}
 .simple-prod .img-wrap .bar {font-size:17px;line-height:20px;position:absolute;bottom:0;left:0;right:0;width:100%;border-radius:6px;padding:24px 36px 8px 8px;color:#fff;font-weight:600;z-index:4;background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.58) 100%);}
 .simple-prod .img-wrap .bar .price {float:left;position:relative;}
 .simple-prod .img-wrap .bar .image-counter {position:absolute;right:8px;bottom:8px;font-size:13px;line-height: 14px;}
 .simple-prod .img-wrap .bar .image-counter i {font-size:11px;}
 .simple-prod .img-wrap .bar .image-counter:after {content:"x";font-size: 10px;}
 .simple-prod .img-wrap .user-image {z-index:1;position:absolute;top:8px;left:8px;width:40px;height:40px;border-radius:100px;}
 .simple-prod .img-wrap .user-image > img {transition:0.2s;border:3px solid #3b49df;position:absolute;width:100%;height:100%;top:0;left:0;max-width:inherit;max-height:inherit;object-fit:cover;border-radius:100px;}
 .simple-prod .img-wrap .user-image .business {position: absolute; text-transform:uppercase;right: 0px; bottom: 0px; height: 16px; background: #3b49df; color: #fff; font-size: 8px;font-weight: 600; max-width:100%;width: auto; padding: 0 2px;min-width:50%; line-height: 16px; text-align: center; border-radius: 3px;}

 .simple-prod .img-wrap .user-image .online {position: absolute; right: 2px; top: 2px; width: 11px; height: 11px; border-radius: 100px; background: #0ed000; box-shadow: 0 0 0 1px #fff; }
 .simple-prod .favorite, #item-main .favorite {position:absolute;top:8px;right:8px;z-index:2;}
 .simple-prod .favorite span, #item-main  .favorite span {display:none;}

.simple-prod .favorite i, #item-main  .favorite i {font-weight:400;font-size:17px;line-height:19px;color:#23be68;text-align:center;padding:6px;width:32px;height:32px;transition:0.2s;border-radius:6px;background:rgba(35,190,104,0.12);border:1px solid rgba(35,190,104,0.55);}
.simple-prod .favorite i:hover, #item-main  .favorite i:hover {background:rgba(35,190,104,0.20);border-color:rgba(35,190,104,0.75);color:#23be68;}
.simple-prod .favorite a.is_favorite i, #item-main  .favorite a.is_favorite i {color:#fff;background:#23be68;border-color:#23be68;text-indent:1px;font-weight:900;}
.simple-prod .favorite a.is_favorite i:before, #item-main .favorite a.is_favorite i:befor {font-weight:900;}

 .simple-prod .data {padding:12px 0 8px 0;}
 .simple-prod .info {font-size:12px;color:#555;line-height:16px;min-height:16px;margin:5px 0 7px 0;}
 .simple-prod .info .vrool-loc-pin {margin-right:6px;display:inline-block;vertical-align:middle;line-height:16px;font-size:12px;color:inherit;}

 .vrool-payment-accepted {margin:8px 0 0 0;}
 .vrool-payment-accepted .vrool-pay-title {font-size:12px;line-height:16px;font-weight:700;color:#111;margin:0 0 6px 0;}
 .vrool-payment-accepted .vrool-pay-icons {display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
 .vrool-payment-accepted .vrool-pay-ico {display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:#f3f4f6;border:1px solid rgba(0,0,0,0.06);color:#111;font-size:12px;line-height:14px;font-weight:300;}
 .vrool-payment-accepted .vrool-pay-ico i {font-size:20px;line-height:20px;color:rgba(0,0,0,0.75);}
 .vrool-payment-accepted .vrool-pay-ico img {width:20px;height:20px;object-fit:contain;display:inline-block;}

@media (max-width: 767px) {
  .vrool-payment-accepted {display:none!important;}
  body#home .products#latest-items .vrool-payment-accepted {display:block!important;}
}

@media (max-width: 420px) {
  .simple-prod .vrool-payment-accepted .vrool-pay-icons {gap:6px;}
  .simple-prod .vrool-payment-accepted .vrool-pay-ico {gap:0;padding:6px;border-radius:999px;font-size:0;line-height:0;}
  .simple-prod .vrool-payment-accepted .vrool-pay-ico i {font-size:20px;line-height:20px;}
  .simple-prod .vrool-payment-accepted .vrool-pay-ico img {width:20px;height:20px;}
}
 .vrool-payment-accepted-item {margin-top:12px;padding-top:10px;border-top:1px solid rgba(0,0,0,0.08);}
 .vrool-payment-accepted-list .vrool-pay-title {display:none;}
 .vrool-payment-accepted-list .vrool-pay-ico img {width:15px;height:15px;}
 
@media (max-width: 767px) {
  .simple-prod .vrool-day-policy-below {display:none!important;}
}
 .vrool-day-policy-below {display:inline-flex;align-items:center;gap:6px;margin-top:6px;padding:0;border-radius:0;background:transparent;border:none;font-weight:300;font-size:12px;line-height:14px;color:#111;}
 .vrool-day-policy-below img {width:auto;height:14px;object-fit:contain;display:inline-block;}
 .vrool-day-policy-below span {display:inline-block;}

 .vrool-payment-accepted-list .vrool-pay-icons {gap:5px;}
 .vrool-payment-accepted-list .vrool-pay-ico {gap:4px;padding:3px 7px;font-size:10.5px;line-height:12px;}
 .vrool-payment-accepted-list .vrool-pay-ico i {font-size:16px;line-height:16px;}
 .vrool-payment-accepted-list .vrool-pay-ico img {width:16px;height:16px;}
 
 .simple-prod .vrool-trader-card {margin:0 0 10px 0;padding:18px 18px;border-radius:18px;text-decoration:none;}
 .simple-prod .vrool-trader-card .vrool-trader-specs {display:flex;align-items:flex-start;justify-content:space-between;gap:12px;color:#111;margin:0 0 10px 0;}
 .simple-prod .vrool-trader-card .vrool-trader-specs, .simple-prod .vrool-trader-card .vrool-trader-specs * {text-decoration:none;}
 .simple-prod .vrool-trader-card .vrool-trader-spec {flex:1 1 0;min-width:0;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:6px;text-align:center;}
 .simple-prod .vrool-trader-card .vrool-trader-spec i {font-size:20px;line-height:20px;opacity:0.9;}
 .simple-prod .vrool-trader-card .vrool-trader-spec img {width:24px;height:24px;object-fit:contain;display:block;opacity:0.9;}
 .simple-prod .vrool-trader-card .vrool-trader-spec > span {font-size:11px;line-height:13px;font-weight:300;color:#111;}
 .simple-prod .vrool-trader-card .vrool-trader-distance {display:none!important;}
 .simple-prod .vrool-trader-card .vrool-trader-name {font-size:15px;line-height:19px;font-weight:300;color:#111;margin:0 0 12px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
 .simple-prod .vrool-trader-card .vrool-trader-phone {display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:10px 12px;border-radius:999px;background:rgba(0,186,118,0.08);border:1px solid rgba(0,186,118,0.18);color:#111;font-size:14px;line-height:17px;font-weight:300;text-decoration:none;margin-top:7px;}
 body#public .simple-prod .vrool-trader-card .vrool-trader-phone {justify-content:center;}
 body#public .simple-prod .vrool-trader-card .vrool-trader-phone-left {display:none;}

 .simple-prod .data > .vrool-trader-specs {display:flex;align-items:center;justify-content:space-between;gap:12px;margin:25px 0 8px 0;}
 .simple-prod .data > .vrool-trader-specs, .simple-prod .data > .vrool-trader-specs * {text-decoration:none;}
 .simple-prod .data > .vrool-trader-specs .vrool-trader-spec {flex:1 1 0;min-width:0;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:6px;text-align:center;}
 .simple-prod .data > .vrool-trader-specs .vrool-trader-spec img {width:24px;height:24px;object-fit:contain;display:block;opacity:0.9;}
 .simple-prod .data > .vrool-trader-specs .vrool-trader-spec > span {font-size:11px;line-height:13px;font-weight:300;color:#111;}

 .simple-prod .data > .vrool-trader-specs .vrool-trader-engine {display:flex;}
 .simple-prod .vrool-trader-card .vrool-trader-phone-left {display:inline-flex;align-items:center;gap:12px;min-width:0;}
 .simple-prod .vrool-trader-card .vrool-trader-see-ad {display:inline-flex;align-items:center;justify-content:center;height:auto;padding:9px 12px;border:1px solid rgba(0,0,0,0.06);background:#00ba76;color:#fff;font-weight:900;font-size:11px;line-height:14px;white-space:nowrap;text-decoration:none;border-radius:999px;box-shadow:0 8px 20px rgba(0,0,0,0.10);}
 .simple-prod .vrool-trader-card .vrool-trader-see-ad:hover {text-decoration:none;background:#00a867;color:#fff;}
 .simple-prod .vrool-trader-card .vrool-trader-phone i {font-size:15px;line-height:15px;color:#0a7d57;font-weight:900;opacity:0.9;}

 @media (max-width: 420px) {
   .simple-prod .vrool-trader-card .vrool-trader-phone {gap:10px;padding:8px 10px;font-size:12px;line-height:15px;}
   .simple-prod .vrool-trader-card .vrool-trader-phone-left {gap:10px;}
   .simple-prod .vrool-trader-card .vrool-trader-phone-left span {font-size:12px;line-height:15px;}
   .simple-prod .vrool-trader-card .vrool-trader-phone i {font-size:13px;line-height:13px;}
   .simple-prod .vrool-trader-card .vrool-trader-see-ad {padding:7px 10px;font-size:10px;line-height:12px;font-weight:300;}
   body#public #public-main .products.list .simple-prod .data .description {font-size:11px;font-weight:300;line-height:15px;}
 }


 .simple-prod .data > a.title,
 .simple-prod .data > a.title:visited,
 .simple-prod .data > a.title:hover,
 .simple-prod a.title,
 .simple-prod a.title:visited,
 .simple-prod a.title:hover,
 .simple-prod .title a,
 .simple-prod .title a:visited,
 .simple-prod .title a:hover,
 .simple-prod .description,
 .simple-prod .description a,
 .simple-prod .description a:visited,
 .simple-prod .description a:hover {color:#333!important;}

 .simple-prod .data .description,
 .simple-prod .data .description.isDetail,
 .products.grid .simple-prod .data .description,
 .products.list .simple-prod .data .description {display:-webkit-box!important;-webkit-line-clamp:1!important;-webkit-box-orient:vertical!important;overflow:hidden!important;white-space:normal!important;}

 .simple-prod .data > a.title,
 .products.grid .simple-prod a.title,
 #search-items .products.grid .simple-prod a.title,
 #search-premium-items .simple-prod .title {display:-webkit-box!important;-webkit-line-clamp:1!important;-webkit-box-orient:vertical!important;overflow:hidden!important;white-space:normal!important;}

/* LIST VIEW DESIGN */
.products.list {width:100%;margin:0;}
.products.list .simple-prod {width:100%;margin:0;padding:12px 0;border-bottom:1px solid #ccc;border-radius:0;}
.products.list .simple-prod:last-child {border-bottom:0;margin-bottom:0;}
.products.list .simple-prod .info .premium-mark, .products.list .simple-prod .info .label {position:relative;bottom:auto;left:auto;float:left;margin:-1px 5px -3px 0;padding:3px 4px;line-height:14px;font-size:12px;height:20px;border-radius:4px;}
.products.list .simple-prod .simple-wrap {display:flex;padding:10;background:transparent;border-radius:5;}
.products.list .simple-prod .img-wrap {width:90px;min-width:90px;height:75px;margin:0 12px 0 0;padding:0;}
.products.list .simple-prod .img-wrap .bar {padding:0;background:transparent;}
.products.list .simple-prod .data {padding:1px 0;}
.products.list .simple-prod .right .favorite > a:not(.is_favorite) {display:none;}
.products.list .simple-prod:hover .right .favorite > a {display:block;}
.products.list .simple-prod .img-wrap .bar .image-counter {left: 3px; bottom: 3px; right: auto; background: rgba(0,0,0,0.5); padding: 2px 4px; border-radius: 4px;}
.products.list .simple-prod .img-wrap > a img {border-radius:3px;}
.products.list .simple-prod .title {font-size:15px;line-height:18px;min-height:19px;max-height:37px;color:#555;}
.products.list .simple-prod .price.standalone {display:none;font-size:15px;font-weight:bold;color:#2f3ab2;margin:-2px 0 6px 0;line-height:16px;}
.products.grid .simple-prod .data .price.underloc,
.products.list .simple-prod .data .price.underloc,
#recent-ads .simple-prod .data .price.underloc,
#rel-block .simple-prod .data .price.underloc {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:4px 8px;
  font-size:15px;
  font-weight:300;
  color:#2f3ab2;
  margin:2px 0 6px 0;
  line-height:16px;
}
.products.grid .simple-prod .data .price.underloc > .vrool-price-main,
.products.list .simple-prod .data .price.underloc > .vrool-price-main,
#recent-ads .simple-prod .data .price.underloc > .vrool-price-main,
#rel-block .simple-prod .data .price.underloc > .vrool-price-main {
  flex:0 0 auto;
}
.products.grid .simple-prod .data .price.underloc > .vrool-bp-price,
.products.list .simple-prod .data .price.underloc > .vrool-bp-price,
#recent-ads .simple-prod .data .price.underloc > .vrool-bp-price,
#rel-block .simple-prod .data .price.underloc > .vrool-bp-price {
  flex:0 0 auto;
}
.products.grid .simple-prod .data .price.underloc .vrool-cat-badge,
.products.list .simple-prod .data .price.underloc .vrool-cat-badge {
  margin-left:6px;
}

/* BnB card price: "£33 / night" style */
.vrool-bnb-price-val{font-weight:900;font-size:inherit;color:#111827;}
.vrool-bnb-price-lbl{font-weight:600;font-size:12px;color:#6b7280;letter-spacing:0.01em;}
.vrool-bnb-price-total{display:block;font-size:11px;font-weight:600;color:#9ca3af;margin-top:2px;text-decoration:underline;text-underline-offset:2px;}
.products.list .simple-prod .day-offer-mark {padding: 4px; font-size: 13px; line-height: 13px; font-style: normal;top:3px;left:3px;bottom:auto;max-width:calc(100% - 6px);}

/* DETAIL VIEW DESIGN */
.products.detail {width:100%;margin:0;}
.products.detail .simple-prod {width:100%;margin:0;padding:15px 0;border-bottom:1px solid #ccc;border-radius:0;}
.products.detail .simple-prod:last-child {border-bottom:0;margin-bottom:0;}
.products.detail .simple-prod .simple-wrap {display:flex;padding:0;background:transparent;border-radius:6;}
.products.detail .simple-prod .img-wrap {width:200px;min-width:200px;height:220px;margin:0 15px 0 0;padding:0;}
.products.detail .simple-prod .data {padding:5px 0;display: flex; flex-direction: column;}
.products.detail .simple-prod .right .favorite > a:not(.is_favorite) {display:none;}
.products.detail .simple-prod:hover .right .favorite > a {display:block;}
.products.detail .simple-prod .img-wrap > a img {border-radius:4px;}
.products.detail .simple-prod .extra {margin:0 0 10px 0;color:#171717;}
.products.detail .simple-prod .labels {margin-top:auto;}

body#home .simple-prod .img-wrap .favorite {display:none!important;}
body#home .simple-prod:hover .img-wrap .favorite {display:none!important;}


/* HOME PAGE - USERS LIST */
body#home > .content > section.home-users {background:#fff;padding-bottom:15px;}
#users-list {display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch;padding:3px;width:calc(100% + 6px);margin:-3px;}
#users-list.nice-scroll {flex-wrap: nowrap;overflow-x:auto;}
#users-list .user {position:relative;box-shadow: 0 1px 3px rgb(0 0 0 / 25%); border-radius: 8px; transition: 0.2s; text-decoration: none; width: 128px; min-width: 128px; margin: 0 10px 0 0; text-align: center; display: flex; flex-direction: column; align-items: flex-end;}
#users-list .user:hover {box-shadow:0 1px 3px rgb(0 0 0 / 25%), 0 0 0 2px #3b49df;}
#users-list .user:last-child {margin-right:0;}
#users-list .user .img {width: 100%; height: 184px; position: relative;}
#users-list .user .img img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; max-width: unset; max-height: unset; border-radius: 8px; object-fit: cover;}
#users-list .user .img:after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 71px; background: linear-gradient(transparent,rgba(0,0,0,.04935) 13.71%,rgba(0,0,0,.11481) 25.12%,rgba(0,0,0,.1925) 34.61%,rgba(0,0,0,.27852) 42.59%,rgba(0,0,0,.36898) 49.46%,rgba(0,0,0,.46) 55.63%,rgba(0,0,0,.54769) 61.47%,rgba(0,0,0,.62815) 67.41%,rgba(0,0,0,.6975) 73.83%,rgba(0,0,0,.75185) 81.13%,rgba(0,0,0,.78731) 89.73%,rgba(0,0,0,.8)); border-radius: 0 0 10px 10px; }
#users-list .user .img .online {position: absolute; right: 6px; top:6px; width: 18px; height: 18px; border-radius: 100px; background: #0ed000; box-shadow: 0 0 0 1px #fff; }
#users-list .user .img .online.off {background:#dc0606;display:none;}
#users-list .user:hover .img .online.off {display:block;}

/* HOME PAGE - LATEST ITEMS */
.products#latest-items .simple-prod {width:calc(20% - 8px);}
.products#latest-items .simple-prod.medium {width:calc(20% - 8px);}
.products#latest-items .simple-prod {border:1px solid rgba(0,0,0,0.10)!important;box-shadow:0 0 0 1px rgba(0,0,0,0.06) inset;background:#fff!important;border-radius:12px;}
.products#latest-items .simple-prod .simple-wrap {border:none!important;}
.products#latest-items .simple-prod .img-wrap {border-radius:12px;overflow:hidden;}
.products#latest-items .simple-prod .img-wrap {padding-top:125%!important;aspect-ratio:auto!important;height:auto!important;}
/* Match Fashion & Clothing cards: fill the frame (no letterboxing from object-fit:contain) */
.products#latest-items .simple-prod .img-wrap > a img {border-radius:0;box-shadow:none;}
.products#latest-items .simple-prod .img-wrap {background:#f3f4f6;}
.products#latest-items .simple-prod .img-wrap img {width:100%!important;height:100%!important;object-fit:cover !important;object-position:center 20% !important;}
.products#latest-items .simple-prod .img-wrap > a img {width:100%!important;height:100%!important;object-fit:cover !important;object-position:center 20% !important;}
/* Offer tiles (cat promos): keep full graphic visible like grid default */
.products#latest-items .simple-prod.vrool-offer .img-wrap img,
.products#latest-items .simple-prod.vrool-offer .img-wrap > a img {object-fit:cover !important;}
.products#latest-items .simple-prod.vrool-offer .img-wrap > a.vrool-home-collage .vrool-home-collage-main img,
.products#latest-items .simple-prod.vrool-offer .img-wrap > a.vrool-home-collage .vrool-home-collage-side img {object-fit:cover !important;background:#f3f4f6;}
.products#latest-items .simple-prod .info {white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:-2px 0 4px 0;}
.products#latest-items .simple-prod .extra {display:none;}
.products#latest-items .simple-prod .title {margin-bottom:0;font-size:13px;line-height:17px;font-weight:400;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.products#latest-items .simple-prod .description {display:none!important;}
#latest-property-items .simple-prod .description {display:none!important;}
#latest-vehicles-items .simple-prod .description {display:none!important;}
#latest-mobile-items .simple-prod .description {display:none!important;}
#fashion-items .simple-prod .description {display:none!important;}
body#home #latest-items .simple-prod .vrool-trader-specs {display:none!important;}
.products#latest-items .simple-prod .img-wrap .user-image {display:none;}
.products#latest-items .simple-prod:hover .img-wrap .user-image {display:none;}

@media screen and (min-width: 768px) and (max-width: 1366px) {
  .products#latest-items {display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:8px;margin-left:0;margin-right:0;width:100%;align-items:start;}
  .products#latest-items .simple-prod,
  .products#latest-items .simple-prod.medium {width:auto!important;min-width:0!important;max-width:none!important;flex:none!important;margin:0!important;}
}

.products#latest-items .simple-prod.vrool-ad-card .simple-wrap {display:flex;align-items:center;justify-content:center;min-height:100%;}
.products#latest-items .simple-prod.vrool-ad-card .vrool-ad-inner {width:100%;}

@media screen and (max-width: 767px) {
  .products#latest-items .simple-prod, .products#latest-items .simple-prod.medium {width:calc(100% - 8px)!important;min-width:calc(100% - 8px)!important;max-width:calc(100% - 8px)!important;}
}

/* HOME PAGE - RELATED ITEMS */
.related .simple-prod .description {display:none!important;}
.related .simple-prod .data > a.title {display:none!important;}
.related .simple-prod .vrool-trader-card {display:none!important;}
.related .simple-prod .extra {display:none!important;}
.related .simple-prod .action {display:none!important;}
.related .simple-prod .contact {display:none!important;}
.related .simple-prod .favorite {display:none!important;}
.related .simple-prod .vrool-mm-badge {text-align:left!important;padding-left:0!important;padding-right:0!important;width:100%!important;}
.related .simple-prod .vrool-mm-badge > div {text-align:left!important;}
#recent-ads .simple-prod .vrool-mm-badge,
#premium-items .simple-prod .vrool-mm-badge,
#latest-items .simple-prod .vrool-mm-badge {text-align:left!important;padding-left:0!important;padding-right:0!important;width:100%!important;}
#recent-ads .simple-prod .vrool-mm-badge > div,
#premium-items .simple-prod .vrool-mm-badge > div,
#latest-items .simple-prod .vrool-mm-badge > div {text-align:left!important;}
.related .simple-prod .simple-wrap > * {display:none!important;}
.related .simple-prod .simple-wrap > .vrool-mm-badge,
.related .simple-prod .simple-wrap > .img-wrap,
.related .simple-prod .simple-wrap > .data {display:block!important;}
.related .simple-prod .data {font-size:0!important;line-height:0!important;}

.related .simple-prod .data > * {display:none!important;}
.related .simple-prod .data > .info {display:block!important;}
.related .simple-prod .data > .info {font-size:10px!important;line-height:13px!important;}
.related .simple-prod .img-wrap {font-size:0!important;line-height:0!important;}
.related .simple-prod .img-wrap > * {display:none!important;}
.related .simple-prod .img-wrap > .view-counter,
.related .simple-prod .img-wrap > a.img,
.related .simple-prod .img-wrap > a.bar {display:block!important;}
.related .simple-prod .img-wrap > a.img {font-size:0!important;line-height:0!important;overflow:hidden!important;white-space:nowrap!important;text-indent:100%!important;}
.related .simple-prod .img-wrap > a.img *:not(img) {display:none!important;}
.related .simple-prod .img-wrap > a.img img {text-indent:0!important;}
.related .simple-prod .img-wrap > a.bar > :not(.price):not(.image-counter) {display:none!important;}
.related .simple-prod .img-wrap > .view-counter {font-size:11px!important;line-height:12px!important;}
#rel-block .description {display:none!important;}
#rel-block .simple-prod .img-wrap {font-size:0!important;line-height:0!important;}
#rel-block .simple-prod .img-wrap > * {display:none!important;}
#rel-block .simple-prod .img-wrap > .view-counter,
#rel-block .simple-prod .img-wrap > a.img,
#rel-block .simple-prod .img-wrap > a.bar {display:block!important;}
#rel-block .simple-prod .img-wrap > a.img {font-size:0!important;line-height:0!important;overflow:hidden!important;white-space:nowrap!important;text-indent:100%!important;}
#rel-block .simple-prod .img-wrap > a.img *:not(img) {display:none!important;}
#rel-block .simple-prod .img-wrap > a.img img {text-indent:0!important;}
#rel-block .simple-prod .img-wrap > a.bar > :not(.price):not(.image-counter) {display:none!important;}
#rel-block .simple-prod .img-wrap > .view-counter {font-size:11px!important;line-height:12px!important;}
#rel-block .simple-prod .simple-wrap > * {display:none!important;}
#rel-block .simple-prod .simple-wrap > .vrool-mm-badge,
#rel-block .simple-prod .simple-wrap > .img-wrap,
#rel-block .simple-prod .simple-wrap > .data {display:block!important;}
#rel-block .simple-prod .data {font-size:0!important;line-height:0!important;}

#rel-block .simple-prod .data > * {display:none!important;}
#rel-block .simple-prod .data > .info {display:block!important;}
#rel-block .simple-prod .data > .info {font-size:10px!important;line-height:13px!important;}
#rel-block .simple-prod .data > a.title {font-size:12px!important;line-height:15px!important;max-height:30px;}
#rel-block .simple-prod .vrool-trader-card {display:none!important;}
#rel-block .simple-prod .extra {display:none!important;}
#rel-block .simple-prod .action {display:none!important;}
#rel-block .simple-prod .contact {display:none!important;}

.simple-prod .vrool-mobile-meta {display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;margin:25px 0 8px 0;overflow:hidden;}
.simple-prod .vrool-mobile-grade-tag {display:inline-flex;flex-direction:column;align-items:center;justify-content:center;padding:6px 10px;min-height:43px;border-radius:10px;border:1px solid rgba(0,0,0,0.12);background:rgba(255,255,255,0.85);font-size:11px;line-height:13px;font-weight:600;color:rgba(0,0,0,0.78);}
.simple-prod .vrool-mobile-grade-tag .vrool-mobile-grade-label {display:block;font-size:10px;line-height:12px;font-weight:700;color:rgba(0,0,0,0.60);}
.simple-prod .vrool-mobile-grade-tag .vrool-mobile-grade-value {display:block;line-height:13px;font-weight:600;color:rgba(0,0,0,0.85);max-width:110px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center;}
.simple-prod .vrool-trader-specs.vrool-mobile-specs {display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;}
.simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec.vrool-mobile-grade img {background:transparent;border-radius:0;padding:0;box-sizing:border-box;filter:none;opacity:0.95;}
.products#latest-items .simple-prod .vrool-mobile-meta {margin-top:26px!important;grid-template-columns:repeat(3, minmax(84px, 1fr));column-gap:14px;justify-content:space-between;}
.simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec {display:inline-flex;flex-direction:column;align-items:center;gap:2px;font-size:11px;line-height:13px;font-weight:400;color:rgba(0,0,0,0.72);}
.simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec > span {display:block;max-width:84px;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center;}
.simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec img {width:24px!important;height:24px!important;max-width:24px!important;max-height:24px!important;object-fit:contain;}

@media screen and (max-width: 767px) {
  .simple-prod .vrool-mobile-meta {display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;margin:25px 0 8px 0;overflow:hidden;}
  .simple-prod .vrool-mobile-grade-tag {display:inline-flex;flex-direction:column;align-items:center;justify-content:center;padding:6px 10px;min-height:43px;border-radius:10px;border:1px solid rgba(0,0,0,0.12);background:rgba(255,255,255,0.85);font-size:11px;line-height:13px;font-weight:600;color:rgba(0,0,0,0.78);}
  .simple-prod .vrool-mobile-grade-tag .vrool-mobile-grade-label {display:block;font-size:10px;line-height:12px;font-weight:700;color:rgba(0,0,0,0.60);}
  .simple-prod .vrool-mobile-grade-tag .vrool-mobile-grade-value {display:block;line-height:13px;font-weight:600;color:rgba(0,0,0,0.85);max-width:110px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center;}
  .simple-prod .vrool-trader-specs.vrool-mobile-specs {display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;}
  .simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec.vrool-mobile-grade img {background:transparent;border-radius:0;padding:0;box-sizing:border-box;filter:none;opacity:0.95;}
  .simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec {display:inline-flex;flex-direction:column;align-items:center;gap:2px;font-size:11px;line-height:13px;font-weight:400;color:rgba(0,0,0,0.72);}
  .simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec img {width:24px!important;height:24px!important;max-width:24px!important;max-height:24px!important;object-fit:contain;opacity:0.9;}
  .simple-prod .vrool-trader-specs.vrool-mobile-specs .vrool-trader-spec > span {display:block;max-width:84px;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center;}

  body#home .products#latest-items .simple-prod .vrool-mobile-meta {margin-top:26px!important;grid-template-columns:repeat(3, minmax(84px, 1fr));column-gap:14px;justify-content:space-between;}
}

/* HOME PAGE - PREMIUM ITEMS */
body#home > .content > section.home-premium {padding-bottom:20px;background:#fff;}
body#home > .content > section.home-premium:not(.home-rent) .container {align-items:stretch;}
body#home > .content > section.home-premium:not(.home-rent) h2 {margin:0 0 14px 0;color:#111827;font-weight:700;}
.products#premium-items {align-items:stretch !important;}
.products#premium-items .simple-prod {margin-bottom:12px;width:calc(16.666% - 8px);align-self:stretch !important;display:flex;flex-direction:column;background:linear-gradient(160deg, #fffbe6 0%, #fff7cc 50%, #fff3b0 100%) !important;border:1.5px solid rgba(212,175,55,0.35) !important;box-shadow:0 4px 18px rgba(212,175,55,0.12), 0 0 0 1px rgba(212,175,55,0.08) inset !important;border-radius:14px !important;position:relative;overflow:visible;}
.products#premium-items .simple-prod::before {content:"★ Premium";position:absolute;top:8px;left:8px;z-index:5;padding:4px 10px;border-radius:999px;background:linear-gradient(135deg, #d4af37, #f0c850);color:#fff;font-size:10px;font-weight:900;letter-spacing:0.04em;text-transform:uppercase;box-shadow:0 4px 12px rgba(212,175,55,0.35);line-height:14px;}
.products#premium-items .simple-prod.o1 {width:calc(16.666% - 8px);}
.products#premium-items .simple-prod:not(.o1) {width:calc(16.666% - 8px);}
.products#premium-items .simple-prod .simple-wrap {background:transparent;flex:1;display:flex;flex-direction:column;}
.products#premium-items .simple-prod .data {flex:1;display:flex;flex-direction:column;}
.products#premium-items .simple-prod:hover {border-color:rgba(212,175,55,0.55) !important;box-shadow:0 8px 28px rgba(212,175,55,0.22), 0 0 0 1px rgba(212,175,55,0.12) inset !important;transform:translateY(-2px);transition:all 0.2s ease;}

.products#premium-items .simple-prod .vrool-mm-badge {display:none !important;}
.products#premium-items .simple-prod .bar {display:none !important;}
.products#premium-items .simple-prod .img-wrap .bar {display:none !important;}
.products#premium-items .simple-prod .img-wrap > a.bar {display:none !important;}
.products#premium-items .simple-prod .extra {display:none !important;}
.products#premium-items .simple-prod .info {display:none !important;}
.products#premium-items .simple-prod .labels {display:none !important;}
.products#premium-items .simple-prod .vrool-mobile-meta {display:none !important;}
.products#premium-items .simple-prod .vrool-trader-specs {display:none !important;}
.products#premium-items .simple-prod .vrool-mobile-specs {display:none !important;}
.products#premium-items .simple-prod .vrool-mobile-img-overlay {display:none !important;}
.products#premium-items .simple-prod .vrool-payment-accepted {display:none !important;}

.products#premium-items .simple-prod .img-wrap {padding-top:100%!important;aspect-ratio:auto!important;height:auto!important;background:#f3f4f6;}
.products#premium-items .simple-prod .img-wrap img {object-fit:cover !important;object-position:center 20% !important;}
.products#premium-items .simple-prod .img-wrap > a img {object-fit:cover !important;object-position:center 20% !important;}
.products#premium-items .simple-prod .img-wrap {padding-top:100%!important;aspect-ratio:auto!important;height:auto!important;}
.products#premium-items .simple-prod .info {white-space:normal;text-overflow:ellipsis;overflow:hidden;}
.products#premium-items .simple-prod .title {overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;white-space:normal;}
.products#premium-items .simple-prod .extra {height:24px;overflow:hidden;}

@media screen and (max-width: 767px) {
  .products#premium-items .simple-prod {
    width:calc(100% - 8px)!important;
    min-width:calc(100% - 8px)!important;
    max-width:calc(100% - 8px)!important;
    align-self:stretch !important;
  }
}
.products#premium-items .simple-prod .labels {display:none;}

.products#premium-items .simple-prod .extra > span:nth-child(2) {display:none;}

@media screen and (max-width: 767px) {
  .products#premium-items .simple-prod, .products#premium-items .simple-prod.o1 {width:100%!important;min-width:100%!important;max-width:100%!important;}
}
.products#location-items .simple-prod .img-wrap .bar {padding-right:8px;}
.empty-alt {display: block;font-size: 15px;color: #777;}

/* HOME PAGE - FAVORITE ITEMS */
body#home > .content > section.home-favorite {background:#f8f8f8;}
.products#favorite-items {flex-wrap: nowrap;overflow-x:auto;width:calc(100% + 14px);margin:0 -7px;}
.products#favorite-items .simple-prod {width:240px;margin:0 1px 6px 1px;}
.products#favorite-items .simple-prod .info {white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:-2px 0 4px 0;}
.products#favorite-items .simple-prod .extra {display:none;}
.products#favorite-items .simple-prod .title {margin-bottom:0;font-size: 15px;line-height: 17px;font-weight: 600;min-height: 18px; max-height: 35px;}
.products#favorite-items .simple-prod .img-wrap .bar .image-counter {display:none;}
.products#favorite-items .simple-prod .img-wrap .bar {padding-right:8px;}
.products#favorite-items .simple-prod .img-wrap .premium-mark {display:none;}

body#home > .content > section.home-latest {background:#fff;box-shadow:0 1px 2px rgba(0,0,0,0.25);}

/* Home listing rails: match header (1350/16) and avoid flex % width collapsing on first paint */
@media screen and (min-width: 981px) {
  body#home > .content > section > .container {
    max-width: 1450px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
  }

  /* Desktop: CSS grid for latest blocks (responsive.css only did this ≤1024px; wide viewports used flex + %) */
  body#home .products#latest-items,
  body#home #latest-property-items.products.grid,
  body#home #latest-mobile-items.products.grid,
  body#home #latest-vehicles-items.products.grid,
  body#home #fashion-items.products.grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    justify-items: stretch;
    flex-wrap: unset;
    overflow-x: visible;
  }

  body#home .products#latest-items .simple-prod,
  body#home .products#latest-items .simple-prod.medium,
  body#home #latest-property-items .simple-prod,
  body#home #latest-property-items .simple-prod.medium,
  body#home #latest-mobile-items .simple-prod,
  body#home #latest-mobile-items .simple-prod.medium,
  body#home #latest-vehicles-items .simple-prod,
  body#home #latest-vehicles-items .simple-prod.medium,
  body#home #fashion-items .simple-prod,
  body#home #fashion-items .simple-prod.medium {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

body#home #latest-property-items .simple-prod .vrool-trader-card,
body#home #latest-mobile-items .simple-prod .vrool-trader-card {display:none!important;}

body#home #latest-items.products.grid,
body#home #latest-property-items.products.grid,
body#home #latest-mobile-items.products.grid,
body#home #latest-vehicles-items.products.grid,
body#home #fashion-items.products.grid {align-items:stretch!important;}

body#home #latest-items .simple-prod,
body#home #latest-property-items .simple-prod,
body#home #latest-mobile-items .simple-prod,
body#home #latest-vehicles-items .simple-prod,
body#home #fashion-items .simple-prod {display:flex;align-self:stretch!important;}

body#home #latest-items .simple-prod .simple-wrap,
body#home #latest-property-items .simple-prod .simple-wrap,
body#home #latest-mobile-items .simple-prod .simple-wrap,
body#home #latest-vehicles-items .simple-prod .simple-wrap,
body#home #fashion-items .simple-prod .simple-wrap {height:100%;}

body#home #latest-items .simple-prod .data,
body#home #latest-property-items .simple-prod .data,
body#home #latest-mobile-items .simple-prod .data,
body#home #latest-vehicles-items .simple-prod .data,
body#home #fashion-items .simple-prod .data {flex:1;display:flex;flex-direction:column;}

@media screen and (max-width: 767px) {
  body#home #latest-mobile-items .simple-prod,
  body#home #latest-mobile-items .simple-prod.medium,
  body#home #latest-mobile-items .simple-prod.large,
  body#home #latest-mobile-items .simple-prod.verytall,
  body#home #latest-mobile-items .simple-prod.megatall,
  body#home #latest-mobile-items .simple-prod.extratall,
  body#home #latest-property-items .simple-prod,
  body#home #latest-property-items .simple-prod.medium,
  body#home #latest-property-items .simple-prod.large,
  body#home #latest-property-items .simple-prod.verytall,
  body#home #latest-property-items .simple-prod.megatall,
  body#home #latest-property-items .simple-prod.extratall,
  body#home #latest-items .simple-prod,
  body#home #latest-items .simple-prod.medium,
  body#home #latest-items .simple-prod.large,
  body#home #latest-items .simple-prod.verytall,
  body#home #latest-items .simple-prod.megatall,
  body#home #latest-items .simple-prod.extratall,
  body#home #latest-vehicles-items .simple-prod,
  body#home #latest-vehicles-items .simple-prod.medium,
  body#home #latest-vehicles-items .simple-prod.large,
  body#home #latest-vehicles-items .simple-prod.verytall,
  body#home #latest-vehicles-items .simple-prod.megatall,
  body#home #latest-vehicles-items .simple-prod.extratall {width:calc(50% - 14px)!important;min-width:calc(50% - 14px)!important;max-width:calc(50% - 14px)!important;}
}

section.home-benefits {background:#fff;}
section.home-benefits .container {padding-top:18px;padding-bottom:22px;align-items:stretch;}
section.home-benefits .benefits-wrap {width:100%;border:1px solid rgba(0,0,0,0.10);border-radius:12px;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,0.10);padding:16px;}

section.home-benefits .benefits-title {font-size:18px;line-height:1.25;font-weight:700;color:#171717;margin:0 0 4px 0;}
section.home-benefits .benefits-sub {font-size:14px;line-height:1.35;font-weight:400;color:rgba(0,0,0,0.70);margin:0 0 14px 0;}

section.home-benefits .benefits-grid {display:grid;grid-template-columns:1fr;gap:12px;margin:0 0 14px 0;}
section.home-benefits .benefit {display:flex;align-items:flex-start;gap:10px;min-width:0;}
section.home-benefits .benefit .ico {flex:0 0 auto;width:38px;height:38px;border-radius:12px;background:rgba(0,186,118,0.10);border:1px solid rgba(0,186,118,0.22);color:#00ba76;display:flex;align-items:center;justify-content:center;}
section.home-benefits .benefit .ico i {font-size:18px;line-height:1;}
section.home-benefits .benefit .txt {min-width:0;}
section.home-benefits .benefit .txt strong {display:block;font-size:13px;line-height:1.2;font-weight:700;color:#171717;margin:0 0 2px 0;}
section.home-benefits .benefit .txt span {display:block;font-size:12px;line-height:1.35;font-weight:400;color:rgba(0,0,0,0.68);}

section.home-benefits .benefits-cta {display:flex;justify-content:flex-start;}
section.home-benefits .benefits-cta .btn {border-radius:999px;height:auto;line-height:20px;padding:10px 16px;font-size:14px;font-weight:700;background:rgba(0,186,118,0.10);border-color:rgba(0,186,118,0.35);box-shadow:none;color:#00ba76;}
section.home-benefits .benefits-cta .btn:hover {background:rgba(0,186,118,0.18);border-color:rgba(0,186,118,0.55);color:#00ba76;}

@media (min-width: 768px) {
  section.home-benefits .benefits-wrap {padding:18px;}
  section.home-benefits .benefits-grid {grid-template-columns:repeat(4, minmax(0, 1fr));gap:14px;margin-bottom:16px;}
  section.home-benefits .benefit {align-items:center;}
}

/* HOME PAGE */
body#home > .content {background:#fff;padding:30px 0 0 0;}
body#home > .content > section {padding:36px 0;}
body#home > .content > section.home-search {padding:10px 0 40px 0;background:#fff;box-shadow: 0 1px 1px rgba(0,0,0,0.2);}
body#home > .content > section > .container > .block {flex:0 0 100%;width:100%;}
body#home #flashbox .flashmessage:last-child {margin-bottom:15px;}
body#home h2 {font-size:20px;line-height:1.2;margin:0 0 10px 0;display: flex; align-items: center; justify-content: space-between;font-weight:400;}
body#home section.home-premium h2 {font-weight:500;}
body#home h2 .btn {background:transparent;display:flex;align-items: center;box-shadow:none;}
body#home h2 .btn:hover {color:#3b49df;box-shadow:0 0 0 1px #3b49df;}
body#home h2 .btn svg {margin-right: 5px;fill:#3b49df;}
.home-search > .container {position:relative;flex-direction: column;margin:0 auto;padding:0 16px;max-width:1450px;width:100%;box-sizing:border-box;}
@media (min-width: 981px) {
  body#home .home-search-layout {
    justify-content: space-between;
    width: 100%;
  }
}
.home-search > .container:after {display:none;}
.home-search .box {width:100%;position:relative;z-index:2;}
.home-search h1, .home-search form, .home-search .latest-search {max-width:100%;}

@media screen and (min-width: 1024px) {
  body#home .home-search > .container {transform: none;}
  body#home .home-search-right {margin-left: 0;}
}
.home-search h1 {margin-bottom:20px;display:block;}
.home-search h1 div {display:inline-block;height:36px;overflow:hidden;vertical-align: -8px;}
.home-search h1 div span {display:block;font-weight:800;height:36px;background-color: #3b49df; background-image: linear-gradient(135deg, #3b49df, #7c58d0); background-size: 100%; -webkit-background-clip: text; -moz-background-clip: text; -webkit-text-fill-color: transparent; -moz-text-fill-color: transparent;}
.home-search h1 div span.l1 {animation: h1slide 8s cubic-bezier(.8,0,.2,1) infinite;animation-delay:1.5s;}
@keyframes h1slide {0% {margin-top:0;} 26% {margin-top:0;} 33% {margin-top:-36px;} 59% {margin-top:-36px;} 66% {margin-top:-72px;} 92% {margin-top:-72px;} 100% {margin-top:0;}}
.home-search .input-box {width:calc(100% - 162px);margin:0 12px 0 0;}

@media (min-width: 981px) {
  body#home .home-search-right .social-widget {
    max-height: 518px;
    margin-top: 60px;
    position: relative;
    z-index: 3;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  body#home .home-search-left .box {
    transform: none;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  body#home .home-search-right .social-widget {margin-top:60px!important;transform:none!important;width:100%!important;max-width:100%!important;left:auto!important;top:auto!important;margin-left:auto!important;margin-right:auto!important;}
  body#home .home-search-left .box {transform:none!important;position:relative!important;left:auto!important;}
  .welcome-left h1 span {font-size:1.75rem;}
  .welcome-latest-loop{max-width:560px;width:100%;}
}

@media (min-width: 1101px) {
  body#home .home-search-left .box {
    position: relative;
    left: 0;
  }

  body#home .home-search-right .social-widget {
    position: relative;
    left: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  body#home .home-search-right .social-widget {
    margin-top: -330px;
    top: -1px;
  }
}

body#home .home-search-right .social-widget .social-widget-badges {
  margin-left:auto;
  justify-content:flex-end;
}

body#home .home-search-right .social-widget .social-widget-platform-ico {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background: rgba(0,0,0,0.06);
  color:#111827;
  margin-left:10px;
}

body#home .home-search-right .social-widget .social-widget-platform-ico i {
  font-size:18px;
  line-height:1;
}

body#home .home-search-right .social-widget .social-widget-platform-ico.is-youtube {
  color:#ff0000;
}

body#home .home-search-right .social-widget .social-widget-platform-ico.is-tiktok {
  color:#111111;
}

body#home .home-search-right .social-widget .social-widget-media-badge {
  background: linear-gradient(135deg, #1bcc81 0%, #10cd7b 45%, #11c876 100%);
  color:#ffffff;
}

body#home .home-search-right .social-widget .social-widget-media-badge i {
  color:#ffffff;
}

.home-search .btn {width:150px;height:48px;border-radius:7px;line-height:16px;}
.home-search .btn i {vertical-align:-1px;}
.home-search input[name="sPattern"] {display:block;width:100%;height:48px;padding:10px 12px ;border-radius:7px;font-size:17px;border:1px solid #333;}
.home-search .latest-search {max-height:56px;overflow:hidden;}
.home-search .latest-search a {font-size:13px;padding:5px 6px;border-radius:5px;margin:0 8px 8px 0;}

body#home .home-search h2 {font-size:17px;margin:25px 0 8px 0;font-weight:800;line-height:1.2;}
#home-cat {display:flex;flex-wrap: nowrap; flex-direction: row;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;}
#home-cat::-webkit-scrollbar {display:none;}
#home-cat a {width:auto;margin:0 4px 0 0;flex:0 0 auto;padding:4px 10px 4px 4px;border-radius:999px;transition:0.2s;display:inline-flex;align-items:center;gap:6px;border:none;outline:none;box-shadow:none;}
#home-cat a:hover, #home-cat a.all:hover {text-decoration:none;background:rgb(59 73 223 / 10%);}
#home-cat a > div {display:flex;margin:0;text-align:center;box-shadow:none;position:relative;width:24px;height:24px;min-width:24px;border-radius:100px;align-items: center; justify-content: center;}
#home-cat a > div i {font-size:12px;line-height:24px;text-align:center;}
#home-cat a > div img, #home-cat a > div svg {opacity:1;max-width:18px;width:auto;height:16px;max-height:16px;object-fit: contain;}
#home-cat a > div > span.lab {font-weight:600;font-size:9px;padding:1px 4px;border-radius:6px;color:#f9f9f9;background:#3b49df;position:absolute;right:-4px;top:2px;box-shadow:0 1px 2px rgba(0,0,0,0.25);}
#home-cat a > div > span.lab.hot {background:#df3b3b;}
#home-cat a > h3 {display:flex;height:auto;text-align:center;overflow:hidden;}
#home-cat a > h3 span {margin:auto;display:block;font-size:12px;font-weight:500;line-height:16px;}
#home-cat a.all {background:rgb(59 73 223 / 3%);box-shadow:none;border:1px solid rgba(0,0,0,0.08);}
#home-cat a.all > div {background:#e4e4e4;}
#home-cat a.all > div svg {fill:#555;padding:4px;}

/* HOME PAGE BLOG */
section.home-blog h2 {margin-bottom:20px;}
.blog-box {display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; grid-gap: 12px;}
.blog-box > a {transition:0.2s;display:flex;flex-direction: row;border-radius:6px;overflow:hidden;}
.blog-box > a:hover {box-shadow:0 0 0 1px #3b49df;background:rgb(59 73 223 / 5%);text-decoration:none;}
.blog-box > a:nth-child(1n+4) {display:none;}
.blog-box > a > img {object-fit:cover;width:120px;height:100px;margin-right:12px;border-radius:6px;box-shadow:0 1px 4px rgba(0,0,0,0.25)}
.blog-box > a > .data {padding:5px 0;overflow:hidden;max-width:100%;}
.blog-box > a h3 {font-size:16px;color:#111827;margin-bottom:4px;line-height:18px;max-height:38px;overflow:hidden;font-weight:300;}
.blog-box > a .desc {font-size:14px;color:rgba(0,0,0,0.62);line-height:18px;height:38px;overflow:hidden;font-weight:300;}

body#home .frm-widget {background:#fff;padding:16px;border-radius:12px;border:1px solid rgba(0,0,0,0.10);box-shadow:0 1px 2px rgba(0,0,0,0.10);margin:10px 0 0 0;}
body#home .frm-widget .frm-header {display:flex;align-items:center;justify-content:space-between;font-weight:600;color:#111827;font-size:14px;line-height:18px;margin:0 0 10px 0;}

body#home .frm-widget .frm-row {display:block;padding:10px 10px;border-radius:10px;margin:0;}
body#home .frm-widget .frm-row + .frm-row {margin-top:6px;}
body#home .frm-widget .frm-row:hover {background:rgba(17,24,39,0.03);}

body#home .frm-widget .frm-row .frm-top a {display:block;font-weight:400;font-size:13px;line-height:17px;color:#00ba76;text-decoration:none;}
body#home .frm-widget .frm-row .frm-top a:hover {text-decoration:underline;}

body#home .frm-widget .frm-row .frm-bot {display:flex;flex-wrap:wrap;gap:4px 6px;font-weight:300;color:rgba(0,0,0,0.58);font-size:12px;line-height:15px;margin-top:4px;}
body#home .frm-widget .frm-row .frm-bot a {font-weight:300;color:rgba(0,0,0,0.58);text-decoration:none;}
body#home .frm-widget .frm-row .frm-bot a:hover {text-decoration:underline;}

/* HOME PAGE COMPANIES */
body#home > .content > section.home-business {padding-top:10px;}
.business-box {display:inline-block;width:100%;margin:5px 0 0 0;}
body #bpr-seller.bpr-block .bpr-inside-all, #bpr-seller .bpr-inside-all {margin:0 -8px;width:calc(100% + 16px);position:relative;}
body #bpr-seller.bpr-block > .bpr-title {display:none;}
body #bpr-seller.bpr-block .bpr-comp, #bpr-seller .bpr-comp {border-radius:6px;border:none;box-shadow:0 1px 3px rgba(0,0,0,0.25);width:calc(20% - 16px)!important;min-width:initial;max-width:initial;margin:0 8px 16px 8px;}
body #bpr-seller.bpr-block .bpr-comp:hover {box-shadow:0 1px 3px rgba(0,0,0,0.25), 0 0 0 2px #3b49df;}
body .bpr-comp .bpr-icon-wrap .bpr-icon > div {border:none;background-color:transparent;padding-top:100%;box-shadow:0 2px 8px rgba(0,0,0,0.3);}
body #bpr-seller.bpr-block .bpr-title {font-size:16px;line-height:1.2;margin-top:6px;margin-bottom:12px;color:#171717;}
body .bpr-comp .bpr-icon-wrap .bpr-icon {margin: -40% 0 0 -25%; width: 50%;}
body .bpr-comp .bpr-cover .bpr-wrap {border-radius:6px 6px 0 0;}
body #bpr-seller.bpr-block {margin:0;max-width:100%;}
body .bpr-comp .bpr-icon-wrap {z-index:2;}



/* LOCATION & PATTERN PICKER */
.picker.location {position:relative;}
.picker.location input[type="text"]:focus, #side-menu .input-box input:focus, #def-location .input-box input:focus, .home-search input[name="sPattern"]:focus {text-decoration:underline;border-color:#3b49df;}
.picker.location .results, .picker.pattern .results, .picker.category .results {display:none;position:absolute;top:100%;padding:5px 0;max-height:240px;overflow-y:auto!important;z-index:4;border: 1px solid #ccc; border-radius: 5px; margin-top: 5px;}
.picker.location .results, .picker.location .results * {background:#fff;}
.picker.location .results {opacity:1;left:0;right:0;width:100%;max-width:100%;box-sizing:border-box;overflow:hidden;}
.picker.location {z-index:9998;}
.picker.location .results {z-index:9999;isolation:isolate;}
.picker.pattern .results, .picker.pattern .results * {background-color:#fff;}
.picker.pattern .results {opacity:1;}
 .picker.pattern .results {left:0;right:0;width:100%;max-width:100%;box-sizing:border-box;}
 .picker.pattern .results, .picker.pattern .results * {font-size:14px;line-height:18px;font-weight:300;}
 .picker.pattern .results .row.minlength {font-size:12px;line-height:16px;font-weight:600;}
 .picker.pattern .results .option > span {font-weight:300;}
 .picker.pattern .results .option > u {font-weight:300;}
 .picker.pattern .results {background:#fff;overflow:hidden;}
 .picker.pattern .results .favorite,
 .picker.pattern .results .view-counter,
 .picker.pattern .results .image-counter,
 .picker.pattern .results .fi_fav,
 .picker.pattern .results [class^="fi_fav"],
 .picker.pattern .results [class*=" fi_fav"],
 .picker.pattern .results a.fi_fav,
 .picker.pattern .results span.fi_fav,
 .picker.pattern .results button.fi_fav {display:none!important;}
 .picker.pattern .results .row.defloc {padding:5px 16px;margin-top:8px;}
 .picker.pattern .results .row.defloc > a {transition:0.2s;font-weight:bold;color:#3b49df;padding:7px 40px 7px 8px;position:relative;background:rgb(59 73 223 / 8%);display:inline-block;border-radius:6px;}
 .picker.pattern .results .row.defloc > a:hover {background:rgb(59 73 223 / 12%);}
 .picker.pattern .results .row.defloc > a svg {fill:#3b49df;vertical-align: -4px; margin-right: 4px;}
 .picker.pattern .results .row.defloc > a .input-clean {color:#888;transition:0.2s;position:absolute;right:0;top:calc(50% - 12px);right:7px;font-size:18px;line-height:20px;cursor:pointer;padding:2px;width:24px;height:24px;text-align:center;cursor:pointer;}
 .picker.pattern .results .row.defloc > a .input-clean:hover {color:#555;}
 .picker.pattern {position:relative;z-index:100000;}
 .picker.pattern .results {z-index:100001;isolation:isolate;background:#fff!important;opacity:1!important;}
 body#search .picker.pattern {position:relative;z-index:100000;}
 body#search .picker.pattern .results {z-index:100001;isolation:isolate;background:#fff!important;opacity:1!important;}
.picker.location .results:empty, .picker.pattern .results:empty, .picker.category .results:empty {display:none;}
.picker.location.loading .results:after, .picker.pattern.loading .results:after, .picker.category.loading .results:after {position:absolute;top:0;left:0;bottom:0;right:0;border-radius:5px;background:rgba(255,255,255,0.6);content:"";cursor:wait;}
.picker.location.loading:after, .picker.pattern.loading:after, .picker.pattern.mobile.loading > .input-box:after, .picker.category.loading:after {position:absolute;z-index:3;content:"";width:26px;height:26px;display:block;right:7px;top:calc(50% - 13px);background:#fff url('../images/input-loader.webp') no-repeat center center;background-size:100%;border-radius:6px;}
.def-loc-box .picker.location.loading:after {margin-right:1px;}
.picker.pattern.loading:after {width:28px;height:28px;right:8px;top:calc(50% - 14px);}
.picker.pattern.mobile.loading:after {display:none;}
.picker.pattern.mobile.loading > .input-box:after {right:6px;}
.picker.location .option, .picker.pattern .option, .picker.category .option, #side-menu .box .section a.option, #def-location a.option {display:inline-block;width:100%;margin:0;padding:10px 12px;font-size:15px;line-height:18px;transition:0.2s;cursor:pointer;color:#171717;}
.picker.location .option:hover, .picker.location .option:active, .picker.category .option:hover, .picker.category .option:active, .picker.pattern .option:hover, .picker.pattern .option:active {background:rgb(59 73 223 / 10%);color:#3b49df;}
.picker.location .option > span {display:inline-block;font-weight:600;margin-right:3px;}
.picker.category .option > span {display:inline-block;font-weight:600;}
.picker.location .option > span:after {content:", ";}
.picker .option > em, #def-location a > em, #side-menu .box .section .popular a > em, #side-menu .box .section .recent a > em {display:inline-block;font-size:11px;color:#999;font-style:normal;font-weight:normal;}
.picker .option > u {font-weight:500;}
.picker.category .option > em {font-size:13px;color:#666;}
.picker.category .option > em:before {content:", ";}
.picker.pattern .option {padding:10px 16px 10px 40px;position:relative;}
.picker.pattern .items a.option.item {padding:10px 16px;display:flex;align-items:center;gap:10px;}
.picker.pattern .items a.option.item:after {display:none;}
.picker.pattern .items a.option.item,
.picker.pattern .items a.option.item:focus,
.picker.pattern .items a.option.item:active {
  outline:none;
  box-shadow:none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.picker.pattern .items a.option.item .item-img {flex:0 0 46px;width:46px;height:36px;border-radius:6px;overflow:hidden;background:#e5e7eb;display:inline-flex;align-items:center;justify-content:center;}
.picker.pattern .items a.option.item .item-img img {width:100%;height:100%;object-fit:cover;display:block;}
.picker.pattern .items a.option.item .item-txt {flex:1 1 auto;min-width:0;display:flex;flex-direction:column;gap:2px;}
.picker.pattern .items a.option.item .item-title {font-weight:300;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.picker.pattern .items a.option.item .item-price {font-size:12px;color:#666;display:block;}
.picker.pattern .items a.option.item {display:flex;align-items:center;flex-wrap:nowrap;gap:14px;padding:12px 14px 12px 18px;border-radius:16px;margin:6px 10px;min-height:84px;background:#ffffff;border:1px solid rgba(15,23,42,0.08);box-shadow:0 10px 24px rgba(15,23,42,0.06);}
.picker.pattern .items a.option.item:hover {background:#ffffff;border-color:rgba(16,185,129,0.22);box-shadow:0 14px 30px rgba(16,185,129,0.10);}
.picker.pattern .items a.option.item:after {display:none;}
.picker.pattern .items a.option.item .item-img {flex:0 0 72px;width:72px;height:72px;border-radius:14px;background:#eef2f7;box-shadow:inset 0 1px 0 rgba(255,255,255,0.8);}
.picker.pattern .items a.option.item .item-txt {flex:1 1 auto;width:calc(100% - 86px);min-width:0;display:flex;flex-direction:column;justify-content:center;gap:6px;background:#ffffff;}
.picker.pattern .items a.option.item .item-title {font-size:16px;line-height:20px;font-weight:800;color:#1f2937;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.picker.pattern .items a.option.item .item-price {font-size:24px;line-height:28px;font-weight:900;color:#059669;font-style:normal;letter-spacing:-0.02em;}
.picker.pattern .items .lead {padding:0 18px 8px 18px;font-size:13px;line-height:16px;font-weight:900;letter-spacing:0.04em;text-transform:uppercase;color:#475569;}
.picker.pattern .searches a.option.direct {display:flex;align-items:center;padding:16px 18px 16px 46px;margin:8px 10px 10px 10px;border-radius:16px;background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);border:1px solid rgba(15,23,42,0.08);font-size:15px;font-weight:800;color:#1f2937;box-shadow:0 10px 24px rgba(15,23,42,0.06);}
.picker.pattern .searches a.option.direct:hover {background:linear-gradient(180deg,#ffffff 0%,#ecfdf5 100%);border-color:rgba(16,185,129,0.22);}
.picker.pattern .results {max-height:360px;}
.picker.pattern .results .row {margin:6px 0 10px 0;}
.picker.pattern .results .row:last-child {margin-bottom:4px;}
.picker.pattern .results .row.minlength {padding:9px 16px;font-weight:600;color:#2f3ab2;margin:-5px 0 10px 0;font-size:13px;border-radius:5px 5px 0 0;border-bottom:1px solid #ccc;z-index:2;}
.picker.pattern .results a:after {font-family: "Font Awesome 5 Free"; font-size: 16px; height: 16px; color: rgba(0,0,0,0.5); position: absolute; left: 16px; top: calc(50% - 9px); font-weight: 900;}
.picker.pattern .patterns a:after, .picker.pattern .default .recent.locations a:after {margin-left:1px;content: "\f1da";}
.picker.pattern .searches a:after {margin-left:2px;content: "\f002";}
.picker.pattern .categories a:after {margin-left:1px;content: "\f86d";font-size:14px;}
.picker.pattern .locations a:after {margin-left:2px;content: "\f3c5";}
.picker .clean {display:none;z-index:2;padding:5px;cursor:pointer;transition:0.2s;position:absolute;right:6px;top:calc(50% - 15px);font-size:18px;line-height:20px;color:#999;width:30px;height:30px;border-radius:5px;}
.picker .clean:hover {color:#666;}
.picker.mobile .clean {right:3px;}
.picker.pattern .results a.option {font-size:14px;line-height:18px;font-weight:300;}
.picker.pattern .results .option > span {font-weight:300;}
.picker.pattern .results .option > u {font-weight:300;}
.picker.pattern .results .favorite,
.picker.pattern .results .view-counter,
.picker.pattern .results .image-counter {display:none!important;}
.picker.pattern .results .row.defloc {padding:5px 16px;margin-top:8px;}
.picker.pattern .results .row.defloc > a {transition:0.2s;font-weight:bold;color:#3b49df;padding:7px 40px 7px 8px;position:relative;background:rgb(59 73 223 / 8%);display:inline-block;border-radius:6px;}
.picker.pattern .results .row.defloc > a:hover {background:rgb(59 73 223 / 12%);}
.picker.pattern .results .row.defloc > a svg {fill:#3b49df;vertical-align: -4px; margin-right: 4px;}
.picker.pattern .results .row.defloc > a .input-clean {color:#888;transition:0.2s;position:absolute;right:0;top:calc(50% - 12px);right:7px;font-size:18px;line-height:20px;cursor:pointer;padding:2px;width:24px;height:24px;text-align:center;cursor:pointer;}
.picker.pattern .results .row.defloc > a .input-clean:hover {color:#555;}
.picker.pattern.mobile {position:unset;}
.picker.pattern.mobile .results {display: block; left: 0; top: 48px; margin: 0; border-radius: 0; border: none; background: #fff;padding-top: 12px;border-bottom: 1px solid #ccc;max-height:calc(100vh - 96px);height: calc(100vh - 96px);min-height: calc(100vh - 96px);}



/* MOBILE SIDE MENU */
#menu-cover {display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:7;background:rgba(0,0,0,0.5);backdrop-filter: blur(4px);}
#menu-cover .close {position:absolute;right:10px;top:6px;width:36px;padding:1px;height:36px;color:#f9f9f9;border-radius:6px;}
#side-menu {display:none;font-size:16px;overflow:hidden;color:#171717;line-height:20px;position:fixed;left:0;top:0;bottom:0;max-width:calc(100% - 54px);z-index:99;background:#fff;box-shadow:1px 0 5px rgba(0,0,0,0.2);}
#side-menu.box-open {overflow-y:hidden;}
#side-menu > .wrap {position:absolute;top:0;left:0;height:100%;overflow-y:auto;max-width:100%;}
#side-menu, #side-menu .box, #side-menu > .wrap {width:290px;}
#side-menu .section, #def-location .section {padding:8px 0;}
#side-menu .section.delim-top {border-top:1px solid #c0c0c0;}

@media (max-width: 767px) {
  #menu-cover {
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(10px);
  }

  #menu-cover .close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
  }

  #side-menu {
    max-width: min(88vw, 340px);
    background: #f8fafc;
    box-shadow: 18px 0 42px rgba(15, 23, 42, 0.18);
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  #side-menu,
  #side-menu .box,
  #side-menu > .wrap {
    width: min(88vw, 340px);
  }

  #side-menu > .wrap {
    padding: 16px 12px 24px 12px;
    scrollbar-width: thin;
  }

  #side-menu .section {
    padding: 0;
  }

  #side-menu .section.delim-top {
    border-top: none;
    margin-top: 14px;
  }

  #side-menu .section.lead {
    padding: 16px !important;
    border-radius: 24px !important;
    background: linear-gradient(145deg, #ffffff 0%, #f2fbf7 100%) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08) !important;
    display: block !important;
  }

  #side-menu .section.lead .sell-now {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #10d07a 0%, #00ba76 100%) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 22px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: 0 16px 32px rgba(0, 186, 118, 0.24) !important;
  }

  #side-menu .menu-hooks a,
  #side-menu .box .section a {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: 56px !important;
    margin: 0 0 10px 0 !important;
    padding: 15px 16px !important;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }

  #side-menu .section a svg,
  #side-menu .menu-hooks a > i,
  #side-menu .box .section a svg {
    display: none !important;
  }

  #side-menu .menu-hooks a:before {
    display: none !important;
  }

  #side-menu .section a:hover,
  #side-menu .menu-hooks a:hover,
  #side-menu .box .section a:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 186, 118, 0.25);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  }

  #side-menu .section a svg,
  #side-menu .menu-hooks a svg,
  #side-menu .box .section a svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: #00ba76;
    fill: currentColor;
    opacity: 1;
  }

  #side-menu .section a .counter,
  #side-menu .menu-hooks a .counter,
  #side-menu .box .section > a .counter {
    margin-left: auto;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(0, 186, 118, 0.12);
    color: #0f766e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
  }

  #side-menu .box {
    background: #f8fafc;
  }

  #side-menu .box .nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 16px 16px;
    margin-bottom: 8px;
    position: sticky;
    top: 0;
    z-index: 3;
    background: rgba(248, 250, 252, 0.96);
    backdrop-filter: blur(8px);
  }

  #side-menu .box .nav .back {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  }

  #side-menu .box .nav span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 900;
    color: #0f172a;
  }

  #side-menu .box .section {
    padding: 0 12px 20px 12px;
  }
}
#side-menu .section.dark-mode {display:none;}
#side-menu .section a, #def-location a {width:100%;display:block;padding:10px 16px 10px 60px;line-height:20px;margin:3px 0;color:#333;font-weight:500;position:relative;}
#side-menu .section a svg, #def-location a.svg, #side-menu .menu-hooks a > i {position:absolute;width:30px;height:20px;fill:#171717;color:#171717;left:16px;top:calc(50% - 10px);z-index:3;background:#fff;}
#side-menu .menu-hooks a:before {text-align:center;position:absolute;width:30px;height:20px;line-height:20px;color:#171717;left:16px;top:calc(50% - 10px);z-index:2;content:"\f192";font-weight:400;font-size:20px;font-family: "Font Awesome 5 Free";}
#side-menu .section a.register svg, #side-menu .section a.profile svg {margin-left:3px;}
#side-menu .section a.login svg {margin-left:-1px;}
#side-menu .section a .indicator {position: absolute; right: 16px; left: auto; top: calc(50% - 7px); fill: #777; width: 8px; height: 16px;}
#side-menu .section a .counter {position: absolute; right: 16px; left: auto; top: calc(50% - 12px); font-weight:500;font-size:13px;border-radius:100px;color:#fff;background:#3b49df;box-shadow:0 1px 2px rgba(0,0,0,0.1);line-height:24px;padding:0 3px;text-align:center; min-width: 24px; height: 24px;}
#side-menu .box {display:none;position:absolute;top:0;left:0;right:0;bottom:0;overflow-y:auto!important;background:#fff;z-index:4;max-width:100%;}
#side-menu .box .nav {height:48px;padding:0 16px;display:flex;align-items: center;border-bottom:1px solid #ccc;}
#side-menu .box .nav i {line-height:22px;}
#side-menu .box .nav > span {font-weight:bold;}
#side-menu .box .section a, #def-location .section a {padding:12px 16px;line-height:20px;margin:4px 0;}
#side-menu a.lang img {width: 32px; height: 22px; float: left; margin: -1px 12px -1px 0; border-radius: 4px; box-shadow: 0 1px 2px rgb(0 0 0 / 25%);}
#side-menu .section.lead, #def-location .section.lead {padding:26px 10px 26px 110px;}
#side-menu .section.lead a.img-container, #def-location a.img-container {transition:0.2s;position:absolute;left:16px;top:16px;width:82px;height:82px;padding:0;border-radius:100px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,0.15);}
#side-menu .section.lead a.img-container:hover, #def-location a.img-container:hover {box-shadow:0 1px 10px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.15);}
#side-menu .section.lead a.img-container img, #def-location a.img-container img {width:82px;height:82px;max-width:82px;max-height:82px;object-fit:cover;}
#side-menu .section.lead a.img-container svg, #def-location a.img-container svg {position:absolute;top:auto;bottom:0;left:0;width:100%;height:26px;background:rgba(0,0,0,0.7);fill:#fff;padding:4px 0 6px 0;}
#side-menu .section.lead .line1, #side-menu .section.lead .line2, #side-menu .section.lead .line3 {padding:0;margin:0;display:inline-block;width:100%;}
#def-location .section.lead .line1, #def-location .section.lead .line2, #def-location .section.lead .line3 {padding:0;margin:0;display:inline-block;width:100%;}
#side-menu .section.lead .line1, #def-location .line1 {font-size:14px;font-weight:normal;color:#777;}
#side-menu .section.lead .line1 img, #def-location .line1 img {float:right;height:30px;width:auto;margin:-5px 0 -20px 0;}
#side-menu .section.lead .line2, #def-location .line2 {font-size:20px;color:#171717;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;margin:3px 0;}
#side-menu .section.lead .line3, #def-location .line3 {color:#171717;text-decoration:underline;font-size:14px;font-weight:500;}
#side-menu .box.location .row, #def-location .row {padding:10px 0;border-bottom:1px solid #ccc;}
#side-menu .box.location .row.current {padding:10px 16px 20px 16px;}
#def-location .row.current {padding:20px 16px 20px 16px;}
#side-menu .box.location .row:last-child, #def-location .row:last-child {border-bottom:none;}
#side-menu .box.location .row.picker, #def-location .row.picker {padding:16px 16px 0 16px;border:none;}
#side-menu .box.location .lead, #def-location .lead, .results .lead {text-transform:uppercase;color:#777;font-weight:500;padding:5px 16px;font-size:13px;line-height:16px;}
#side-menu .navigator a.locate-me, #def-location .navigator a.locate-me, .navigator a.locate-me {display:block;width:100%;color:#3b49df;padding-left:58px;position:relative;margin-bottom:10px;}
#side-menu .navigator a.locate-me svg, #def-location .navigator a.locate-me svg, .navigator a.locate-me svg {position:absolute;top:calc(50% - 13px);width:26px;height:26px;left:16px;fill:#3b49df;}
#user-loc .navigator {margin-bottom:15px;}
#user-loc .navigator a.locate-me {padding-left:40px;}
#user-loc .navigator a.locate-me {background:rgb(59 73 223 / 8%);border-radius:6px;padding-top:6px;padding-bottom:11px;display:inline-block;max-width:100%;}
#user-loc .navigator a.locate-me:hover {background:rgb(59 73 223 / 12%);}
#side-menu .navigator strong, #def-location .navigator strong, .navigator strong {display:block;}
#def-location .navigator strong, #user-loc .navigator strong {font-size:16px;margin-bottom:2px;}
#side-menu .navigator span, #def-location .navigator span, .navigator span {display:block;font-size:14px;line-height:16px;font-weight:normal;}
#side-menu .navigator span.refresh, #def-location .navigator span.refresh, .navigator span.refresh {color:#777;margin-top:4px;font-size:13px;text-decoration:none;font-style:italic;display:inline-block;}
#side-menu .input-box, #def-location .input-box {margin:0;}
#side-menu .box.location .input-box input, #def-location .input-box input {border-color:#444;border-width:2px;padding-left:42px;width:100%;}
#side-menu .input-box svg, #def-location .input-box svg {width:22px;height:22px;fill:#171717;position:absolute;left:8px;top:calc(50% - 11px);}
#def-location .input-box svg {left:10px;}
#side-menu .box .section .recent a, #side-menu .box .section .popular a, #def-location .recent a, #def-location .popular a {font-weight:normal;padding:8px 16px 8px 40px;position:relative;}
#side-menu .box .section .recent a:after, #def-location .recent a:after {margin-left:1px;content: "\f1da"; font-family: "Font Awesome 5 Free"; font-size: 16px; height: 16px; color: #171717; position: absolute; left: 16px; top: calc(50% - 9px); font-weight: 900;}
#side-menu .box .section .popular a:after, #def-location .popular a:after {margin-left:1px;content: "\f3c5"; font-family: "Font Awesome 5 Free"; font-size: 16px; height: 16px; color: #171717; position: absolute; left: 16px; top: calc(50% - 9px); font-weight: 900;}
#side-menu .box .section .row.buttons, #def-location .row.buttons {padding:16px;}
#side-menu .box .section .buttons a.btn, #def-location .buttons a.btn {color:#3b49df;padding:8px;font-size:14px;}
#side-menu .box .section .buttons a.btn:hover, #def-location .buttons a.btn:hover {color:#fff;}
#side-menu .menu-hooks {width:100%;}
#side-menu .menu-hooks li {display:block;list-style-type:none;}
#side-menu .menu-hooks a > i {font-size:20px;line-height:20px;text-align:center;}
#side-menu .menu-hooks li.opt_favorite_items, #side-menu .menu-hooks li.opt_instant_messenger, #side-menu .menu-hooks li.opt_vrool_pay, #side-menu .menu-hooks li.opt_bpr_profile {display:none;} 
#side-menu .menu-hooks li.opt_osp_payment {display:none;}
#side-menu .box.filter input[type="text"], #side-menu .box.filter select {width:100%;}
#side-menu .box.filter .row {margin:0 0 12px 0;}
#side-menu .box.filter .row.checkboxes {margin:2px 0 0 0;}
#side-menu .box.filter .section {padding:10px 16px 0 16px;}
#side-menu #search-category-box {display:none;}

/* MOBILE BOTTOM NAVIGATION BAR */
#navi-bar {z-index:5;position:fixed;bottom:0;left:0;width:100%;height:62px;display:flex;background:#fff;box-shadow:0 -1px 4px rgba(0,0,0,0.12);padding-bottom:env(safe-area-inset-bottom, 0);}
/* Hide website footer on mobile — bottom nav bar replaces it */
@media screen and (max-width: 767px) {
  footer.vrool-footer, #footer-mobile-toggle, button.footer-mobile-toggle, .footer-mobile-toggle, button#footer-mobile-toggle {display:none !important; visibility:hidden !important; opacity:0 !important; pointer-events:none !important; height:0 !important; overflow:hidden !important;}
}
#navi-bar a {max-width:20%;text-align:center;flex:1;padding:8px 2px 4px 2px;letter-spacing:-0.2px;color:#888;position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;}
#navi-bar a.post > svg {background:#10b981;fill:#f9f9f9;border-radius:10px;width:80%;min-width:48px;height:36px;padding:6px 2px;}
#navi-bar a > svg {width:26px;height:26px;fill:#888;}
#navi-bar a > img {width:26px;height:26px;display:inline-block;vertical-align:middle;object-fit:contain;}
#navi-bar a > span {width:100%;font-size:11px;font-weight:600;display:block;word-break:break-all;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0 2px;}
#navi-bar a.active {font-weight:bold;color:#171717;}
#navi-bar a.active > svg {fill:#171717;}
#navi-bar a.active > span {font-weight:600;}
#navi-bar a.active:not(.post):after {content:"";width:7px;height:7px;border-radius:10px;background:#3b49df;position:absolute;top:5px;left:calc(50% + 9px);}
#navi-bar a.active.post > svg {background:#03bc63;fill:#f9f9f9;padding:7px 2px;}
#navi-bar .counter {position: absolute; left:calc(50% - 24px); top: 3px; height: 16px; min-width: 16px; width:auto;line-height: 16px; padding: 0 3px; border-radius: 100px; z-index: 2; background: #3b49df; color: #fff; font-size: 10px; font-weight: 600;}
#navi-bar .favorite .counter {margin-left:3px;}
#navi-bar a i.mark {position: absolute; right: calc(50% - 15px); font-size: 11px; top: 5px; color: #3b49df;text-shadow:-1px 1px 1px #fff;}

#navi-bar a.l2,
#navi-bar a.l2 > span,
#navi-bar a.l2.active,
#navi-bar a.l2.active > span {
  font-weight: 400;
}

#navi-bar a.l2 > svg,
#navi-bar a.l2.active > svg {
  opacity: 0.92;
}

/* PUBLISH & EDIT PAGE */
body.item-publish {}
.item-publish .content {padding:18px 0 36px 0;}
.item-publish h1 {margin:0 0 18px 0;font-size:24px;}
.item-publish h3 {margin:0 0 10px 0;font-size:16px;}
.item-publish .box {width:100%;max-width:580px;margin:0 0 10px 0;}
.item-publish section.promo, .item-publish #breadcrumbs, .item-publish footer section.one > .col {display:none;}
.item-publish footer section.one {padding:0;margin:0;}
.item-publish label {margin:0 0 2px 0;width:100%;display:inline-block;}
.item-publish label.auto-width {width:auto;}
.item-publish .input-box-check {margin:0 0 10px 0;}
.item-publish footer {padding:20px 0 12px 0;height:60px;}
.item-publish footer section.two {margin:0;padding:0;border:none;font-size:14px;}
.item-publish input[type="text"], .item-publish input[type="password"], .item-publish input[type="email"], .item-publish select {width:100%;}
.item-publish textarea {width:100%;}
.item-publish .box section {z-index:1;}
.item-publish .box section.s1 {z-index:4;}
.item-publish .box section.location {z-index:3;}
.item-publish .box section:not(.buttons-block) {position:relative;background:#fff;border-radius:4px;box-shadow:0 2px 6px rgba(0,0,0,0.1);margin:0 0 15px 0;border:1px solid #d0d0d0;}
.item-publish .box section > h2 {border-radius:4px 4px 0 0;display:inline-block;margin:0;width:100%;position:relative;z-index:2;padding:16px;font-size:16px;font-weight:700;background:#fafafa;}
.item-publish .box section .in {border-radius:0 0 4px 4px;display:inline-block;width:100%;border-top:1px solid #d0d0d0;padding:16px;position:relative;z-index:2;background:#fff;}
.item-publish .box section.location .in {z-index:3;}
.item-publish .box .dsc textarea {width:100%;}
.item-publish .row.country {width:34%;padding-right:16px;float:left;}
.item-publish .row.region {width:50%;padding-right:16px;float:left;}
.item-publish .row.country + .row.region, .item-publish .row.country + .row.region + .row.city {width:33%;float:left;}
.item-publish .row.address {width:calc(100% - 120px);padding-right:16px;float:left;}
.item-publish .row.zip {width:120px;float:left;}
.item-publish .row.cityarea, .item-publish .row.user-email {max-width:360px;}
.item-publish .row.phone {float:left;width:45%;padding-right:16px;}
.item-publish .row.phone input#contactPhone, .item-publish .row.phone input#sPhone {width:100%;}
.item-publish .row.user-email {float:left;width:55%;}
.item-publish .category select {max-width:360px;margin-bottom:8px;}

/* MODERN CATEGORY TILE UI (flat categories on publish page) */
#flat-cat-fancy .flat-wrap {display:none;}
#flat-cat-fancy .flat-wrap.root {display:block;}

#flat-cat-fancy .flat-wrap .single {display:flex;align-items:center;gap:12px;padding:12px 12px;border:1px solid rgba(0,0,0,0.08);border-radius:12px;background:#fff;color:#111;font-weight:800;font-size:14px;line-height:1.25;margin:0 0 10px 0;cursor:pointer;transition:0.18s;}
#flat-cat-fancy .flat-wrap .single:hover {border-color:rgba(0,0,0,0.18);box-shadow:0 10px 26px rgba(0,0,0,0.08);}

#flat-cat-fancy .flat-wrap .single.info {cursor:default;background:transparent;border:0;padding:0;margin:0 0 12px 0;box-shadow:none;font-weight:900;}
#flat-cat-fancy .flat-wrap .single.info:hover {border:0;box-shadow:none;}

#flat-cat-fancy .flat-wrap .single.info .back {margin-left:auto;display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;border:1px solid rgba(0,0,0,0.10);background:rgba(0,0,0,0.04);font-weight:900;font-size:13px;line-height:16px;}
#flat-cat-fancy .flat-wrap .single.info .back i {font-size:16px;line-height:16px;}

#flat-cat-fancy .flat-wrap .single .parent-icon {width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex:0 0 44px;}
#flat-cat-fancy .flat-wrap .single .parent-icon i {font-size:18px;line-height:18px;}

#flat-cat-fancy .flat-wrap .single.selected {border-color:rgba(0,0,0,0.24);box-shadow:0 0 0 3px rgba(0,0,0,0.06);}

.item-publish .category-box.tr1 {display:flex;flex-wrap:wrap;gap:10px;margin:6px 0 12px 0;}
.item-publish .category-box.tr1 .option.tr1 {width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 10px rgba(0,0,0,0.06);border:1px solid rgba(0,0,0,0.08);}
.item-publish .category-box.tr1 .option.tr1 i {font-size:18px;line-height:18px;}
.item-publish .seller .input-box-check {margin:-10px 0 20px 0;}
.item-publish .link-update {display:inline-block;margin:8px 0 2px 0;font-weight:500;}
.item-publish .link-update.location {margin-top:0;}
.item-publish section.info .in {padding-bottom:0;}
.item-publish #plugin-hook {margin:0 0 16px 0;}
.item-publish #plugin-hook:empty {display:none;}
.item-publish .buttons-block button.btn {font-size:17px;height:48px;padding:13px 15px;width:100%;}
.item-publish .show-tip {transition:0.2s;float: right; padding: 7px; margin: -6px;cursor:pointer; border-radius: 5px; background: rgb(59 73 223 / 10%); color: #2f3ab2;}
.item-publish .show-tip:hover {box-shadow:0 1px 3px rgba(0,0,0,0.2);}
.item-publish .close-tip {transition:0.1s;cursor:pointer;transition:0.2s;position: absolute; right: 6px; top: 9px; padding: 5px; background: rgba(0,0,0,0.15); width: 24px; height: 24px; font-size: 14px; text-align: center; border-radius: 6px; color: rgba(255,255,255,0.85);}
.item-publish .close-tip:hover {color:#fff;background:rgba(0,0,0,0.25);}
.item-publish .tip {z-index:1;display:none;position:absolute;left:100%;top:0;margin-left:16px;width:220px;background:#3b49df;color:#fff;font-size:14px;line-height:1.4;text-align:left;padding:16px 16px 8px 16px;border-radius:5px;box-shadow:2px 2px 6px rgba(0,0,0,0.1);}
.item-publish .tip p {margin:0 0 8px 0;}
.item-publish .tip p:last-child {margin-bottom:2px;}
.item-publish .tip p strong {padding-right:24px;display:inline-block;}
.item-publish input#price {max-width:360px;padding-left:94px;}
.item-publish .enter.disable input#price {color:transparent;transition:0s;}
.item-publish select#currency {position: absolute; width: 80px; font-size: 14px; font-weight: 500; letter-spacing: -0.2px; border-radius: 4px 0 0 4px; left: 5px; top: 5px; height: 30px; padding: 0 2px; border: none; border-right: 1px solid #ccc;}
.item-publish .or {margin:0 0 20px 0;color:#888;}
.item-publish .or:before, .item-publish .or:after {display:inline-block;width:80px;border-top:1px solid #ccc;content:"";vertical-align: 3px;}
.item-publish .or span {margin:0 10px;display:inline-block;font-style:italic;}
.item-publish .selection a {display:inline-block;margin:0 12px 10px 0;padding:6px 10px;font-size:14px;height:34px;}
.item-publish .status-wrap {margin:25px 0 6px 0;display:inline-block;}
.item-publish .status-wrap .transaction {width:auto;max-width:50%;padding-right:12px;float:left;}
.item-publish .status-wrap .condition {width:auto;max-width:50%;float:left;}
.item-publish select.mini {font-weight:500;font-size:13px;background:rgb(59 73 223 / 6%);color:rgba(0,0,0,0.8);}
.item-publish .row.name, #user-dashboard .headers {padding-left:82px;position:relative;}
.item-publish .img-container, .body-ua .img-container {transition:0.2s;position:absolute;left:0;top:1px;width:66px;height:66px;border-radius:100px;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,0.15);}
.item-publish .img-container:hover, .body-ua .img-container:hover {box-shadow:0 1px 10px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.15);}
.item-publish .img-container img, .body-ua .img-container img {width:66px;height:66px;max-width:66px;max-height:66px;object-fit:cover;}
.item-publish .img-container svg, .body-ua .img-container svg {position:absolute;bottom:0;left:0;width:100%;height:24px;background:rgba(0,0,0,0.7);fill:#fff;padding:4px 0 5px 0;}

#plugin-hook .row {margin:0 0 16px 0;display:inline-block;}
#plugin-hook h2, #plugin-hook h3, #plugin-hook h4 {font-weight: 500; font-size: 17px; line-height: 1.2;margin:0 0 4px 0;padding:0;}
#plugin-hook input[type="checkbox"] {width:18px;height:18px;margin:0 5px 0 0;float:left;border-radius:4px;}
#plugin-hook input[type="checkbox"] + label {width:auto;line-height:18px;font-weight:normal;text-align:left;margin:0;}
#plugin-hook #power {width:calc(100% - 120px);margin-right:12px;max-width:200px;float:left;}
#plugin-hook #power_unit {width:100px;margin-right:12px;float:left;}
#plugin-hook .car-attr-post input, #plugin-hook .car-attr-post select {max-width:360px;}
#plugin-hook .meta, #plugin-hook .row, #plugin-hook p, #plugin-hook .control-group {display:inline-block;width:100%;margin:0 0 12px 0;}
#plugin-hook .row._20 + .row._20 {margin-top:-12px;}
#plugin-hook input[type="checkbox"], #plugin-hook input[type="radio"] {float:left;width:16px!important;height:16px!important;margin:0 4px 6px 0;clear:both;}
#plugin-hook input[type="checkbox"] + label, #plugin-hook input[type="radio"] + label {float:left!important;clear:none;width:auto;max-width:calc(100% - 24px);font-weight:600;line-height:16px;}
#plugin-hook input[type="text"], #plugin-hook input[type="password"], #plugin-hook input[type="email"],#plugin-hook input[type="url"], #plugin-hook input[type="number"], #plugin-hook input[type="tel"], #plugin-hook select {width:auto;height:36px;padding:4px 8px;min-width:100px;}
#plugin-hook select {padding:0 6px;}
#plugin-hook .vrool-promote-form select {min-width:32px;}
#plugin-hook textarea {padding:6px;width:auto;min-width:80%;max-width:100%;}
#plugin-hook .tabberlive .tabbertab {padding-bottom:4px;}
#plugin-hook .row._20 > label:first-child {display:inline-block;width:auto;margin:0;line-height:16px;}
#plugin-hook .jobs-attributes > .row:first-child {margin-bottom:0;}
#plugin-hook .controls ul, #plugin-hook .controls li {display:inline-block;width:100%;}
#plugin-hook .atr-select-deselect, #plugin-hook .atr-select-all {margin-bottom:4px;font-size:13px;}
#plugin-hook input[type="checkbox"] + label, #plugin-hook input[type="radio"] + label {width:auto;}
#plugin-hook table.product-attributes {border-spacing:0;}
#plugin-hook .product-attributes td {display:block;width:100%;}

/* IMAGE UPLOADER */
.upload-photos .sub-label {display:inline-block;width:100%;margin:0 0 16px 0;font-style:italic;color:#777;}
.upload-photos .qq-uploader {width:100%;padding:90px 0 0 0;}
.upload-photos .qq-upload-drop-area, .upload-photos .qq-upload-extra-drop-area {border-radius:5px;transition:0.1s;z-index:4;background:rgb(59 73 223 / 10%);}
.upload-photos .qq-upload-drop-area.qq-upload-drop-area-active {z-index:4;box-shadow:0 2px 12px 2px rgba(0,0,0,0.35);background:rgb(9 174 64 / 10%);}
.upload-photos .qq-upload-button {transition:0.1s;cursor:pointer;opacity:1;font-size:15px;outline:none;border:none;z-index:3;color:#111;border:1px solid #171717;font-size:15px;font-weight:bold;background:transparent;text-align:center;position:absolute!important;left:0px;top:0px;max-width:100%;width:100%;padding:20px;border-radius:20px;}
.upload-photos .qq-upload-button:before {display:inline-block;content:"\f030";font-size:30px;font-family:"Font Awesome 5 Free";vertical-align: -4px; margin-right: 8px;}
.upload-photos .qq-upload-button > div {display:inline-block;}
.upload-photos .qq-upload-button:hover {box-shadow:0 0 0 1px #3b49df;border-color:#3b49df;color:#3b49df;}
.upload-photos .qq-upload-button input[type="file"] {font-size:14px!important; position: absolute; left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%; min-width: 0; max-width: 100%; min-height: 0; max-height: 100%; }
.upload-photos .qq-upload-button input[type="file"]::-webkit-file-upload-button {cursor:pointer;}
.upload-photos .qq-upload-drop-area span {display:none;}
.upload-photos .qq-upload-list {display: grid;grid-template-columns: 1fr 1fr 1fr; column-gap: 10px; row-gap: 10px;width:100%;clear:both;position:relative;z-index:3;padding-top:10px;}
.upload-photos .qq-upload-list:empty {display:none;}
.upload-photos .qq-upload-list li {overflow:hidden;text-overflow:ellipsis;border:1px solid #c0c0c0;box-shadow:0 2px 5px rgba(0,0,0,0.1);font-size:13px;position:relative;float: left; width: 100%; margin:0; border-radius: 5px; background: #fff;padding:12px;min-height:160px;}
.upload-photos .qq-upload-file {color:#111;display:inline-block;width:100%;font-size:14px;line-height:16px;font-weight:500;padding:0;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.upload-photos .qq-upload-delete {opacity:0;transition:0.1s;position:absolute;right:5px;top:5px;margin:0;color:transparent;width:30px;height:30px;overflow:hidden;}
.upload-photos .qq-upload-rotate {opacity:0;transition:0.1s;position:absolute;top:5px;left:5px;width:30px;height:30px;font-size:14px;line-height:30px;padding:0;text-align:center;border-radius:100px;}
.upload-photos .qq-upload-rotate i {text-align:center;line-height:30px;display:inline-block;color:#fff;}
.upload-photos .qq-upload-rotate:hover, .upload-photos li:hover .qq-upload-rotate:hover {transform:rotate(30deg);}
.upload-photos .qq-upload-rotate-img {display:none!important;}
.upload-photos li:hover .qq-upload-delete, .upload-photos li:hover .qq-upload-rotate {opacity:1;}
.upload-photos .qq-upload-delete:before {cursor:pointer;display:block;border-radius:100px;font-family:"Font Awesome 5 Free";content:"\f1f8";width:30px;height:30px;line-height:30px;text-align:center;font-size:14px;color:#fff;background:#111;}
.upload-photos .qq-upload-delete:before {cursor:pointer;display:block;border-radius:100px;font-family:"Font Awesome 5 Free";font-weight:900;content:"\f1f8";width:30px;height:30px;line-height:30px;text-align:center;font-size:14px;color:#fff;background:#111;}
.upload-photos .qq-upload-delete:hover:before {background:#444;}
.upload-photos .ajax_preview_img {display:inline-block;width:100%;float:left;margin-top:4px;clear:both;overflow:hidden;padding-top:80%;position:relative;background-color:#f3f4f6;background-image:linear-gradient(45deg, rgba(0,0,0,0.06) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.06) 75%, rgba(0,0,0,0.06)),linear-gradient(45deg, rgba(0,0,0,0.06) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.06) 75%, rgba(0,0,0,0.06));background-size:16px 16px;background-position:0 0,8px 8px;border-radius:4px;}
.upload-photos .ajax_preview_img img {position:absolute;left:0;top:0;width:100%;height:100%;max-width:inherit;max-height:inherit;object-fit: contain;}
.upload-photos .qq-upload-list li.qq-upload-success {background-color:#fff!important;color:#111!important;border-color:#00ba76!important;border-width:2px!important;}
.upload-photos .qq-upload-list li.qq-upload-success .qq-upload-file {color:#111!important;}

@media (max-width: 767px) {
  body.item-publish,
  body.item-publish .content,
  body.item-publish form[name="item"] {
    overflow: visible;
  }

  body.item-publish .content {
    padding-bottom: 180px;
  }

  body.item-publish form[name="item"] {
    display: block;
    min-height: 0;
    padding-bottom: 140px;
  }

  body.item-publish .box,
  body.item-publish .box section,
  body.item-publish .box section .in,
  body.item-publish #post-hooks,
  body.item-publish #plugin-hook {
    overflow: visible;
  }

  body.item-publish #navi-bar {
    z-index: 30;
  }

  body.item-publish .footer-mobile-toggle {
    bottom: 104px;
    z-index: 31;
  }

  body.item-publish #scroll-to-top {
    bottom: 112px;
    z-index: 31;
  }
}
.upload-photos .qq-upload-list li.qq-upload-success .qq-upload-size {color:rgba(0,0,0,0.65)!important;}
.upload-photos .qq-upload-size {display:inline-block!important;width:100%;padding:0;margin:0 0 6px 0;font-size:11px;color:#999;line-height:13px;}
.upload-photos .qq-upload-spinner {position:absolute;top:50%;left:50%;margin:-16px 0 0 -16px;width:32px;height:32px;display:block;background:transparent url('../images/loader.gif') no-repeat center center;background-size:32px;}
.upload-photos .qq-upload-cancel, .upload-photos .qq-upload-retry {margin:3px 0;padding:0;text-align:center;}
.upload-photos .qq-progress-bar {margin:5px 6px;width:calc(100% - 12px);}
.upload-photos .qq-upload-status-text {margin:0;padding:0;font-size:13px;font-weight:bold;display:inline-block;width:100%;}
.upload-photos .qq-upload-status-text:empty {display:none;}
.upload-photos div[id*='p-'] {display:none!important;}
.upload-photos .primary_image {opacity:0;transition:0.1s;position:absolute;left:44px;top:5px;margin:0;color:transparent;width:30px;height:30px;overflow:hidden;}
.upload-photos li:first-child .primary_image {display:none;}
.upload-photos li:hover .primary_image {opacity:1;}
.upload-photos .primary_image:before {cursor:pointer;display:block;border-radius:100px;font-family:"Font Awesome 5 Free";content:"\f08d";width:30px;height:30px;line-height:30px;text-align:center;font-size:14px;color:#fff;background:#e00909;font-weight:900;}
.upload-photos .primary_image:hover:before {background:#e04c4c;}
.upload-photos h3 {display: inline-block; margin: 20px 0 10px 0; font-size: 16px; line-height: 18px;}
.upload-photos > .qq-upload-list {padding:0; border: none;background:#fff;}
.upload-photos > .qq-upload-list li { background: #eaeaea; font-size: 0; border: 1px solid rgba(0,0,0,0.1); box-shadow: 1px 1px 5px rgba(0,0,0,0.05); }


/* TABBER */
.tabberlive .tabbertab.tabbertabhide {display:none;}
.tabberlive {margin: 5px 0 5px 0;width:100%;}
ul.tabbernav {margin:0;padding:0;font-size:14px;border-bottom:3px solid #ccc;}
ul.tabbernav li {list-style: none;margin: 0;display: inline;}
ul.tabbernav li a {padding: 8px 4px 5px 4px;color:#000;margin-bottom:-3px;margin-right:5px;border-bottom:3px solid transparent;text-decoration: none;display:inline-block;}
ul.tabbernav li a:hover {border-bottom:3px solid #666;}
ul.tabbernav li.tabberactive a {font-weight:bold;border-bottom:3px solid #666}
ul.tabbernav li.tabberactive a:hover {}
.tabberlive .tabbertab {padding: 10px 0px;border:none;display:inline-block;width:100%}
.tabberlive .tabbertab h2 {display:none;}
.tabberlive .tabbertab h3 {display:none;}
.tabberlive .tabbertab ul {width:100%;display:inline-block;padding:0;}
.tabberlive .tabbertab ul li {width:100%;display:inline-block;margin:0 0 5px 0;}
.tabberlive .tabbertab ul li input[type="text"] {margin-right:5px;}
.tabberlive > button {margin-top:10px;}


/* STATIC PAGE */
body#page {background:#f8fafc;}

/* Hero */
.vr-page-hero {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: 48px 20px 44px;
  text-align: center;
}
.vr-page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.vr-page-hero-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

/* Page wrapper */
.vr-page-wrapper {
  max-width: 780px;
  margin: -24px auto 40px;
  padding: 0 16px;
}

/* Content card */
.vr-page-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Body text */
.vr-page-body {
  padding: 36px 40px 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}
.vr-page-body h1 {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #059669;
}
.vr-page-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
.vr-page-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 24px 0 8px;
}
.vr-page-body h4, .vr-page-body h5, .vr-page-body h6 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 6px;
}
.vr-page-body p {
  margin: 0 0 14px;
}
.vr-page-body a {
  color: #059669;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vr-page-body a:hover {
  color: #047857;
}
.vr-page-body ul, .vr-page-body ol {
  margin: 8px 0 16px 0;
  padding-left: 24px;
}
.vr-page-body li {
  margin: 0 0 6px;
  padding-left: 4px;
}
.vr-page-body ul li::marker {
  color: #059669;
}
.vr-page-body strong, .vr-page-body b {
  font-weight: 700;
  color: #0f172a;
}
.vr-page-body hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 24px 0;
}
.vr-page-body blockquote {
  margin: 16px 0;
  padding: 14px 20px;
  background: #f0fdf4;
  border-left: 4px solid #059669;
  border-radius: 0 8px 8px 0;
  color: #1e293b;
  font-style: normal;
}
.vr-page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.vr-page-body table th {
  background: #f1f5f9;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid #e2e8f0;
  color: #0f172a;
}
.vr-page-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
}
.vr-page-body table tr:hover td {
  background: #fafafa;
}
.vr-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 12px 0;
}

/* Footer */
.vr-page-footer {
  padding: 20px 40px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.vr-page-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.vr-page-footer-inner span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}
.vr-page-contact-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #059669;
  color: #fff !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.vr-page-contact-btn:hover {
  background: #047857;
}

/* Responsive */
@media (max-width: 640px) {
  .vr-page-hero {
    padding: 32px 16px 28px;
  }
  .vr-page-hero-title {
    font-size: 24px;
  }
  .vr-page-wrapper {
    margin-top: -16px;
  }
  .vr-page-body {
    padding: 24px 20px 20px;
  }
  .vr-page-footer {
    padding: 16px 20px;
  }
  .vr-page-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Legacy compat — keep old selectors working */
#page .page-text.container {flex-direction: column;}
#page #breadcrumbs.container, #page .page-text.container {max-width:640px;}
#page .page-text h1 {margin:0 0 20px 0;}
#page .page-text h2, #page .page-text h3, #page .page-text h4, #page .page-text h5, #page .page-text h6 {margin:0 0 12px 0;}
#page .page-text section.text {margin:0 0 20px 0;min-height:200px;font-size:15px;line-height:22px;}
#page .page-text section.bottom {font-weight:bold;margin:0 0 30px 0;padding:20px 0 0 0;border-top:1px solid #ccc;}


/* LOGIN, REGISTER, RECOVER, FORGOT, CONTACT */
body.pre-account {background:#fff;font-size:16px;}
.pre-account .content {padding:35px 0;}
.pre-account:not(.has-footer) .content {min-height: calc(100vh - 120px);}
.pre-account h1 {margin:0 0 20px 0;}
.pre-account input[type="text"], .pre-account input[type="password"], .pre-account input[type="email"], .pre-account select {height:48px;width:100%;font-size:17px;font-weight:normal;padding:13px 12px;}
.pre-account select {padding:0px 12px;}
.pre-account input[type="file"] {width:100%;font-size:15px;}
.pre-account textarea {min-height:48px;width:100%;font-size:17px;font-weight:normal;padding:13px 12px;}
.pre-account a.alt-action {margin:0 0 20px 0;display:block;}

@keyframes epsPulseRegisterLink {
  0% {opacity:1; transform:translateZ(0) scale(1); text-shadow:0 0 0 rgba(16,185,129,0);}
  50% {opacity:1; transform:translateZ(0) scale(1.02); text-shadow:0 0 18px rgba(16,185,129,0.25);}
  100% {opacity:1; transform:translateZ(0) scale(1); text-shadow:0 0 0 rgba(16,185,129,0);}
}

.pre-account a.alt-action.vrool-pulse-register {
  animation: epsPulseRegisterLink 1.6s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .pre-account a.alt-action.vrool-pulse-register {animation:none;}
}

.pre-account a.alt-action2 {margin:25px 0 0 0;display:block;font-size:14px;}
.pre-account .box {width:100%;max-width:420px;margin:0 0 10px 0;}
.pre-account .social {margin:4px 0 10px 0;display:inline-block;width:100%;}
.pre-account .social a {transition:0.2s;text-decoration:none;font-weight:600;background:transparent;color:#171717;border:2px solid #333;padding:10px;font-size:16px;border-radius:6px;margin:0 0 12px 0;display: flex; justify-content: center; align-items: center; flex-direction: row;}
.pre-account .social a i {margin-right:10px;font-size:22px;}
.pre-account .social a:hover {text-decoration:none;box-shadow:0 0 6px 1px rgba(0,0,0,0.25);}
.pre-account .social a.facebook {color:#1877F2;border-color:#1877F2;}
.pre-account > .content > section.container {position:relative;min-height: 430px; align-items: center; justify-content: center;}
.pre-account > .content > section.container > .box {position:relative;z-index:2;}
.pre-account > .content > section.container:after {content:"";position:absolute;right:0;top:0;width:680px;height:100%;z-index:1;opacity:0.6;background-size:contain;background-position:center right;background-repeat:no-repeat;}
.pre-account > .content > section.container:after {background-image:none;}
.pre-account.contact > .content > section.container:after {background-image:none;}
.pre-account section.promo, .pre-account #breadcrumbs, .pre-account:not(.has-footer) footer section.one > .col {display:none;}
.pre-account:not(.has-footer) footer section.one {padding:0;margin:0;}
.pre-account label {margin:0 0 2px 0;width:100%;display:inline-block;}
.pre-account .content .btn {font-size:17px;height:48px;padding:13px 15px;width:100%;}
.pre-account .input-box-check {margin:0 0 20px 0;}
.pre-account:not(.has-footer) footer {padding:20px 0 12px 0;height:60px;}
.pre-account:not(.has-footer) footer section.two {margin:0;padding:0;border:none;font-size:14px;}

body#contact.pre-account .box {max-width:560px;}
body#contact.pre-account .box h1 {margin-bottom:8px;}
body#contact.pre-account .box .vrool-contact-desc {font-size:14px;line-height:1.45;font-weight:700;color:rgba(15,23,42,0.65);margin:0 0 18px 0;}
body#contact.pre-account .box {border-radius:18px;border:1px solid rgba(2,6,23,0.10);background:#fff;box-shadow:0 18px 50px rgba(2,6,23,0.08);padding:22px;}
body#contact.pre-account > .content > section.container {min-height:0;padding:38px 0 48px 0;}

body#contact.pre-account .vrool-auth-actions {display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px;margin-top:10px;}
body#contact.pre-account .vrool-auth-actions .btn {height:46px;padding:12px 14px;border-radius:14px;font-weight:1000;box-shadow:none;}
body#contact.pre-account .vrool-auth-actions .btn.mbBg2 {box-shadow:0 14px 36px rgba(0,186,118,0.20);}
body#contact.pre-account .vrool-auth-actions .btn:not(.mbBg2) {background:#fff;border:1px solid rgba(2,6,23,0.12);color:#0f172a;}
body#contact.pre-account .vrool-auth-actions .btn:not(.mbBg2):hover {background:rgba(15,23,42,0.04);}

@media (max-width: 520px) {
  body#contact.pre-account .vrool-auth-actions {grid-template-columns:1fr;}
}
body#contact.pre-account form[name="contact_form"] {display:flex;flex-direction:column;gap:10px;}
body#contact.pre-account form[name="contact_form"] .row {margin:0;}
body#contact.pre-account form[name="contact_form"] label {font-size:13px;line-height:16px;font-weight:900;color:#0f172a;margin:0 0 4px 0;}
body#contact.pre-account form[name="contact_form"] .input-box {border-radius:14px;border:1px solid rgba(2,6,23,0.12);background:rgba(255,255,255,0.92);box-shadow:0 10px 30px rgba(2,6,23,0.06);overflow:hidden;}
body#contact.pre-account form[name="contact_form"] .input-box input,
body#contact.pre-account form[name="contact_form"] .input-box textarea,
body#contact.pre-account form[name="contact_form"] .input-box select {border:none!important;background:transparent!important;box-shadow:none!important;outline:none!important;padding:14px 14px!important;font-size:15px!important;}
body#contact.pre-account form[name="contact_form"] .input-box input,
body#contact.pre-account form[name="contact_form"] .input-box textarea,
body#contact.pre-account form[name="contact_form"] .input-box select {padding:10px 12px!important;}
body#contact.pre-account form[name="contact_form"] .input-box textarea {min-height:72px;resize:vertical;}
body#contact.pre-account form[name="contact_form"] button[type="submit"] {height:42px;border-radius:14px;font-weight:1000;box-shadow:0 14px 36px rgba(0,186,118,0.25);}
body#contact.pre-account form[name="contact_form"] button[type="submit"]:disabled {opacity:0.7;box-shadow:none;}


/* BREADCRUMBS */
#breadcrumbs {display:none !important;}
ul.breadcrumb {display:inline-block;width:100%;margin:20px 0;line-height:16px;font-size:14px;color:#474747;}
ul.breadcrumb li {display:inline-block;}
ul.breadcrumb li > span {position:relative;}
ul.breadcrumb a {color:#171717;font-weight:600;}
ul.breadcrumb li b {font-weight:600;}
body#item #breadcrumbs, body#public #breadcrumbs {display: flex; flex-direction: row; justify-content: space-between; align-items: center;}
ul.breadcrumb span.home svg {height: 14px; float: left; margin: 0 5px 0 0;}

body#item #breadcrumbs {justify-content:flex-start;}
body#item #breadcrumbs ul.breadcrumb {text-align:left;}

body#item #breadcrumbs .bread-text {margin-left:-17px;}

@media (max-width: 767px) {
  body#item #breadcrumbs .bread-text {margin-left:3px;}
}

body#item #breadcrumbs .navlinks {margin-left:auto;margin-right:-16px;}

body#item #breadcrumbs .navlinks a {font-size:12px;line-height:16px;padding:6px 10px;gap:8px;box-shadow:0 6px 16px rgba(2, 6, 23, 0.06);}
body#item #breadcrumbs .navlinks a i {font-size:18px;}
body#item #breadcrumbs .navlinks a svg {height:18px;}


/* NAVLINKS */
.navlinks {display:flex;flex-wrap:wrap;gap:10px;align-items:center;white-space:nowrap;}
.navlinks a {white-space:nowrap;border:1px solid rgba(148, 163, 184, 0.70);background:rgba(255,255,255,0.70);transition:0.15s;font-size:14px;line-height:18px;font-weight:600;border-radius:999px;margin:0;padding:9px 14px;color:#111827;display:inline-flex;align-items:center;gap:10px;box-shadow:0 8px 22px rgba(2, 6, 23, 0.06);}
.navlinks a:hover {border-color:rgba(16,185,129,0.55);text-decoration:none;background:#fff;transform:translateY(-1px);box-shadow:0 12px 26px rgba(2, 6, 23, 0.10);}
.navlinks a i {display:inline-block;font-size:22px;line-height:1;opacity:0.92;}
.navlinks a svg {display:inline-block;width:auto;height:22px;opacity:0.92;}

@media (min-width: 768px) and (max-width: 1366px) {
  .navlinks {gap:6px!important;flex-wrap:nowrap!important;margin-top:15px!important;}
  .navlinks a {font-size:13px!important;line-height:16px!important;padding:6px 10px!important;gap:6px!important;box-shadow:0 6px 16px rgba(2, 6, 23, 0.06)!important;flex:1 1 0!important;min-width:0!important;justify-content:center!important;}
  .navlinks a i {font-size:18px!important;}
  .navlinks a svg {height:18px!important;}
}

body[data-theme="dark"] .navlinks a {
  background: rgba(2, 6, 23, 0.35);
  border-color: rgba(255,255,255,0.12);
  color: rgba(229, 231, 235, 0.92);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

body[data-theme="dark"] .navlinks a:hover {
  background: rgba(2, 6, 23, 0.55);
  border-color: rgba(16,185,129,0.55);
}

  /* HEADER */
 header {position:fixed;top:0;left:0;width:100%;height:60px;z-index:5;box-shadow:0 2px 3px rgba(0,0,0,0.1), 0 1px 0 0 rgba(0,0,0,0.1);backdrop-filter: blur(6px); background: rgba(255,255,255,0.8);}
 header .container {height:100%;}
 header .logo {display:inline-flex;font-weight:bold;font-size:18px;color:#171717;line-height:18px;margin-left:0;}
 header .logo img {height:34px;object-fit: contain;}
 header .links {display:flex;margin-left:auto;flex-direction: row-reverse; flex-wrap: wrap;max-width: calc(100% - 200px);justify-content: end;overflow:hidden;height:40px;align-items:center;}
 header .links .publish {margin-left:12px;}
 header .links .publish.mini {display:none;}

@media (max-width: 767px) {
  header {
    height: 64px;
  }

  header .container.main.cmain {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-left: 14px;
    padding-right: 14px;
    position: relative;
  }

  header .menu.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 10px;
    flex: 0 0 42px;
    position: relative;
    z-index: 2;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  header .menu.btn.isMobile {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  header .menu.btn.isMobile:hover {
    background: rgba(15, 23, 42, 0.05) !important;
  }

  header .menu.btn svg {
    width: 26px;
    height: 26px;
    margin: 0;
    fill: #4b5563 !important;
  }

  header .menu.btn img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
    display: block;
    max-width: none;
    margin: 0 !important;
    filter: brightness(0) saturate(100%) invert(31%) sepia(11%) saturate(911%) hue-rotate(182deg) brightness(94%) contrast(89%) !important; /* Approx #4b5563 */
  }

  header .menu.btn.isMobile:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(15%) saturate(1200%) hue-rotate(185deg) brightness(90%) contrast(95%) !important; /* Darker on hover */
  }

  header .logo {
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  header .logo img,
  header .site-logo img,
  header #site-logo-img {
    height: 34px;
    max-width: 132px;
  }

  header .links {
    display: flex !important;
    margin-left: auto;
    flex: 0 0 auto;
    max-width: none;
    height: auto;
    overflow: visible;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  header .links .btn {
    display: none !important;
  }

  header .links .publish.btn:not(.mini) {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    padding: 0 14px;
    margin-left: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600 !important;
    line-height: 40px;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(0, 186, 118, 0.22);
    white-space: nowrap;
  }

  header .links .publish.btn:not(.mini) img.hicon {
    width: 18px;
    height: 18px;
    display: inline-block;
    margin: 0;
  }

  header .links .publish.mini {display:none!important;}
  header .links .forum.btn,
  header .links .social.btn {display:none!important;}
  header .links .hide-mobile {display:none!important;}
  header .links .search.btn {display:none!important;}
 }
 header .links .btn-white, header .menu.btn-white {font-size:13px;font-weight:400;color:#606060;padding:9px 10px;line-height:18px;}
header .links .btn {white-space: nowrap;position:relative;font-weight:400 !important;display:inline-flex;align-items:center;}
header .links .btn.account img {width: 32px; height: 32px; margin:-6px 5px -6px -6px; float:left;object-fit:cover;border-radius:100px;box-shadow:0 1px 1px rgba(0,0,0,0.2);}
header .links .btn.location {max-width: 150px; overflow: hidden; text-overflow: ellipsis;}
header .links .btn.location.active:after {content: ""; width: 9px; height: 9px; border-radius: 10px; background: #3b49df; position: absolute; top: 7px; left: 8px;box-shadow:0 0 0 1px #fff;}
 header .links .btn .counter {position: absolute; left: 2px; top: 4px;box-shadow:0 0 0 1px #fff; height: 16px; min-width: 16px; line-height: 16px; padding: 0 3px; border-radius: 100px; z-index: 2; background: #3b49df; color: #fff; font-size: 10px; font-weight: 600;}

 body.pre-account header .links .btn-white,
 body.pre-account header .menu.btn-white,
 body.pre-account header .links .btn {font-weight:300;}
header .links .btn .counter {position: absolute; left: 2px; top: 4px;box-shadow:0 0 0 1px #fff; height: 16px; min-width: 16px; line-height: 16px; padding: 0 3px; border-radius: 100px; z-index: 2; background: #3b49df; color: #fff; font-size: 10px; font-weight: 600;}
header .links .btn svg, header .menu.btn svg {width:auto;height:20px;fill:#fff;margin-right:6px;vertical-align:middle;}
header .links .btn-white svg, header .menu.btn-white svg {fill:#606060;}
header .links .btn img.hicon {width:24px;height:24px;object-fit:contain;display:inline-block;margin:0 8px 0 0;vertical-align:middle;}
header .links .btn.noicon img.hicon {width:22px;height:20px;object-fit:contain;display:inline-block;margin:0 10px 0 0;vertical-align:middle;}
header .links .blog.btn.noicon img.hicon,
header .links .forum.btn.noicon img.hicon {width:24px;height:24px;}
header .links .social.btn.noicon img.hicon {width:28px;height:28px;}
header .links .social.btn.noicon {position:relative;top:0;}
header .links .favorite.btn img.hicon {width:19px;height:19px;}
header .links .messages.btn img.hicon {width:19px;height:19px;}
header .links .btn-white.messages svg {vertical-align:-4px;height:17px;}
header .links .btn-white:hover {color:#3b49df;}
header .links .btn-white:hover svg, header .menu.btn-white:hover svg {fill:#3b49df;}
header .links .btn.noicon {padding:9px 8px;}
header .links .divider {height:40px;margin:0 5px;}
header .links .maccount {padding:0;margin:2px 0 2px 8px;height:36px;border-radius:100px;}
header .links .maccount img.hicon {width:36px;height:36px;margin:0;}
header .links .maccount img {width:36px;height:36px;object-fit:cover;border-radius:100px;box-shadow:0 1px 2px rgba(0,0,0,0.15);}
header .links .account.btn img.hicon {width:19px;height:19px;}
header .links .btn.account img.hicon {margin:0 6px 0 0;float:none;object-fit:contain;border-radius:0;box-shadow:none;display:inline-block;vertical-align:-3px;}
header .links .wallet.btn img.hicon {filter:brightness(0.45);}
header .links .location.btn img.hicon {width:19px;height:19px;}
header .links .publish.btn img.hicon {width:23px;height:23px;margin:0;filter:none;}
header .links .search {width:36px;height:36px;padding:7px 5px;border-radius:100px;}
header .links .search svg {width:20px;height:20px;}

/* Green Mode Toggle Button */
header .links .vrool-green-toggle {
  width:36px;height:36px;padding:7px !important;border-radius:10px;
  background:rgba(5,150,105,0.08);border:1px solid rgba(5,150,105,0.18);
  cursor:pointer;transition:all 0.2s ease;
}
header .links .vrool-green-toggle:hover {
  background:rgba(5,150,105,0.15) !important;border-color:rgba(5,150,105,0.35) !important;
}
header .links .vrool-green-toggle svg {
  width:18px;height:18px;fill:#059669;margin:0 !important;transition:fill 0.2s ease;
}
header .links .vrool-green-toggle.active {
  background:rgba(5,150,105,0.20) !important;border-color:rgba(52,211,153,0.50) !important;
}
header .links .vrool-green-toggle.active svg {fill:#10b981 !important;}

/* Green Mode Footer Toggle Links */
a.disable-green-mode, a.enable-green-mode {
  display:flex;align-items:center;gap:10px;padding:10px 0;
  font-size:14px;font-weight:600;color:inherit;text-decoration:none;cursor:pointer;
}
a.disable-green-mode svg, a.enable-green-mode svg {flex-shrink:0;}

/* Keep green toggle visible on mobile */
@media (max-width: 767px) {
  header .links .vrool-green-toggle.btn {
    display:inline-flex !important;
    width:36px;height:36px;min-width:36px;
    order:-1;
  }
}

@media (min-width: 981px) {
  header .container.cmain {
    max-width:1450px;
    width:100%;
    padding-left:16px;
    padding-right:16px;
    box-sizing:border-box;
    margin-left:auto;
    margin-right:auto;
  }

  header .container.main.cmain {
    max-width:1450px !important;
  }
}

body#search.hybrid-view header .container.cmain,
body#search.hybrid-view header .container.main.cmain {
  max-width:1450px !important;
  width:100% !important;
  padding-left:16px;
  padding-right:16px;
  box-sizing:border-box;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media (max-width: 767px) {
  body#search.hybrid-view header .container.cmain,
  body#search.hybrid-view header .container.main.cmain {
    padding-left:14px;
    padding-right:14px;
  }
}

header .links .publish.btn:not(.mini) {
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:36px;
  padding:0 14px;
  border-radius:12px;
  color:#1a1a1a !important;
  font-weight:600 !important;
  font-size:13px;
  letter-spacing:-0.1px;
  background: transparent;
  border:2px dashed transparent;
  border-image:none;
  position:relative;
  overflow:visible;
  transition:all 0.18s ease;
  animation:none;
  margin-top:0;
}

header .links .publish.btn:not(.mini)::after {
  content:"";
  position:absolute;
  inset:-1.5px;
  border-radius:13px;
  border:1.5px solid transparent;
  background:linear-gradient(90deg, #059669, #14b8a6, #ffffff, #059669, #14b8a6) border-box;
  background-size:300% 100%;
  -webkit-mask:linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask:linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite:exclude;
  animation:sellBorderWave 3s linear infinite;
  pointer-events:none;
  z-index:0;
}

@keyframes sellBorderWave {
  0% { background-position:0% 50%; }
  100% { background-position:300% 50%; }
}

header .links .publish.btn:not(.mini):before {
  content:none;
}

header .links .publish.btn:not(.mini) svg {
  width:16px;
  height:16px;
  margin:0;
  vertical-align:0;
  fill:#ffffff;
  flex:0 0 auto;
}

header .links .publish.btn:not(.mini):hover {
  text-decoration:none;
  background:rgba(0,186,118,0.06);
  transform:translateY(-1px);
  animation:none;
}

header .links .publish.btn:not(.mini):hover::after {
  animation-duration:1.5s;
}

header .links .publish.btn:not(.mini):focus {
  outline:none;
  box-shadow:0 0 0 4px rgba(0,186,118,0.15);
}

@keyframes epsHeaderCtaPulse {
  0% {transform:translateY(0) scale(1);box-shadow:0 0 0 0 rgba(0, 194, 111, 0.22);}
  60% {transform:translateY(-0.5px) scale(1.018);box-shadow:0 0 0 16px rgba(0, 194, 111, 0.0);}
  100% {transform:translateY(0) scale(1);box-shadow:0 0 0 0 rgba(0, 194, 111, 0.0);}
}

@keyframes epsHeaderCtaShine {
  0% {transform:translateX(0) skewX(-18deg);opacity:0.0;}
  20% {opacity:0.55;}
  55% {transform:translateX(220%) skewX(-18deg);opacity:0.0;}
  100% {transform:translateX(220%) skewX(-18deg);opacity:0.0;}
}
header .container.alt {display:flex;background:#fff;position:relative;z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;}
header .container.alt a.back, header .container.alt a.action {margin-right:8px;}
header .container.alt > .img {width:42px;height:36px;object-fit:cover;border-radius:4px;box-shadow:0 1px 3px rgba(0,0,0,0.2);margin-right:4px;}
header .container.alt > .data {font-size:13px;line-height:18px;padding:0 4px;max-width: calc(100% - 48px);width:100%;}
header .container.alt > .img + .data {max-width:calc(100% - 54px);}
header .container.alt .data > strong {font-size:16px;display:flex;}
header .container.alt .data > strong .title {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
header .container.alt .data > strong .price {margin-left:auto;padding-left:10px;white-space: nowrap;max-width:35%;}
header .container.alt .data > div {scrollbar-width: none;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;display: flex; flex-direction: row; flex-wrap: nowrap; overflow-x: auto;}
header .container.alt .data > div::-webkit-scrollbar {display:none;}
header .container.alt .data > div span:after {content: "\2022"; margin: 0 6px 0 6px;}
header .container.alt .data > div span:last-child:after {display:none;}
header .container.alt.csearch {overflow:visible!important;}

header .csearch form { display: flex; margin-left: auto; flex-direction: row; width: calc(100% - 44px); height: 36px; position: relative; }
header .csearch .pattern {width:100%;}
header .csearch input.pattern {font-size:15px;padding:6px 46px 6px 12px;line-height:18px;height:36px;width:100%;border:2px solid #333;border-radius:10px;}
header .csearch input.pattern:focus {border-color:#3b49df;}
header .csearch button {position:absolute;right:4px;top:4px;width:28px;min-width:28px;height:28px;padding:0;margin:0;border-radius:8px;}
header .csearch button i {line-height:28px;font-size:14px;margin:0;}
header a.back, header a.action {height:36px;width:36px;padding:9px 4px;text-align:center;}
header a.back svg, header a.action svg, header a.back i, header a.action i {display:inline-block;margin:0;}
header .container.alt {background:#fff;position:absolute;left:0;width:100%;top:0;height:100%;z-index:2;overflow:hidden;}
header .container.alt.cresults {display:none!important;}

/* FOOTER */
footer {display:block;width:100%;background:#e5e5e5;font-size:15px;line-height:18px;padding:32px 0 24px 0;}
footer h4 {margin:0 0 16px 0;font-weight:700;font-size:18px;}
footer p {margin:0 0 4px 0;}
footer p.logo img {max-height:60px;margin-bottom:8px;padding: 6px; border: 1px solid #aaa; border-radius: 5px; object-fit: contain;filter: grayscale(1);box-shadow: 1px 2px 8px rgb(0 0 0 / 15%);}
footer .container {flex-direction: column;}
footer .company strong {font-weight:600;}
footer section {display:flex;flex-direction: row; flex-wrap: wrap;}
footer section.two {margin:24px 0;padding:24px 0 0 0;border-top:1px solid #ccc;font-size:13px;}
footer section.two a {display:inline-flex;margin-right:15px;font-weight:600;}
footer section.two span {display:flex;margin-left:auto;}
footer .col {flex: 1 1 25%;padding-right:25px;}
footer a {color:#404040;display:block;margin:0 0 8px 0;}
footer a:hover {text-decoration:none;}
footer a.lang img {height:18px;width:24px;border-radius:4px;object-fit: fill;vertical-align: -4px;margin-right:2px;}
footer .social a i {background:#404040;color:#f9f9f9;font-size:13px;line-height:20px;text-align:center;width:20px;height:20px;border-radius:100px;vertical-align: 0px;}
footer .social-icons a {display:inline-flex;align-items:center;gap:8px;}
footer .socialx a svg {height:14px;display:inline-block;fill:#404040;vertical-align: -2px;}
footer .quick-links {margin-top:10px;display:flex;flex-wrap:wrap;gap:6px;}
footer .quick-links a, .latest-search a {transition:0.1s;float:none;display:inline-flex;align-items:center;font-size:11px;line-height:1;font-weight:500;padding:4px 8px;background:rgb(59 73 223 / 10%);margin:0;border-radius:6px;color:#2f3ab2;}
footer .quick-links a:hover {background:rgba(255,255,255,0.6);}
.latest-search a:hover {background:rgb(59 73 223 / 15%);}
footer .footer-hook, footer .footer-widgets {display:block;width:100%;}

footer.vrool-footer {background:transparent;padding:48px 0 10px 0;position:relative;}
footer.vrool-footer .vrool-footer-container {position:relative;flex-direction:column;max-width:1450px;}
footer.vrool-footer .vrool-footer-card {background:#fff;border-radius:26px;box-shadow:0 20px 55px rgba(0,0,0,0.10);border:1px solid rgba(0,0,0,0.06);padding:28px 32px 18px 32px;width:100%;box-sizing:border-box;}
footer.vrool-footer section.one {gap:26px;}
footer.vrool-footer .col {padding-right:0;}
footer.vrool-footer h4 {font-size:14px;line-height:18px;font-weight:700;color:#111;margin:0 0 14px 0;}
footer.vrool-footer p {color:rgba(0,0,0,0.72);font-size:13px;line-height:18px;}
footer.vrool-footer a {color:rgba(0,0,0,0.62);font-size:13px;line-height:18px;margin:0 0 8px 0;}
footer.vrool-footer a:hover {color:rgba(0,0,0,0.88);}
footer.vrool-footer section.two {margin:18px 0 0 0;padding:16px 0 0 0;border-top:1px solid rgba(0,0,0,0.08);font-size:12px;line-height:16px;gap:14px;align-items:center;}
footer.vrool-footer section.two a {margin:0 14px 0 0;font-weight:600;color:rgba(0,0,0,0.55);}
footer.vrool-footer section.two span {color:rgba(0,0,0,0.55);font-size:12px;line-height:16px;}
footer.vrool-footer p.logo img {max-height:42px;margin:0 0 10px 0;padding:0;border:none;border-radius:0;object-fit:contain;filter:none;box-shadow:none;}

footer.vrool-footer .vrool-lang-current {margin:0 0 10px 0;}
footer.vrool-footer .vrool-lang-select {width:100%;max-width:220px;height:40px;border-radius:12px;padding:0 12px;border:1px solid rgba(0,0,0,0.10);background:#f7f8fb;color:#111;font-size:13px;line-height:18px;}
footer.vrool-footer .vrool-lang-select:focus {outline:none;box-shadow:0 0 0 3px rgba(59,73,223,0.18);border-color:rgba(59,73,223,0.35);}

footer.vrool-footer .vrool-footer-watermark {position:relative;display:flex;justify-content:center;align-items:center;margin-top:0;width:100%;overflow:hidden;}
footer.vrool-footer .vrool-footer-watermark {height: clamp(70px, 14vw, 140px);align-items:flex-end;}
footer.vrool-footer .vrool-footer-watermark img {width:min(1100px, 92vw);height:auto;opacity:0.08;display:block;pointer-events:none;user-select:none;transform:translate(10px, 50%);}
footer.vrool-footer .vrool-footer-watermark:after {content:"";position:absolute;left:0;right:0;bottom:0;height:70%;pointer-events:none;background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%);}

@media screen and (min-width: 768px) and (max-width: 1366px) {
  body > .content {padding-bottom:96px;}
}


.vrool-cat-badge{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;font-weight:800;font-size:8px;line-height:9px;letter-spacing:0.2px;padding:2px 7px;border-radius:999px;margin-left:8px;color:#fff;text-shadow:0 1px 1px rgba(0,0,0,0.18);border:1px solid rgba(0,0,0,0.12);position:relative;top:-3px;}
.vrool-cat-badge[data-tooltip]{position:relative;cursor:help;}
.vrool-cat-badge[data-tooltip]::after{content:attr(data-tooltip);position:absolute;left:50%;bottom:calc(100% + 10px);transform:translateX(-50%);width:max-content;max-width:min(340px, 86vw);white-space:pre-line;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .12s ease, visibility .12s ease;z-index:9999;background:rgba(17,24,39,0.96);color:#fff;border:1px solid rgba(255,255,255,0.14);box-shadow:0 18px 40px rgba(0,0,0,0.25);border-radius:12px;padding:10px 12px;font-size:12px;line-height:16px;text-align:left;}
.vrool-cat-badge[data-tooltip]::before{content:"";position:absolute;left:50%;bottom:calc(100% + 4px);transform:translateX(-50%);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .12s ease, visibility .12s ease;z-index:10000;border:6px solid transparent;border-top-color:rgba(17,24,39,0.96);}
.vrool-cat-badge[data-tooltip]:hover::after,.vrool-cat-badge[data-tooltip]:hover::before,.vrool-cat-badge.is-tip-open::after,.vrool-cat-badge.is-tip-open::before{opacity:1;visibility:visible;}
.vrool-cat-badge.vrool-cat-a{background:#dc2626;}
.vrool-cat-badge.vrool-cat-b{background:#f97316;}
.vrool-cat-badge.vrool-cat-c{background:#facc15;color:#111;text-shadow:none;border-color:rgba(0,0,0,0.14);}
.vrool-cat-badge.vrool-cat-s{background:#facc15;color:#111;text-shadow:none;border-color:rgba(0,0,0,0.14);}
.vrool-cat-badge.vrool-cat-n{background:#16a34a;}

@media screen and (max-width: 520px) {
  .vrool-cat-badge[data-tooltip]::after{left:0;transform:none;}
  .vrool-cat-badge[data-tooltip]::before{left:14px;transform:none;}
}


section.promo {display:none;} 
section.promo .container {justify-content:center;align-items:center;gap:14px;flex-wrap:wrap;}
section.promo .btn {margin-left:0;border:1px solid rgba(255,255,255,0.65);background:rgba(255,255,255,0.14);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);border-radius:10px;}
section.promo .btn:hover {color:#e5e7eb;}
body#custom > .content {padding-top:24px;padding-bottom:32px;}
body#custom .container.primary {padding-top:20px;padding-bottom:32px;max-width:min(95%, 1349px) !important;width:100% !important;box-sizing:border-box !important;}
@media (max-width: 767px) {
  body#custom .container.primary {
    padding-left: 12px;
    padding-right: 12px;
    max-width:100% !important;
  }
}
body#custom .content.sec-bpr-seller .container.primary {padding-top:0;padding-bottom:0;}
body#custom #bpr-seller .bpr-inside {margin-top:0;}

/* 404 ERROR PAGE */
body#p404 {background:#fff;}
#p404 header {background: #f7f8fb; background: linear-gradient(to bottom,#f7f8fb 85%,#f0f2f7 100%);}
#p404 header .relative2 {border-bottom:none;}
#p404 footer {margin-top:0;}
#p404 footer .pub-box {display:none;}
#p404 .errbox {width:500px;margin:0 auto 30px auto;}
.error404, .maintenance {text-align:center;padding:50px 0;}
.maintenance h1 {font-size: 38px; line-height:50px;margin:20px 0 30px 0;font-weight: bold;}
.error404 h1 {font-size:32px;color:#363433;line-height:36px;margin:0 0 20px 0;font-weight:bold;}
.maintenance h2 {font-size:22px;color:#444;line-height:24px;margin:0 0 20px 0;font-weight:600;margin-bottom:45px;}
.maintenance .logo {margin-bottom:24px;}
.maintenance .logo img {max-height:80px;}
.error404 h2, .maintenance h3 {font-size:16px;line-height:18px;color:#777;margin:0 0 30px 0;}
.maintenance h3 {font-weight:600;}
.error404 a.btn {display: inline-block; float: none; margin: 0 0 20px 0; padding: 10px 18px; border-radius: 4px; font-size: 14px; font-weight: 500;}
#p404 section.promo {display:none;}
#maintenance.flashmessage {margin: 0; border-radius: 0; border: none; text-align: center; box-shadow: 0 1px 2px 0px rgb(0 0 0 / 25%); background: #ffea9f; padding: 10px; font-family: monospace; font-weight: 600; font-size: 15px;line-height:16px; color: #000;}
body#maintenanc {padding: 20px 12px; display: flex; align-items: center;}

@keyframes eye {0% {height:0.8rem;} 50% {height:0.8rem;} 52% {height:0.1rem;} 54% {height:0.8rem;} 100% {height:0.8rem;}}

.error.errbox {display:flex;flex-direction:row;justify-content:space-between;align-content:center;}
.errbox .number {font-weight:900;font-size:15rem;line-height:1;}
.errbox .illustration {position:relative;width:12.2rem;margin:0 2.1rem;}
.errbox .circle {position:absolute;bottom:0;left:0;width:12.2rem;height:11.4rem;border-radius:50%;background-color:#293b49;}
.errbox .clip {position:absolute;bottom:0.3rem;left:50%;transform:translateX(-50%);overflow:hidden;width:12.5rem;height:13rem;border-radius:0 0 50% 50%;}
.errbox .paper {position:absolute;bottom:-0.3rem;left:50%;transform:translateX(-50%);width:9.2rem;height:12.4rem;border:0.3rem solid #293b49;background-color:#fff;border-radius:0.8rem;}
.errbox .paper:before {content:"";position:absolute;top:-0.5rem;right:-0.65rem;width:1.4rem;height:1rem;background-color:#fff;border-bottom:0.3rem solid #293b49;transform:rotate(45deg);}
.errbox .face {position:relative;margin-top:2.3rem;}
.errbox .eyes {position:absolute;top:0;left:2.4rem;width:4.6rem;height:0.8rem;}
.errbox .eye {position:absolute;bottom:0;width:0.8rem;height:0.8rem;border-radius:50%;background-color:#293b49;animation-name:eye;animation-duration:3s;animation-iteration-count:infinite;animation-timing-function:ease-in-out;left:0;}
.errbox .eye-right {right:0;left:auto;}
.errbox .rosyCheeks {position:absolute;top:1.6rem;width:1rem;height:0.2rem;border-radius:50%;background-color:#fdabaf;left:1.4rem;}
.errbox .rosyCheeks-right {right:1.4rem;left:auto;}
.errbox .mouth {position:absolute;top:3.1rem;left:50%;width:1.6rem;height:0.2rem;border-radius:0.1rem;transform:translateX(-50%);background-color:#293b49;}
.errbox .text {margin-top:5rem;font-weight:300;color:#293b49;}
.errbox .button {margin-top:4rem;padding:1.2rem 3rem;color:#fff;background-color:#04cba0;}
.errbox .button:hover {background-color:#04b892;}
.errbox .by {position:absolute;bottom:0.5rem;left:0.5rem;text-transform:uppercase;color:#293b49;}
.errbox .byLink {color:#04cba0;}

/* MODAL */
.modal-cover {display:none;position:fixed;top:0;left:0;bottom:0;right:0;z-index:100005;background:rgba(0,0,0,0.5);}
#epsModal {display:none;background:#fff;position:fixed;width:640px;height:480px;top:50%;left:50%;transform:translate(-50%, -50%);max-width: calc(100% - 20px); max-height: calc(100% - 20px);z-index:995;box-shadow: 0 5px 30px rgb(0 0 0 / 70%);}
#epsModal.modal-fullscreen {width:auto;height:auto;top:0;left:0;right:0;bottom:0;margin:0;border-radius:0;box-shadow:none;transform:none;max-width:100%;max-height:100%;}
#epsModal .modal-close {display:none;cursor:pointer;border-radius:5px;transition:0.1s;position:absolute;z-index:99;color:#7d8ea0;background: rgba(0,0,0,0.05);text-align:center; box-shadow: 0 0px 1px rgb(0 0 0 / 20%); top: 10px; right: 15px; width: 34px; height: 34px; font-size: 16px;}
#epsModal .modal-close i {line-height:34px;display:inline-block;}
#epsModal .modal-close-alt {position:absolute;top:-7px;right:-50px;width:40px;height:40px;border-radius:6px;cursor:pointer;transition:0.2s;display:flex;}
#epsModal .modal-close-alt:hover {transform:scale(1.2);}
#epsModal .modal-close-alt svg {margin:auto;color:#fff;width:34px;height:34px;}
#epsModal .modal-close:hover {-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);}
#epsModal .modal-content {position:absolute;right:0;bottom:0;top:0;left:0;}
#epsModal .modal-content .modal-iframe {background: #fff url(../images/input-loader.webp) no-repeat center center; background-size: 40px 40px;border:none;padding:0;position:absolute;top:0;left:0;width:100%;height:100%;}
#epsModal, #epsModal .modal-content, #epsModal .modal-content .modal-iframe {border-radius:5px;}
#epsModal .modal-is-inline .modal-content {overflow-y:auto;}
#epsModal .head {display:block;width:100%;font-size:20px;font-weight:bold;color:#171717;padding:16px 16px;line-height:1.2;}
#epsModal .subhead {display:block;width:100%;font-weight:600;color:#171717;margin-top:-8px;line-height:1.2;padding:0px 16px 16px 16px;border-bottom:1px solid #ccc;}

/* Rendered after </div> that closes .content; card is position:absolute centered inside (avoids flex + home h2 conflicts). */
#vrool-post-success-modal {
  z-index: 200000 !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  display: block !important;
  box-sizing: border-box !important;
}
#vrool-post-success-modal #vrool-post-success-title {
  display: block !important;
  justify-content: normal !important;
  align-items: stretch !important;
}
#vrool-post-success-modal * {pointer-events:auto;}
#vrool-post-success-cover {pointer-events:auto;}
#vrool-post-success {pointer-events:auto;}

/* FLASH MESSAGE & ERROR MESSAGES */
#flashbox {display:block;z-index:6;position:relative;}
#flashbox .wrap2 {display:flex;flex-direction:column;align-items:center;padding:12px 16px 0;}
#flashbox .flashmessage, #error_list li, .upload-photos .flashmessage, .empty, .problem, .flashmessage {font-weight:600;position:relative;margin:0 0 10px 0;display:flex;align-items:center;gap:10px;width:auto;min-width:320px;max-width:600px;font-size:14px;background:#fff;padding:14px 40px 14px 16px;border-radius:14px;box-shadow:0 4px 20px rgba(0,0,0,0.08),0 1px 3px rgba(0,0,0,0.06);border:none;border-left:none;line-height:1.4;animation:vrool-flash-in 0.3s ease;}
#flashbox .flashmessage {min-width:320px;max-width:600px;}
#flashbox .flashmessage::before {content:'';width:4px;min-height:24px;border-radius:4px;flex-shrink:0;background:#94a3b8;}
#flashbox .flashmessage .btn.ico-close, .upload-photos .flashmessage .close {padding:0;width:28px;height:28px;line-height:28px;text-align:center;border:none;background:rgba(0,0,0,0.04);border-radius:8px;position:absolute;top:50%;right:8px;transform:translateY(-50%);box-shadow:none;color:transparent;transition:background 0.15s;}
#flashbox .flashmessage .btn.ico-close:hover, .upload-photos .flashmessage .close:hover {background:rgba(0,0,0,0.08);}
#flashbox .flashmessage .btn.ico-close:after, .upload-photos .flashmessage .close:after {content:"\f00d";color:#64748b;font-weight:900;line-height:28px;position:absolute;left:0;top:0;width:100%;height:100%;font-family:"Font Awesome 5 Free";font-size:12px;}
#flashbox .flashmessage.flashmessage-error, #error_list li, .upload-photos .flashmessage, .flashmessage.flashmessage-error {background:#fef2f2;border:1px solid #fecaca;}
#flashbox .flashmessage.flashmessage-error::before, .flashmessage.flashmessage-error::before {background:#ef4444;}
#flashbox .flashmessage.flashmessage-ok, .flashmessage.flashmessage-ok {background:#ecfdf5;border:1px solid #a7f3d0;}
#flashbox .flashmessage.flashmessage-ok::before, .flashmessage.flashmessage-ok::before {background:#10b981;}
#flashbox .flashmessage.flashmessage-warning, .flashmessage.flashmessage-warning, .problem {background:#fffbeb;border:1px solid #fde68a;}
#flashbox .flashmessage.flashmessage-warning::before, .flashmessage.flashmessage-warning::before, .problem::before {background:#f59e0b;}
#flashbox .flashmessage.flashmessage-info, .flashmessage.flashmessage-info, .empty {background:#eff6ff;border:1px solid #bfdbfe;}
#flashbox .flashmessage.flashmessage-info::before, .flashmessage.flashmessage-info::before, .empty::before {background:#3b82f6;}
#flashbox .flashmessage:last-child {margin-bottom:16px;}
@keyframes vrool-flash-in {from{opacity:0;transform:translateY(-8px);}to{opacity:1;transform:translateY(0);}}
#body-user-items #flashbox,
.body-ua #flashbox {
  position:fixed;
  top:86px;
  left:50%;
  transform:translateX(-50%);
  width:calc(100% - 24px);
  max-width:720px;
  z-index:10050;
  pointer-events:none;
}

#body-user-items #flashbox .wrap2,
.body-ua #flashbox .wrap2 {align-items:stretch;}

#body-user-items #flashbox .flashmessage,
.body-ua #flashbox .flashmessage {
  width:100%;
  min-width:0;
  max-width:100%;
  border-radius:14px;
  padding:14px 44px 14px 14px;
  box-shadow:0 18px 50px rgba(15, 23, 42, 0.18);
  pointer-events:auto;
}

#body-user-items #flashbox .flashmessage a,
.body-ua #flashbox .flashmessage a {color:#00ba76;font-weight:600;text-decoration:none;}

#body-user-items #flashbox .flashmessage a:hover,
.body-ua #flashbox .flashmessage a:hover {text-decoration:underline;}

#body-user-items #flashbox .flashmessage .btn.ico-close,
.body-ua #flashbox .flashmessage .btn.ico-close {top:9px;right:8px;color:transparent;}
#error_list {display:block;margin:0 0 20px 0;} 
#error_list:empty {display:none;}
#error_list li {padding:8px 10px;margin:0 0 8px 0;border-radius:4px;max-width:100%;min-width:initial;}
#error_list li label {font-weight:500;}
.upload-photos .flashmessage {margin: 16px 0 0 0;}
.empty {display:inline-block;}


/* CHROME SCROLL BARS */
.nice-scroll-wrap {position:relative;display:block;width:100%;}
.nice-scroll {scrollbar-width:thin;scrollbar-color: #9e9e9e rgba(0,0,0,0.05);}
.nice-scroll::-webkit-scrollbar {box-shadow: none;height: 7px;background:rgba(0,0,0,0.05);}
.nice-scroll::-webkit-scrollbar-thumb {border-radius:100px;background-color: rgba(0,0,0,0.3);background-clip: initial;box-shadow: none;}
.nice-scroll::-webkit-scrollbar-thumb:hover {background-color: rgba(0,0,0,0.6);}
.nice-scroll-prev, .nice-scroll-next {transition:0.2s;color:#171717;margin-top:-50px;display:none;position:absolute;border-radius:100px;left:0;top:50%;height:52px;width:52px;padding:8px;z-index:4;text-indent:-2px;}
.nice-scroll-prev.disabled, .nice-scroll-next.disabled {opacity:0.25;cursor:default;}
.nice-scroll-prev.disabled i, .nice-scroll-next.disabled i {cursor:default;}
.nice-scroll-next {right:0;left:auto;text-indent:2px;}
.nice-scroll-next:not(.disabled):hover, .nice-scroll-prev:not(.disabled):hover {transform:scale(1.15);color:#3b49df;}
.nice-scroll-prev i, .nice-scroll-next i {transition:0.2s;cursor:pointer;width:36px;height:36px;line-height:36px;border-radius:100px;background:#fff;text-align:center;box-shadow:0 1px 3px rgba(0,0,0,0.35);background:#fff;font-size:20px;}
.nice-scroll-next:not(.disabled):active i {text-indent:5px;}
.nice-scroll-prev:not(.disabled):active i {text-indent:-5px;}
.nice-scroll-prev:not(.disabled):focus i, .nice-scroll-next:not(.disabled):focus i {box-shadow:0 1px 3px rgba(0,0,0,0.35), 0 0 0 2px #3b49df;}
.nice-scroll.no-visible-scroll, .no-visible-scroll {scrollbar-width: none;-ms-overflow-style: none;}
.nice-scroll.no-visible-scroll::-webkit-scrollbar, .no-visible-scroll::-webkit-scrollbar {display:none;}

#item-forms::-webkit-scrollbar {box-shadow: none;width: 8px;background:rgba(0,0,0,0.05);}
#item-forms::-webkit-scrollbar-thumb {border-radius:100px;background-color: rgba(0,0,0,0.3);background-clip: initial;box-shadow: none;}
#item-forms::-webkit-scrollbar-thumb:hover {background-color: rgba(0,0,0,0.6);}

/* CUSTOM INPUT BOX AND CHECKBOX */
.input-box {width: 100%;display:inline-block;margin: 0 0 20px 0; position: relative;}
.input-box:not(.picker) .clean, .filter-menu .input-box.picker .clean {display:none;z-index:2;padding:2px;text-align:center;cursor:pointer;transition:0.2s;position:absolute;right:3px;top:calc(50% - 12px);font-size:16px;line-height:20px;color:#999;width:24px;height:24px;border-radius:5px;}
.input-box .clean:hover {color:#666;}
.input-box-check {width:100%;display:inline-block;margin:5px 0;}
.input-box-check input[type="checkbox"] {opacity:0.01;position:absolute;z-index:1;overflow:hidden;background:transparent;padding:0!important;width:1px!important;height:1px!important;margin:0!important;box-shadow:none!important;}
.input-box-check label {cursor:pointer;position:relative;float:left;padding:2px 0 0 27px!important;line-height:16px;font-size:14px;width:auto;clear:both;font-weight:normal;}
.input-box-check label:hover {text-decoration:underline;}
.input-box-check label:before {cursor:pointer;content: ""; width: 20px; height: 20px; border: 1px solid #d4d4d4;font-weight:500; text-shadow: none; position: absolute; top: 0; left: 0;text-shadow:none;box-shadow: 0px 1px 1px rgba(0,0,0,0.06);border-radius: 4px;transition:0.1s;}
.input-box-check label:hover:before {border-color:#a3a3a3;}
.input-box-check input[type="checkbox"]:focus + label:before {border-color:#3b49df;box-shadow:0 0 0 1px #3b49df;}
.input-box-check label:after {cursor: pointer; text-indent: 0px; font-family: "Font Awesome 5 Free"; content: "\f00c"; color: transparent; font-size: 14px; width: 20px; height: 20px; line-height: 20px; text-align: center; font-weight: 900; text-shadow: none; position: absolute; top: 0px; left: 0px;border-radius: 4px;transition:0.1s;}
.input-box-check input[type="checkbox"]:checked + label:before {background:#3b49df;border-color:#3b49df;}
.input-box-check input[type="checkbox"]:checked + label:after {color:#fff;}


/* RATING */
body .rating.s1 i.i2:before, body .rating.s1 i.i3:before, body .rating.s1 i.i4:before, body .rating.s1 i.i5:before {font-weight:400;content:"\f005";}
body .rating.s2 i.i3:before, body .rating.s2 i.i4:before, body .rating.s2 i.i5:before {font-weight:400;content:"\f005";}
body .rating.s3 i.i4:before, body .rating.s3 i.i5:before {font-weight:400;content:"\f005";}
body .rating.s4 i.i5:before {font-weight:400;content:"\f005";}
body .rating.h1 i.i2:before, body .rating.h1 i.i3:before, body .rating.h1 i.i4:before, body .rating.h1 i.i5:before {font-weight:400;content:"\f005";}
body .rating.h2 i.i3:before, body .rating.h2 i.i4:before, body .rating.h2 i.i5:before {font-weight:400;content:"\f005";}
body .rating.h3 i.i4:before, body .rating.h3 i.i5:before {font-weight:400;content:"\f005";}
body .rating.h4 i.i5:before {font-weight:400;content:"\f005";}


/* CLICK RATING */
body .rating.s1 i.i1:before {content:"\f005";font-weight:400;}
body .rating.s1 i.i2:before, body .rating.s1 i.i3:before, body .rating.s1 i.i4:before, body .rating.s1 i.i5:before {content:"\f005";font-weight:400;}
body .rating.s2 i.i1:before, body .rating.s2 i.i2:before {content:"\f005";font-weight:bold;}
body .rating.s2 i.i3:before, body .rating.s2 i.i4:before, body .rating.s2 i.i5:before {content:"\f005";font-weight:400;}
body .rating.s3 i.i1:before, body .rating.s3 i.i2:before, body .rating.s3 i.i3:before {content:"\f005";font-weight:bold;}
body .rating.s3 i.i4:before, body .rating.s3 i.i5:before {content:"\f005";font-weight:400;}
body .rating.s4 i.i1:before, body .rating.s4 i.i2:before, body .rating.s4 i.i3:before, body .rating.s4 i.i4:before {content:"\f005";font-weight:bold;}
body .rating.s4 i.i5:before {content:"\f005";font-weight:400;}
body .rating.s5 i.i1:before, body .rating.s5 i.i2:before, body .rating.s5 i.i3:before, body .rating.s5 i.i4:before, body .rating.s5 i.i5:before {content:"\f005";font-weight:bold;}

/* HOVER RATING */
body .rating.h1 i.i1:before {content:"\f005";font-weight:bold;}
body .rating.h1 i.i2:before, body .rating.h1 i.i3:before, body .rating.h1 i.i4:before, body .rating.h1 i.i5:before {content:"\f005";}
body .rating.h2 i.i1:before, body .rating.h2 i.i2:before {content:"\f005";font-weight:bold;}
body .rating.h2 i.i3:before, body .rating.h2 i.i4:before, body .rating.h2 i.i5:before {content:"\f005";}
body .rating.h3 i.i1:before, body .rating.h3 i.i2:before, body .rating.h3 i.i3:before {content:"\f005";font-weight:bold;}
body .rating.h3 i.i4:before, body .rating.h3 i.i5:before {content:"\f005";}
body .rating.h4 i.i1:before, body .rating.h4 i.i2:before, body .rating.h4 i.i3:before, body .rating.h4 i.i4:before {content:"\f005";font-weight:bold;}
body .rating.h4 i.i5:before {content:"\f005";}
body .rating.h5 i.i1:before, body .rating.h5 i.i2:before, body .rating.h5 i.i3:before, body .rating.h5 i.i4:before, body .rating.h5 i.i5:before {content:"\f005";font-weight:bold;}

/* DEFAULT */
a {color: #3b49df;text-decoration: none;}
a:hover {text-decoration:underline;color:#2f3ab2;}
input, select, textarea {transition: all cubic-bezier(0.17, 0.67, 0.5, 0.71) 0.1s;border:1px solid #d4d4d4;font-size:15px;width:100%;padding:9px 8px;outline:0;border-radius:6px;font-family:inherit;color:#171717;background:#fff;}
input[type="file"] {background: #f4f4f4; padding: 8px; height: auto;}
input:hover, select:hover, textarea:hover {border-color:#a3a3a3;}
input:focus, select:focus, textarea:focus {border-color:#3b49df;box-shadow:0 0 0 1px #3b49df;}
input:disabled, select:disabled, textarea:disabled, .enter.disable input#price, .enter.disable select#currency {border-color:#a3a3a3;box-shadow:none;background:#eaeaea;color:#777;}
input[type="text"]:read-only,input[type="email"]:read-only,input[type="tel"]:read-only,input[type="number"]:read-only, input[type="url"]:read-only, textarea:read-only {border-color:#c3c3c3;box-shadow:none;background:#ffffff;color:#777;}
input, select {height:40px;}
input[type="checkbox"], input[type="radio"] {width:18px;height:18px;margin:0 4px 0 0;}
input[type="radio"]:focus {outline:0;box-shadow:none;}
textarea {min-height:40px;font-family:inherit;}
input.error:not(:focus), select.error:not(:focus), textarea.error:not(:focus) {border-color:#e72b2b;background:rgb(255 241 241 / 65%);border-left-width:3px;}
select {padding:0 8px;}
/* Weblist URL submitter + spec modals: global input,select{height:40px} clips <select> text */
#vrool-weblist-modal select,
#vrool-wl-phones-modal select,
#vrool-wl-laptops-modal select,
#vrool-wl-property-modal select,
#vrool-wl-garage-modal select,
#vrool-wl-clothes-modal select,
#vrool-wl-shoes-modal select,
#vrool-pc-modal select {
  height: auto !important;
  min-height: 48px;
  line-height: 1.5 !important;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  box-sizing: border-box;
}
select.mini {padding:0 6px;font-size:14px;height:32px;}
input.mini {padding:5px 6px;font-size:14px;height:32px;}
html {scrollbar-gutter: stable;}
@supports not (scrollbar-gutter: stable) { html {overflow-y: scroll;} }
body {color:#171717;padding-top:60px;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';scroll-behavior: smooth; text-rendering: optimizeSpeed; line-height: 1.5;-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;min-height: 100vh;background:#ffffff;font-size:14px;}
.container {max-width:min(95%, 1650px);display:flex;align-items:center;margin:auto;padding:0 16px;flex-direction: inherit;width:100%;box-sizing:border-box;}
footer.vrool-footer .container.vrool-footer-container{max-width:1450px;}
/* Home hero uses same width + padding as header .container.cmain (see .home-search > .container above) */
.container.primary {align-items: flex-start;flex-direction: row;justify-content: space-between;}
.btn, .btn-primary {line-height:20px;transition:0.2s;color:#f9f9f9;background:#3b49df;position:relative;display:inline-block;font-weight:600;text-decoration:none;cursor:pointer;height:40px;border-radius:6px;font-size:16px;text-align:center;padding:9px 12px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 2px 5px rgba(0,0,0,0.1);}
.btn:hover, .btn-primary:hover {background:#2f3ab2;color:#f9f9f9;text-decoration:none;}
.btn-secondary {color:#3b49df;border-color:#3b49df;background:#fff;}
.btn-secondary:hover, .btn-secondary.active {border-color:#3b49df;background:#3b49df;color:#fff;}
.btn-white {color:#404040;border-color:transparent;background:transparent;box-shadow:none;font-weight:600;}
.btn-white:hover {border-color:transparent;background:rgb(59 73 223 / 10%);color:#2f3ab2;}
.btn-transparent {color:#fff;border-color:#fff;background:transparent;font-weight:600;}
.btn-transparent:hover {border-color:#fff;background:#fff;color:#3b49df;}
.btn i {margin-right:3px;}
.btn.mini {line-height:16px;height:30px;font-size:14px;padding:6px 7px;}
.btn:disabled, .btn.disabled, .btn.btn-disabled {opacity:0.5;cursor:not-allowed;}
.btn.loading {position:relative;cursor:wait;opacity:0.65;}
.btn.loading > * {opacity:0.1;}
.btn.loading:after {position:absolute;top:calc(50% - 12px);left:calc(50% - 12px);content:"";background:transparent url('../images/input-loader.webp') no-repeat center center;width:24px;height:24px;background-size:100%;}
section, div.content {display:block;width:100%;}
#debug-mode {position: relative;display:block;background: #373737; padding: 10px 12px; font-size: 12px; font-family: monospace; line-height: 1.1;width:100%;color: #f9f9f9;}

@media (max-width: 767px) {
  #debug-mode {
    display: none !important;
  }
}

.footer-hook:empty, .footer-widgets:empty {display:none;}
label {font-weight:600;}
h1 {font-size:28px;color:#171717;font-weight:700;line-height:1.2;}
h2 {font-size:22px;color:#171717;font-weight:700;line-height:1.2;}
h3 {font-size:18px;color:#171717;font-weight:700;line-height:1.2;}
h4 {font-size:16px;color:#171717;font-weight:700;line-height:1.2;}
h5 {font-size:15px;color:#171717;font-weight:700;line-height:1.2;}
h6 {font-size:14px;color:#171717;font-weight:700;line-height:1.2;}
.row {display:block;width:100%;}
.req {color:#e90303;font-weight:bold;}
a.toggle-pass { position: absolute; right: 8px; top: 9px; width: 30px; height: 30px; font-size: 16px; color: #555; transition: 0.2s; text-align: center; }
a.toggle-pass i {line-height:30px;}


/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
  #side-menu .section.dark-mode {display:block;}
}

body#home .ml-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  user-select: none;
  cursor: pointer;
  margin-right: 6px;
}

body#home .ml-theme-toggle .ml-theme-ico {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: #ffffff;
  color: rgba(17, 24, 39, 0.80);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transition: left 0.18s ease;
  opacity: 1;
}

body#home .ml-theme-switch {
  position: relative;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.18);
  border: 1px solid rgba(17, 24, 39, 0.18);
  flex: 0 0 auto;
}

body#home .ml-theme-switch:after {content:none;}

body#home .ml-theme-switch.is-dark .ml-theme-ico {
  left: 16px;
  background: #10b981;
  color: rgba(7, 26, 18, 0.85);
}

body#home .ml-theme-switch.is-green .ml-theme-ico,
body#home .ml-theme-switch.is-green svg {
  left: 16px;
  fill: #fff;
}

body#home .ml-theme-switch.is-green {
  background: rgba(5,150,105,0.40);
  border-color: rgba(52,211,153,0.50);
}

body#home[data-theme="dark"] .ml-theme-switch {
  background: rgba(16,185,129,0.30);
  border-color: rgba(16,185,129,0.35);
}

body#home[data-theme="green"] .ml-theme-switch {
  background: rgba(52,211,153,0.35);
  border-color: rgba(52,211,153,0.50);
}

body#home[data-theme="dark"] .ml-theme-switch:after {content:none;}
body#home[data-theme="green"] .ml-theme-switch:after {content:none;}



body#home[data-theme="dark"],
body#home[data-theme="dark"] > .content {
  background: #0b1220!important;
  color: #e5e7eb!important;
}

body#home[data-theme="dark"] > .content {
  background: #0b1220!important;
}

body#home[data-theme="dark"] > .content > section {
  background: transparent!important;
}

body#home[data-theme="dark"] > .content > section.home-search {
  background: #0b1220!important;
  box-shadow: none!important;
}

body#home[data-theme="dark"] .home-search > .container:after {
  display:none!important;
}

body#home[data-theme="dark"] .home-search-left .box {
  background: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}

body#home[data-theme="dark"] #home-cat a:hover,
body#home[data-theme="dark"] #home-cat a.all:hover {
  background: rgba(255,255,255,0.06)!important;
}

body#home[data-theme="dark"] #home-cat a > div {
  background: #0b1220!important;
  border: 1px solid rgba(255,255,255,0.10)!important;
}

body#home[data-theme="dark"] #home-cat a > div i {
  color: #fff!important;
}

body#home[data-theme="dark"] #home-cat a > div svg {
  fill: #fff!important;
  stroke: #fff!important;
}

body#home[data-theme="dark"] #home-cat a > div svg * {
  fill: #fff!important;
  stroke: #fff!important;
}

body#home[data-theme="dark"] #home-cat a > div img {
  filter: invert(1) brightness(1.15) contrast(1.05);
}

body#home[data-theme="dark"] #home-cat a > h3,
body#home[data-theme="dark"] #home-cat a > h3 span {
  color: rgba(229, 231, 235, 0.85)!important;
}

body#home[data-theme="dark"] header {
  background: rgba(2, 6, 23, 0.82)!important;
}

body[data-theme="dark"] header .links img.hicon {
  filter: brightness(0) invert(1);
}

body#vrool-search .container {max-width:min(95%, 1600px);}
body#vrool-search .container.primary {padding-top:40px;padding-bottom:60px;flex-direction:column;align-items:center;justify-content:center;}
body#vrool-search .vrool-gsearch {min-height:calc(100vh - 240px);display:flex;align-items:center;justify-content:center;}
body#vrool-search .vrool-gsearch-inner {width:100%;max-width:1100px;margin:0 auto;padding:0 16px;text-align:center;}
body#vrool-search .vrool-gsearch-logo img {height:64px;width:auto;object-fit:contain;display:inline-block;}
body#vrool-search .vrool-gsearch-headline {margin:18px 0 18px;font-size:20px;line-height:26px;font-weight:800;color:#111;}

body#vrool-search[data-theme="dark"] .vrool-gsearch-headline {color:rgba(229,231,235,0.9);}

body#vrool-search .vrool-gsearch-form {width:100%;}

body#vrool-search .vrool-gsearch-catbar {display:flex;align-items:center;justify-content:center;gap:12px;margin:0 0 16px;flex-wrap:wrap;}
body#vrool-search .vrool-gsearch-cats {display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}
body#vrool-search .vrool-gsearch-cats .vcat {border:1px solid rgba(0,0,0,0.12);background:#fff;border-radius:999px;padding:10px 14px;font-size:14px;line-height:14px;font-weight:700;color:#111;transition:0.15s;}
body#vrool-search .vrool-gsearch .vcat{display:inline-flex;align-items:center;gap:8px;font-weight:400;}
body#vrool-search .vrool-gsearch .vcat img{width:16px;height:16px;display:block;object-fit:contain;flex:0 0 auto;}
body#vrool-search .vrool-gsearch .vcat img[src$="/images/car-2.svg"],
body#vrool-search .vrool-gsearch .vcat img[src$="images/car-2.svg"]{width:18px;height:18px;}
body#vrool-search .vrool-gsearch-cats .vcat:hover {border-color:rgba(0,0,0,0.25);}
body#vrool-search .vrool-gsearch-cats .vcat.active {background:#00ba76;border-color:#00ba76;color:#fff;}

body#vrool-search[data-theme="dark"] .vrool-gsearch-cats .vcat {background:rgba(2,6,23,0.55);border-color:rgba(148,163,184,0.25);color:rgba(229,231,235,0.9);}
body#vrool-search[data-theme="dark"] .vrool-gsearch-cats .vcat:hover {border-color:rgba(148,163,184,0.45);}
body#vrool-search[data-theme="dark"] .vrool-gsearch-cats .vcat.active {background:#00ba76;border-color:#00ba76;color:#fff;}

body#vrool-search .vrool-gsearch-select select {height:40px;border-radius:999px;border:1px solid rgba(0,0,0,0.12);padding:0 14px;font-weight:700;background:#fff;color:#111;}
body#vrool-search[data-theme="dark"] .vrool-gsearch-select select {background:rgba(2,6,23,0.55);border-color:rgba(148,163,184,0.25);color:rgba(229,231,235,0.9);}

body#vrool-search .vrool-gsearch-inputwrap {display:flex;align-items:stretch;gap:10px;justify-content:center;width:800px;max-width:calc(100vw - 32px);margin:0 auto;}
body#vrool-search .vrool-gsearch-inputwrap input {flex:1 1 0;width:auto!important;max-width:none!important;min-width:0;height:54px;border-radius:999px;border:1px solid rgba(0,0,0,0.16);padding:0 18px;font-size:16px;font-weight:600;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,0.08);}
body#vrool-search .vrool-gsearch-inputwrap input:focus {outline:none;border-color:#00ba76;box-shadow:0 0 0 4px rgba(0,186,118,0.18), 0 12px 28px rgba(0,0,0,0.1);}
body#vrool-search[data-theme="dark"] .vrool-gsearch-inputwrap input {background:rgba(2,6,23,0.55);border-color:rgba(148,163,184,0.25);color:rgba(229,231,235,0.9);box-shadow:0 10px 26px rgba(0,0,0,0.35);}
body#vrool-search[data-theme="dark"] .vrool-gsearch-inputwrap input::placeholder {color:rgba(148,163,184,0.8);}

body#vrool-search .vrool-gsearch-btn {height:54px;border-radius:999px;padding:0 18px;min-width:150px;font-weight:800;border:0;background:#00ba76;color:#fff;box-shadow:0 10px 26px rgba(0,186,118,0.28);transition:0.15s;}
body#vrool-search .vrool-gsearch-btn:hover {filter:brightness(0.96);}

body#vrool-search .vrool-gsearch-hint {margin:14px 0 0;font-size:13px;line-height:18px;color:#666;font-weight:600;}
body#vrool-search[data-theme="dark"] .vrool-gsearch-hint {color:rgba(148,163,184,0.85);}

@media (max-width: 767px) {
  body#vrool-search .vrool-gsearch-logo img {height:54px;}
  body#vrool-search .vrool-gsearch-headline {font-size:18px;line-height:24px;}
  body#vrool-search .vrool-gsearch-inputwrap {flex-direction:column;}
  body#vrool-search .vrool-gsearch-inputwrap input {max-width:100%;height:54px!important;padding:0 18px!important;font-size:18px!important;line-height:54px!important;}
  body#vrool-search .vrool-gsearch-btn {width:100%;height:56px!important;min-width:0!important;font-size:18px!important;}
}

body#home[data-theme="dark"] .welcome-block {
  background: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}

body#home[data-theme="dark"] .welcome-left h1,
body#home[data-theme="dark"] .welcome-left h1 span,
body#home[data-theme="dark"] .welcome-links,
body#home[data-theme="dark"] .welcome-links .main-link,
body#home[data-theme="dark"] .welcome-links .start-search,
body#home[data-theme="dark"] .welcome-rating,
body#home[data-theme="dark"] .trustpilot-logo {
  color: #e5e7eb!important;
}

body#home[data-theme="dark"] .welcome-links .main-link {
  text-decoration-color: rgba(229,231,235,0.6);
}

body#home[data-theme="dark"] .welcome-buttons .btn-secondary {
  background: rgba(2, 6, 23, 0.35)!important;
  border-color: rgba(255,255,255,0.12)!important;
  color: rgba(229, 231, 235, 0.90)!important;
}

body#home[data-theme="dark"] .welcome-buttons .btn-secondary:hover {
  background: rgba(2, 6, 23, 0.55)!important;
}

body#home[data-theme="dark"] .home-search .box {
  background: rgba(17, 24, 39, 0.85)!important;
  border-color: rgba(255,255,255,0.10)!important;
  color: #e5e7eb!important;
}

body#home[data-theme="dark"] .home-search h1,
body#home[data-theme="dark"] .home-search .box b,
body#home[data-theme="dark"] .home-search .box span,
body#home[data-theme="dark"] .home-search .box div,
body#home[data-theme="dark"] .home-search .box font {
  color: #e5e7eb!important;
}

body#home[data-theme="dark"] .social-widget {
  background: rgba(17, 24, 39, 0.85)!important;
  border-color: rgba(255,255,255,0.10)!important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.30)!important;
}

body#home[data-theme="dark"] .social-widget h2 {
  color: #e5e7eb!important;
}

body#home[data-theme="dark"] .social-widget-list {
  scrollbar-color: rgba(255,255,255,0.22) rgba(2, 6, 23, 0.35);
}

body#home[data-theme="dark"] .social-widget-list::-webkit-scrollbar-track {
  background: rgba(2, 6, 23, 0.35);
}

body#home[data-theme="dark"] .social-widget-list::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.22);
}

body#home[data-theme="dark"] .social-widget-card {
  background: rgba(2, 6, 23, 0.35)!important;
  border-color: rgba(255,255,255,0.10)!important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18)!important;
}

body#home[data-theme="dark"] .social-widget-title {
  color: #e5e7eb!important;
}

body#home .social-widget-meta {font-size:11px !important;gap:6px !important;}
body#home .social-widget-meta span {gap:5px !important;padding:4px 8px !important;}
body#home .social-widget-meta span i {font-size:12px !important;}

body#home .home-offers .vrool-offer-sub {max-width:25ch;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

body#home[data-theme="dark"] .social-widget-meta {
  color: rgba(229, 231, 235, 0.72)!important;
}

body#home[data-theme="dark"] .social-widget-thumb {
  background: rgba(2, 6, 23, 0.45)!important;
  border-color: rgba(255,255,255,0.10)!important;
}

body#home[data-theme="dark"] .social-widget-thumb-placeholder {
  color: rgba(229,231,235,0.65)!important;
}

body#home[data-theme="dark"] .social-widget-footer a {
  color: #34d399!important;
}

body#home[data-theme="dark"] .social-widget-footer a:hover {
  color: #10b981!important;
}



/* HOME LISTING CARDS (PREMIUM/LATEST/RENT/RECENT) */
body#home[data-theme="dark"] .products.grid .simple-prod,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod,
body#home[data-theme="dark"] #rel-block .simple-prod {
  background: rgba(17, 24, 39, 0.85)!important;
  border-color: rgba(255,255,255,0.10)!important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .simple-wrap,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .simple-wrap {
  background: transparent!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .title,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .title,
body#home[data-theme="dark"] .products.grid .simple-prod .data .title {
  color: #e5e7eb!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .description,
body#home[data-theme="dark"] .products.grid .simple-prod .info,
body#home[data-theme="dark"] .products.grid .simple-prod .extra,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .info {
  color: rgba(229, 231, 235, 0.85)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .price,
body#home[data-theme="dark"] .products.grid .simple-prod .right .price,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .price {
  color: #e5e7eb!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .img-wrap,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .img-wrap {
  background: rgba(2, 6, 23, 0.45)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-mm-badge .favorite i,
body#home[data-theme="dark"] .products.grid .simple-prod .favorite i {
  background: rgba(2, 6, 23, 0.35)!important;
  color: rgba(229,231,235,0.85)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-phone,
body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-card,
body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-phone-left {
  background: rgba(2, 6, 23, 0.35)!important;
  border-color: rgba(255,255,255,0.10)!important;
  color: rgba(229, 231, 235, 0.90)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-name {
  color: rgba(229, 231, 235, 0.92)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-spec > span,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .vrool-trader-spec > span {
  color: rgba(229, 231, 235, 0.80)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-spec i,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .vrool-trader-spec i {
  color: rgba(229, 231, 235, 0.85)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-spec img,
body#home[data-theme="dark"] #recent-ads.onhome .simple-prod .vrool-trader-spec img {
  opacity: 0.95!important;
  filter: invert(1) grayscale(1) brightness(1.1);
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-payment-accepted .vrool-pay-title {
  color: rgba(229, 231, 235, 0.85)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-payment-accepted .vrool-pay-icons img {
  filter: invert(1) grayscale(1) brightness(1.1);
  opacity: 0.95;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-see-ad {
  background: rgba(16,185,129,0.85)!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-see-ad {
  background: rgba(16,185,129,0.85)!important;
  border-color: rgba(16,185,129,0.35)!important;
  color: #071a12!important;
}

body#home[data-theme="dark"] .products.grid .simple-prod .vrool-trader-see-ad:hover {
  background: rgba(16,185,129,0.95)!important;
}

/* RESET */
fieldset{border:none;display:inline-block;padding:0;margin:0;width:100%;}html,input,select,textarea,button{font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';}div{margin:0;padding:0;}html{color:#222;box-sizing:border-box;font-size:14px;line-height:18px;cursor:default;-moz-tab-size:4;tab-size:4;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word;}*,*:before,*:after{box-sizing:inherit}body{display:block;margin:0;font-weight:normal;width:100%;box-sizing:border-box;}h1,h2,h3,h4,h5,h6,p,ol,ul{display:inline-block;margin:0;padding:0;width:100%;}ol,ul{list-style:none}img{max-width:100%;width:auto;height:auto}

/* --- Welcome Block Styles --- */
.welcome-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
    padding: 28px clamp(12px, 2.5vw, 24px) 0 clamp(12px, 2.5vw, 24px);
    margin: 0 auto 16px auto;
    width: 100%;
    max-width: 1040px;

  min-height: 0;
  position: relative;
}

@media (min-width: 768px) {
  body#home .welcome-block {margin-bottom: 8px;}
}

@media (min-width: 768px) {
  .welcome-block {
    margin: 0 auto 16px 0;
  }
}
.welcome-left {
  flex: 1 1 50%;
  max-width: 600px;
    min-width: 0;
}
.welcome-left h1 {
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  color: #171717;
  line-height: 1.05;
}
.welcome-left h1 span {
  font-size: 2rem;
  font-weight: 600;
  color: #171717;
  letter-spacing: -1px;
}
.welcome-links {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #171717;
}
.welcome-links .main-link {
  font-weight: bold;
  text-decoration: underline;
  color: #171717;
}
.welcome-links .or {
  font-weight: normal;
  margin: 0 4px;
}
.welcome-links .start-search {
  font-weight: normal;
  color: #171717;
}
.welcome-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
  max-width: 400px;
}
.welcome-buttons .btn-main {
  background: #00ba76;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

@media (max-width: 767px) {
  body#home .welcome-buttons {display:none;margin-bottom:0;}
  body#home .js-browse-ads {display:none !important;}
}

.welcome-buttons .btn-main:hover {
  background: #222;
}
.welcome-buttons .btn-secondary {
  background: #fff;
  color: #00ba76;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 0;
  border: 1px solid #171717;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.welcome-buttons .btn-secondary:hover {
  background: #f5f5f5;
}
.welcome-rating {
  font-size: calc(1.22rem + 6px);
  color: #171717;
  margin-top: 32px;
  padding-left: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.welcome-rating .trustpilot-widget {
  transform: scale(1.26);
  transform-origin: left center;
}
.welcome-rating b {
  font-weight: 900;
  font-size: 1.2em;
}
.trustpilot-stars {
  height: 32px;
  margin-left: 8px;
  vertical-align: middle;
}
.trustpilot-logo {
  font-size: 1.1rem;
  color: #171717;
  font-weight: 700;
  margin-left: 8px;
}
.welcome-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
    min-width: 0;
}
.welcome-car-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1100px) {
  .welcome-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 20px 20px;
  }
  body#home .home-search > .container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .welcome-right {
    justify-content: center;
    margin-top: 32px;
    width: 100%;
  }
  .welcome-car-img {
    max-width: 340px;
  }
}
@media (max-width: 700px) {
  .welcome-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 10px 22px;
  }
  body#home .home-search > .container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .welcome-left h1 {
    font-size: 4.0rem;
  }
  .welcome-left h1 span {
    font-size: 1.7rem;
  }
  /* Make keyword input slightly smaller on mobile */
  .home-search-left .input-box.picker.pattern input.pattern {
    height: 30px;
    font-size: 12px;
  }
  .home-search-left button.btn[type="submit"] {
    height: 30px;
  }
  .welcome-buttons .btn-main, .welcome-buttons .btn-secondary {
    font-size: 1.1rem;
  }
  .welcome-car-img {
    max-width: 420px;
  }
}
/* --- End Welcome Block Styles --- */

body #moModal {border-radius:12px;box-shadow:0 16px 50px rgba(0,0,0,0.35);border:1px solid rgba(0,0,0,0.08);}
body #moModal .modal-close {top:10px;right:10px;width:36px;height:36px;border-radius:10px;background:rgba(0,0,0,0.04);color:#111;}
body #moModal .modal-close i {line-height:36px;}
body #moModal .modal-close:hover {transform:none;background:rgba(0,0,0,0.08);}
body .modal-cover {background:rgba(17,17,17,0.6);}

body .mo-show {border-radius:12px;background:#fff;}
body .mo-head {height:56px;padding:16px 18px;border-bottom:1px solid #e8e8e8;color:#111;font-size:16px;font-weight:700;line-height:24px;}
body #mo-new .mo-head {padding-left:62px;}

/* Make Offer modal — clean redesign */
body .mo-cta-empty {padding:14px 16px;text-align:center;}
body .mo-cta-empty .mo-cta-illustration {display:none;}
body .mo-cta-empty .mo-cta-title {font-size:15px;margin:0 0 4px;font-weight:800;}
body .mo-cta-empty .mo-cta-sub {font-size:12px;color:#64748b;margin:0;}
body .mo-show .mo-box-content {padding:12px 18px;}
body .mo-show .mo-offers-list:empty {display:none;}
body .mo-show #mo-list {padding-bottom:0 !important;margin-bottom:0 !important;}
body .mo-show .mo-cta-empty {padding:10px 16px 0;margin-bottom:0;}
body .mo-show .mo-box-footer {padding:0 18px 14px;}
body .mo-show .mo-box-footer .mo-button-box {display:block;width:100%;text-align:center;padding:12px;border-radius:10px;background:#059669;color:#fff;font-weight:800;font-size:14px;text-decoration:none;border:none;}
body .mo-show .mo-box-footer .mo-button-box:hover {background:#047857;}
body .mo-show #mo-new {padding:0;}
body .mo-show #mo-new .mo-head.mo-head-form {display:none;}
body .mo-show #mo-new .mo-box-content-form {padding:16px 18px;}
body .mo-show #mo-new .mo-form-row {margin-bottom:10px;}
body .mo-show #mo-new label {font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.04em;color:#64748b;margin-bottom:4px;display:block;}
body .mo-show .mo-submit-wrap {margin-top:14px;}
body .mo-show .mo-submit-wrap input[type="submit"],
body .mo-show .mo-submit-wrap button[type="submit"] {width:100%;padding:13px 16px;border-radius:10px;background:#059669;color:#fff;font-weight:800;font-size:14px;border:none;cursor:pointer;transition:background .15s;}
body .mo-show .mo-submit-wrap input[type="submit"]:hover,
body .mo-show .mo-submit-wrap button[type="submit"]:hover {background:#047857;}
body .mo-show .mo-per-piece {font-size:11px;color:#94a3b8;margin-top:2px;}
body .mo-head-list {font-size:18px;font-weight:900;}
/* Hide phone field and per-piece label in offer form */
body .mo-show .mo-row:has(#phone) {display:none !important;}
body .mo-show .unit-price {display:none !important;}
/* Hide duplicate "Submit a new offer" footer when form is visible */
body .mo-show .mo-box-footer {display:none !important;}
/* Modern status badges */
body .mo-one .mo-buttons div,
body .mo-line-status div {border-radius:999px !important;font-size:12px !important;font-weight:700 !important;padding:6px 14px !important;height:auto !important;line-height:1.3 !important;border:none !important;}
body .mo-one .mo-buttons div.mo-offer-status-0,
body .mo-line-status div.mo-offer-status-0 {background:#fef3c7 !important;color:#92400e !important;}
body .mo-one .mo-buttons div.mo-offer-status-1,
body .mo-line-status div.mo-offer-status-1 {background:#d1fae5 !important;color:#065f46 !important;}
body .mo-one .mo-buttons div.mo-offer-status-2,
body .mo-line-status div.mo-offer-status-2 {background:#fee2e2 !important;color:#991b1b !important;}
/* Offer list item — cleaner layout */
body .mo-two {padding:12px 0 12px 50px !important;border-bottom:1px solid #f1f5f9 !important;}
body .mo-two .mo-img {width:38px;height:38px;border-radius:10px !important;}
body .mo-two .mo-line-link {color:#059669 !important;font-size:13px !important;}
body .mo-two .mo-line-title {font-size:12px !important;color:#94a3b8 !important;}
body .mo-two .mo-line-sub {font-size:15px !important;}
body #mo-new .mo-back {width:56px;height:56px;line-height:56px;border-right:1px solid #e8e8e8;color:#00ba76;font-size:20px;}

body #bpr-seller.bpr-block .bpr-filters .bpr-show-all:hover {
  background: rgba(0, 186, 118, 0.12) !important;
  text-decoration: none !important;
}

body #bpr-seller .bpr-right > div.bpr-phone,
body #bpr-seller .bpr-right > div.bpr-location {
  display:flex!important;
  align-items:flex-start!important;
  gap:12px!important;
  padding:14px 14px!important;
  border:1px solid rgba(0,0,0,0.08)!important;
  border-radius:14px!important;
  background:#fff!important;
  box-shadow:0 10px 30px rgba(0,0,0,0.06)!important;
  margin:0 0 12px 0!important;
}

body #bpr-seller .bpr-right > div.bpr-phone i,
body #bpr-seller .bpr-right > div.bpr-location i {
  float:none!important;
  width:36px!important;
  height:36px!important;
  margin:0!important;
  border-radius:12px!important;
  background:rgba(0,186,118,0.12)!important;
  position:relative!important;
}

body #bpr-seller .bpr-right > div.bpr-phone i:before,
body #bpr-seller .bpr-right > div.bpr-location i:before {
  content:""!important;
  position:absolute!important;
  left:50%!important;
  top:50%!important;
  width:18px!important;
  height:18px!important;
  transform:translate(-50%, -50%)!important;
  background:#00ba76!important;
  -webkit-mask-repeat:no-repeat!important;
  mask-repeat:no-repeat!important;
  -webkit-mask-position:center!important;
  mask-position:center!important;
  -webkit-mask-size:contain!important;
  mask-size:contain!important;
}

body #bpr-seller .bpr-right > div.bpr-phone i:before {
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.86.3 1.7.57 2.5a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.58-1.14a2 2 0 0 1 2.11-.45c.8.27 1.64.45 2.5.57A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E")!important;
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.86.3 1.7.57 2.5a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.58-1.14a2 2 0 0 1 2.11-.45c.8.27 1.64.45 2.5.57A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E")!important;
}

body #bpr-seller .bpr-right > div.bpr-location i:before {
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E")!important;
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E")!important;
}

body #bpr-seller .bpr-right > div.bpr-phone .bpr-right-box,
body #bpr-seller .bpr-right > div.bpr-location .bpr-right-box {float:none!important;width:calc(100% - 48px)!important;}
body #bpr-seller .bpr-right > div.bpr-phone .bpr-right-box a,
body #bpr-seller .bpr-right > div.bpr-location .bpr-right-box span {
  font-size:15px!important;
  line-height:22px!important;
  color:#111!important;
}
body #bpr-seller .bpr-right > div.bpr-phone .bpr-right-box a {text-decoration:none!important;border-bottom:1px dashed rgba(0,0,0,0.18)!important;}
body #bpr-seller .bpr-right > div.bpr-phone .bpr-right-box a:hover {border-bottom-color:rgba(0,0,0,0.30)!important;}
body #bpr-seller .bpr-right > div.bpr-location .bpr-show-map,
body #bpr-seller .bpr-right > div.bpr-location .bpr-hide-map {
  display:inline-flex!important;
  margin-top:8px!important;
  width:auto!important;
  font-size:13px!important;
  font-weight:700!important;
  color:#0a7d57!important;
  text-decoration:none!important;
}
body #bpr-seller .bpr-right > div.bpr-location .bpr-show-map:hover,
body #bpr-seller .bpr-right > div.bpr-location .bpr-hide-map:hover {text-decoration:underline!important;}

body .mo-show textarea,
body .mo-two input[type="text"] {border:1px solid #d7dbe6;border-radius:12px;height:44px;padding:10px 12px;font-size:14px;line-height:22px;background:#fff;transition:border-color 0.15s ease, box-shadow 0.15s ease;}
body .mo-show textarea {height:110px;resize:vertical;}
body .mo-show input:focus,
body .mo-show textarea:focus {border-color:#00ba76;box-shadow:0 0 0 4px rgba(0,186,118,0.14);outline:none;}

body #mo-new #price {padding-left:54px;}
body .mo-show .mo-input-wrap > span {width:44px;border-radius:12px 0 0 12px;background:#f2f4f8;color:#111;}
body .mo-show .mo-input-wrap > span > span {width:28px;height:28px;margin:-14px 0 0 -14px;line-height:28px;}

body #error_list.mo-error-list li {background:#fff4e5;color:#111;border:1px solid rgba(255,159,0,0.35);border-radius:12px;margin:0 0 10px 0;}
body #error_list.mo-error-list li label {color:#111;}

body #mo-new button.mo-submit {height:52px;border-radius:12px;background:#00ba76;color:#fff;font-size:15px;font-weight:700;letter-spacing:0;}
body #mo-new button.mo-submit:hover {background:#00a867;}
body #mo-new button.mo-submit.mo-loading {opacity:0.85;}

body .mo-status {top:calc(50% - 110px);}
body .mo-status i {font-size:84px;line-height:84px;}

body #itemMap {border-radius:12px;overflow:hidden;border:1px solid rgba(0,0,0,0.08);}
body #itemMap .gm-style,
body #itemMap .gm-style > div {border-radius:12px;}

body #sellerMapSide {border-radius:12px;overflow:hidden;border:1px solid rgba(0,0,0,0.08);}
body #sellerMapSide .gm-style,
body #sellerMapSide .gm-style > div {border-radius:12px;}

body .gm-map-wrap {position:relative;}
body .gm-map-wrap .gm-nav-cta {
  position:absolute;
  left:14px;
  top:14px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 6px 18px rgba(0,0,0,0.18);
  text-decoration:none;
  color:#111;
  font-weight:700;
  font-size:14px;
  line-height:18px;
}

body .gm-map-wrap .gm-nav-cta:hover {background:#fff;box-shadow:0 8px 22px rgba(0,0,0,0.22);}
body .gm-map-wrap .gm-nav-cta:focus {outline:none;box-shadow:0 8px 22px rgba(0,0,0,0.22), 0 0 0 4px rgba(0,186,118,0.18);}

body .gm-map-wrap .gm-nav-cta-icon {
  position:relative;
  width:22px;
  height:22px;
  display:inline-block;
  background:#00ba76;
  -webkit-mask-image:var(--gm-nav-icon);
  mask-image:var(--gm-nav-icon);
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
  -webkit-mask-size:contain;
  mask-size:contain;
}

body .gm-map-wrap .gm-nav-cta-icon:after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:22px;
  height:22px;
  transform:translate(-50%, -50%);
  border-radius:999px;
  box-shadow:0 0 0 0 rgba(0,186,118,0.35);
  animation:gm-nav-pulse 1.6s ease-out infinite;
}

@keyframes gm-nav-pulse {
  0% {box-shadow:0 0 0 0 rgba(0,186,118,0.35);}
  70% {box-shadow:0 0 0 14px rgba(0,186,118,0.0);}
  100% {box-shadow:0 0 0 0 rgba(0,186,118,0.0);}
}

body .bpr-map-side {margin:12px 0 0 0;}

body .bpr-about-wrap {position:relative;}
body .bpr-about-wrap .bpr-about {overflow:hidden;transition:max-height 0.25s ease;}
body .bpr-about-wrap .bpr-about.is-collapsed:after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:56px;
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events:none;
 }
 body .bpr-about-wrap {padding-bottom:279px;}
 body .bpr-about-wrap.is-expanded {padding-bottom:0;}
 body .bpr-about-wrap.is-expanded .bpr-about.is-collapsed:after {display:none;}
 body .bpr-about-toggle {
  position:absolute;
  left:50%;
  bottom:0;
  height:32px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  color:#111;
  font-weight:300;
  font-size:12px;
  cursor:pointer;
  transform:translateX(-50%);
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
 }
 body .bpr-about-toggle:hover {border-color:rgba(0,0,0,0.18);}
 body .bpr-about-toggle:focus {outline:none;box-shadow:0 0 0 4px rgba(0,186,118,0.16);}

 body .bpr-about-wrap:not(.is-expanded) .bpr-about-toggle {animation:bpr-about-pulse 1.6s ease-out infinite;}
 body .bpr-about-wrap.is-expanded .bpr-about-toggle {animation:none;}

@keyframes bpr-about-pulse {
  0% {box-shadow:0 10px 24px rgba(0,0,0,0.10), 0 0 0 0 rgba(0,186,118,0.25);}
  70% {box-shadow:0 10px 24px rgba(0,0,0,0.10), 0 0 0 14px rgba(0,186,118,0.0);}
  100% {box-shadow:0 10px 24px rgba(0,0,0,0.10), 0 0 0 0 rgba(0,186,118,0.0);}
}

 body #bpr-video .bpr-video-card {border-radius:12px;overflow:hidden;border:1px solid rgba(0,0,0,0.08);}
 body #bpr-video .bpr-video-card iframe {width:100%;height:260px;border-radius:12px;}

 body #bpr-video .bpr-video-open {display:block;width:100%;border:0;padding:0;background:transparent;cursor:pointer;position:relative;}
 body #bpr-video .bpr-video-thumb {display:block;width:100%;padding-top:56.25%;position:relative;background:#000;}
 body #bpr-video .bpr-video-thumb img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;display:block;}
 body #bpr-video .bpr-video-play {position:absolute;left:50%;top:50%;width:58px;height:58px;transform:translate(-50%, -50%);border-radius:999px;background:rgba(0,0,0,0.60);}
 body #bpr-video .bpr-video-play:after {content:"";position:absolute;left:50%;top:50%;transform:translate(-42%,-50%);width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent;border-left:16px solid #fff;}
 body #bpr-video .bpr-video-open:hover .bpr-video-play {background:rgba(0,0,0,0.72);}

 body .bpr-yt-modal {position:fixed;inset:0;z-index:9999;display:none;}
 body .bpr-yt-modal.is-open {display:block;}
 body .bpr-yt-modal-backdrop {position:absolute;inset:0;background:rgba(17,17,17,0.72);backdrop-filter:blur(2px);}
 body .bpr-yt-modal-dialog {position:relative;max-width:980px;width:calc(100% - 24px);margin:7vh auto 0 auto;border-radius:14px;overflow:hidden;background:#000;box-shadow:0 18px 60px rgba(0,0,0,0.45);}
 body .bpr-yt-modal-close {position:absolute;right:10px;top:10px;z-index:2;width:40px;height:40px;border-radius:10px;border:0;background:rgba(255,255,255,0.14);color:#fff;font-size:28px;line-height:40px;cursor:pointer;}
 body .bpr-yt-modal-close:hover {background:rgba(255,255,255,0.22);}
 body .bpr-yt-modal-media {position:relative;width:100%;padding-top:56.25%;}
 body .bpr-yt-modal-media iframe {position:absolute;top:0;left:0;width:100%;height:100%;}
body.bpr-yt-modal-open {overflow:hidden;}

 body #bpr-seller .bpr-contact-us a.bpr-btn.bpr-go {
  position:relative;
  border:2px solid rgba(0,186,118,0.55);
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
 }
 body #bpr-seller .bpr-contact-us a.bpr-btn.bpr-go:after {
  content:"";
  position:absolute;
  inset:-7px;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:0 0 0 0 rgba(0,186,118,0.28);
  animation:bpr-contact-pulse 1.6s ease-out infinite;
 }
 body #bpr-seller .bpr-contact-us a.bpr-btn.bpr-go:hover:after {animation:none;box-shadow:0 0 0 12px rgba(0,186,118,0.0);}

 @keyframes bpr-contact-pulse {
  0% {box-shadow:0 0 0 0 rgba(0,186,118,0.28);}
  70% {box-shadow:0 0 0 16px rgba(0,186,118,0.0);}
  100% {box-shadow:0 0 0 0 rgba(0,186,118,0.0);}
 }

 body #sellerContact {
  position:fixed;
  inset:0;
  width:auto;
  height:auto;
  z-index:10000;
  background:rgba(17,17,17,0.72);
  backdrop-filter:blur(3px);
  padding:18px;
 }
 body #sellerContact fieldset {
  float:none;
  width:100%;
  max-width:520px;
  margin:8vh auto 0 auto;
  padding:18px;
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 18px 60px rgba(0,0,0,0.40);
  max-height:calc(100vh - 140px);
  overflow:auto;
  position:relative;
 }
 body #sellerContact .bpr-title {
  float:none;
  width:100%;
  margin:0 0 14px 0;
  font-size:18px;
  line-height:24px;
  font-weight:800;
  color:#111;
 }
 body #sellerContact input,
 body #sellerContact textarea {
  float:none;
  width:100%;
  border:1px solid #d7dbe6;
  border-radius:12px;
  background:#fff;
  color:#111;
  font-size:14px;
  line-height:20px;
  padding:12px;
  margin:0 0 12px 0;
 }
 body #sellerContact textarea {min-height:120px;resize:vertical;}
 body #sellerContact input:focus,
 body #sellerContact textarea:focus {border-color:#00ba76;box-shadow:0 0 0 4px rgba(0,186,118,0.14);outline:none;}
 body #sellerContact .bpr-btn {
  float:none;
  width:100%;
  height:46px;
  border-radius:12px;
  border:none;
  background:#00ba76;
  color:#fff;
  font-size:15px;
  font-weight:800;
 }
 body #sellerContact .bpr-btn:hover {background:#00a867;color:#fff;}
 body #sellerContact .bpr-close {
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border-radius:10px;
  background:rgba(0,0,0,0.06);
  opacity:1;
  z-index:2;
 }
 body #sellerContact .bpr-close:hover {background:rgba(0,0,0,0.10);}
 body #sellerContact .bpr-close img {display:none;}
 body #sellerContact .bpr-close:before {
  content:"\00d7";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  font-size:28px;
  line-height:28px;
  color:#111;
 }
  body #mo-new .mo-back {width:54px;}
  body .gm-map-wrap .gm-nav-cta {left:10px;top:10px;padding:9px 12px;font-size:13px;gap:8px;}
  body .gm-map-wrap .gm-nav-cta-icon {width:20px;height:20px;}
  body .gm-map-wrap .gm-nav-cta-icon:after {width:20px;height:20px;}
  body .bpr-yt-modal-dialog {margin:10vh auto 0 auto;width:calc(100% - 16px);border-radius:12px;}

 body #bpr-seller .bpr-verified {display:inline-flex;align-items:center;gap:8px;}
 body #bpr-seller .bpr-verified-text {
  display:inline-flex;
  align-items:center;
  height:26px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(0,186,118,0.12);
  border:1px solid rgba(0,186,118,0.28);
  color:#0a7d57;
  font-size:12px;
  font-weight:800;
  line-height:18px;
  white-space:nowrap;
 }

 body #bpr-seller .bpr-profile .bpr-verified {right:137px!important;width:64px!important;}
 body #bpr-seller .bpr-profile .bpr-verified img {width:64px!important;max-width:64px!important;}

 @media (max-width: 490px) {
   body #bpr-seller .bpr-profile .bpr-verified {right:125px!important;width:56px!important;}
   body #bpr-seller .bpr-profile .bpr-verified img {width:56px!important;max-width:56px!important;}
   body #bpr-video .bpr-video-card iframe {height:210px;}
 }

 @media (max-width: 360px) {
   body #bpr-video .bpr-video-card iframe {height:175px;}
   body .bpr-yt-modal-dialog {margin:12vh auto 0 auto;}
 }

@media (max-width: 767px) {
  body #bpr-seller .products.grid .simple-prod {width:calc(100% - 20px);}
}
.welcome-container{display:block;}
.welcome-container .welcome-block{margin-left:0;margin-right:0;max-width:100%;}

@media (min-width: 768px) {
  .welcome-container .welcome-block{margin-left:-24px;}
}

.voting-container {
  padding: 8px 0;
}

.vote-question {
  text-align: center;
  margin-bottom: 10px;
}

.vote-question p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.vote-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: center;
}

.vote-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
}

.vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vote-btn.vote-yes {
  border-color: #28a745;
  color: #00ba76;
}

.vote-btn.vote-yes:hover {
  background: #28a745;
  color: white;
}

.vote-btn.vote-no {
  border-color: #ef4444;
  color: #ef4444;
}

.vote-btn.vote-no:hover {
  background: #dc3545;
  color: white;
}

.vote-btn.voted {
  opacity: 0.6;
  cursor: not-allowed;
}

.vote-btn .vote-ico {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.vote-btn .vote-ico.vote-like {
  -webkit-mask-image: url("../images/like.png");
  mask-image: url("../images/like.png");
}

.vote-btn .vote-ico.vote-dislike {
  -webkit-mask-image: url("../images/dislike.png");
  mask-image: url("../images/dislike.png");
}

.vote-count {
  font-size: 12px;
  opacity: 0.8;
  line-height: 1;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
}

.vote-results {
  margin-top: 10px;
}

.vote-progress {
  height: 18px;
  background: #f0f0f0;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  margin-bottom: 6px;
}

.vote-bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 12px;
  transition: width 0.5s ease;
}

.yes-bar {
  background: linear-gradient(90deg, #00ba76, #22c55e);
}

.no-bar {
  background: linear-gradient(90deg, #dc3545, #e4606d);
}

.vote-total {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

.vote-message {
  text-align: center;
  margin-top: 10px;
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  display: none;
}

.vote-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.vote-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.vote-message.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

#item-side .report-button.vrool-report-card {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:82px;
  margin:0;
  padding:0 20px;
  border:1px solid #dbe3ef;
  border-radius:18px;
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 14px 30px rgba(15,23,42,0.06);
  color:#111827;
  font-size:18px;
  font-weight:700;
}

#item-side .report-button.vrool-report-card:hover {
  border-color:#c7d7ee;
  background:#ffffff;
  text-decoration:none;
  transform:translateY(-1px);
  box-shadow:0 18px 34px rgba(15,23,42,0.08);
}

#item-side .report-button.vrool-report-card i {
  margin:0;
  width:24px;
  color:#475569;
  font-size:20px;
}

#item-side .report-button.vrool-report-card span {
  line-height:1.2;
}

#item-side .report-wrap.vrool-report-wrap {
  margin-top:12px;
  border:1px solid #dbe3ef;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 16px 36px rgba(15,23,42,0.06);
  overflow:hidden;
}

#item-side .report-wrap.vrool-report-wrap #report {
  padding:24px;
}

#item-side .report-wrap.vrool-report-wrap #report > img {
  width:72px;
  margin:0 0 18px 0;
}

#item-side .report-wrap.vrool-report-wrap #report .header {
  margin:0 0 10px 0;
  color:#111827;
  font-size:24px;
  line-height:1.15;
  font-weight:800;
}

#item-side .report-wrap.vrool-report-wrap #report .subheader {
  margin:0 0 18px 0;
  color:#64748b;
  font-size:14px;
  line-height:1.65;
}

#item-side .report-wrap.vrool-report-wrap #report .text {
  display:grid;
  gap:10px;
}

#item-side .report-wrap.vrool-report-wrap #report .text a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0;
  padding:14px 16px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#fff;
  color:#0f172a;
  font-size:14px;
  font-weight:700;
  line-height:1.4;
  transition:all .2s ease;
}

#item-side .report-wrap.vrool-report-wrap #report .text a:hover {
  border-color:#bfd3f2;
  background:#f8fbff;
  color:#1d4ed8;
  text-decoration:none;
  transform:translateX(2px);
}

#item-side .report-wrap.vrool-report-wrap #report .text a:after {
  content:"→";
  display:inline-flex;
  margin-left:auto;
  color:#94a3b8;
  font-size:16px;
  font-weight:700;
}

.vrool-offer-deal{margin:12px 0 16px 0;padding:14px;border-radius:16px;background:#fff;border:1px solid rgba(0,0,0,0.08);box-shadow:0 10px 28px rgba(0,0,0,0.07);overflow:hidden;}
.vrool-offer-deal-grid{display:grid;grid-template-columns:260px minmax(0,1fr);gap:16px;align-items:stretch;}
.vrool-offer-deal-left{background:linear-gradient(135deg, rgba(0,186,118,0.14), rgba(0,186,88,0.06));border-radius:14px;padding:16px;display:flex;flex-direction:column;justify-content:space-between;min-height:200px;}
.vrool-offer-brand{display:flex;align-items:center;gap:12px;}
.vrool-offer-brand-logo{width:56px;height:56px;border-radius:14px;background:#fff;border:1px solid rgba(0,0,0,0.08);display:flex;align-items:center;justify-content:center;overflow:hidden;}
.vrool-offer-brand-logo img{width:100%;height:100%;object-fit:contain;display:block;}
.vrool-offer-brand-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;background:rgba(255,255,255,0.85);border:1px solid rgba(0,0,0,0.08);font-weight:900;font-size:12px;line-height:14px;letter-spacing:0.02em;text-transform:uppercase;color:#111;}
.vrool-offer-deal-title{font-weight:1000;font-size:16px;line-height:22px;margin:12px 0 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.vrool-offer-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.vrool-offer-badge-pill{display:inline-flex;align-items:center;gap:8px;padding:12px 20px;border-radius:999px;background:rgba(0,0,0,0.06);border:1px solid rgba(0,0,0,0.08);font-weight:900;font-size:16px;line-height:20px;}
.vrool-offer-deal-right{padding:16px;border-radius:14px;border:1px solid rgba(0,0,0,0.08);background:rgba(0,0,0,0.02);display:flex;flex-direction:column;gap:12px;}
.vrool-offer-cta{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:12px 16px;border-radius:14px;background:rgba(0,186,118,0.10);color:#00ba76;font-weight:900;font-size:14px;line-height:18px;border:2px dotted rgba(0,186,118,0.60);cursor:pointer;min-width:220px;text-decoration:none;}
.vrool-offer-cta:hover{background:rgba(0,186,118,0.14);}
.vrool-offer-note{margin:0;opacity:0.72;font-weight:600;font-size:13px;line-height:17px;}
.vrool-offer-prices{display:flex;align-items:baseline;flex-wrap:wrap;gap:10px;}
.vrool-offer-price-old{font-weight:900;font-size:13px;opacity:0.65;}
.vrool-offer-price-old s{font-weight:900;}
.vrool-offer-price-new{font-weight:1100;font-size:15px;color:#00a85f;}

.vrool-coupon-deal{margin:12px 0 16px 0;padding:14px;border-radius:16px;background:#fff;border:1px solid rgba(0,0,0,0.08);box-shadow:0 10px 28px rgba(0,0,0,0.07);overflow:hidden;}
.vrool-coupon-deal-grid{display:grid;grid-template-columns:280px minmax(0,1fr);gap:16px;align-items:stretch;}
@media(max-width: 820px){.vrool-coupon-deal-grid{grid-template-columns:1fr;}}
.vrool-coupon-deal-left{background:linear-gradient(135deg, rgba(0,186,118,0.14), rgba(0,186,88,0.06));border-radius:14px;padding:16px;display:flex;flex-direction:column;justify-content:space-between;min-height:220px;}
.vrool-coupon-brand{display:flex;align-items:center;gap:12px;}
.vrool-coupon-brand-logo{width:56px;height:56px;border-radius:14px;background:#fff;border:1px solid rgba(0,0,0,0.08);display:flex;align-items:center;justify-content:center;overflow:hidden;}
.vrool-coupon-brand-logo img{width:100%;height:100%;object-fit:contain;display:block;}
.vrool-coupon-brand-meta{min-width:0;}
.vrool-coupon-brand-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;background:rgba(255,255,255,0.85);border:1px solid rgba(0,0,0,0.08);font-weight:900;font-size:12px;line-height:14px;letter-spacing:0.02em;text-transform:uppercase;color:#111;}
.vrool-coupon-brand-badge i{opacity:0.8;}
.vrool-coupon-deal-title{font-weight:900;font-size:20px;line-height:26px;margin:12px 0 0 0;}
.vrool-coupon-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.vrool-coupon-badge-pill{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(0,0,0,0.06);border:1px solid rgba(0,0,0,0.08);font-weight:900;font-size:12px;line-height:14px;}
.vrool-coupon-badge-pill strong{font-weight:900;}
.vrool-coupon-deal-right{padding:16px;border-radius:14px;border:1px solid rgba(0,0,0,0.08);background:rgba(0,0,0,0.02);display:flex;flex-direction:column;gap:12px;}
.vrool-coupon-voucher-tag{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 14px;border-radius:16px;background:rgba(139,92,246,0.10);border:2px dashed rgba(139,92,246,0.55);}
.vrool-coupon-voucher-left{display:flex;align-items:center;gap:12px;min-width:0;}
.vrool-coupon-voucher-left i{font-size:18px;color:#7c3aed;}
.vrool-coupon-voucher-text{min-width:0;}
.vrool-coupon-voucher-title{font-weight:1000;font-size:18px;line-height:22px;margin:0;color:#111;}
.vrool-coupon-voucher-sub{font-weight:700;font-size:14px;line-height:18px;margin:4px 0 0 0;opacity:0.78;}
.vrool-coupon-voucher-apply{font-weight:1000;font-size:22px;line-height:26px;color:#7c3aed;white-space:nowrap;}
.vrool-coupon-price-tags{display:flex;flex-wrap:wrap;gap:10px;}
.vrool-coupon-tag{display:flex;flex-direction:column;gap:4px;padding:10px 12px;border-radius:14px;background:#fff;border:1px solid rgba(0,0,0,0.08);min-width:140px;}
.vrool-coupon-tag .lbl{font-size:12px;line-height:14px;font-weight:900;opacity:0.65;text-transform:uppercase;letter-spacing:0.02em;}
.vrool-coupon-tag .val{font-size:18px;line-height:22px;font-weight:1000;color:#111;}
.vrool-coupon-price-row{display:flex;flex-wrap:wrap;gap:10px;align-items:baseline;}
.vrool-coupon-price-final{font-weight:900;font-size:30px;line-height:34px;color:#0f172a;}
.vrool-coupon-price-orig{font-weight:900;font-size:15px;line-height:18px;text-decoration:line-through;opacity:0.55;}
.vrool-coupon-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin-top:2px;}
.vrool-coupon-cta{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:12px 16px;border-radius:14px;background:linear-gradient(135deg,#00ba76,#00ba58);color:#fff;font-weight:900;font-size:14px;line-height:18px;border:0;cursor:pointer;min-width:220px;}
.vrool-coupon-cta:disabled{opacity:0.55;cursor:not-allowed;}
.vrool-coupon-code{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:12px 16px;border-radius:14px;background:#fff;border:1px dashed rgba(0,0,0,0.28);font-weight:900;position:relative;cursor:pointer;transition:all 0.2s ease;min-height:46px;min-width:220px;}
.vrool-coupon-code:hover{border-color:rgba(0,0,0,0.45);background:#f8f9fa;transform:translateY(-1px);}
.vrool-coupon-code span{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}
.vrool-coupon-code .vrool-copy-icon{color:#6b7280;font-size:14px;opacity:0.7;transition:all 0.2s ease;}
.vrool-coupon-code:hover .vrool-copy-icon{color:#374151;opacity:1;transform:scale(1.1);}
.vrool-coupon-code[data-copied="1"]{border-color:#10b981;background:#ecfdf5;}
.vrool-coupon-code[data-copied="1"] .vrool-copy-icon{color:#10b981;}
.vrool-coupon-code[data-copied="1"]::after{content:'Copied!';position:absolute;top:-8px;right:8px;background:#10b981;color:#fff;padding:4px 8px;border-radius:6px;font-size:11px;font-weight:700;animation:fadeInOut 2s ease;}
.vrool-coupon-note{margin:0;opacity:0.72;font-weight:600;font-size:13px;line-height:17px;}
.vrool-coupon-rating{display:flex;align-items:center;gap:10px;}
.vrool-coupon-stars{display:inline-flex;align-items:center;gap:2px;color:#f59e0b;}
.vrool-coupon-stars i{font-size:13px;}
.vrool-coupon-rating-text{font-weight:800;font-size:13px;opacity:0.75;}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-5px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}

.vrool-hc-availability-section{margin-top:10px;}
.vrool-hc-availability-card{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:14px;padding:12px 14px;}
.vrool-hc-availability-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:10px;}
.vrool-hc-availability-title{margin:0;font-size:14px;line-height:18px;font-weight:900;letter-spacing:0.02em;text-transform:uppercase;opacity:0.85;}
.vrool-hc-availability-sub{margin:2px 0 0 0;font-size:13px;line-height:16px;opacity:0.72;}
.vrool-hc-availability-grid{display:grid;grid-template-columns:1fr;gap:10px;}
@media(min-width:520px){.vrool-hc-availability-grid{grid-template-columns:1fr 1fr;}}
@media(min-width:860px){.vrool-hc-availability-grid{grid-template-columns:1fr 1fr 1fr;}}
.vrool-hc-availability-pill{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,0.08);background:rgba(16,185,129,0.06);}
.vrool-hc-availability-pill .vrool-hc-day{display:inline-flex;align-items:center;justify-content:center;min-width:54px;height:28px;padding:0 10px;border-radius:999px;background:rgba(16,185,129,0.16);border:1px solid rgba(16,185,129,0.22);font-weight:900;font-size:12px;letter-spacing:0.06em;color:#047857;}
.vrool-hc-availability-pill .vrool-hc-time{font-weight:900;font-size:14px;line-height:18px;color:#0f172a;text-align:right;}
.vrool-hc-availability-value{display:none;}

.vrool-item-chat-tab{margin:10px 0 10px 0;}
.vrool-item-chat-tab .vrool-start-chat{width:100%;display:flex;align-items:center;justify-content:center;gap:10px;padding:12px 14px;border-radius:12px;background:rgba(37,99,235,0.10);border:1px solid rgba(37,99,235,0.18);font-weight:500;color:#1d4ed8;}
.vrool-item-chat-tab .vrool-start-chat i{font-size:16px;}
.vrool-item-chat-tab .vrool-start-chat span{font-size:14px;}
.vrool-item-chat-tab .vrool-start-chat.vrool-disabled{opacity:0.55;pointer-events:none;}

@media(min-width: 920px){
  .home-offers .container{max-width:1320px;width:calc(100% - 40px);}
}
.home-offers .nice-scroll-prev,
.home-offers .nice-scroll-next{display:none !important;}
.home-offers #home-offer-items.products{display:block;flex-wrap:wrap;overflow:visible;margin:0;width:100%;}
.home-offers .vrool-offer-cards{display:grid;grid-template-columns:repeat(5, minmax(0, 1fr));gap:12px;justify-content:start;}
.home-offers .vrool-offer-card{max-width:none;width:100%;display:flex;flex-direction:column;border-radius:16px;background:#fff;border:1px solid rgba(0,0,0,0.08);box-shadow:0 12px 32px rgba(0,0,0,0.06);overflow:hidden;min-height:260px;transform:translateZ(0);transition:transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;}
@media(max-width: 767px){
  .home-offers .vrool-offer-cards{gap:10px;}
  .home-offers .vrool-offer-cards{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .home-offers .vrool-offer-card{max-width:none;min-height:0;border-radius:14px;}
  .home-offers .vrool-offer-card-top{min-height:140px;}
  .home-offers .vrool-offer-card-head{padding:10px;}
  .home-offers .vrool-offer-logo{width:44px;height:44px;border-radius:12px;}
  .home-offers .vrool-offer-card-body{padding:10px 10px 12px 10px;gap:8px;}
  .home-offers .vrool-offer-title{font-size:13px;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .home-offers .vrool-offer-sub{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .home-offers .vrool-offer-exp{padding:5px 8px;font-size:10px;border-radius:8px;gap:4px;white-space:nowrap;}
  .home-offers .vrool-offer-btn{padding:8px 10px;border-radius:12px;font-size:12px;}
  .home-offers .vrool-offer-discount{padding:6px 8px;font-size:10px;}
}
@media(min-width:768px) and (max-width:1024px){
  .home-offers .vrool-offer-cards{grid-template-columns:repeat(4, minmax(0, 1fr));}
}
@media(min-width: 920px){.home-offers .vrool-offer-card{min-height:auto;}}
.home-offers .vrool-offer-card-top{position:relative;min-height:220px;background:linear-gradient(135deg, rgba(0,186,118,0.18), rgba(0,186,88,0.06));}
.home-offers .vrool-offer-card-top .vrool-offer-thumb{position:absolute;inset:0;background-size:contain;background-position:center;background-repeat:no-repeat;opacity:0.90;filter:saturate(1.25) contrast(1.08);transition:opacity 180ms ease, filter 180ms ease;}
.home-offers .vrool-offer-card-top:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.38) 100%);transition:background 180ms ease;}
.home-offers .vrool-offer-card:hover{transform:scale(1.03);box-shadow:0 18px 46px rgba(0,0,0,0.12);border-color:rgba(0,0,0,0.14);}
.home-offers .vrool-offer-card:hover .vrool-offer-card-top .vrool-offer-thumb{opacity:1;filter:saturate(1.35) contrast(1.12);}
.home-offers .vrool-offer-card:hover .vrool-offer-card-top:after{background:linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.10) 100%);}
.home-offers .vrool-offer-card-head{position:relative;z-index:2;display:flex;align-items:flex-start;justify-content:space-between;gap:10px;padding:12px;}
.home-offers .vrool-offer-logo{width:54px;height:54px;border-radius:50%;background:#fff;border:1px solid rgba(0,0,0,0.08);overflow:hidden;display:flex;align-items:center;justify-content:center;flex:0 0 auto;}
.home-offers .vrool-offer-logo img{width:100%;height:100%;object-fit:contain;display:block;}
.home-offers .vrool-offer-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;background:rgba(255,255,255,0.9);border:1px solid rgba(0,0,0,0.08);font-weight:900;font-size:12px;letter-spacing:0.02em;text-transform:uppercase;}
.home-offers .vrool-offer-discount{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;background:linear-gradient(135deg,#ff2d55,#ff7a00);border:1px solid rgba(0,0,0,0.10);color:#fff;font-weight:1100;font-size:11px;letter-spacing:0.03em;text-transform:uppercase;white-space:nowrap;box-shadow:0 10px 24px rgba(255,45,85,0.28);text-decoration:none;}
.home-offers .vrool-offer-actions .vrool-offer-discount{margin-left:auto;}
.home-offers .vrool-offer-card-body{padding:14px 14px 16px 14px;display:flex;flex-direction:column;gap:10px;}
.home-offers .vrool-offer-title{margin:0;font-weight:1000;font-size:18px;line-height:1.2;color:#0f172a;text-shadow:0 1px 0 rgba(255,255,255,0.35);}
.home-offers .vrool-offer-sub{margin:0;opacity:0.7;font-weight:700;font-size:14px;line-height:1.35;}
.home-offers .vrool-offer-prices{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;}
.home-offers .vrool-offer-price-old{font-weight:1000;font-size:13px;opacity:0.55;}
.home-offers .vrool-offer-price-old s{font-weight:1000;}
.home-offers .vrool-offer-price-new{font-weight:1100;font-size:15px;color:#00a85f;}
.home-offers .vrool-offer-meta{display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
.home-offers .vrool-offer-exp{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:8px;background:rgba(0,0,0,0.04);border:1px solid rgba(0,0,0,0.06);font-weight:600;font-size:11px;color:#6b7280;white-space:nowrap;}
.home-offers .vrool-offer-actions{margin-top:auto;display:flex;gap:10px;align-items:center;}
.home-offers .vrool-offer-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:10px 14px;border-radius:14px;background:linear-gradient(135deg,#00ba76,#00ba58);color:#fff;font-weight:1000;font-size:13px;line-height:16px;text-decoration:none;white-space:nowrap;border:0;}
.home-offers .vrool-offer-btn.secondary{background:rgba(15,23,42,0.06);color:#0f172a;border:1px solid rgba(15,23,42,0.10);}

.home-videos .home-videos-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;}
@media (max-width: 1024px){.home-videos .home-videos-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width: 600px){.home-videos .home-videos-grid{grid-template-columns:1fr;}}
.home-videos .vrool-home-video-tile{position:relative;border-radius:12px;overflow:hidden;background:#0b0b0b;border:1px solid rgba(0,0,0,0.08);cursor:pointer;}
.home-videos .vrool-home-video-tile:before{content:"";display:block;padding-top:56.25%;}
.home-videos .vrool-home-video-thumb{position:absolute;inset:0;background-size:cover;background-position:center;filter:saturate(1.02);}
.home-videos .vrool-home-video-thumb:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);} 
.home-videos .vrool-home-video-play{position:absolute;left:12px;top:12px;display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:999px;background:rgba(0,0,0,0.65);color:#fff;font-size:16px;z-index:2;}
.home-videos .vrool-home-video-meta{position:absolute;left:12px;right:12px;bottom:10px;z-index:2;color:#fff;}
.home-videos .vrool-home-video-title{font-size:14px;font-weight:700;line-height:1.2;margin:0 0 4px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.home-videos .vrool-home-video-sub{font-size:12px;opacity:0.9;display:flex;justify-content:space-between;gap:8px;}

#vrool-home-video-modal{position:fixed;inset:0;z-index:99999;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0.9);padding:18px;}
#vrool-home-video-modal.is-open{display:flex;}
#vrool-home-video-modal .vrool-home-video-modal-dialog{width:100%;max-width:1100px;background:#000;border-radius:14px;overflow:hidden;position:relative;}
#vrool-home-video-modal .vrool-home-video-modal-close{position:absolute;right:12px;top:12px;z-index:5;background:rgba(0,0,0,0.55);border:0;color:#fff;width:36px;height:36px;border-radius:10px;font-size:18px;cursor:pointer;}
#vrool-home-video-modal .vrool-home-video-modal-content{display:grid;grid-template-columns: 1.6fr 1fr;min-height:420px;}
@media (max-width: 900px){#vrool-home-video-modal .vrool-home-video-modal-content{grid-template-columns:1fr;}}
#vrool-home-video-modal .vrool-home-video-player{position:relative;background:#000;}
#vrool-home-video-modal .vrool-home-video-player:before{content:"";display:block;padding-top:56.25%;}
#vrool-home-video-modal .vrool-home-video-player iframe{position:absolute;left:0;top:0;width:100%;height:100%;border:0;}
#vrool-home-video-modal .vrool-home-video-card{background:#0b0b0b;color:#fff;padding:16px;display:flex;flex-direction:column;gap:10px;}
#vrool-home-video-modal .vrool-home-video-card a{color:inherit;text-decoration:none;display:block;}
#vrool-home-video-modal .vrool-home-video-card-map{border:1px solid rgba(255,255,255,0.10);border-radius:12px;overflow:hidden;background:rgba(255,255,255,0.03);}
#vrool-home-video-modal .vrool-home-video-card-map iframe{display:block;width:100%;height:190px;border:0;}
#vrool-home-video-modal .vrool-home-video-card-inner{border:1px solid rgba(255,255,255,0.10);border-radius:12px;overflow:hidden;background:rgba(255,255,255,0.03);}
#vrool-home-video-modal .vrool-home-video-card-img{width:100%;height:190px;background:#111;}
#vrool-home-video-modal .vrool-home-video-card-img img{width:100%;height:100%;object-fit:cover;display:block;}
#vrool-home-video-modal .vrool-home-video-card-body{padding:12px;}
#vrool-home-video-modal .vrool-home-video-card-price{font-size:16px;font-weight:800;margin:0 0 6px 0;}
#vrool-home-video-modal .vrool-home-video-card-title{font-size:14px;font-weight:700;line-height:1.25;margin:0 0 6px 0;}
#vrool-home-video-modal .vrool-home-video-card-loc{font-size:12px;color:rgba(255,255,255,0.75);}
#vrool-home-video-modal .vrool-home-video-card-cta{margin-top:10px;font-size:12px;color:rgba(255,255,255,0.9);display:inline-flex;align-items:center;gap:6px;}

body#item #feedback-section{padding:18px;}
body#item #feedback-section h2{display:flex;align-items:center;gap:10px;margin:0 0 16px 0;font-size:18px;line-height:1.25;font-weight:800;color:#4b5563;}
body#item #feedback-section h2 img{flex:0 0 auto;}
body#item #feedback-section .feedback-summary{display:block;margin-bottom:18px;}
body#item #feedback-section .rating-overview{display:grid;grid-template-columns:minmax(0,160px) minmax(0,1fr);gap:16px;align-items:start;}
body#item #feedback-section .rating-average{display:flex;flex-direction:column;align-items:flex-start;gap:8px;}
body#item #feedback-section .rating-score{display:block;font-size:38px;line-height:1;font-weight:900;color:#111827;}
body#item #feedback-section .rating-stars{display:flex;align-items:center;gap:6px;flex-wrap:wrap;}
body#item #feedback-section .rating-stars span{font-size:22px;line-height:1;color:#d1d5db;cursor:pointer;}
body#item #feedback-section .rating-stars span.active{color:#f59e0b;}
body#item #feedback-section .rating-count{font-size:14px;line-height:1.35;color:#6b7280;}
body#item #feedback-section .rating-distribution{display:flex;flex-direction:column;gap:10px;min-width:0;}
body#item #feedback-section .rating-bar{display:grid;grid-template-columns:58px minmax(0,1fr) 28px;gap:10px;align-items:center;}
body#item #feedback-section .rating-label{font-size:13px;line-height:1.2;font-weight:700;color:#374151;white-space:nowrap;}
body#item #feedback-section .rating-progress{position:relative;height:10px;border-radius:999px;background:#e5e7eb;overflow:hidden;min-width:0;}
body#item #feedback-section .rating-fill{position:absolute;left:0;top:0;bottom:0;width:0;background:linear-gradient(90deg,#f59e0b,#fbbf24);border-radius:999px;transition:width 180ms ease;}
body#item #feedback-section .rating-bar .rating-count{justify-self:end;font-weight:700;color:#374151;}
body#item #feedback-section .feedback-form-container{display:flex;flex-direction:column;gap:14px;}
body#item #feedback-section .feedback-form-toggle{display:inline-flex;align-items:center;justify-content:center;gap:8px;align-self:flex-start;padding:10px 14px;border-radius:10px;border:1px solid rgba(0,0,0,0.12);background:#fff;color:#111827;font-size:14px;font-weight:800;line-height:1.2;cursor:pointer;box-shadow:0 2px 6px rgba(0,0,0,0.04);}
body#item #feedback-section .feedback-form-toggle:hover{background:#f9fafb;border-color:rgba(0,0,0,0.18);}
body#item #feedback-section .feedback-form{padding:16px;border:1px solid rgba(0,0,0,0.08);border-radius:14px;background:#f9fafb;}
body#item #feedback-section .feedback-form h3{margin:0 0 12px 0;font-size:16px;line-height:1.25;font-weight:800;color:#111827;}
body#item #feedback-section .feedback-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
body#item #feedback-section .feedback-form input,
body#item #feedback-section .feedback-form textarea{width:100%;padding:11px 12px;border:1px solid rgba(0,0,0,0.12);border-radius:10px;background:#fff;color:#111827;font-size:14px;line-height:1.35;}
body#item #feedback-section .feedback-form textarea{resize:vertical;min-height:110px;}
body#item #feedback-section .feedback-form .rating-input,
body#item #feedback-section .feedback-form .comment-input,
body#item #feedback-section .feedback-form .guest-form{margin-top:12px;}
body#item #feedback-section .feedback-form .rating-input label{display:block;margin:0 0 8px 0;font-size:13px;font-weight:700;color:#374151;}
body#item #feedback-section .feedback-form .star-rating{display:flex;align-items:center;gap:8px;}
body#item #feedback-section .feedback-form .star-rating span{font-size:28px;line-height:1;color:#d1d5db;cursor:pointer;transition:color 160ms ease, transform 160ms ease;}
body#item #feedback-section .feedback-form .star-rating span.active{color:#f59e0b;transform:scale(1.05);}
body#item #feedback-section .feedback-form .char-count{margin-top:6px;text-align:right;font-size:12px;color:#6b7280;}
body#item #feedback-section .feedback-form .form-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:14px;}
body#item #feedback-section .feedback-form .submit-feedback,
body#item #feedback-section .feedback-form .cancel-feedback{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 14px;border-radius:10px;border:1px solid rgba(0,0,0,0.12);font-size:14px;font-weight:800;cursor:pointer;}
body#item #feedback-section .feedback-form .submit-feedback{background:#10b981;border-color:#10b981;color:#fff;}
body#item #feedback-section .feedback-form .cancel-feedback{background:#fff;color:#374151;}
body#item #feedback-section .feedback-list{margin-top:14px;}
body#item #feedback-section .user-info{display:flex;align-items:center;gap:12px;padding:12px;border:1px solid rgba(0,0,0,0.08);border-radius:12px;background:#fff;}
body#item #feedback-section .user-avatar,
body#item #feedback-section .feedback-avatar{width:44px;height:44px;flex:0 0 44px;border-radius:999px;overflow:hidden;background:#e5e7eb;display:flex;align-items:center;justify-content:center;}
body#item #feedback-section .user-avatar img,
body#item #feedback-section .feedback-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
body#item #feedback-section .user-details,
body#item #feedback-section .feedback-meta{min-width:0;display:flex;flex-direction:column;gap:2px;}
body#item #feedback-section .user-details strong,
body#item #feedback-section .feedback-name{font-size:15px;line-height:1.25;font-weight:800;color:#111827;}
body#item #feedback-section .user-details span,
body#item #feedback-section .feedback-date{font-size:13px;line-height:1.35;color:#6b7280;overflow:hidden;text-overflow:ellipsis;}
body#item #feedback-section .feedback-item{padding:14px 0;border-top:1px solid rgba(0,0,0,0.08);}
body#item #feedback-section .feedback-item:first-child{border-top:0;padding-top:0;}
body#item #feedback-section .feedback-filters{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:14px 0 10px;}
body#item #feedback-section .feedback-filter-btn{display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 14px;border-radius:999px;border:1px solid rgba(15,23,42,0.16);background:#fff;color:#334155;font-size:12px;line-height:16px;font-weight:800;letter-spacing:0.01em;cursor:pointer;transition:all 0.16s ease;}
body#item #feedback-section .feedback-filter-btn:hover{border-color:rgba(0,186,118,0.46);color:#047857;background:rgba(0,186,118,0.05);}
body#item #feedback-section .feedback-filter-btn.active{border-color:#00ba76;background:rgba(0,186,118,0.14);color:#047857;box-shadow:0 4px 10px rgba(0,186,118,0.14);}
body#item #feedback-section .feedback-header{display:flex;align-items:center;gap:12px;}
body#item #feedback-section .feedback-source-badge{display:inline-flex;align-items:center;justify-content:center;height:18px;padding:0 7px;margin-left:8px;border-radius:999px;background:rgba(16,185,129,0.14);color:#047857;font-size:10px;font-weight:800;line-height:16px;letter-spacing:0.03em;text-transform:uppercase;vertical-align:middle;}
body#item #feedback-section .feedback-rating{margin-left:auto;display:flex;align-items:center;gap:2px;color:#f59e0b;}
body#item #feedback-section .feedback-comment{margin:10px 0 0 56px;font-size:14px;line-height:1.6;color:#374151;}
body#item #feedback-section .feedback-helpful{margin:10px 0 0 56px;display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
body#item #feedback-section .feedback-lock{display:flex;align-items:flex-start;gap:12px;padding:16px 16px;border:2px solid rgba(245,158,11,0.55);border-radius:16px;background:linear-gradient(135deg,rgba(245,158,11,0.16),rgba(245,158,11,0.06));font-size:14px;line-height:1.55;color:#374151;box-shadow:0 10px 26px rgba(2,6,23,0.10);}
body#item #feedback-section .feedback-lock-icon{width:42px;height:42px;flex:0 0 42px;border-radius:999px;background:rgba(245,158,11,0.20);display:flex;align-items:center;justify-content:center;color:#b45309;font-size:16px;}
body#item #feedback-section .feedback-lock-body{display:flex;flex-direction:column;gap:6px;min-width:0;}
body#item #feedback-section .feedback-lock-body strong{font-size:15px;line-height:1.35;font-weight:900;color:#111827;}
body#item #feedback-section .feedback-lock-body span{font-size:13px;line-height:1.55;color:#374151;}
body#item #feedback-section .feedback-message{margin:12px 0 12px 0;padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,0.12);font-size:13px;line-height:1.45;font-weight:800;background:#fff;color:#111827;}
body#item #feedback-section .feedback-message.error{border-color:rgba(239,68,68,0.35);background:linear-gradient(135deg,rgba(239,68,68,0.10),rgba(239,68,68,0.03));}
body#item #feedback-section .feedback-message.success{border-color:rgba(16,185,129,0.35);background:linear-gradient(135deg,rgba(16,185,129,0.10),rgba(16,185,129,0.03));}
body#item #feedback-section .feedback-message.vrool-blink{animation:epsFeedbackBlink 360ms ease-in-out 0s 6;}
@keyframes epsFeedbackBlink{0%,100%{opacity:1}50%{opacity:.22}}
body#item #feedback-section .no-feedback{font-size:14px;line-height:1.5;color:#4b5563;}
body#item #feedback-section .loading-feedback{display:flex;align-items:center;gap:8px;font-size:14px;color:#6b7280;}
@media (max-width: 767px){
  body#item #feedback-section{padding:14px;}
  body#item #feedback-section .rating-overview{grid-template-columns:1fr;gap:14px;}
  body#item #feedback-section .rating-score{font-size:32px;}
  body#item #feedback-section .rating-bar{grid-template-columns:52px minmax(0,1fr) 24px;gap:8px;}
  body#item #feedback-section .feedback-form .form-row{grid-template-columns:1fr;}
  body#item #feedback-section .feedback-comment,
  body#item #feedback-section .feedback-helpful{margin-left:0;}
}

#vrool-phones-modal-error{font-weight:400!important;}
.vrool-modal-help-link{font-weight:400!important;}

body#item-post .selection .btn-secondary{font-weight:400!important;}

/* Social Media block: add spacing between YouTube & TikTok and show TikTok icon */
#vrool-social-media-body .ytb-row{margin-bottom:12px!important;}
#vrool-social-media-body .vrool-tiktok-row{margin-top:12px!important;}
#vrool-social-media-body label[for="vrool-tiktok-url"]{display:flex;align-items:center;gap:8px;}
#vrool-social-media-body label[for="vrool-tiktok-url"]:before{content:"";width:18px;height:18px;display:inline-block;flex:0 0 18px;background:url(/vrool/images/tik-tok.png) no-repeat center center/contain;}

/* Add spacing between TikTok and next section (e.g., Create auction) */
#vrool-social-media{margin-bottom:14px!important;}
#vrool-social-media-body .vrool-tiktok-row{margin-bottom:14px!important;}

/* Hide phone details fields on post form (already collected in Phones modal) */
body#item-post #post-hooks .meta[data-slug="phone_capacity"],
body#item-post #post-hooks .meta[data-slug="phone_colour"],
body#item-post #post-hooks .meta[data-slug="phone_network"],
body#item-post #post-hooks .meta[data-slug="phone_grade"]{display:none!important;}

/* AI Safety Review modal: remove dark scan card background behind icon */
.vrool-submit-scan-card{background:transparent!important;border:0!important;box-shadow:none!important;}
.vrool-submit-scan-card:before,.vrool-submit-scan-card:after{display:none!important;}
.vrool-submit-scan-row,.vrool-submit-scan-line,.vrool-submit-scan-grid{display:none!important;}

/* Make tab text slightly darker (global) */
ul.tabbernav li a{color:#111827!important;}
ul.tabbernav li a:hover{color:#0f172a!important;}
ul.tabbernav li.tabberactive a{color:#0f172a!important;}

.vrool-user-items-tab{color:#111827!important;}
.vrool-user-items-tab:hover{color:#0f172a!important;}
.vrool-user-items-tab.is-active{color:#064e3b!important;}

/* User items action pills: make text darker */
.items-box .item .buttons a{color:#047857!important;font-weight:500!important;}
.items-box .item .buttons a:hover{color:#065f46!important;}
.items-box .item .buttons a.delete{color:#0f172a!important;}

/* Add gap between action pills and WhatsApp clicks pill */
.items-box .item .buttons{display:flex;flex-wrap:wrap;gap:8px 8px;}
.items-box .item .buttons .delim{display:none!important;}
.items-box .item .buttons a.whatsapp{margin-top:6px!important;}

/* Home: Explore shortcuts sit inside div.content; force full-width block so chip row cannot collapse */
body#home div.content > .vrool-section-shortcuts {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  clear: both;
  position: relative;
  z-index: 2;
}
body#home div.content > .vrool-section-shortcuts .vrool-ssc-shell {
  width: 100% !important;
  max-width: min(95%, 1650px) !important;
}
body#home div.content > .vrool-section-shortcuts .vrool-ssc-inner {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
}
/* Mobile: one row (lead hidden in partial); Desktop: stack lead + full-width strip */
@media (max-width: 767px) {
  body#home div.content > .vrool-section-shortcuts .vrool-ssc-inner {
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
  }
  body#home div.content > .vrool-section-shortcuts .vrool-ssc-track {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
}
@media (min-width: 768px) {
  body#home div.content > .vrool-section-shortcuts .vrool-ssc-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  body#home div.content > .vrool-section-shortcuts .vrool-ssc-track {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
body#home div.content > .vrool-section-shortcuts .vrool-ssc-track {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
}
body#home div.content > .vrool-section-shortcuts .vrool-ssc-links {
  grid-column: 1 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}
body#home div.content > .vrool-section-shortcuts .vrool-ssc-next {
  grid-column: 2 !important;
}
body#home div.content > .vrool-section-shortcuts .vrool-ssc-next.is-visible,
body#vrool-search div.content > .vrool-section-shortcuts .vrool-ssc-next.is-visible {
  display: inline-flex !important;
  flex-shrink: 0 !important;
}
body#home div.content > .vrool-section-shortcuts .vrool-ssc-links-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
}

/* ══ Location Modal: proper overlay above everything ══ */
.modal-cover {
  z-index: 9999990 !important;
  background: rgba(0,0,0,0.5) !important;
}
#epsModal {
  z-index: 9999995 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
  overflow: hidden;
}
#epsModal .modal-close {
  z-index: 10 !important;
}
/* Fallback lightweight modal */
#epsGeoLocModal {
  z-index: 9999999 !important;
}

@media screen and (max-width: 767px) {
  /* Full-screen location modal on mobile */
  #epsModal.modal-fullscreen {
    border-radius: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }

  /* Clean up the location content inside the modal */
  #epsModal .def-loc-box .head {
    font-size: 20px;
    font-weight: 900;
    padding: 20px 16px 4px 16px;
  }
  #epsModal .def-loc-box .subhead {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    padding: 0 16px 16px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  #epsModal .def-loc-box .input-box input {
    border-radius: 12px !important;
    padding: 12px 12px 12px 42px !important;
    font-size: 15px !important;
    border: 1.5px solid rgba(0,0,0,0.15) !important;
  }
  #epsModal .def-loc-box .input-box input:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12) !important;
  }
  #epsModal .def-loc-box .navigator a.locate-me {
    border-radius: 12px;
    background: rgba(16,185,129,0.06);
    padding: 14px 14px 14px 52px;
    margin: 0;
  }
  #epsModal .def-loc-box .navigator strong {
    color: #10b981;
    font-size: 14px;
  }
  #epsModal .def-loc-box .navigator span {
    color: #6b7280;
    font-size: 12px;
  }
  #epsModal .def-loc-box .buttons a.btn {
    border-radius: 12px !important;
    padding: 12px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
  }
}

/* ── Favourite heart on listing cards (loop-single) ── */
.simple-prod .img-wrap .fi_make_favorite.fi_make {
  position: absolute;
  bottom: 10px;
  right: 10px;
  top: auto;
  z-index: 6;
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
}
.simple-prod .img-wrap .fi_make_favorite.fi_make:hover {
  background: #fff;
  transform: scale(1.15);
}
.simple-prod .img-wrap .fi_make_favorite.fi_make span {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 15px;
  color: #6b7280;
  line-height: 1;
}
.simple-prod .img-wrap .fi_make_favorite.fi_make span:before {
  content: "\f004"; /* heart outline */
}
.simple-prod .img-wrap .fi_make_favorite.fi_make:hover span {
  color: #ec4899;
}
.simple-prod .img-wrap .fi_make_favorite.fi_make.is_favorite span {
  color: #ec4899;
  font-weight: 900;
}
.simple-prod .img-wrap .fi_make_favorite.fi_make.is_favorite span:before {
  content: "\f004"; /* solid heart */
}
body[data-theme="dark"] .simple-prod .img-wrap .fi_make_favorite.fi_make {
  background: rgba(30,41,59,.9);
}
body[data-theme="dark"] .simple-prod .img-wrap .fi_make_favorite.fi_make span {
  color: #64748b;
}
body[data-theme="dark"] .simple-prod .img-wrap .fi_make_favorite.fi_make:hover span,
body[data-theme="dark"] .simple-prod .img-wrap .fi_make_favorite.fi_make.is_favorite span {
  color: #ec4899;
}


/* ── Modern Cart Payment Buttons ── */
.vrool-pay-button{list-style:none!important;padding:0!important;margin:20px 0 16px!important;display:grid!important;grid-template-columns:repeat(auto-fit,minmax(180px,1fr))!important;gap:14px!important;width:100%!important;float:none!important;}
.vrool-pay-button>label{grid-column:1/-1;font-size:14px!important;font-weight:800!important;color:#0f172a!important;margin:0 0 6px!important;padding:0!important;float:none!important;}
.vrool-pay-button li{float:none!important;width:auto!important;height:auto!important;margin:0!important;}
.vrool-pay-button li a{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:10px!important;height:120px!important;width:100%!important;padding:20px 14px!important;border-radius:16px!important;border:2px solid #e5e7eb!important;background:linear-gradient(180deg,#fff 0%,#f8fafc 100%)!important;box-shadow:0 1px 3px rgba(0,0,0,0.06)!important;transition:all .25s ease!important;text-decoration:none!important;cursor:pointer!important;}
.vrool-pay-button li a:not(.vrool-disabled):hover{border-color:#00ba76!important;box-shadow:0 8px 28px rgba(0,186,118,0.14)!important;transform:translateY(-3px)!important;background:linear-gradient(180deg,#f0fdf4 0%,#dcfce7 100%)!important;}
.vrool-pay-button li a:after{display:none!important;content:none!important;opacity:0!important;}
.vrool-pay-button li a:hover:after{display:none!important;content:none!important;opacity:0!important;}
.vrool-pay-button li a>span{width:auto!important;height:auto!important;margin:0!important;padding:0!important;}
.vrool-pay-button li a>span img{max-height:40px!important;width:auto!important;}
.vrool-pay-button li a>strong{font-size:13px!important;font-weight:700!important;color:#475569!important;height:auto!important;line-height:1.3!important;}
.vrool-pay-button li a:not(.vrool-disabled):hover>strong{color:#065f46!important;}
@media(max-width:480px){.vrool-pay-button{grid-template-columns:1fr 1fr!important;gap:10px!important;}.vrool-pay-button li a{height:100px!important;padding:14px 10px!important;}}


/* ═══════════════════════════════════════════════════════════════
   GLOBAL WIDTH UNIFORMITY — all pages use fluid max-width
   Scales from 11" laptops (1366px) to 18"+ displays (1920px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 981px) {
  header .container,
  header .container.main,
  header .container.cmain,
  header .container.main.cmain,
  .vrool-gsearch-bar .container,
  .vrool-gsearch-bar .container.main,
  .vrool-gsearch-bar .container.main.cmain,
  .container.primary,
  footer.vrool-footer .container.vrool-footer-container,
  footer.vrool-footer .vrool-footer-container,
  body#home .home-search > .container,
  body#home > .content > section > .container,
  body.body-ua .container.primary,
  body#custom .container.primary,
  body#motorsonline-social .container.primary,
  body#user-dashboard .container.primary,
  body#vouchers .container.primary,
  body#vouchers-category .container.primary,
  body#search .container.primary,
  body.post-category .container {
    max-width: min(95%, 1650px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* Sections bar + category directory: match content sections */
  .vrool-section-shortcuts .vrool-ssc-shell,
  .vrool-catdir-shell,
  body#home section.home-recent > .container {
    max-width: min(95%, 1650px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}


/* Social page — content fills parent container naturally */
@media (min-width: 981px) {
  body#motorsonline-social .ml-social-wrap,
  body#motorsonline-social .ml-social-header,
  body#motorsonline-social .ml-social-layout {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   FIX DOUBLE-PADDING: page-specific wrappers inside .container.primary
   already have horizontal padding from parent — remove theirs so
   content aligns exactly with header and search bar at 1450px
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 981px) {
  .container.primary > .events-wrap,
  .container.primary > .wallads-wrap,
  .container.primary > .svc-admin-wrap,
  .container.primary > .bnb-wrap,
  .container.primary > .bnbr-wrap,
  .container.primary > .ride-wrap,
  .container.primary > .cp-wrap,
  .container.primary > .sp-support-wrap,
  .container.primary > .ml-social-wrap,
  .container.primary > .bf-page,
  .container.primary > .vrool-invoice-wrap,
  .container.primary > .vrool-note-wrap,
  .container.primary > .vu,
  .container.primary > .vw,
  .container.primary > .vv-wrap,
  .container.primary > .vw-wrap,
  .container.primary > .dbb,
  .container.primary > .se-wrap,
  .container.primary > .nl-wrap,
  .container.primary > .cc,
  .container.primary > .txn-wrap,
  body#custom .container.primary > .events-wrap,
  body#custom .container.primary > .wallads-wrap,
  body#custom .container.primary > .ride-wrap,
  body#custom .container.primary > .cp-wrap,
  body#custom .container.primary > .bnb-wrap,
  body#custom .container.primary > .svc-admin-wrap,
  body#custom .container.primary > .bf-page {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}


/* Hybrid map — ensure container padding aligns left panel with logo */
@media (min-width: 981px) {
  body#search.hybrid-view .container.primary {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body#search.hybrid-view .hyb-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
