:root{
  --bg:#F4F7FB;
  --card:#FFFFFF;
  --text:#0F172A;
  --muted:#64748B;
  --line:rgba(15,23,42,.08);
  --line-strong:rgba(15,23,42,.14);
  --brand:#F7B500;
  --brand2:#FF9F1C;
  --navy:#0B1220;
  --teal:#1AA3C8;
  --ok:#16A34A;
  --warn:#F59E0B;
  --danger:#DC2626;
  --shadow:0 22px 60px rgba(15,23,42,.08);
  --shadow-sm:0 10px 28px rgba(15,23,42,.06);
  --shadow-lg:0 28px 80px rgba(15,23,42,.12);
  --glass:rgba(255,255,255,.78);
  --blur:blur(16px);
  --radius:28px;
  --radius-sm:18px;
  --ring:0 0 0 4px rgba(247,181,0,.22);
  --topbar-h:100px;
  --container:min(1380px, calc(100% - 28px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:
    radial-gradient(circle at 100% 0%, rgba(247,181,0,.08), transparent 26%),
    radial-gradient(circle at 0% 0%, rgba(26,163,200,.05), transparent 20%),
    linear-gradient(180deg, #f8fafc 0%, #f4f7fb 48%, #f8fafc 100%);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
:focus{outline:none}
:focus-visible{box-shadow:var(--ring);border-radius:14px}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}

.list-wrap{
  width:var(--container);
  margin:0 auto;
  padding-top:118px;
  padding-bottom:46px;
}

.glass-card{
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
  backdrop-filter:var(--blur);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.btnx,
button{
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    filter .2s ease,
    color .2s ease;
}

.btnx:hover,
button:hover{
  transform:translateY(-1px);
}

.btnx{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
}

.btnx.primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#111827;
  box-shadow:0 14px 30px rgba(247,181,0,.22);
}
.btnx.primary:hover{
  box-shadow:0 18px 42px rgba(247,181,0,.28);
  filter:brightness(1.03);
}

.btnx.dark{
  background:var(--navy);
  color:#fff;
  box-shadow:0 14px 30px rgba(11,18,32,.16);
}

.btnx.ghost{
  background:rgba(255,255,255,.82);
  border-color:var(--line);
  color:var(--text);
}

.btnx.soft{
  background:rgba(247,181,0,.10);
  border-color:rgba(247,181,0,.16);
  color:#8a5a00;
}

.btnx.ghost-dark{
  background:#fff;
  color:#0f172a;
  border-color:rgba(15,23,42,.10);
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}

.btnx.whatsapp{
  background:#25D366;
  color:#fff;
  box-shadow:0 14px 30px rgba(37,211,102,.18);
}
.btnx.whatsapp:hover{
  filter:brightness(1.03);
}

input,select,textarea{
  background:#fff !important;
  border:1px solid var(--line) !important;
  color:var(--text) !important;
}
input::placeholder,textarea::placeholder{color:#94a3b8}
input:focus,select:focus,textarea:focus{
  box-shadow:var(--ring) !important;
  border-color:rgba(247,181,0,.55) !important;
}

.hero-panel{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:34px;
  margin-bottom:22px;
  background:linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 30px 80px rgba(15,23,42,.08);
}
.hero-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(247,181,0,.25), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(26,163,200,.12), transparent 28%);
  pointer-events:none;
}
.hero-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:22px;
  align-items:stretch;
}

.lh-title{
  margin:0;
  font-size:clamp(34px,4vw,56px);
  line-height:1.02;
  font-weight:1000;
  letter-spacing:-.03em;
}

.lh-sub{
  margin-top:12px;
  color:var(--muted);
  font-size:15px;
  line-height:1.95;
  max-width:860px;
}

.top-switcher-wrap{
  margin-top:24px;
}

.top-switcher{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  border-radius:22px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(15,23,42,.08);
  backdrop-filter:blur(12px);
  box-shadow:0 16px 40px rgba(15,23,42,.08);
  width:max-content;
  max-width:100%;
  flex-wrap:wrap;
}

.switch-tab{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:12px 18px;
  border-radius:16px;
  color:#334155;
  font-weight:1000;
  font-size:14px;
  transition:.2s ease;
  border:1px solid transparent;
  white-space:nowrap;
}

.switch-tab:hover{
  color:#0f172a;
  background:rgba(255,255,255,.64);
}

.switch-tab .switch-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  font-size:16px;
  line-height:1;
  flex:0 0 22px;
}

.switch-tab.is-active{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#111827;
  box-shadow:0 14px 28px rgba(247,181,0,.22);
  border-color:transparent;
}

