/* =============================================
   SEARCH PAGE — search.css
   Depends on: style.css (shared LUXE tokens)
   ============================================= */


/* =============================================
   SEARCH HEADER
   ============================================= */
   .search-header {
    padding: 64px 0 0;
    background: #F9F9F8;
}

.search-header.mt-nav{margin-top: 91px;}

/* Page title — matches cart-title / col-hero-title style */
.search-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #1A1C1C;
    line-height: 1.1;
    margin-bottom: 64px;
}

/* Meta bar: tag pill left, count right */
.search-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid #d4d4cc;
}

/* Active query tag pill */
.search-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #1A1C1C;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 6px 12px 6px 14px;
    line-height: 1;border-radius: 15px;
}

.search-tag-remove {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.search-tag-remove:hover {
    opacity: 1;
}

/* Results count */
.search-results-count {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    white-space: nowrap;
}


/* =============================================
   SEARCH RESULTS GRID
   Reuses .shop-card, .shop-img-wrap, .shop-img-*,
   .shop-box-title, .shop-price from style.css
   ============================================= */
.search-results {
    background: #F9F9F8;
    padding: 40px 0 100px;
}


/* =============================================
   NO RESULTS STATE
   ============================================= */
.search-no-results {
    padding: 80px 0;
    text-align: center;
}

.search-no-results-msg {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #666666;
    margin-bottom: 24px;
}

.search-browse-link {
    display: inline-block;
    text-decoration: none;
    background-color: #1A1C1C;
    color: #ffffff;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
}

.search-browse-link:hover {
    background-color: #333333;
    color: #ffffff;
}


/* =============================================
   RESPONSIVE — TABLET (max 768px)
   ============================================= */
@media (max-width: 768px) {
    .search-title {
        font-size: 40px;
    }
}


/* =============================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================= */
@media (max-width: 640px) {
    .search-header {
        padding: 40px 0 0;
    }

    .search-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .search-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 20px;
    }

    .search-results {
        padding: 28px 0 60px;
    }
}