/* =========================================================
   NOS PC ASSEMBLÉS — page 100% sur mesure
   Volontairement autonome (pas de dépendance aux styles
   profonds du catalogue WooCommerce).
   ========================================================= */

.ip13-pc-filters {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:30px 0 26px;
}

.ip13-pc-filter {
    padding:10px 20px;
    border:1px solid rgba(102, 137, 255, .35);
    border-radius:999px;
    background:transparent;
    color:inherit;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    transition:border-color .2s ease, background-color .2s ease, color .2s ease;
}

.ip13-pc-filter:hover {
    border-color:rgba(102, 137, 255, .65);
}

.ip13-pc-filter.is-active {
    background:#6689ff;
    border-color:#6689ff;
    color:#fff;
}

.ip13-pc-section {
    margin:40px 0;
}

.ip13-pc-section .section-heading {
    margin-bottom:20px;
}

.ip13-pc-section .section-heading h2 {
    margin:0 0 8px;
    font-size:1.6rem;
}

.ip13-pc-section .section-heading p {
    margin:0;
    opacity:.75;
    font-size:.95rem;
}

.ip13-pc-section__empty {
    padding:24px;
    border:1px solid rgba(0, 0, 0, .10);
    border-radius:14px;
    opacity:.7;
}

.ip13-pc-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap:18px;
}

.ip13-pc-card {
    display:flex;
    flex-direction:column;
    text-decoration:none;
    color:inherit;
    border:1px solid rgba(102, 137, 255, .22);
    border-radius:16px;
    background:rgba(255, 255, 255, .025);
    overflow:hidden;
    transition:border-color .2s ease, background-color .2s ease;
}

.ip13-pc-card:hover {
    border-color:rgba(102, 137, 255, .55);
    background:rgba(102, 137, 255, .03);
}

.ip13-pc-card[hidden] {
    display:none !important;
}

.ip13-pc-card__image {
    aspect-ratio:1 / 1;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255, 255, 255, .20);
    overflow:hidden;
}

.ip13-pc-card__image img {
    width:100%;
    height:100%;
    object-fit:contain;
    padding:14px;
    box-sizing:border-box;
}

.ip13-pc-card__body {
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1 1 auto;
}

.ip13-pc-card__title {
    margin:0;
    font-size:15px;
    line-height:1.35;
}

.ip13-pc-card__specs {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:4px;
    flex:1 1 auto;
}

.ip13-pc-card__specs li {
    display:flex;
    justify-content:space-between;
    gap:10px;
    font-size:12px;
    line-height:1.4;
}

.ip13-pc-card__specs span {
    opacity:.65;
    white-space:nowrap;
    flex-shrink:0;
}

.ip13-pc-card__specs strong {
    flex:1 1 auto;
    min-width:0;
    text-align:right;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.ip13-pc-card__price {
    margin-top:auto;
    padding-top:8px;
    border-top:1px solid rgba(0, 0, 0, .08);
    font-size:18px;
    font-weight:800;
    color:#2f5fff;
}

@media (max-width: 767px) {

    .ip13-pc-grid {
        grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
        gap:12px;
    }

    .ip13-pc-card__title {
        font-size:13px;
    }

    .ip13-pc-card__price {
        font-size:15px;
    }
}