.toolbarx{
  border-radius:28px;
  padding:18px;
  margin-bottom:16px;
}

.filters-top-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.sec-title{
  margin:0;
  font-size:17px;
  font-weight:1000;
}
.smallx{
  font-size:12px;
  color:var(--muted);
  line-height:1.8;
  margin-top:4px;
}

.fgrid-top{
  display:grid;
  grid-template-columns:
    minmax(180px,1.25fr)
    minmax(150px,1fr)
    minmax(150px,.95fr)
    minmax(120px,.8fr)
    minmax(120px,.8fr)
    minmax(170px,.9fr)
    minmax(230px,1.15fr);
  gap:14px;
  align-items:end;
}

.field{min-width:0}
label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin:0 0 6px;
  font-weight:900;
}

.in{
  width:100%;
  height:50px;
  padding:12px 14px;
  border-radius:16px;
  background:#fff;
}

.field-actions{
  display:flex;
  flex-direction:column;
}
.btnrow-top{
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
}
.btnrow-top .btnx{
  flex:1 1 auto;
  min-height:50px;
}

.active-filters{
  border-radius:22px;
  padding:14px;
  margin-bottom:16px;
}
.af-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.af-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  font-size:12px;
  font-weight:900;
}

.results-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.results-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.pillx{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-size:12px;
  font-weight:1000;
  box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.sortbox{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.sortbox select{
  min-width:280px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.tcard{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.tcard:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(247,181,0,.22);
}

.timg{
  position:relative;
  aspect-ratio:16 / 10.1;
  background:linear-gradient(180deg,#e9eef5,#f8fafc);
  overflow:hidden;
}

.timg-link{
  display:block;
  width:100%;
  height:100%;
}

.timg img,
.timg-link img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
  transition:transform .55s ease;
}
.tcard:hover .timg img,
.tcard:hover .timg-link img{
  transform:scale(1.06);
}

.timg::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:110px;
  background:linear-gradient(to top, rgba(11,18,32,.24), transparent);
  pointer-events:none;
}

.badge-row{
  position:absolute;
  top:14px;
  inset-inline:14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  z-index:3;
  pointer-events:none;
}

.tag,
.video-badge,
.status-badge,
.type-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:1000;
  white-space:nowrap;
  backdrop-filter:blur(10px);
}

.tag{
  background:rgba(11,18,32,.84);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}

.video-badge{
  background:rgba(255,255,255,.95);
  color:#0f172a;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.overlay-meta{
  position:absolute;
  inset-inline:14px;
  bottom:14px;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  pointer-events:none;
}

.type-badge{
  background:rgba(255,255,255,.95);
  color:#0f172a;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 22px rgba(15,23,42,.08);
}

.status-badge{
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 10px 22px rgba(0,0,0,.10);
}
.status-badge.available{background:rgba(22,163,74,.92)}
.status-badge.reserved{background:rgba(245,158,11,.94)}
.status-badge.sold{background:rgba(220,38,38,.94)}

.tbody{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:18px 18px 20px;
}

.tref{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:0;
  font-size:14px;
  color:var(--muted);
  font-weight:900;
}
[dir="rtl"] .tref{
  flex-direction:row-reverse;
}

.ref-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.08);
  color:#334155;
}

.theadx{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.fav-btn{
  position:absolute;
  top:14px;
  inset-inline-end:14px;
  z-index:4;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#0f172a;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:
    0 10px 24px rgba(15,23,42,.10),
    inset 0 1px 0 rgba(255,255,255,.75);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.fav-btn::before{
  content:"♡";
  display:block;
  transform:translateY(-1px);
}

.fav-btn:hover{
  transform:translateY(-1px) scale(1.04);
  background:rgba(255,255,255,.98);
  box-shadow:
    0 14px 30px rgba(15,23,42,.14),
    inset 0 1px 0 rgba(255,255,255,.82);
}

.fav-btn:active{
  transform:scale(.98);
}

.fav-btn.is-active{
  background:linear-gradient(180deg, #fff1f2, #ffe4e6);
  border-color:rgba(244,63,94,.18);
  color:#e11d48;
  box-shadow:
    0 12px 28px rgba(244,63,94,.16),
    inset 0 1px 0 rgba(255,255,255,.78);
}

.fav-btn.is-active::before{
  content:"♥";
}

.fav-btn:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 4px rgba(244,63,94,.16),
    0 12px 28px rgba(15,23,42,.12);
}

.ttitle{
  margin:0;
  font-size:24px;
  line-height:1.22;
  font-weight:1000;
  letter-spacing:-.02em;
  color:#111827;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:60px;
}

.price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:2px;
  
}

.price-label{
  font-size:21px;
  font-weight:1000;
  color:#12c453;
  line-height:1;
  white-space:nowrap;
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
 background:
    linear-gradient(135deg, rgba(247,181,0,.10), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255,159,28,.12), transparent 34%);
  border:1px solid rgba(15,23,42,.07);
  box-shadow:
    0 8px 20px rgba(15,23,42,.05),
    inset 0 1px 0 rgba(255,255,255,.8);
  position:relative;
  overflow:hidden;
  direction:rtl;
  unicode-bidi:isolate;

}

