/* PriedaiSearch dropdown */

.priedaisearch-anchor{
  position:relative !important;
}

.priedaisearch-dropdown{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 6px);
  z-index:99999;
  display:none;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:10px;
  box-shadow:0 18px 42px rgba(15,23,42,.16);
  overflow:hidden;
  text-align:left;
}

.priedaisearch-dropdown.is-open{
  display:block;
}

.priedaisearch-dropdown .psq-scroll{
  max-height:72vh;
  overflow-y:auto;
  padding:8px;
  scrollbar-width:thin;
}

.psq-section{
  margin:0 0 8px;
}

.psq-section-title{
  padding:7px 4px 8px;
  font-size:11px;
  line-height:1.2;
  font-weight:700;
  color:#6b7280;
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* Categories */

.psq-cat-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
}

.psq-cat{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:8px 10px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  background:#fafafa;
  color:#1f2937 !important;
  text-decoration:none !important;
  transition:background .12s ease, border-color .12s ease, transform .12s ease;
}

.psq-cat:hover{
  background:#f3f7eb;
  border-color:#d8e5c0;
  transform:translateY(-1px);
}

.psq-cat-icon{
  width:22px;
  height:22px;
  flex:0 0 22px;
  border-radius:999px;
  background:#f3f7eb;
  border:1px solid #d8e5c0;
  position:relative;
}

.psq-cat-icon:after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:999px;
  background:#96b32d;
}

.psq-cat-name{
  min-width:0;
  font-size:12px;
  line-height:1.22;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Products */

.psq-product-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.psq-product-card{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  grid-template-rows:auto auto;
  column-gap:10px;
  min-height:96px;
  padding:9px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  color:#1f2937 !important;
  text-decoration:none !important;
  transition:background .12s ease, border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}

.psq-product-card:hover{
  background:#f3f7eb;
  border-color:#d8e5c0;
  box-shadow:0 6px 16px rgba(15,23,42,.08);
  transform:translateY(-1px);
}

.psq-product-imagebox{
  grid-row:1 / span 2;
  width:72px;
  height:72px;
  border:1px solid #eef2f7;
  border-radius:9px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.psq-product-image{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:5px;
}

.psq-product-image-empty{
  background:#f3f7eb;
}

.psq-product-body{
  min-width:0;
  display:block;
}

.psq-product-name{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:12.5px;
  line-height:1.28;
  font-weight:600;
  color:#1f2937;
}

.psq-product-meta{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1.2;
  color:#6b7280;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.psq-product-ref{
  display:none;
  margin-top:3px;
  font-size:10.5px;
  color:#6b7280;
}

.psq-product-price{
  align-self:end;
  justify-self:start;
  margin-top:7px;
  font-size:13px;
  line-height:1;
  font-weight:800;
  color:#1d1d1d;
}

/* States */

.psq-loading,
.psq-empty{
  padding:18px 10px;
  text-align:center;
  color:#6b7280;
  font-size:13px;
}

.psq-footer{
  position:sticky;
  bottom:-8px;
  margin:8px -8px -8px;
  padding:8px;
  background:#fff;
  border-top:1px solid #e5e7eb;
}

.psq-view-all{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  border:1px solid #d1d5db;
  border-radius:7px;
  background:#fff;
  color:#263238 !important;
  text-decoration:none !important;
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
}

.psq-view-all:hover{
  border-color:#96b32d;
  background:#f3f7eb;
}

/* Mobile */

@media(max-width:576px){
  .priedaisearch-dropdown{
    position:fixed;
    left:10px;
    right:10px;
    top:72px;
    border-radius:10px;
  }

  .priedaisearch-dropdown .psq-scroll{
    max-height:68vh;
  }

  .psq-cat-list,
  .psq-product-grid{
    grid-template-columns:1fr;
  }

  .psq-product-card{
    grid-template-columns:62px minmax(0,1fr);
    min-height:82px;
  }

  .psq-product-imagebox{
    width:62px;
    height:62px;
  }

  .psq-product-name{
    font-size:12px;
  }
}
@media (max-width:767px){

  .priedaisearch-anchor .priedaisearch-dropdown{
      margin-top:40px !important;
  }

}