/* ═══════════════════════════════════════════════════
   DW Hero Search Shortcode — dw-hero-search.css
   ═══════════════════════════════════════════════════ */

.dw-hs-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 30px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.10);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.dw-hs-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #e8791d, #f59e0b);
    border-radius: 0 0 4px 4px;
}

.dw-hs-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 18px;
    letter-spacing: -.3px;
    line-height: 1.2;
}

/* Input row */
.dw-hs-form { margin: 0; }

.dw-hs-input-row {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #f9fafb;
    transition: border-color .2s, box-shadow .2s;
}
.dw-hs-input-row:focus-within {
    border-color: #e8791d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232,121,29,.12);
}

.dw-hs-search-icon {
    padding: 0 10px 0 14px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color .2s;
}
.dw-hs-input-row:focus-within .dw-hs-search-icon { color: #e8791d; }

.dw-hs-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #111827;
    padding: 13px 8px 13px 0;
    min-width: 0;
}
.dw-hs-input::placeholder { color: #9ca3af; font-size: 13.5px; }

.dw-hs-btn {
    background: #e8791d;
    color: #ffffff;
    border: none;
    padding: 0 22px;
    height: 48px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .2px;
    transition: background .15s;
}
.dw-hs-btn:hover { background: #c96918; }
.dw-hs-btn:active { opacity: .9; }

/* Popular pills */
.dw-hs-popular { margin-top: 18px; }

.dw-hs-popular-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #6b7280;
    margin-bottom: 10px;
}

.dw-hs-popular-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.dw-hs-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    background: #f3f4f6;
    color: #374151;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
    line-height: 1.4;
}
.dw-hs-pill:hover {
    background: #fff4ec;
    color: #e8791d;
    border-color: #e8791d;
    text-decoration: none;
}

@media (max-width: 540px) {
    .dw-hs-wrap { padding: 22px 18px 20px; border-radius: 12px; }
    .dw-hs-title { font-size: 16px; }
    .dw-hs-btn { padding: 0 16px; font-size: 13px; }
}