.price-badge{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  border:1px solid rgba(15,23,42,.07);
  box-shadow:
    0 8px 20px rgba(15,23,42,.05),
    inset 0 1px 0 rgba(255,255,255,.8);
  position:relative;
  overflow:hidden;
  direction:ltr;
  unicode-bidi:isolate;
}

.price-badge::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(247,181,0,.10), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255,159,28,.12), transparent 34%);
  pointer-events:none;
}

.price-badge > *{
  position:relative;
  z-index:1;
}

.price-currency{
  font-size:12px;
  font-weight:1000;
  color:#64748b;
  letter-spacing:.03em;
}

.price-badge strong{
  font-size:32px;
  line-height:1;
  font-weight:1000;
  letter-spacing:-.03em;
  color:#0f172a;
}

.tmeta-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}

.meta-box{
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.07);
  border-radius:18px;
  padding:13px 13px 12px;
}

.meta-label{
  display:block;
  font-size:12px;
  color:#94a3b8;
  font-weight:900;
  margin-bottom:5px;
}

.meta-value{
  display:block;
  font-size:16px;
  color:#0f172a;
  font-weight:1000;
  line-height:1.45;
  word-break:break-word;
}

.actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:2px;
}

.actions-main{
  display:grid;
  grid-template-columns:1fr;
}

.actions-sub{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}

.actions .btnx{
  width:100%;
  min-height:52px;
  font-size:14px;
  padding:12px 14px;
  border-radius:16px;
}

.empty-state{
  text-align:center;
  border-radius:28px;
  padding:34px 20px;
}
.empty-state .icon{
  font-size:44px;
  margin-bottom:10px;
}
.empty-state h3{
  margin:0;
  font-size:24px;
  font-weight:1000;
}
.empty-state p{
  margin:10px auto 0;
  max-width:580px;
  color:var(--muted);
  line-height:1.9;
}

.pager{
  position:relative;
  margin-top:30px;
  padding:22px 20px;
  border-radius:30px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
  border:1px solid rgba(15,23,42,.06);
  box-shadow:
    0 24px 60px rgba(15,23,42,.07),
    0 8px 18px rgba(15,23,42,.03),
    inset 0 1px 0 rgba(255,255,255,.84);
}

.pager::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 20%, rgba(247,181,0,.10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(26,163,200,.08), transparent 24%),
    linear-gradient(120deg, rgba(255,255,255,.34), rgba(255,255,255,0) 46%);
  pointer-events:none;
}

.pager::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  pointer-events:none;
}

.faX-pagination-nav{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  width:100%;
}

.faX-pagination-shell{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.faX-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
}

.faX-pagination.is-ar{ direction:rtl; }
.faX-pagination.is-en{ direction:ltr; }

.faX-page-item{
  list-style:none;
  margin:0;
  padding:0;
}

.faX-page-link{
  position:relative;
  min-width:50px;
  height:50px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.93));
  color:#0f172a;
  text-decoration:none;
  white-space:nowrap;
  font-size:14px;
  font-weight:1000;
  line-height:1;
  letter-spacing:-.01em;
  box-shadow:
    0 10px 24px rgba(15,23,42,.05),
    inset 0 1px 0 rgba(255,255,255,.96);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease,
    color .22s ease,
    opacity .22s ease,
    filter .22s ease;
}

.faX-page-link::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(135deg, rgba(247,181,0,.06), transparent 48%),
    radial-gradient(circle at 100% 0%, rgba(255,159,28,.08), transparent 34%);
  opacity:1;
  pointer-events:none;
}

.faX-page-link::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:calc(18px - 1px);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0));
  pointer-events:none;
  opacity:.8;
}

.faX-page-link > *{
  position:relative;
  z-index:1;
}

.faX-page-link:hover{
  transform:translateY(-2px);
  border-color:rgba(247,181,0,.20);
  box-shadow:
    0 18px 38px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.98);
  filter:saturate(1.02);
}

