.philately-search-box {
    position: relative;
}

.hero .philately-search-box {
    max-width:820px;
}
.phl-search-block {
    margin-top: 30px;
}

.phl-search-block .phl-search-title {
    color: #fff;
    font-size: 22px;
}
.philately-search-box input#philately-search-input {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: none !important;
    margin-top: 10px;
}
input#philately-search-input:focus {
    background-color: var(--bg) !important;
}

#philately-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    /* border: 1px solid #e5e5e5; */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    z-index: 20;
    overflow: hidden;
}
.ps-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 6px;
    color: #2d2d2d;
    text-align: left;
    height: 360px;
    overflow-y: auto;
}
.ps-catalogs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}
.ps-cat {
    display: inline-block;
    align-items:center;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.4;
    border-radius:4px;
    background: #f3f4f6;
}
.ps-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    align-items: center;
    transition: background .2s;
    border-radius: 6px;
}

.ps-item:hover {
    background: #f8f8f8;
}
.ps-item:hover .ps-cat {
     color: #2d2d2d;
}
.ps-thumb {
    flex: 0 0 60px;
}

.ps-thumb img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.ps-content {
    flex: 1;
}

.ps-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.ps-price {
    font-size: 13px;
    margin-top: 4px;
}

.ps-meta{
    margin-top:4px;
    font-size:12px;
    color:#666;
    line-height:1.4;
}

@media (max-width:767px) {

}

@media (max-width:600px) {
  
}

@media (max-width:480px) {
    .ps-results {
        grid-template-columns: repeat(1, 1fr);
        height: 360px;
        overflow-y: auto;
    }
}