/* Styles for detailPrixCat page */
.detailPrixCat-page {
    max-width: 1100px;
    padding: 20px;
    margin: 120px auto 40px auto;
}

.detailPrixCat-header {
    margin-bottom: 18px;
}

.detailPrixCat-header .detailPrixCat-desc {
    color: #6c757d;
    margin: 0 0 12px;
}

.epilation-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.epi-left {
    flex: 0 0 520px;
}

.epi-left img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
}

.epi-noimg {
    width: 100%;
    height: 360px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0a6;
    border-radius: 10px;
}

.epi-right {
    flex: 1 1 auto;
}

.epi-title {
    margin: 0 0 12px;
}

.epi-table-wrap {
    background: transparent;
}

.epi-variants {
    width: 100%;
    border-collapse: collapse;
}

.epi-variants tbody td {
    padding: 12px 20px;
}

/* Alternating row colors as requested */
.epi-variants tbody tr:nth-child(odd) {
    background-color: #eef3e6;
    color: #333;
}

.epi-variants tbody tr:nth-child(odd) td {
    color: #333;
}

.epi-variants tbody tr:nth-child(even) {
    background-color: #7EC32F;
    color: #fff;
}

.epi-variants tbody tr:nth-child(even) td {
    color: #fff;
}

.epi-variants td.right {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 10px 0 10px;
}


@media (max-width: 900px) {
    .epilation-item {
        flex-direction: column;
    }

    .epi-left {
        flex: 1 1 auto;
    }

    .epi-left img,
    .epi-noimg {
        height: 260px;
    }
}

@media (max-width:768px) {
    .epi-left {
        width: 100%;
    }

    .epi-right {
        width: 100%;
    }

    .epi-left img,
    .epi-noimg {
        height: 200px;
    }
}

@media (max-width:480px) {

    .detailPrixCat-page {
        padding: 20px 10px;
    }

    .detailPrixCat-header {
        margin-bottom: 18px;
        padding: 0 15px;
    }

    .epilation-item {
        gap: 20px;
        margin-bottom: 40px;
        padding: 20px;
    }
}


@media (max-width: 360px) {
    .epilation-item {
        gap: 10px;
        margin-bottom: 40px;
        padding: 10px;
    }
}