.rackets-section {
    max-width: 1100px;
    margin: 45px auto;
    padding: 0 20px;
}

.rackets-page {
    min-height: 360px;
}

.rackets-back-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 600;
}

.news-detail-back:hover {
    text-decoration: underline;
}

.rackets-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.rackets-heading h2 {
    color: #171717;
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.rackets-kicker {
    color: #a63d2f;
    font-family: 'Albert Sans', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rackets-intro {
    color: #49433f;
    line-height: 1.6;
    max-width: 700px;
}

.rackets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rackets-page .rackets-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.racket-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(29, 24, 21, .08);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(48, 38, 31, .08);
}

.racket-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 150px;
    color: #171717;
    opacity: 1;
    visibility: visible;
}

.racket-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f0eb;
}

.racket-image:empty::before {
    content: "Visuel a venir";
    color: #7a716c;
    font-family: 'Albert Sans', serif;
    font-size: 13px;
    font-weight: 700;
}

.racket-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.racket-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.racket-brand {
    display: block;
    color: #a63d2f;
    font-family: 'Albert Sans', serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.racket-stock {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 5px 8px;
    margin: 0 0 16px;
    border-radius: 999px;
    font-family: 'Albert Sans', serif;
    font-size: 11px;
    font-weight: 700;
}

.racket-stock.is-available {
    color: #206b45;
    background: #e6f4ec;
}

.racket-stock.is-unavailable {
    color: #7a4039;
    background: #f7e7e4;
}

.racket-card h3 {
    display: block;
    color: #171717;
    font-size: 21px;
    font-weight: 650;
    margin: 0 0 12px;
}

.racket-description {
    color: #625b56;
    line-height: 1.55;
    margin-bottom: 24px;
}

.racket-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    color: #a63d2f;
    font-family: 'Sofia Sans', serif;
    visibility: visible;
}

.racket-price strong {
    display: inline-block;
    color: #a63d2f;
    font-size: 24px;
}

.racket-old-price {
    color: #847d78;
    font-size: 15px;
    text-decoration: line-through;
}

.racket-card-cta {
    align-self: flex-start;
    margin-top: 18px;
}

.racket-detail-page {
    max-width: 1100px;
}

.racket-back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: #a63d2f;
    font-family: 'Albert Sans', serif;
    font-weight: 700;
    text-decoration: none;
}

.racket-detail {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 42px;
    align-items: start;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(29, 24, 21, .08);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(48, 38, 31, .08);
}

.racket-detail-image {
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f0eb;
    border-radius: 8px;
    overflow: hidden;
}

.racket-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
}

.racket-detail-content h2 {
    color: #171717;
    font-size: 42px;
    line-height: 1.05;
    margin: 0 0 16px;
}

.racket-detail-price {
    margin: 26px 0;
}

.racket-detail-price strong {
    font-size: 34px;
}

.racket-detail-description {
    color: #49433f;
    font-size: 18px;
    line-height: 1.65;
}

.rackets-empty {
    padding: 34px;
    background: rgba(255,255,255,.55);
    border-radius: 18px;
    color: #5d5651;
    font-family: 'Albert Sans', serif;
    text-align: center;
}

@media (max-width: 850px) {
    .rackets-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .rackets-page .rackets-grid,
    .rackets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .racket-detail {
        grid-template-columns: 1fr;
    }

    .racket-detail-image {
        height: 420px;
    }
}

@media (max-width: 560px) {
    .rackets-section {
        margin: 30px auto;
    }

    .rackets-page .rackets-grid,
    .rackets-grid {
        grid-template-columns: 1fr;
    }

    .rackets-heading h2 {
        font-size: 29px;
    }
}
