/* Pawa Agri-tech - Boutique : styles specifiques (annuaire + vitrine).
   Les classes generiques (.pat-dashboard-title, .pat-auth-notice...)
   viennent du CSS de pawa-agri-tech-frontend, charge separement. */

.pat-boutique-directory,
.pat-boutique-shop {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 20px;
}

.pat-boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pat-boutique-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    text-decoration: none;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.pat-boutique-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.pat-boutique-card-title {
    font-weight: 700;
    color: #1a44d4;
    font-size: 16px;
}

.pat-boutique-card-meta {
    font-size: 13px;
    color: #6b7280;
}

.pat-boutique-card-link {
    margin-top: 10px;
    font-size: 13px;
    color: #1a44d4;
    font-weight: 600;
}

.pat-boutique-product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pat-boutique-product-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #f3f4f6;
}

.pat-boutique-product-photo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.pat-boutique-product-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pat-boutique-product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #9ca3af;
}

.pat-boutique-product-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.pat-boutique-product-description {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.pat-boutique-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #15803d;
    margin: 4px 0 0;
}

.pat-boutique-product-stock {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.pat-boutique-product-delivery {
    font-size: 12px;
    color: #6b7280;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
    margin-top: 6px;
}
