body {
    background: #f7f7f7;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.shop-main-container {
    display: flex;
    max-width: 1350px;
    margin: 55px auto 0 auto;
    padding: 32px 0 90px 0;
    gap: 42px;
}
aside.side-menu {
    width: 240px;
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 4px 20px #0001;
    padding: 24px 22px 28px 22px;
    margin-top: 0;
    min-height: 520px;
}
.side-title {
    font-size: 1.09em;
    font-weight: 800;
    color: #474747;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.accordion-list { }
.accordion-item + .accordion-item {
    margin-top: 8px;
}
.accordion-btn {
    font-size: 1.05em;
    font-weight: 700;
    background: #ededed;
    border: none;
    color: #1a1a1a;
    padding: 12px 20px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2px;
    cursor: pointer;
    text-align: left;
    transition: background 0.14s;
    outline: none;
    box-shadow: 0 2px 6px #00000007;
}
.accordion-btn.active, .accordion-btn:hover {
    background: #dedede;
}
.accordion-content {
    display: none;
    padding-left: 8px;
    padding-bottom: 4px;
    margin-bottom: 2px;
}
.side-sub {
    font-size: 1em;
    font-weight: 600;
    margin: 7px 0 0 0;
}
.side-sub > span {
    color: #0092c7;
    margin-right: 9px;
    font-weight: 700;
}
.side-years {
    margin-left: 8px;
    margin-bottom: 5px;
}
.side-years a {
    color: #565656;
    text-decoration: none;
    font-size: 0.96em;
    margin-right: 7px;
    padding: 2px 6px;
    border-radius: 7px;
    transition: background 0.13s, color 0.13s;
}
.side-years a:hover {
    background: #f2f2f2;
    color: #0092c7;
}
/* Produits */
.products-list {
    flex: 1 1 700px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.product-card {
    display: flex;
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 4px 24px #0002;
    overflow: hidden;
    align-items: center;
    gap: 26px;
    padding: 17px 24px;
    transition: box-shadow 0.17s, transform 0.15s;
    border: 1.5px solid #ececec;
}
.product-card:hover {
    box-shadow: 0 8px 38px #0092c726, 0 2px 10px #0001;
    transform: scale(1.019) translateY(-4px);
    border-color: #0092c7;
}
.product-card img {
    width: 180px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    border-radius: 12px;
    background: #f3f3f3;
    margin-right: 12px;
    box-shadow: 0 3px 13px #0092c714;
    transition: transform 0.13s;
    cursor: pointer;
}

.product-card img:hover {
    transform: scale(1.1) rotate(-1.2deg);
}
.details {
    flex: 1 1 400px;
}
.sub {
    color: #0092c7;
    font-weight: 600;
    font-size: 0.99em;
    margin-bottom: 5px;
    letter-spacing: 0.4px;
}
h3 {
    margin: 0 0 6px 0;
    font-size: 1.42em;
    font-weight: 800;
    color: #21212a;
    line-height: 1.1;
}
.caption {
    color: #444;
    font-size: 1.04em;
    margin-bottom: 11px;
}
.price {
    color: #0092c7;
    background: #e4f8fd;
    font-weight: 800;
    font-size: 1.22em;
    display: inline-block;
    border-radius: 9px;
    padding: 4px 20px 4px 14px;
    margin-bottom: 4px;
}
.view-btn {
    display: inline-block;
    background: #191919;
    color: #fff;
    font-weight: 700;
    font-size: 1.08em;
    padding: 9px 30px;
    border-radius: 10px;
    text-decoration: none;
    margin-left: 18px;
    margin-bottom: 6px;
    transition: background 0.13s, color 0.13s;
    box-shadow: 0 2px 7px #0002;
}
.view-btn:hover {
    background: #0092c7;
    color: #fff;
}
@media (max-width: 1000px) {
    .shop-main-container {
        flex-direction: column;
        gap: 22px;
        padding: 18px 0 80px 0;
    }
    aside.side-menu {
        width: 99vw;
        margin: 0 auto 30px auto;
        min-height: unset;
        padding: 17px 11vw;
    }
}
