/* Container design conform screenshot */
.search-results-overlay {
    position: absolute;
    background: #FAFAFA;
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    max-height: 650px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    transform: translateY(50px);
}

/* Secties onder elkaar */
.search-results-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Titels van secties (products, downloads, pages) */
.search-section h2, .search-suggestions h4 {
    font-size: 28px;
    font-weight: 300; /* Dunne elegante letters */
    color: #4A4A4A;
    margin: 0 0 15px 0;
    text-transform: lowercase;
}

.search-section ul, .search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-section li {
    margin-bottom: 12px;
}

/* Items layout */
.search-item-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 4px 0;
}

/* Productafbeeldingen */
.search-product-thumb {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 8px; /* Subtiel afgerond */
    margin-right: 15px;
}

/* Teksten in items */
.search-item-meta {
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 15px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.3;
}

.item-sub {
    font-size: 13px;
    color: #9B9B9B;
    margin-top: 2px;
}

.item-sub-type {
    font-size: 11px;
    color: #A0A0A0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Iconen: Download (Pure CSS cirkel met pijltje) */
.search-icon-download {
    width: 22px;
    height: 22px;
    border: 1.5px solid #4A4A4A;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}
.search-icon-download::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 2px;
    height: 8px;
    background: #4A4A4A;
}
.search-icon-download::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #4A4A4A;
    border-bottom: 2px solid #4A4A4A;
    transform: rotate(45deg);
}

/* Iconen: Pijltje rechts bij pages & footer */
.link-has-arrow {
    justify-content: space-between;
    width: 100%;
}
.search-link-left {
    display: flex;
    align-items: center;
}
.search-icon-arrow {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #4A4A4A;
    border-top: 2px solid #4A4A4A;
    transform: rotate(45deg);
    margin-left: 10px;
    flex-shrink: 0;
}

/* Footer & View All knop */
.search-footer-action {
    border-top: 1px solid #EAEAEA;
    margin-top: 20px;
    padding-top: 20px;
}

.view-all-results-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    text-transform: lowercase;
}

.view-all-results-btn .search-icon-arrow {
    margin-left: 8px;
    width: 6px;
    height: 6px;
}

.no-results {
    color: #9B9B9B;
    font-style: italic;
    padding: 10px 0;
}