.faX-page-link:active{
  transform:translateY(0);
}

.faX-page-link:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 4px rgba(247,181,0,.18),
    0 16px 34px rgba(15,23,42,.08);
}

.faX-page-link--edge{
  min-width:116px;
  padding-inline:18px;
  border-radius:999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,250,252,.95));
  box-shadow:
    0 12px 28px rgba(15,23,42,.05),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.faX-edge-text{
  font-size:13px;
  font-weight:1000;
  letter-spacing:-.01em;
}

.faX-edge-arrow{
  font-size:15px;
  line-height:1;
  opacity:.82;
  transform:translateY(-.5px);
}

.faX-page-link--dots{
  min-width:38px;
  padding:0 8px;
  background:transparent;
  border-color:transparent;
  box-shadow:none;
  pointer-events:none;
}

.faX-page-link--dots::before,
.faX-page-link--dots::after{
  display:none;
}

.faX-page-item.is-dots .faX-page-link{
  color:#94a3b8;
}

.faX-page-item.is-active .faX-page-link{
  border-color:transparent;
  background:
    linear-gradient(135deg, var(--brand), var(--brand2));
  color:#111827;
  box-shadow:
    0 18px 42px rgba(247,181,0,.28),
    0 6px 18px rgba(247,181,0,.14),
    inset 0 1px 0 rgba(255,255,255,.32);
}

.faX-page-item.is-active .faX-page-link::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
  opacity:1;
}

.faX-page-item.is-active .faX-page-link::after{
  inset:0;
  border-radius:inherit;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.26), transparent 30%);
  opacity:1;
}

.faX-page-item.is-disabled .faX-page-link{
  opacity:.42;
  pointer-events:none;
  cursor:not-allowed;
  box-shadow:none;
  filter:grayscale(.08);
}

@media (max-width:768px){
  .pager{
    margin-top:24px;
    padding:16px 14px;
    border-radius:24px;
  }

  .faX-pagination{
    gap:8px;
  }

  .faX-page-link{
    min-width:44px;
    height:44px;
    padding:0 13px;
    border-radius:16px;
    font-size:13px;
  }

  .faX-page-link::after{
    border-radius:calc(16px - 1px);
  }

  .faX-page-link--edge{
    min-width:auto;
    padding-inline:14px;
    border-radius:999px;
  }

  .faX-edge-text{
    font-size:12px;
  }

  .faX-edge-arrow{
    font-size:14px;
  }
}

@media (max-width:560px){
  .faX-pagination{
    gap:7px;
  }

  .faX-page-link{
    min-width:40px;
    height:40px;
    padding:0 11px;
    font-size:12px;
    border-radius:14px;
  }

  .faX-page-link::after{
    border-radius:calc(14px - 1px);
  }

  .faX-page-link--edge{
    padding-inline:12px;
  }

  .faX-edge-text{
    font-size:11px;
  }

  .faX-edge-arrow{
    font-size:13px;
  }
}
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-in{
  opacity:1;
  transform:translateY(0);
}

.mobile-filter-toggle{
  position:fixed;
  inset-inline-end:14px;
  bottom:16px;
  z-index:60;
  display:none;
  border:none;
  min-height:50px;
}

[dir="rtl"] .tbody,
[dir="rtl"] .hero-panel,
[dir="rtl"] .toolbarx,
[dir="rtl"] .active-filters{
  text-align:right;
}
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea{
  text-align:right;
}

