:root {
    box-sizing: border-box;
    --primary-blue: #005fcb;
    --hover-color: #fdd052;
    --green: #23bb23;
    --dark: #1c2022;
    --light: #fff;
    --grey1: #888888;
    --header-bg: #ffffffe0;
    --red: #e10505;
    --surface-0: #f4f8fd;
    --surface-1: #ffffff;
    --surface-2: #f8fbff;
    --border-soft: #d8e3f1;
    --shadow-soft: 0 10px 28px rgba(17, 38, 74, 0.08);
    --shadow-medium: 0 14px 36px rgba(16, 34, 64, 0.12);
    --radius-md: 12px;
    --radius-lg: 16px;
    --site-max-width: 1320px;
}

p, span, a ,h1, h2, h3, h4, h5, h6,input, button, select, table, div{  /*font-family: 'Nunito', sans-serif;*/  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
html{
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
*, *::before, *::after{
  box-sizing: inherit;
}
a{
  color: #111f35;
  transition: color .2s ease;
}
body{
  margin: 0;
  min-height: 100vh;
  color: var(--dark);
  background:
    radial-gradient(900px 420px at 8% -5%, #dcecff 0%, transparent 65%),
    radial-gradient(820px 420px at 98% 0%, #e8f3ff 0%, transparent 70%),
    var(--surface-0);
  font-size: clamp(14px, 0.35vw + 13px, 16px);
  line-height: 1.45;
  overflow-x: hidden;
}
body.menu-open{
  overflow: hidden;
}
.div-blocks{
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0px clamp(12px, 2.2vw, 24px);
}
.max-width-shell{
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 clamp(12px, 2.2vw, 24px);
}
.site-content-shell{
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
}
/*.div-header{ padding: 0px 15px; }*/

button, a, li, i{
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 -webkit-tap-highlight-color: transparent;
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
  user-select: none;
}
input, textarea, select{
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.skip-link{
  position: absolute;
  left: 12px;
  top: -52px;
  z-index: 1000001;
  background: #0d73f3;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus{
  top: 10px;
}
.sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.devider-60{
  height: 60px;
  margin-bottom: 15px;
  width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[data-ourood-click]:focus-visible,
[role="button"]:focus-visible,
[role="link"]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible{
  outline: 3px solid #0d73f3 !important;
  outline-offset: 2px;
}
.pick-search input:focus-visible{
  outline: none !important;
}
.pick-search input{
  border: 0 !important;
  box-shadow: none !important;
}
.pick-search input:focus{
  border: 0 !important;
  box-shadow: none !important;
}

::placeholder{
  color: #5b6f89;
  opacity: 1;
}

button{
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  touch-action: manipulation;
}
button:hover{
  transform: translateY(-1px);
}
button:active{
  transform: translateY(0);
}
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select{
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background-color: var(--surface-1);
}
input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus{
  outline: none;
  border-color: #7ca9df;
  box-shadow: 0 0 0 3px #005fcb1a;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  button:hover{
    transform: none;
  }
  .home-hero-chip:hover,
  .home-hero-chip:active,
  .categories-sub-item:hover,
  .home-feed-card:hover .main-div,
  .home-feed-card .fav-toggle-icon:hover,
  .home-hero-chip:hover .home-category-chip-arrow,
  .home-hero-chip.is-active .home-category-chip-arrow,
  .categories-sub-item:hover .categories-sub-arrow,
  .show-ad-style-2.home-feed-card:hover .home-feed-card-open-indicator,
  .home-feed-card:hover .ad-thumb-img,
  .home-hero-chip:hover .home-category-chip-icon img,
  .home-hero-chip.is-active .home-category-chip-icon img{
    transform: none !important;
  }
}

@media (forced-colors: active){
  *{
    forced-color-adjust: auto;
  }
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  [role="button"]:focus-visible,
  [role="link"]:focus-visible,
  [tabindex]:not([tabindex="-1"]):focus-visible{
    outline: 2px solid CanvasText !important;
    outline-offset: 2px;
  }
  .popup,
  #menu,
  .home-sort-sheet,
  .app-search-shell{
    border: 1px solid CanvasText !important;
  }
}


.top-btns{
  width: 100%;
  background: var(--surface-1);
  color: #122543;
  border: solid 1px var(--border-soft);
  border-radius: 25px;
  line-height: 2;
  font-size: 16px;
  max-width: 182px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}


/*COMMON*/
.flex{display:flex;}
.fixed-full-size-page{position:fixed; top:0px; left:0px; height:100%; width:100%; background-color:white; overflow-y:auto; overscroll-behavior:contain; z-index:999999;}
.centered{display: flex; align-items: center; justify-content: center;}
.hidden{display:none;}
.full-width{width:100%;}
.popup{
  position: relative;
  background:
    radial-gradient(560px 220px at 0% 0%, #f1f8ff 0%, transparent 74%),
    var(--surface-1);
  width: min(560px, calc(100vw - 28px));
  min-width: min(300px, calc(100vw - 28px));
  max-width: 640px;
  padding: clamp(14px, 1vw + 10px, 20px);
  line-height: 1.45;
  border-radius: 20px;
  border: 1px solid #cfe0f4;
  box-shadow: 0 24px 56px rgba(11, 33, 63, 0.24);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: popup-enter .2s ease;
}
@keyframes popup-enter{
  from{
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.popup-outer{
  padding: 16px;
  background:
    radial-gradient(700px 280px at -10% -10%, #dbe9ff66 0%, transparent 72%),
    rgba(9, 27, 52, 0.55);
  backdrop-filter: blur(4px);
}
.popup-outer.centered{
  align-items: center;
  justify-content: center;
}
.popup > br{
  display: none;
}
.popup > hr{
  border: none;
  height: 1px;
  margin: 0;
  background: #dfebf9;
}
.popup > .flex{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.popup > .flex > div:first-child{
  flex: 1 !important;
}
.popup > .flex > div:first-child strong{
  color: #0f2f56;
  font-size: clamp(17px, 0.35vw + 15px, 22px);
  font-weight: 750;
  line-height: 1.25;
}
.popup > .flex > div:first-child > span{
  display: inline-block;
  margin-top: 5px;
  color: #5f7796;
  font-size: 13px;
}
.popup .close-icon{
  flex: 0 0 auto;
  text-align: right;
}
.rtl .popup .close-icon{
  text-align: left;
}
.popup .close-icon strong,
.popup .flex strong[data-ourood-click]{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid #c7d8ef;
  background: #f4f9ff;
  color: #24568e;
  cursor: pointer;
  transition: background-color .2s ease, transform .12s ease, border-color .2s ease;
}
.popup .close-icon strong:hover,
.popup .flex strong[data-ourood-click]:hover{
  background: #eaf3ff;
  border-color: #aac7e8;
}
.popup .close-icon strong:active,
.popup .flex strong[data-ourood-click]:active{
  transform: scale(0.97);
}
.popup .close-icon i,
.popup .flex strong[data-ourood-click] i{
  font-size: 20px !important;
}
.popup button{
  min-width: 96px;
  min-height: 42px;
  margin-left: 10px;
  padding: 0 14px;
  border-radius: 12px;
  background: linear-gradient(130deg, #0d73f3 0%, #0a5fc8 100%);
  border: 1px solid #0a62cf;
  color: white;
  font-weight: 650;
  box-shadow: 0 9px 18px rgba(12, 87, 180, 0.24);
}
.popup button:hover{
  box-shadow: 0 12px 22px rgba(10, 86, 181, 0.28);
}
.rtl .popup button{
  margin-left: 0;
  margin-right: 10px;
}
.popup .popup-msg{
  margin: 0;
  line-height: 1.65;
  color: #355273;
  font-size: 15px;
  display: block;
}
.popup .popup-top-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.popup .popup-title-wrap{
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.popup .popup-status-icon{
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #e6f5e9;
  border: 1px solid #c8e8cd;
  color: #1f8a3c;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-close-btn{
  width: 38px;
  height: 38px;
  min-width: 38px;
  margin: 0;
  border-radius: 11px;
  border: 1px solid #c7d8ef;
  background: #f4f9ff;
  color: #24568e;
  box-shadow: none;
}
.popup .popup-close-btn:hover{
  background: #eaf3ff;
  box-shadow: none;
}
.popup .popup-actions,
.popup div[style*="text-align:right"]{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.popup div[style*="text-align:right"] button{
  margin-left: 0;
}
.popup div[style*="text-align:right"] button:first-child:not(:only-child),
.popup .popup-actions button:first-child:not(:only-child){
  background: #edf4ff;
  border-color: #c7d8ed;
  color: #214f88;
  box-shadow: none;
}
.popup div[style*="text-align:right"] button:first-child:not(:only-child):hover,
.popup .popup-actions button:first-child:not(:only-child):hover{
  background: #e5f0ff;
}
.popup .plans select,
.popup .plans textarea{
  border: 1px solid #bfd2ea;
  border-radius: 12px;
  background: #f9fcff;
}
.popup .plans textarea{
  padding: 10px 12px;
}
.message, .error-message, .success-message{
  border-left: 4px solid var(--primary-blue);
  padding: 12px 14px;
  margin-right: 0;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: 10px;
  word-wrap: break-word;
}
.error-message{border-color:red;}
.success-message{border-color:var(--green);}
.green{color:var(--green);}
.blue{color:var(--primary-blue);}
.red{color:var(--red);}

#notifications hr{
  border: none;
  height: 1px;
  background: #eaeaea;
}


/* PC */
@media (min-width: 1100px){    
.menu-burger-icon{display: none;}
.footer-mob-bottom{display: none;}
#select-category .cat-main{width:33% !important;}
#ad-owner-control{ display: flex; margin-bottom: 15px;}
#ad-owner-control a{ flex:1; border: 1px solid var(--primary-blue); border-radius: 4px; text-align: center; margin: 0px 2px;  background-color: var(--primary-blue); color:white;}
#notifications{ height: 50vh !important;}
}
/* mobile and tablet */
@media (max-width: 1100px){
#ad-owner-control{ position: fixed; display: flex; align-items: center; height: 50px; bottom: 0px; left: 0px; width: 100%; background-color: white; box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%); }
#ad-owner-control a{ flex:1; text-align: center;}
/*#header-right-side-icons{ flex:2 !important;}*/
.prev, .next{display: none;}
#thumbnails{border-radius: 0px !important;}
#user_page_details div:not(.title){ width:100%; display: block; }
.user-profile-img{ text-align: left !important; }
}

/* Home categories module */
@keyframes home-card-reveal{
  from{
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-hero-section{
  padding: 12px 0px 10px;
}
.home-hero-shell{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #d6e4f6;
  background:
    radial-gradient(700px 260px at 15% -20%, #ddebff 0%, transparent 68%),
    radial-gradient(500px 220px at 100% 100%, #edf6ff 0%, transparent 72%),
    #ffffff;
  box-shadow: var(--shadow-medium);
  padding: clamp(18px, 2.4vw, 28px);
}
.home-hero-shell::after{
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: #005fcb12;
  pointer-events: none;
}
.home-hero-content{
  position: relative;
  z-index: 1;
}
.home-hero-kicker{
  margin: 0;
  color: #35577d;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.home-hero-title{
  margin: 8px 0px 4px;
  color: #0d2344;
  font-size: clamp(24px, 1.2vw + 20px, 36px);
  line-height: 1.12;
  font-weight: 700;
}
.home-hero-subtitle{
  margin: 0;
  color: #3e5878;
  font-size: clamp(14px, 0.25vw + 13px, 16px);
  max-width: 640px;
}
.home-hero-actions{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.home-hero-action{
  min-height: 54px;
  border: 1px solid #d3e2f6;
  border-radius: 14px;
  background: #ffffff;
  color: #153054;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  box-shadow: 0 8px 20px rgba(16, 36, 66, 0.08);
}
.home-hero-action:hover{
  color: var(--primary-blue);
  border-color: #88afe0;
}
.home-hero-action.is-primary{
  background: linear-gradient(135deg, #005fcb 0%, #077be1 100%);
  border-color: #035fbf;
  color: #ffffff;
}
.home-hero-action.is-primary:hover{
  color: #ffffff;
  border-color: #0356ab;
}
.home-action-icon{
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-hero-chip-row{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2px;
  padding: 2px 2px 4px;
}
.home-hero-chip-row::-webkit-scrollbar{
  display: none;
  width: 0;
  height: 0;
}
.home-hero-chip{
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 196px;
  min-height: 76px;
  border: 1px solid #d3e2f5;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #163256;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  padding: 12px 14px;
  scroll-snap-align: start;
  box-shadow: 0 10px 22px rgba(17, 40, 76, 0.10);
  animation: home-card-reveal .55s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--card-delay, 0ms);
  transition: transform .22s ease, box-shadow .28s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}
.home-hero-chip::before{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ffffffcc 0%, transparent 46%, #dcebff88 100%);
  pointer-events: none;
}
.home-hero-chip::after{
  content: "";
  position: absolute;
  right: -34px;
  bottom: -58px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: #0d73f314;
  opacity: 0;
  transform: scale(0.84);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.home-hero-chip:hover{
  border-color: #8db4e6;
  color: var(--primary-blue);
  background-color: #f4f9ff;
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(16, 39, 71, 0.14);
}
.home-hero-chip:hover::after,
.home-hero-chip.is-active::after{
  opacity: 1;
  transform: scale(1);
}
.home-hero-chip:active{
  transform: translateY(-1px) scale(0.992);
}
.home-hero-chip.is-active{
  border-color: #7eaee4;
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
  color: #0d5fc1;
  box-shadow: 0 20px 34px rgba(13, 67, 130, 0.16);
}
.home-category-chip-icon,
.home-category-chip-label,
.home-category-chip-arrow{
  position: relative;
  z-index: 1;
}
.home-category-chip-icon{
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 15px;
  border: 1px solid #d8e4f4;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 #ffffff, 0 8px 16px rgba(15, 45, 84, 0.10);
}
.home-category-chip-icon img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: saturate(1.04);
  transition: transform .28s ease, filter .28s ease;
}
.home-category-chip-label{
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: start;
}
.home-category-chip-arrow{
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 999px;
  border: 1px solid #d4e3f5;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b84b5;
  box-shadow: 0 6px 14px rgba(17, 41, 77, 0.08);
  transition: transform .22s ease, color .22s ease, border-color .22s ease, background-color .22s ease;
}
.home-category-chip-arrow svg{
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-hero-chip:hover .home-category-chip-icon img,
.home-hero-chip.is-active .home-category-chip-icon img{
  transform: scale(1.08);
  filter: saturate(1.14);
}
.home-hero-chip:hover .home-category-chip-arrow,
.home-hero-chip.is-active .home-category-chip-arrow{
  transform: translateX(2px);
  color: #0d73f3;
  border-color: #bfd7f4;
  background: #f4f9ff;
}
.rtl .home-hero-chip:hover .home-category-chip-arrow,
.rtl .home-hero-chip.is-active .home-category-chip-arrow{
  transform: translateX(-2px);
}
.home-categories-chip-row{
  margin-top: 0;
}
.home-categories-section{
  padding: 6px 0px 18px;
}
.home-categories-shell{
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e5f5;
  border-radius: 20px;
  background:
    radial-gradient(780px 240px at 8% -35%, #e8f3ff 0%, transparent 65%),
    #ffffff;
  box-shadow: var(--shadow-medium);
  padding: 18px;
}
.home-categories-shell::after{
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: #0d73f30f;
  pointer-events: none;
}
.home-categories-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.home-categories-title{
  margin: 0;
  font-size: clamp(18px, 0.6vw + 14px, 24px);
  font-weight: 700;
  color: #112849;
}
.home-categories-see-all{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-blue);
  border: 1px solid #cfe1f7;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(14, 44, 84, 0.08);
  transition: transform .18s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-categories-see-all:hover{
  background-color: #edf5ff;
  border-color: #bbd3f0;
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(14, 44, 84, 0.12);
}
.home-categories-row{
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-categories-track{
  flex: 1;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  padding: 4px 2px;
}
.home-categories-track::-webkit-scrollbar{
  display: none;
  width: 0;
  height: 0;
}
.home-categories-track.is-dragging{
  cursor: grabbing;
}
.home-categories-track.is-dragging .home-category-item{
  pointer-events: none;
}
.home-categories-nav{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #cfe1f7;
  background-color: #ffffff;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.home-categories-nav:focus{
  outline: none;
  box-shadow: 0 0 0 3px #005fcb1f;
}
.home-category-item{
  min-width: 210px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d8e6f7;
  border-radius: 15px;
  padding: 10px 12px;
  background: #ffffff;
  color: #13294b;
  box-shadow: 0 6px 18px rgba(18, 44, 82, 0.08);
  pointer-events: auto;
}
.home-category-item:hover{
  border-color: #8fb8eb;
  box-shadow: 0 10px 24px rgba(18, 44, 82, 0.14);
}
.home-category-icon{
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 10px;
  border: 1px solid #d6e0ef;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-category-icon img{
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.home-category-name{
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #1d2e46;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
.home-feed-section{
  padding: 6px 0px 14px;
}
.home-feed-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.home-feed-sort{
  appearance: none;
  border: 1px solid #cfe1f7;
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 14px;
  line-height: 1;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 5px 14px rgba(16, 39, 71, 0.09);
}
.home-feed-sort:hover{
  border-color: #92b8e8;
  background: #f4f9ff;
}
.home-feed-sort:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px #005fcb20;
}
.home-sort-sheet{
  position: fixed;
  inset: 0;
  z-index: 1000001;
}
.home-sort-sheet.hidden{
  display: none;
}
.home-sort-sheet-backdrop{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background:
    radial-gradient(700px 280px at -10% -10%, #dbe9ff66 0%, transparent 72%),
    rgba(9, 27, 52, 0.55);
  backdrop-filter: blur(4px);
  padding: 0;
  margin: 0;
}
.home-sort-sheet-panel{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 28px));
  background:
    radial-gradient(560px 220px at 0% 0%, #f1f8ff 0%, transparent 74%),
    #ffffff;
  border: 1px solid #cfe0f4;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(11, 33, 63, 0.24);
  padding: 14px;
  animation: popup-enter .2s ease;
}
.home-sort-sheet-handle{
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: #c0d3eb;
  margin: 2px auto 10px;
}
.home-sort-sheet-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 10px;
}
.home-sort-sheet-title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f2b4e;
}
.home-sort-close{
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid #c7d8ef;
  background: #f4f9ff;
  color: #24568e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.home-sort-close:hover{
  background: #eaf3ff;
  border-color: #aac7e8;
}
.home-sort-close svg{
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-sort-options{
  display: grid;
  gap: 8px;
}
.home-sort-option{
  width: 100%;
  border: 1px solid #d7e4f5;
  border-radius: 14px;
  background: #f9fcff;
  color: #143155;
  min-height: 52px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: start;
  font-size: 15px;
  font-weight: 600;
}
.home-sort-option:hover{
  border-color: #8eb7ea;
  background: #f3f9ff;
}
.home-sort-option[data-selected="1"]{
  border-color: #7eaee7;
  background: #ebf4ff;
  box-shadow: 0 6px 16px rgba(14, 43, 80, 0.12);
}
.home-sort-option-check{
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 999px;
  border: 2px solid #9cb3d2;
  background: #ffffff;
}
.home-sort-option[data-selected="1"] .home-sort-option-check{
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  box-shadow: inset 0 0 0 4px #ffffff;
}
.home-sort-sheet-actions{
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.home-sort-action{
  min-width: 98px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #c7d8ed;
  background: #edf4ff;
  color: #214f88;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 650;
  box-shadow: none;
}
.home-sort-action:hover{
  background: #e5f0ff;
}
.home-sort-action.is-primary{
  border-color: #0a62cf;
  background: linear-gradient(130deg, #0d73f3 0%, #0a5fc8 100%);
  color: #ffffff;
  box-shadow: 0 9px 18px rgba(12, 87, 180, 0.24);
}
.home-sort-action.is-primary:hover{
  box-shadow: 0 12px 22px rgba(10, 86, 181, 0.28);
}
body.home-sort-sheet-open{
  overflow: hidden;
}
.rtl .home-sort-option{
  text-align: end;
}
.home-feed-grid{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 6px;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
.home-feed-card-shell{
  animation: home-card-reveal .58s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--card-delay, 0ms);
}
.home-feed-card{
  position: relative;
}
.show-ad-style-2.home-feed-card .main-div{
  position: relative;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  box-shadow: 0 14px 28px rgba(15, 40, 76, 0.12);
  transition: transform .24s ease, box-shadow .28s ease;
}
.show-ad-style-2.home-feed-card .main-div::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffffaa 0%, transparent 48%, #dcebff70 100%);
  pointer-events: none;
}
.show-ad-style-2.home-feed-card .main-div::after{
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0d73f3 0%, #7ab8ff 100%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.show-ad-style-2.home-feed-card:hover .main-div{
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(15, 40, 76, 0.18);
}
.home-feed-card-shell.is-featured .show-ad-style-2.home-feed-card .main-div::after,
.home-feed-card-shell.is-fresh .show-ad-style-2.home-feed-card .main-div::after,
.show-ad-style-2.home-feed-card:hover .main-div::after{
  opacity: 1;
}
.show-ad-style-2.home-feed-card .main-table{
  position: relative;
  z-index: 1;
  height: 182px;
  border: 1px solid #d9e6f6;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}
.home-feed-card-shell.is-featured .show-ad-style-2.home-feed-card .main-table{
  border-color: #bfd8f7;
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.82) 0%, rgba(255, 255, 255, 0.92) 100%);
}
.home-feed-card-shell.is-fresh .show-ad-style-2.home-feed-card .main-table{
  border-color: #cae2fa;
}
.show-ad-style-2.home-feed-card .image-col{
  width: 126px;
  border-radius: 18px 0px 0px 18px;
  background: linear-gradient(180deg, #eef5ff 0%, #ddebff 100%);
}
.home-feed-card-shell.is-featured .show-ad-style-2.home-feed-card .image-col{
  background: linear-gradient(180deg, #edf6ff 0%, #d8ebff 100%);
}
.show-ad-style-2.home-feed-card .image-col::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 44, 86, 0.16) 100%);
  pointer-events: none;
}
.show-ad-style-2.home-feed-card .ad-thumb-img{
  transition: transform .55s ease, filter .35s ease;
}
.show-ad-style-2.home-feed-card:hover .ad-thumb-img{
  transform: scale(1.06);
  filter: saturate(1.05);
}
.show-ad-style-2.home-feed-card .home-feed-card-visual-badges{
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}
.show-ad-style-2.home-feed-card .home-feed-card-count-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(8, 28, 54, 0.62);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(9, 26, 49, 0.18);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.show-ad-style-2.home-feed-card .home-feed-card-count-badge svg{
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.show-ad-style-2.home-feed-card .fav-toggle-icon{
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-color: #cfddf0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(10, 34, 64, 0.20);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}
.show-ad-style-2.home-feed-card .fav-toggle-icon:hover{
  transform: scale(1.08);
  border-color: #bfd5f2;
  background: #ffffff;
  box-shadow: 0 16px 26px rgba(10, 34, 64, 0.24);
}
.show-ad-style-2.home-feed-card .fav-toggle-icon[aria-pressed="true"]{
  border-color: #f0d98a;
  background: linear-gradient(180deg, #fff9d8 0%, #fff1b0 100%);
}
.rtl .show-ad-style-2.home-feed-card .image-col{
  border-radius: 0px 18px 18px 0px;
}
.rtl .show-ad-style-2.home-feed-card .home-feed-card-visual-badges{
  left: auto;
  right: 10px;
}
.rtl .show-ad-style-2.home-feed-card .fav-toggle-icon{
  left: auto;
  right: 12px;
}
.show-ad-style-2.home-feed-card .home-feed-card-link{
  display: block;
  height: 100%;
  color: inherit;
}
.show-ad-style-2.home-feed-card .home-feed-card-link:hover{
  color: inherit;
}
.show-ad-style-2.home-feed-card .ad-contents-td{
  padding: 12px 14px 10px 12px;
}
.show-ad-style-2.home-feed-card .home-feed-card-topline{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.show-ad-style-2.home-feed-card .price{
  margin: 0;
  flex: 1;
}
.show-ad-style-2.home-feed-card .price1,
.show-ad-style-2.home-feed-card .price2{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.show-ad-style-2.home-feed-card .price1{
  background: #eaf4ff;
  color: #0d60c4;
  box-shadow: inset 0 0 0 1px #c9ddf5;
}
.show-ad-style-2.home-feed-card .price2{
  background: #ecf9f0;
  color: #18743a;
  box-shadow: inset 0 0 0 1px #cce6d4;
}
.show-ad-style-2.home-feed-card .home-feed-card-open-indicator{
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 11px;
  border: 1px solid #d4e1f3;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  color: #5c83b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(16, 39, 71, 0.08);
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background-color .2s ease;
}
.show-ad-style-2.home-feed-card .home-feed-card-open-indicator svg{
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.show-ad-style-2.home-feed-card:hover .home-feed-card-open-indicator{
  transform: translate(2px, -2px);
  color: #0d73f3;
  border-color: #c1d8f4;
  background: #f4f9ff;
}
.rtl .show-ad-style-2.home-feed-card:hover .home-feed-card-open-indicator{
  transform: translate(-2px, -2px);
}
.show-ad-style-2.home-feed-card .top-side-raw{
  height: 106px;
}
.show-ad-style-2.home-feed-card .ad-description{
  margin: 0;
  color: #10294b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.show-ad-style-2.home-feed-card .bottom-side-raw td{
  padding-top: 2px;
}
.show-ad-style-2.home-feed-card .home-feed-card-meta-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.show-ad-style-2.home-feed-card .bottom-side-raw div{
  display: flex;
  align-items: center;
}
.show-ad-style-2.home-feed-card .location-from,
.show-ad-style-2.home-feed-card .date-from{
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid #dbe6f4;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  gap: 8px;
}
.show-ad-style-2.home-feed-card .home-feed-card-meta-icon{
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 8px;
  border: 1px solid #dce6f3;
  background: #ffffff;
  color: #5c83b3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.show-ad-style-2.home-feed-card .home-feed-card-meta-icon svg{
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.show-ad-style-2.home-feed-card .bottom-side-raw span,
.show-ad-style-2.home-feed-card .home-feed-card-meta-text{
  color: #5a7492;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.show-ad-style-2.home-feed-card .home-feed-card-meta-text{
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.show-ad-style-2.home-feed-card .bottom-side-raw .date-from{
  justify-content: flex-start;
}
.show-ad-style-2.home-feed-card .home-feed-card-badge-row{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-height: 22px;
  margin: -6px 0 6px;
}
.show-ad-style-2.home-feed-card .home-feed-card-featured-badge{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f9ff 0%, #eaf4ff 100%);
  box-shadow: inset 0 0 0 1px #c9ddf6;
  color: #0d66cb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.show-ad-style-2.home-feed-card .home-feed-card-featured-badge::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0d73f3;
  box-shadow: 0 0 0 4px rgba(13, 115, 243, 0.14);
}
.home-feed-loading{
  width: 100%;
  text-align: center;
  margin: 0px 0px 30px 0px;
}
.ourood-feed-message{
  width: 100%;
  margin: 0 0 30px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d7e4f3;
  background: #ffffff;
  color: #2b4c71;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.ourood-feed-skeleton{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 30px;
}
.ourood-feed-skeleton-row{
  height: 140px;
  border-radius: 14px;
  border: 1px solid #d9e6f5;
  background: linear-gradient(100deg, #edf3fb 8%, #f8fbff 26%, #edf3fb 44%);
  background-size: 220% 100%;
  animation: ourood-shimmer 1.15s linear infinite;
}
@keyframes ourood-shimmer{
  to{
    background-position: -220% 0;
  }
}
@media (min-width: 750px){
  .ourood-feed-skeleton{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px){
  .ourood-feed-skeleton{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce){
  .ourood-feed-skeleton-row{
    animation: none;
  }
}
@media (min-width: 1101px){
  .home-categories-chip-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
  }
  .home-categories-chip-row .home-hero-chip{
    min-width: 0;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
    white-space: normal;
    line-height: 1.3;
    min-height: 84px;
    padding: 14px;
  }
}
@media (max-width: 820px){
  .home-hero-shell{
    border-radius: 16px;
    padding: 16px;
  }
  .home-hero-actions{
    grid-template-columns: 1fr;
  }
  .home-categories-shell{
    padding: 14px;
    border-radius: 16px;
  }
  .home-hero-chip{
    min-width: 220px;
    min-height: 78px;
    padding: 12px;
  }
  .home-category-chip-icon{
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }
  .home-category-chip-arrow{
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .home-categories-nav{
    display: none;
  }
  .home-category-item{
    min-width: 178px;
  }
  .home-category-name{
    font-size: 15px;
  }
  .show-ad-style-2.home-feed-card .main-table{
    height: 178px;
  }
  .show-ad-style-2.home-feed-card .image-col{
    width: 112px;
  }
  .show-ad-style-2.home-feed-card .ad-contents-td{
    padding: 10px 12px 10px 10px;
  }
  .show-ad-style-2.home-feed-card .home-feed-card-meta-grid{
    grid-template-columns: 1fr;
  }
  .show-ad-style-2.home-feed-card .ad-description{
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
  .home-sort-sheet-panel{
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
    bottom: 0;
    border-radius: 18px 18px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

/* categories */
.categories-page{
  text-align: start;
  padding: 12px 0px 18px;
}
.categories-page-shell{
  border: 1px solid #d8e5f6;
  border-radius: 22px;
  background:
    radial-gradient(760px 250px at 10% -30%, #e9f3ff 0%, transparent 68%),
    #ffffff;
  box-shadow: var(--shadow-medium);
  padding: clamp(16px, 2.2vw, 24px);
}
.categories-page-head{
  margin-bottom: 14px;
}
.categories-page-kicker{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #49678f;
  font-weight: 700;
}
.categories-page-title{
  margin: 7px 0px 3px;
  font-size: clamp(24px, 1.05vw + 20px, 34px);
  line-height: 1.15;
  color: #10284a;
}
.categories-page-subtitle{
  margin: 0;
  font-size: 14px;
  color: #567092;
}
.categories-page-search{
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d4e2f5;
  border-radius: 14px;
  background: #f7fbff;
  padding: 8px 12px;
}
.categories-page-search i{
  color: #6f85a4;
  font-size: 16px;
}
.categories-page-search input{
  width: 100%;
  height: 32px;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 15px;
  color: #10294c;
  padding: 0;
}
.categories-page-search input:focus{
  outline: none;
}
.categories-main-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.categories-main-card{
  width: 100%;
  border: 1px solid #d7e5f7;
  border-radius: 16px;
  background: #ffffff;
  min-height: 90px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: start;
  box-shadow: 0 8px 18px rgba(15, 40, 76, 0.08);
}
.categories-main-card:hover{
  border-color: #8fb8ea;
  box-shadow: 0 12px 24px rgba(15, 40, 76, 0.14);
}
.categories-main-icon{
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 12px;
  border: 1px solid #d8e4f4;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.categories-main-icon img{
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.categories-main-meta{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.categories-main-name{
  font-size: 16px;
  font-weight: 600;
  color: #102b4b;
  line-height: 1.2;
}
.categories-main-note{
  font-size: 12px;
  color: #3d5d82;
  line-height: 1.2;
}
.categories-main-arrow{
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: #5380b3;
}
.categories-main-arrow svg{
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.categories-no-results{
  margin-top: 16px;
  border: 1px dashed #c8d8ed;
  border-radius: 12px;
  background: #f9fcff;
  color: #4f6889;
  padding: 14px 12px;
  text-align: center;
  font-weight: 500;
}
.categories-subpage{
  background: var(--surface-0);
}
.categories-subpage-head-wrap{
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid #dae6f5;
  background: #f8fbff;
  box-shadow: 0 6px 16px rgba(17, 38, 74, 0.08);
}
.categories-subpage-head{
  height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.categories-subpage-back{
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #153257;
  font-size: 16px;
  font-weight: 600;
}
.categories-subpage-back-icon{
  width: 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
}
.categories-subpage-title{
  flex: 1;
  text-align: end;
  color: #0f2b4e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.rtl .categories-subpage-title{
  text-align: start;
}
.categories-subpage-shell{
  padding: 16px 0px 22px;
}
.categories-sub-list{
  display: grid;
  gap: 12px;
}
.categories-sub-item{
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid #d6e4f4;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  min-height: 56px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #143155;
  box-shadow: 0 10px 22px rgba(16, 39, 71, 0.09);
  animation: home-card-reveal .5s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--card-delay, 0ms);
  transition: transform .22s ease, box-shadow .26s ease, border-color .22s ease, background-color .22s ease;
}
.categories-sub-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0d73f3 0%, #5da5ff 100%);
  opacity: 0.12;
  transition: opacity .22s ease, width .22s ease;
}
.categories-sub-item:hover{
  border-color: #8eb7ea;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  transform: translateX(4px);
  box-shadow: 0 16px 28px rgba(16, 39, 71, 0.13);
}
.rtl .categories-sub-item:hover{
  transform: translateX(-4px);
}
.categories-sub-item:hover::before,
.categories-sub-item:focus-visible::before{
  opacity: 1;
  width: 6px;
}
.categories-sub-item-all{
  border-color: #bfd6f5;
  background: linear-gradient(180deg, #f3f8ff 0%, #edf5ff 100%);
}
.categories-sub-label{
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-align: start;
}
.categories-sub-arrow{
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: #5b84b5;
  transition: transform .22s ease, color .22s ease;
}
.categories-sub-arrow svg{
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.categories-sub-item:hover .categories-sub-arrow{
  transform: translateX(3px);
  color: #0d73f3;
}
.rtl .categories-sub-item:hover .categories-sub-arrow{
  transform: translateX(-3px);
}
.rtl .categories-main-arrow svg,
.rtl .categories-sub-arrow svg{
  transform: rotate(180deg);
}
@media (max-width: 1150px){
  .categories-main-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px){
  .categories-page-shell{
    border-radius: 16px;
    padding: 14px;
  }
  .categories-main-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .categories-main-card{
    min-height: 82px;
    padding: 10px;
    border-radius: 14px;
  }
  .categories-main-icon{
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .categories-main-icon img{
    width: 32px;
    height: 32px;
  }
  .categories-main-name{
    font-size: 14px;
  }
  .categories-main-note{
    display: none;
  }
  .categories-subpage-head{
    height: 60px;
  }
  .categories-subpage-title{
    font-size: 17px;
  }
  .categories-sub-item{
    min-height: 54px;
    padding: 12px 14px;
  }
}
@media (max-width: 520px){
  .categories-main-grid{
    grid-template-columns: 1fr;
  }
}
.raw-scrollable-horzintally-col .category-img{
background-color: #e3e3e300;
color: rgb(0, 0, 0);
padding: 15px;
border-radius: 15px;
width:120px;
height: 70px;
color: black;
display: flex;
justify-content: center;
align-items: center;
}
.category-img img{
max-width: 70px;
max-height: 55px;
}
.category-img{
  min-height:60px;
}

/* SORT BY */
.sort-list p{
  display:flex; margin: 15px 0px; width: 100%; align-items: center; cursor: pointer; background-color: white; border: 2px solid #000000;
  border-radius: 5px;
  padding: 15px;
}


/* FOOTER-MOB */
.footer-mob-bottom{
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: #fffffff0;
  border-top: 1px solid #dfe8f4;
  box-shadow: 0 -8px 20px rgb(17 36 66 / 12%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .footer-mob-bottom .footer-icon-col{
  width:20%; /*16.65*/
  float: left;
  text-align: center;
  padding: 10px 0px 8px 0px;
  }
  .footer-mob-bottom i{
  font-size: 22px;
  color: #7c8ea7;
  }
  .footer-mob-bottom span{
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #7c8ea7;
  }
  .footer-mob-bottom .active *{
  color:var(--primary-blue);
  }





.category-name{
    height: 50px;
    padding-left:10px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}
.rtl .category-name{
  padding-right:10px;
}

.category-name:hover{
    background-color: #005fcb;
    color: white;
}
.horizontal-quick-categories a:hover{
    background-color: #005fcb21;
    border-radius: 10px;
}

.rtl .iti__flag-container{
  left: 0px !important;
  right: auto;
}

/*header and menu*/
#search{ overflow: hidden; }
#menu ul span{margin-left:5px;}
header i, #search i{font-size: 25px;}
.fas, .far, .fab{
  font-style: normal;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
i[class*="fa-"]::before{
  content: "";
  display: inline-block;
  line-height: 1;
}
i.fa-search::before{content:"⌕";}
i.fa-angle-left::before{content:"‹";}
i.fa-angle-right::before{content:"›";}
i.fa-window-close::before{content:"✕";}
i.fa-star::before{content:"★";}
i.fa-spinner::before{content:"◌";}
i.fa-camera::before{content:"◉";}
i.fa-phone::before{content:"☎";}
i.fa-envelope::before{content:"✉";}
i.fa-lock::before{content:"◍";}
i.fa-wallet::before{content:"¤";}
i.fa-ad::before{content:"▦";}
i.fa-user::before{content:"◍";}
i.fa-link::before{content:"⛓";}
i.fa-unlink::before{content:"⛓";}
i.fa-home::before{content:"⌂";}
i.fa-compass::before{content:"◎";}
i.fa-plus::before{content:"+";}
i.fa-comment::before{content:"◍";}
i.fa-pen::before{content:"✎";}
.fa-spin,
.fa-pulse{
  animation: fa-fallback-spin 1s linear infinite;
}
@keyframes fa-fallback-spin{
  to{ transform: rotate(360deg); }
}
.header-action-icon{
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-right-side{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: end;
}
.header-icon-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.header-icon-action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  background: transparent;
  color: #10223e;
  line-height: 1;
  vertical-align: middle;
}
.header-icon-action:hover{
  color: var(--primary-blue);
}
.header-icon-action,
.header-icon-action:hover,
.header-icon-action:active{
  transform: none !important;
  box-shadow: none !important;
}
.rtl .header-icon-actions{
  justify-content: flex-start;
}
/*#menu{ padding: 0px 15px; }*/
.fullwidth{width: 100%;}
#menu > .fullwidth{
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.menu-burger-icon{
  margin-right: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--dark);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  transform: none !important;
  box-shadow: none !important;
}
.menu-burger-icon:hover,
.menu-burger-icon:active{
  transform: none !important;
  box-shadow: none !important;
}
.menu-burger-icon:focus-visible{
  outline: 3px solid #0d73f3;
  outline-offset: 2px;
  border-radius: 8px;
}
.rtl .menu-burger-icon{margin-right: 0px; margin-left: 30px;}
.menu-burger-glyph{
  display: inline-block;
  line-height: 1;
  font-size: 32px;
}
.menu-burger-icon-svg{
  width: 32px;
  height: 32px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.img-div{ margin-right:10px; }
.rtl .img-div{ margin-right:0px; margin-left:0px; }

a{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
	*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  /*list-style: none;*/
  box-sizing: border-box;
}
#menu{
  background-color: var(--header-bg);
  box-shadow: 0 8px 24px rgba(18, 39, 71, 0.08);
  border-bottom: 1px solid #e6edf6;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 60px;
  width: 100%;
  display: flex; align-items: center;
  list-style: none;
  z-index: 99;
  position: fixed;
  top: 0px;
}
#menu label.logo{
  background-color: var(--light);
  color: var(--dark);
  font-size: 35px;
  line-height: 80px;
  padding: 0 40px;
  font-weight: bold;
}
#menu ul{
z-index:10;
  float: left;
  margin-right: 20px;
}
#menu ul li{
  display: inline-block;
 /* line-height: 80px;*/
  margin: 0 5px;
}
#menu ul li a{
  color: #10223e;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.01em;
}
#menu ul li a:hover{
  background-color: #005fcb14;
  color: var(--primary-blue);
}
#menu ul li a.is-current,
#menu ul li a[aria-current="page"]{
  background-color: #005fcb24;
  color: var(--primary-blue);
  font-weight: 650;
}
#menu ul li a:focus-visible{
  outline: 3px solid #0d73f3;
  outline-offset: 2px;
}
a.active,a:hover{
  transition: .25s;
}
.checkbtn{
  font-size: 35px;
  color: white;
  float: left;
  line-height: 0px;
  margin-left: 30px;
  cursor: pointer;
  display: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
#menu_check{
  display: none;
}
@media (max-width: 1100px){
  #menu .menu-burger-icon{
    display: inline-flex !important;
    visibility: visible;
    opacity: 1;
  }
  #menu label.logo{
    font-size: 30px;
    padding-right: 30px;
  }
  #menu ul li a{
    font-size: 16px;
  }
  #menu .checkbtn{
    display: block;
  }
  #menu ul{
    position: fixed;
    width: min(340px, 88vw);
    top: 61px;
    height: calc(100vh - 61px);
    background: var(--surface-1);
    border-right: 1px solid #e4ecf6;
    box-shadow: 8px 0 26px rgba(16, 35, 64, 0.12);
    left: -100%;
    text-align: start;
    transition: all .5s;
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px 0px 20px 0px;
  }
  #menu ul li{
    display: block;
    margin: 0px;
    line-height: 1.25;
  }
  #menu ul li a{
    font-size: 16px;
    display: block;
    border-radius: 0px;
    border-bottom: 1px solid #eef3f9;
    padding: 14px 18px;
  }
  #menu a:hover,a.active{}
  #menu_check:checked ~ ul{
    left: 0;
  }
}

@media (max-width: 640px){
  .div-blocks{
    padding: 0px 12px;
  }
  .max-width-shell{
    padding: 0 12px;
  }
  .popup{
    width: calc(100% - 24px);
    min-width: 0;
    padding: 14px;
  }
  .message, .error-message, .success-message{
    margin-bottom: 14px;
  }
  #menu ul{
    width: min(320px, 92vw);
  }
}

.price{
  margin-bottom: 5px;
}
.price2{
  font-size: 18px;
  font-weight: 500;
  margin-inline-end: 5px;
}

.price1{
  font-size: 14px;
  color: #888888;
  margin-inline-end: 5px;
}



.show-ad-style-2 .main-div{margin-bottom:15px;}
.show-ad-style-2 .main-table{background-color:white; height:150px; width:100%; border: 1px solid #eaeaea; border-radius: 10px; border-spacing: 0;}
.show-ad-style-2 .image-col{border-radius: 10px 0px 0px 10px; width:120px; height:100%; vertical-align: text-bottom; padding: 0; color:#bebebebd; position: relative; overflow:hidden; background:#edf3fb;}
.show-ad-style-2 .ad-thumb-img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.show-ad-style-2 .fav-toggle-icon{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d5e1f0;
  background: #ffffffe8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(8, 31, 60, 0.18);
  user-select: none;
}
.show-ad-style-2 .fav-toggle-icon:focus-visible{
  outline: 2px solid #0d73f3;
  outline-offset: 2px;
}
.rtl .show-ad-style-2 .fav-toggle-icon{
  left: auto;
  right: 10px;
}
.show-ad-style-2 .ad-contents-td{vertical-align:top; padding:5px;}
.show-ad-style-2 .top-side-raw{height:115px;}
.show-ad-style-2 .top-side-col{vertical-align:top;}
.show-ad-style-2 .bottom-side-raw div{width: 50%; float: left;}
.show-ad-style-2 .bottom-side-raw span{color: #355171; font-size: 12px; width: 50% !important;}
.show-ad-style-2 .bottom-side-raw .date-from{text-align: right;}
.rtl .show-ad-style-2 .bottom-side-raw div{float: right;}
.rtl .show-ad-style-2 .bottom-side-raw .date-from{text-align: left;}
.rtl .show-ad-style-2 .image-col {border-radius: 0px 10px 10px 0px;}

.show-ad-style-2.home-feed-card .bottom-side-raw .home-feed-card-meta-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100% !important;
  float: none !important;
}
.show-ad-style-2.home-feed-card .bottom-side-raw .home-feed-card-meta-grid *{
  float: none !important;
  max-width: none !important;
}
.show-ad-style-2.home-feed-card .bottom-side-raw .location-from,
.show-ad-style-2.home-feed-card .bottom-side-raw .date-from{
  width: 100% !important;
  float: none !important;
}
.show-ad-style-2.home-feed-card .bottom-side-raw .home-feed-card-meta-icon{
  flex: 0 0 auto;
  width: 22px !important;
  min-width: 22px !important;
}
.show-ad-style-2.home-feed-card .bottom-side-raw .home-feed-card-meta-text{
  flex: 1 1 auto;
  display: block;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
.show-ad-style-2.home-feed-card .bottom-side-raw .location-from > span,
.show-ad-style-2.home-feed-card .bottom-side-raw .date-from > span{
  width: auto !important;
}



.section-show-ad-style-2{
  flex:100%;
  content-visibility: auto;
  contain-intrinsic-size: 170px;
}
.categories-main-card,
.chat-preview-box section{
  content-visibility: auto;
  contain-intrinsic-size: 130px;
}
img[loading="lazy"]{
  content-visibility: auto;
}
@media (min-width: 750px){    
  .section-show-ad-style-2{
    flex: 0 0 50%;
    /*width:50%;
    float:left;*/
    padding:0px 5px 0px 5px;
    }
}
@media (min-width: 1200px){    
  .section-show-ad-style-2{
    flex: 0 0 33.333333%;
    /*width:33%;
    float:left;*/
    padding:0px 5px 0px 5px;
    }
}




/* Ad Page */
#boost_ad_popup .plans div{
  padding: 10px;
  border-radius: 5px;
  margin: 15px 0px 5px 0px;
  background-color: #e8e8e8;
  color: black;
}
#thumbnails img{  height: 400px; object-fit: contain;  }
hr{
  margin: 0px;
  padding: 0px;
  border: solid 0px;
  background: #002f345c;
  height: 0.1px;
}
.ad-details{
  background-color: #fff;
  border: 1px solid rgba(0,47,52,.36);
  border-radius: 4px;
  padding: 20px 15px;
  overflow: hidden;
  width: 90%;
  margin-left: 5%;
}
.rtl .ad-details {
  padding: 1.6rem !important;
  margin-right: 5%;
  margin-left: 5%;
  width: 90% !important;
}

.ad-tag{
  padding: 0.5rem 15px 1.5rem 15px;
}

.slider_dot_div{ /*margin-top: -30px; position: relative;*/ margin-top: 15px; margin-bottom: -30px; }
@media only screen and (min-width: 1100px) {
.ad-details{
  padding: 1.6rem !important;
  margin-left: 0% !important;
  width: 100% !important;
}
.rtl .ad-details {
  width: 100% !important;
  margin-right: 0%;
}
#thumbnails{overflow-x: hidden;}
.left-side{
float:left;
width:70%;
padding: 0px 15px 0px 15px;
}
.right-side{
float:right;
width:30%;
padding: 0px 15px 0px 15px;
}
.rtl .left-side{
  float:right;
}
.rtl .right-side{
  float:left;
}
}

div.scrollmenu {
  width:100%;
  overflow: auto;
  white-space: nowrap;
}
.slider {
    font-family: sans-serif;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    display: -webkit-box;
    display: flex;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}
.ad-page section {    /* this will break ads blocks if not defined by ad-page*/
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    text-align: center;
    position: relative;
}
#contents section {
width: 100vw !important;
}

.mySlides {
  display: none
}
img {
  vertical-align: middle;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: #00000080;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.rtl .prev {
  left: 0px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Number text (1/3 etc) */
.numbertext {
  color: white;
  background-color: #00000080; /* var(--primary-blue); */
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.slider_dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #999999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slider_dot_div .active,
.slider_dot:hover {
  background-color: var(--primary-blue);
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px
  }
}
.safety-advice-block p{
  font-size:20px; font-weight: 500;
}
.safety-advice-block li{
  font-size: 14px;
}
.safety-advice-block li:not(:last-child){
  margin-bottom: 15px;
}






/*upload page - imgs raw*/
.scrollmenu {
  width:100%;
  overflow: auto;
  white-space: nowrap;
}
#full-img{
  overflow: auto;
  white-space: nowrap;
  display:none; 
  border:solid 0px; 
  padding:0px; 
  margin:0px; 
  height:100%; 
  width:100%; 
  z-index: 999; 
  position:absolute; 
  bottom:0px; 
  background-color:black;
    top: 0;
    height: calc( 100% - 50px);
    overflow: hidden;
    position: fixed;
}
#full-img .slider {
  font-family: sans-serif;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  display: -webkit-box;
  display: flex;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  overflow-y: hidden;
}
#full-img section{
  min-width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  text-align: center;
  position: relative;
}


#upload input{
  width: 100%;
  border-radius: 12px;
  height:44px !important;
  padding: 8px 10px;
  border: solid 1px #cad8ea;
  font-size: 16px;
  background-color: #ffffff;
  }
  #upload textarea{
  width: 100%;
  border-radius: 12px;
  padding: 10px;
  border: solid 1px #cad8ea;
  font-size: 16px;
  background-color: #ffffff;
  }
  #upload input:focus, #upload textarea:focus{border: solid 1px var(--primary-blue); outline: none; box-shadow: 0 0 0 3px #005fcb1a;}
  .input-title{
  font-size: 12px; 
  color: #32506f;
  font-weight: 500;
  }
.profileDisplay{
  margin: 1px;
  border: 1px solid var(--grey1);
}
.error-msg{
  color: var(--red);
  font-size: 14px;
}


.btn-next-upload{
  width: 100%;
  background: linear-gradient(135deg, #005fcb 0%, #0d77f5 100%);
  color: white;
  border: solid 1px #005fcb;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.4;
  padding: 11px 14px;
  font-weight: 600;
  box-shadow: 0 10px 20px #005fcb2e;
  }


/*call-whatsapp-chat*/
.contact-method .switch {
position: relative;
display: inline-block;
width: 40px;
height: 25px;}
.contact-method .switch input { 
opacity: 0;
width: 0;
height: 0;}
.contact-method .sliderr {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;}
.contact-method .sliderr:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: -5px;
bottom: 0px;
background-color: var(--primary-blue);
-webkit-transition: .4s;
transition: .4s;}
.contact-method input:checked + .sliderr {
background-color: #2196F3;}
.contact-method input:focus + .sliderr {
box-shadow: 0 0 1px #2196F3;}
.contact-method input:checked + .sliderr:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);}
.contact-method .sliderr.round {
border-radius: 34px;}
.contact-method .sliderr.round:before {
border-radius: 50%;}


/* chat previews */
.chat-preview-box{
  width: 100%;
}
.chat-preview-box section{
  display:flex; 
  margin: 15px 0px; 
  width: 100%; 
  align-items: center; 
  cursor: pointer; 
  background-color: white; 
  border: 2px solid #005fcb6b;
  border-radius: 5px;
  padding: 5px 10px;
}
.chat-preview-box .chat-date{
  flex: 2; 
  min-width: 55px; 
  text-align: end; 
  font-size: 16px; 
  height: 60px; 
  padding: 5px 0px;
}
.rtl .chat-preview-box .chat-date{text-align: left;}
.chat-preview-box .chat-contents{
  flex:16; 
  padding: 5px 10px;
}
.chat-preview-box .chat-images{
  flex: 1; display: flex; max-width: 45px; min-width: 45px; max-height: 45px; min-height: 45px; width: 45px; height: 45px;
  background-size: 35px; background-repeat: no-repeat; align-items: end; justify-content: end; 
  background-position: top left;
}
.rtl .chat-preview-box .chat-images{background-position: top right;}
.chat-preview-box img{
  object-fit: cover; width: 100%; height: 100%; border-radius: 5px; width: 30px; height: 30px; border-radius: 100%; border: solid 2px#f4f4f4;
}


/*chats page*/
.chat-preview-box .msg-owner-name{ display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.chat-preview-box .msg-contents{ color: var(--primary-blue); font-weight: 600; }


/*chat messages*/
.chat-msg-box .msg-contents{
  max-width:65%; padding: 5px 10px; border-radius: 5px;
}
.chat-msg-box .msg-date{float:right; font-size:12px;}
.chat-msg-from-sender .msg-contents{background-color: #005fcb25;}
.chat-msg-from-receiver .msg-contents{background-color: #e4e4e4;}
.chat-msg-from-sender{
  width:100%; display: flex; justify-content: right; margin:15px 0px;
}
.rtl .chat-msg-from-sender{ justify-content: left; }
.chat-msg-from-receiver{
  width:100%; display: flex; justify-content: left; margin:15px 0px;
}
.rtl .chat-msg-from-receiver{ justify-content: right; }





.legacy-select-category .cat-main{
float:left;
width:50%;
height:150px;
padding: 5px;
}
.legacy-select-category{
padding: 30px;
}
.selectize-input{
padding: 5px !important;
}
.selectize-dropdown, .selectize-input, .selectize-input input{
line-height: 30px !important;
}
.iti{width: 100%;}



/**********************************************************************************************************************************************/





/* HORIZONTALLY SCROLLABLE */
.raw-scrollable-horzintally::-webkit-scrollbar {  /* IE and Edge - hide scroll but allow touch scrolling */
  display: none;
}
.raw-scrollable-horzintally{
    width:100%; 
    overflow-x: scroll; 
    display: flex;
    -ms-overflow-style: none;  /* IE and Edge - hide scroll but allow touch scrolling */
    scrollbar-width: none;  /* Firefox - hide scroll but allow touch scrolling */
}
.raw-scrollable-horzintally-col{
    text-align: center;
    /*text-transform: uppercase;*/
    font-size: 12px;
    min-width: 120px;
    margin: 5px;
}


.shops-cards{
height: 100px;
/*width:100px;*/
margin: 0px !important;
border-radius: 20px 20px 0px 0px;
}
.shops-cards-main{
margin:0px 10px 0px 0px;
background: white;
border-radius: 20px 20px 0px 0px;
}
.shop-card-title{
padding: 10px;
}
/*-----*/
.offer-cards{
    height: 100px;
    width:100%;
    margin: 0px !important;
    border-radius: 20px 20px 0px 0px;
    }
    .offer-cards-main{
    margin:0px 10px 0px 0px;
    background: white;
    border-radius: 20px 20px 0px 0px;
    }
    .offer-card-title{
    padding: 10px;
    }












/* SEARCH CARD */
/*
.search-card {
  padding: 1px;
  border-radius: var(--border-radius);
  background: linear-gradient(-67deg, rgba(#c8d8e7, .7), rgba(255,255,255,.8));
  overflow: hidden;
  box-shadow: 
    -2px -2px 6px rgba(#fff, .6),
    2px 2px 12px #c8d8e7;

}

.search-card .CardInner {
  padding: 16px 16px;
  background-color: #e2e9f4;
  border-radius: var(--border-radius);
}

.search-card .container {
  display: flex;
}

.search-card .Icon {
  min-width: 46px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  margin-right: 12px;
  box-shadow: 
    -2px -2px 6px rgba(#fff, .6),
    2px 2px 12px #c8d8e7;
}

.search-card label {
  font-family: "Hind", sans-serif;
  display: block;
  color: #3c4b66;
  margin-bottom: 12px;
  background: linear-gradient(45deg, rgba(#6b7b8f, 1), #3c4b66);
  -webkit-background-clip: text;
}

.search-card .InputContainer {
  width: 100%;
}

.search-card input {
  background-color: #e3edf7;
  padding: 16px 32px;
  border: none;
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: var(--dark);
  -webkit-appearance: none;
  transition: all 240ms ease-out;
  width: 100%;
  
  &::placeholder {
    color: #6d7f8f;
  }
  
  &:focus {
    outline: none;
    color: #6d7f8f;
    background-color: lighten(#e3edf7, 3%);
  }
};
  
.search-card .InputContainer {
  --top-shadow: inset 1px 1px 3px #c5d4e3, inset 2px 2px 6px #c5d4e3;
  --bottom-shadow: inset -2px -2px 4px rgba(255,255,255, .7);
  
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  &:before,
  &:after {
    left: 0;
    top: 0;
    display: block;
    content: "";
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
  }
  
  &:before {
    box-shadow: var(--bottom-shadow);
  }
  
  &:after {
    box-shadow: var(--top-shadow);
  }
}
*/

#search_input:focus{
  box-shadow: none;
}

/* FOR IOS - SAFARI*/
/* allow input */
input, textarea { -webkit-user-select:text;}

/* Search Overlay (moved from footer inline style) */
<style nonce="<?php echo e($csp_nonce); ?>">
  .app-search-overlay {
    background:
      radial-gradient(800px 320px at -10% -20%, #ddebff 0%, transparent 68%),
      radial-gradient(680px 260px at 110% 120%, #e4f2ff 0%, transparent 72%),
      #f5f9ff;
    z-index: 1100;
  }
  .app-search-shell {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  .app-search-topbar {
    border-bottom: 1px solid #dbe8f8;
    background: #ffffffd9;
    backdrop-filter: blur(8px);
  }
  .app-search-topbar-inner {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .app-search-back-btn,
  .app-search-close-btn {
    border: 1px solid #c9dbf3;
    background: #ffffff;
    border-radius: 12px;
    color: #124071;
    height: 40px;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .app-search-back-btn {
    min-width: 98px;
    padding: 0 10px;
    gap: 6px;
    font-size: 14px;
    font-weight: 650;
  }
  .app-search-close-btn {
    width: 40px;
  }
  .app-search-back-btn svg,
  .app-search-close-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .app-search-body {
    min-height: calc(100vh - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
  }
  .app-search-card {
    width: min(780px, 100%);
    border: 1px solid #d2e3f7;
    border-radius: 20px;
    background:
      radial-gradient(560px 180px at 0% 0%, #f2f8ff 0%, transparent 70%),
      #ffffff;
    box-shadow: 0 18px 38px rgba(9, 40, 78, 0.14);
    padding: clamp(16px, 3vw, 26px);
  }
  .app-search-title {
    margin: 0;
    color: #0f2f56;
    font-size: clamp(23px, 1.5vw + 14px, 34px);
    font-weight: 750;
    letter-spacing: -0.015em;
  }
  .app-search-subtitle {
    margin: 6px 0 14px;
    color: #3d597b;
    font-size: 14px;
  }
  .app-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 16px;
    background: #eef5ff;
    padding: 0 8px 0 10px;
    min-height: 58px;
    margin-bottom: 0;
    transition: background-color 0.16s ease, box-shadow 0.16s ease;
  }
  .app-search-leading-icon {
    display: inline-flex;
    color: #4f75a0;
  }
  .app-search-leading-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .app-search-input-wrap input {
    flex: 1;
    border: 0;
    background: transparent;
    min-height: 54px;
    font-size: 18px;
    color: #16385f;
    padding: 0 4px;
  }
  .app-search-input-wrap input:focus {
    outline: none;
  }
  .app-search-input-wrap:focus-within {
    background: #e6f1ff;
    box-shadow: 0 0 0 2px #deebfb;
  }
  #search_input,
  #search_city_input {
    border: 0 !important;
    box-shadow: none !important;
  }
  #search_input:focus,
  #search_city_input:focus,
  #search_radius_km:focus {
    box-shadow: none !important;
  }
  #search_input:focus-visible,
  #search_city_input:focus-visible {
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }
  #search_radius_km:focus-visible,
  .app-search-clear-btn:focus-visible,
  .app-search-city-clear-btn:focus-visible,
  .app-search-submit-btn:focus-visible,
  .app-search-link-btn:focus-visible,
  .app-search-back-btn:focus-visible,
  .app-search-close-btn:focus-visible {
    outline: 3px solid #0d73f3 !important;
    outline-offset: 2px;
  }
  .app-search-clear-btn {
    border: 0;
    background: #eaf3ff;
    color: #2f5f97;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
  }
  .app-search-geo-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 16px;
  }
  .app-search-geo-field {
    min-width: 0;
  }
  .app-search-geo-label {
    display: block;
    margin-bottom: 10px;
    color: #2f4b6d;
    font-size: 13px;
    font-weight: 650;
  }
  .app-search-city-combobox {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    background: #eef5ff;
    min-height: 44px;
    padding: 0 8px 0 10px;
    transition: background-color 0.16s ease, box-shadow 0.16s ease;
  }
  .app-search-city-combobox:focus-within {
    background: #e6f1ff;
    box-shadow: 0 0 0 2px #deebfb;
  }
  #search_city_input {
    flex: 1;
    border: 0;
    background: transparent;
    min-height: 40px;
    font-size: 15px;
    color: #16385f;
    padding: 0;
  }
  #search_city_input:focus {
    box-shadow: none;
  }
  .app-search-city-clear-btn {
    border: 0;
    background: #eaf3ff;
    color: #2f5f97;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 21px;
    line-height: 1;
  }
  .app-search-city-suggestions {
    margin-top: 8px;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #cde0f7;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 20px rgba(13, 54, 101, 0.14);
  }
  .app-search-city-option {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ecf3fc;
    background: #fff;
    color: #1d426c;
    text-align: start;
    padding: 9px 12px;
    cursor: pointer;
  }
  .app-search-city-option__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .app-search-city-option__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
  }
  .app-search-city-option__meta {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: #5d7591;
  }
  .app-search-city-option:last-child {
    border-bottom: 0;
  }
  .app-search-city-option:hover,
  .app-search-city-option.is-active {
    background: #ecf4ff;
  }
  .app-search-radius-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
  }
  .app-search-radius-value {
    color: #1f5ba6;
    font-size: 13px;
    font-weight: 700;
  }
  .app-search-radius-input {
    width: 100%;
    accent-color: #0d73f3;
    margin: 3px 0 0;
  }
  .app-search-radius-hint {
    min-height: 16px;
    margin: 4px 0 0;
    color: #3a587c;
    font-size: 12px;
  }
  .app-search-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
  }
  .app-search-submit-btn,
  .app-search-link-btn {
    min-height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0 16px;
    font-family: inherit;
  }
  .app-search-submit-btn {
    flex: 1;
    background: linear-gradient(130deg, #0d73f3 0%, #0a5fc8 100%);
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(12, 87, 180, 0.26);
  }
  .app-search-link-btn {
    min-width: 150px;
    background: #eef5ff;
    border-color: #c4d8f3;
    color: #1f5ba6;
  }
  .app-search-error {
    min-height: 18px;
    margin: 10px 0 0;
    font-size: 13px;
    color: #bf3148;
    font-weight: 600;
  }
  body.search-overlay-open {
    overflow: hidden;
  }
  @media (max-width: 760px) {
    .app-search-back-btn {
      min-width: 88px;
      height: 38px;
      font-size: 13px;
      border-radius: 10px;
    }
    .app-search-close-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
    }
    .app-search-body {
      align-items: flex-start;
      padding: 14px 0;
    }
    .app-search-card {
      border-radius: 16px;
    }
    .app-search-input-wrap {
      min-height: 52px;
      border-radius: 14px;
    }
    .app-search-input-wrap input {
      min-height: 48px;
      font-size: 16px;
    }
    .app-search-actions {
      gap: 8px;
    }
    .app-search-geo-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .app-search-link-btn {
      min-width: 118px;
      padding: 0 10px;
      font-size: 14px;
    }
  }

/* Laravel design shell bridge */
.laravel-shell-header {
  position: sticky;
  top: 0;
  z-index: 1200;
}

.laravel-topbar {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(245, 250, 255, 0.9);
  border-bottom: 1px solid rgba(26, 44, 72, 0.12);
}

.laravel-topbar__inner {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.laravel-topbar__left,
.laravel-topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.laravel-topbar__right {
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.laravel-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 14px;
  border: 1px solid rgba(26, 44, 72, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(8, 20, 40, 0.07);
}

.laravel-brand img {
  width: auto;
  height: 30px;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

#menu_check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.laravel-menu-toggle {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(24, 44, 70, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(11, 24, 42, 0.08);
}

.laravel-top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 10px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 48, 79, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 22px rgba(10, 22, 40, 0.07);
}

.laravel-top-search__icon {
  width: 18px;
  height: 18px;
  color: #4e6786;
  flex-shrink: 0;
}

.laravel-top-search__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.laravel-top-search input {
  flex: 1;
  min-width: 0;
  min-height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #16324b;
  font-size: 14px;
}

.laravel-top-search input:focus {
  box-shadow: none;
}

.laravel-top-search__submit {
  border: 0;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(138deg, #4d7ea8, #16324b);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.laravel-pill-btn {
  min-height: 40px;
  border: 1px solid rgba(19, 44, 74, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: #15334d;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.laravel-pill-btn:hover {
  color: #0c2b49;
}

.laravel-pill-btn--ghost {
  background: rgba(255, 255, 255, 0.65);
}

.laravel-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(21, 44, 73, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #1a3d5f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.laravel-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.laravel-side-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 16, 31, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 1200;
}

.laravel-side-menu {
  position: fixed !important;
  inset-inline-start: 0;
  top: 0;
  height: 100vh;
  width: min(86vw, 330px);
  margin: 0 !important;
  padding: 14px 12px 18px !important;
  list-style: none;
  overflow-y: auto;
  background: #f7fbff;
  border-inline-end: 1px solid rgba(20, 44, 74, 0.14);
  box-shadow: 0 24px 50px rgba(8, 19, 36, 0.22);
  transform: translateX(-104%);
  transition: transform .2s ease;
  z-index: 1300;
}

.rtl .laravel-side-menu {
  inset-inline-start: auto;
  inset-inline-end: 0;
  transform: translateX(104%);
  border-inline-end: 0;
  border-inline-start: 1px solid rgba(20, 44, 74, 0.14);
}

.laravel-side-menu__brand {
  margin-bottom: 10px;
  padding: 5px 6px 12px;
  border-bottom: 1px solid rgba(20, 44, 74, 0.12);
}

.laravel-side-menu li {
  margin: 0;
}

.laravel-side-menu li a {
  display: block;
  padding: 10px 11px;
  border-radius: 11px;
  text-decoration: none;
  color: #1a3a5b;
  font-weight: 650;
}

.laravel-side-menu li a:hover,
.laravel-side-menu li a.is-current,
.laravel-side-menu li a[aria-current="page"] {
  background: rgba(77, 126, 168, 0.14);
}

body.menu-open .laravel-side-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .laravel-side-menu {
  transform: translateX(0);
}

.devider-60.laravel-shell-spacer {
  height: 8px;
  margin-bottom: 10px;
}

.laravel-mobile-nav {
  display: none;
}

@media (max-width: 980px) {
  .laravel-topbar__inner {
    grid-template-columns: auto 1fr;
    gap: 8px;
    min-height: 64px;
  }

  .laravel-top-search {
    grid-column: 1 / -1;
    order: 3;
    margin-bottom: 8px;
  }

  .laravel-topbar__right {
    gap: 6px;
  }

  .laravel-topbar__right .laravel-pill-btn--ghost {
    display: none;
  }

  .devider-60.laravel-shell-spacer {
    height: 10px;
  }
}

@media (max-width: 760px) {
  .laravel-top-search {
    display: none;
  }

  .laravel-topbar__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 62px;
  }

  .laravel-brand img {
    height: 26px;
    max-width: 136px;
  }

  .laravel-topbar__right .laravel-pill-btn {
    display: none;
  }

  .laravel-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1150;
    display: block;
    padding: 10px 10px calc(env(safe-area-inset-bottom, 0px) + 10px);
    background: linear-gradient(180deg, rgba(247, 252, 255, 0.84), #f3f9ff);
    border-top: 1px solid rgba(20, 46, 77, 0.14);
  }

  .laravel-mobile-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .laravel-mobile-nav__item {
    min-height: 40px;
    border-radius: 12px;
    padding: 6px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #2a4a69;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.2;
  }

  .laravel-mobile-nav__item.is-current {
    background: rgba(77, 126, 168, 0.17);
    color: #16324b;
  }

  .laravel-mobile-nav__item--sell {
    background: linear-gradient(132deg, #4d7ea8, #16324b);
    color: #fff !important;
  }

  main#site-main {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

/* Auth pages - Laravel card look */
.auth-shell {
  max-width: 560px;
  margin: 14px auto 22px;
}

.auth-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.08);
  padding: 16px;
}

.auth-card__title {
  margin: 2px 0 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.auth-card__subtitle {
  margin: 0 0 14px;
  color: rgba(100, 116, 139, 0.95);
  font-size: 13px;
  line-height: 1.5;
}

.auth-card .input-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 6px;
}

.auth-card input[type="text"],
.auth-card input[type="password"] {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
}

.auth-card .btn-next-upload {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand, #4d7ea8), var(--brand-2, #16324b));
}

/* Mobile performance budget */
@media (max-width: 820px) {
  .home-feed-card-shell,
  .section-show-ad-style-2 {
    content-visibility: auto;
    contain: layout paint style;
    contain-intrinsic-size: 360px;
  }

  .show-ad-style-2.home-feed-card .main-div {
    box-shadow: 0 10px 20px rgba(15, 40, 76, 0.10);
    transition: border-color .12s ease, background-color .12s ease, box-shadow .12s ease;
  }

  .show-ad-style-2.home-feed-card:hover .main-div {
    transform: none;
    box-shadow: 0 12px 24px rgba(15, 40, 76, 0.12);
  }

  .show-ad-style-2.home-feed-card .home-feed-card-count-badge,
  .show-ad-style-2.home-feed-card .fav-toggle-icon,
  .footer-mob-bottom,
  #menu,
  .app-search-topbar,
  .laravel-topbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .show-ad-style-2.home-feed-card .home-feed-card-count-badge {
    box-shadow: 0 6px 12px rgba(9, 26, 49, 0.14);
  }

  .show-ad-style-2.home-feed-card .fav-toggle-icon {
    box-shadow: 0 8px 14px rgba(10, 34, 64, 0.16);
  }

  .show-ad-style-2.home-feed-card .home-feed-card-open-indicator {
    box-shadow: 0 6px 12px rgba(16, 39, 71, 0.07);
  }

  .footer-mob-bottom {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -6px 16px rgba(17, 36, 66, 0.10);
  }

  #menu {
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 16px rgba(18, 39, 71, 0.07);
  }
}

@media (hover: none), (pointer: coarse) {
  .home-feed-card-shell,
  .categories-sub-item {
    animation: none !important;
  }

  .show-ad-style-2.home-feed-card .main-div,
  .show-ad-style-2.home-feed-card .ad-thumb-img,
  .show-ad-style-2.home-feed-card .home-feed-card-open-indicator,
  .show-ad-style-2.home-feed-card .fav-toggle-icon,
  .categories-sub-item {
    transition-property: background-color, border-color, color, opacity, box-shadow;
    transition-duration: .12s;
  }

  .show-ad-style-2.home-feed-card:hover .main-div,
  .show-ad-style-2.home-feed-card:hover .ad-thumb-img,
  .show-ad-style-2.home-feed-card:hover .home-feed-card-open-indicator,
  .show-ad-style-2.home-feed-card .fav-toggle-icon:hover,
  .categories-sub-item:hover {
    transform: none;
  }
}
