/* Pawa Digital Store - Frontend Shop (thème clair) */

.pds-shop {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* --- Sidebar filtres --- */
.pds-shop__sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
}
.pds-shop__filter-group { margin-bottom: 24px; }
.pds-shop__filter-group:last-child { margin-bottom: 0; }
.pds-shop__filter-group h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin: 0 0 12px;
}
.pds-shop__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1f2430;
    margin-bottom: 8px;
    cursor: pointer;
}
.pds-shop__checkbox em {
    margin-left: auto;
    font-style: normal;
    color: #9ca3af;
    font-size: 12px;
}
.pds-shop__price-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pds-shop__price-inputs input { width: 0; flex: 1; padding: 6px 8px; border: 1px solid #d1d5db; border-radius: 6px; }
.pds-shop__filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
}
.pds-shop__btn-secondary {
    width: 100%;
    padding: 8px;
    background: #fff;
    border: 1px solid #1a44d4;
    color: #1a44d4;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.pds-shop__btn-secondary:hover { background: #eef1fd; }

/* --- Grille produits --- */
.pds-shop__main { flex: 1; }
.pds-shop__empty { color: #6b7280; padding: 40px 0; text-align: center; }
.pds-shop__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .pds-shop { flex-direction: column; }
    .pds-shop__sidebar { width: 100%; }
    .pds-shop__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .pds-shop__grid { grid-template-columns: 1fr; }
}

.pds-shop-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pds-shop-card__image-link { position: relative; display: block; }
.pds-shop-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 1;
}
.pds-shop-card__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #f3f4f6; }
.pds-shop-card__image--placeholder { background: #f3f4f6; }
.pds-shop-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pds-shop-card__title { margin: 0; font-size: 16px; }
.pds-shop-card__title a { color: #1f2430; text-decoration: none; }
.pds-shop-card__title a:hover { color: #1a44d4; }
.pds-shop-card__description { margin: 0; font-size: 13px; color: #6b7280; flex: 1; }
.pds-shop-card__price { margin: 0; font-weight: 700; color: #1a44d4; }
.pds-shop-card__btn {
    display: inline-block;
    text-align: center;
    padding: 8px 16px;
    border: 1px solid #1a44d4;
    color: #1a44d4;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.pds-shop-card__btn:hover { background: #1a44d4; color: #fff; }
.pds-shop-card__btn--outline { background: #fff; }
.pds-shop-card__btn--large { width: 100%; padding: 12px; background: #f59e0b; border-color: #f59e0b; color: #1f2430; font-size: 16px; cursor: pointer; }
.pds-shop-card__btn--large:hover { background: #d97f06; color: #fff; }

.pds-shop__pagination { margin-top: 28px; text-align: center; }
.pds-shop__pagination .page-numbers {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #1f2430;
    text-decoration: none;
}
.pds-shop__pagination .page-numbers.current { background: #1a44d4; border-color: #1a44d4; color: #fff; }

/* --- Fiche produit --- */
.pds-shop-product__back { display: inline-block; margin-bottom: 16px; color: #6b7280; text-decoration: none; font-size: 14px; }
.pds-shop-product__layout { display: flex; gap: 32px; align-items: flex-start; }
.pds-shop-product__media { flex: 1; max-width: 480px; position: relative; }
.pds-shop-product__image { width: 100%; border-radius: 12px; border: 1px solid #e5e7eb; }
.pds-shop-product__gallery { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pds-shop-product__gallery img { width: 90px; height: 90px; object-fit: cover; border-radius: 8px; border: 1px solid #e5e7eb; }
.pds-shop-product__info { flex: 1.2; }
.pds-shop-product__info h1 { margin: 0 0 8px; font-size: 28px; }
.pds-shop-product__lead { color: #6b7280; font-size: 16px; }
.pds-shop-product__meta { font-size: 14px; color: #374151; }
.pds-shop-product__description { margin: 20px 0; line-height: 1.7; color: #1f2430; }
.pds-shop-product__changelog { margin: 16px 0; background: #f8f9fb; border-radius: 8px; padding: 12px; font-size: 14px; }

.pds-shop-offers { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pds-shop-offer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
}
.pds-shop-offer:has(input:checked) { border-color: #1a44d4; background: #eef1fd; }
.pds-shop-offer__label { font-weight: 600; }
.pds-shop-offer__duration { color: #6b7280; font-size: 13px; }
.pds-shop-offer__price { margin-left: auto; font-weight: 700; color: #1a44d4; }

.pds-shop-form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.pds-shop-form-row input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

.pds-shop-notice { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.pds-shop-notice--success { background: #d4edda; color: #155724; }
.pds-shop-notice--error { background: #f8d7da; color: #721c24; }

@media (max-width: 800px) {
    .pds-shop-product__layout { flex-direction: column; }
    .pds-shop-product__media { max-width: 100%; }
}