@media (max-width:1280px){
  .cards{grid-template-columns:repeat(3, minmax(0,1fr))}
  .fgrid-top{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width:980px){
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
}

@media (max-width:900px){
  .fgrid-top{grid-template-columns:repeat(2,minmax(0,1fr))}
  .btnrow-top{flex-wrap:wrap}
  .btnrow-top .btnx{width:100%}
}

@media (max-width:768px){
  :root{--topbar-h:68px}

  .list-wrap{
    width:calc(100% - 14px);
    padding-top:14px;
    padding-bottom:28px;
  }

  .hero-panel{
    padding:18px;
    border-radius:24px;
    margin-bottom:14px;
  }

  .lh-title{
    font-size:30px;
    line-height:1.02;
  }

  .lh-sub{
    font-size:13px;
    line-height:1.8;
    margin-top:10px;
  }

  .toolbarx{
    padding:14px;
    border-radius:22px;
  }

  .sortbox{
    width:100%;
  }

  .sortbox select{
    width:100%;
    min-width:0;
  }

  .cards{
    grid-template-columns:1fr;
    gap:14px;
  }

  .tcard{
    border-radius:24px;
  }

  .timg{
    aspect-ratio:16 / 9.4;
  }

  .fav-btn{
    width:40px;
    height:40px;
    font-size:17px;
  }

  .tbody{
    gap:10px;
    padding:14px 14px 16px;
  }

  .tref{
    font-size:13px;
  }

  .ref-pill{
    padding:7px 10px;
    font-size:12px;
  }

  .ttitle{
    font-size:20px;
    min-height:auto;
  }

  .price-row{
    margin-top:2px;
    margin-bottom:2px;
  }

  .price-label{
    font-size:20px;
    background:
    linear-gradient(135deg, rgba(247,181,0,.10), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255,159,28,.12), transparent 34%);
  }

  .price-badge{
    padding:9px 12px;
  }

  .price-badge strong{
    font-size:34px;
  }

  .tmeta-grid{
    grid-template-columns:1fr;
    gap:8px;
  }

  .meta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:12px 14px;
    border-radius:16px;
  }

  .meta-label{
    margin:0;
    font-size:12px;
  }

  .meta-value{
    font-size:15px;
    text-align:end;
  }

  .actions{
    margin-top:4px;
  }

  .actions-main{
    order:2;
  }

  .actions-sub{
    order:1;
    grid-template-columns:1fr;
  }

  .actions-sub .btnx.whatsapp{
    min-height:54px;
    font-size:15px;
    order:1;
  }

  .actions-sub .btnx.primary{
    order:2;
  }

  .actions-main .btnx.dark{
    min-height:50px;
  }

  .mobile-filter-toggle{
    display:inline-flex;
  }
}

@media (max-width:560px){
  .fgrid-top{grid-template-columns:1fr}
  .pillx{width:100%;justify-content:center}
  .top-switcher{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
  }
  .switch-tab{
    width:100%;
    justify-content:flex-start;
  }

  .hero-panel,
  .toolbarx,
  .active-filters,
  .pager,
  .empty-state{
    border-radius:20px;
  }

  .badge-row{
    top:12px;
    inset-inline:12px;
  }

  .overlay-meta{
    inset-inline:12px;
    bottom:12px;
  }

  .type-badge,
  .tag,
  .video-badge{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }

  .price-badge strong{
    font-size:30px;
  }
}

.tcard{
  animation: fadeUp .6s ease both;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.btnx.dark{
  transition:transform .2s ease, box-shadow .2s ease;
}

.btnx.dark:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 20px 40px rgba(11,18,32,.25);
}

.faX-page-item.is-active .faX-page-link{
  box-shadow:
    0 0 0 4px rgba(247,181,0,.18),
    0 18px 42px rgba(247,181,0,.28);
}

.tcard{
  opacity:0;
  transform:translateY(20px);
  animation:cardIn .6s ease forwards;
}

.tcard:nth-child(2){ animation-delay:.05s }
.tcard:nth-child(3){ animation-delay:.1s }
.tcard:nth-child(4){ animation-delay:.15s }
.tcard:nth-child(5){ animation-delay:.2s }

@keyframes cardIn{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.tcard{
  cursor:pointer;
}

.video-badge{
  cursor:pointer;
  pointer-events:auto;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.video-badge:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(15,23,42,.12);
}

.video-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(2,6,23,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
}

.video-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.video-modal-backdrop{
  position:absolute;
  inset:0;
}

.video-modal-dialog{
  position:relative;
  width:min(980px, 100%);
  border-radius:28px;
  overflow:hidden;
  background:#0b1220;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  transform:translateY(14px) scale(.98);
  transition:transform .25s ease;
}

.video-modal.is-open .video-modal-dialog{
  transform:translateY(0) scale(1);
}

.video-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color:#fff;
}

.video-modal-title{
  margin:0;
  font-size:15px;
  font-weight:1000;
  line-height:1.5;
}

.video-modal-close{
  width:42px;
  height:42px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.video-modal-close:hover{
  background:rgba(255,255,255,.14);
}

.video-modal-body{
  position:relative;
  background:#000;
}

.video-player{
  width:100%;
  display:block;
  max-height:78vh;
  background:#000;
}

body.video-modal-open{
  overflow:hidden;
}

@media (max-width:768px){
  .video-modal{
    padding:12px;
  }

  .video-modal-dialog{
    border-radius:20px;
  }

  .video-modal-head{
    padding:12px 12px;
  }

  .video-modal-title{
    font-size:13px;
  }

  .video-modal-close{
    width:38px;
    height:38px;
    border-radius:12px;
    font-size:20px;
  }
}