/* JPG Woo Product Search */

.jpg-product-search-wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 24px;
    font-family: inherit;
}

.jpg-product-search-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.jpg-product-search-input {
    flex: 1;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.3;
}

.jpg-product-search-input:focus {
    outline: none;
    border-color: #777;
}

.jpg-product-search-button {
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    background: #111;
    color: #fff;
}

.jpg-product-search-button:hover,
.jpg-product-search-button:focus {
    background: #333;
}

.jpg-product-search-status {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.jpg-product-search-results {
    margin-top: 14px;
}

.jpg-product-search-list {
    display: grid;
    gap: 10px;
}

.jpg-product-search-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    background: #fff;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.jpg-product-search-item:hover,
.jpg-product-search-item:focus {
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.jpg-product-search-thumb img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.jpg-product-search-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.jpg-product-search-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.35;
    margin-bottom: 6px;
}

.jpg-product-search-price {
    font-size: 14px;
    font-weight: 700;
}

.jpg-product-search-empty {
    padding: 14px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fafafa;
    font-size: 15px;
}

@media (max-width: 600px) {
    .jpg-product-search-form {
        display: grid;
    }

    .jpg-product-search-button {
        width: 100%;
    }

    .jpg-product-search-item {
        grid-template-columns: 64px 1fr;
    }

    .jpg-product-search-thumb img {
        width: 64px;
        height: 64px;
    }
}
