:root {
    --accent: #e93196; /* brand pink */
    --accent-dark: #9414b9; /* brand purple */
    --text: #4a403d;
    --muted: #6b5e59;
    --zebra: #f3f3f3;
    --border: #d7d4d2;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background: #fff;
    color: var(--text);
}

body {
    margin: 0;
    line-height: 1.6;
}

/* Police locale page (pas le header global) */
main,
.top-cta,
.laser-title,
.laser-subtitle,
.laser-table {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.top-cta {
    display: flex;
    justify-content: center;
    padding: 24px 16px 6px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 20;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 14px 24px;
    border: none;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    background: linear-gradient(45deg, #e93196, #9414b9, #ff7403);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    box-shadow: 0 10px 28px rgba(233, 49, 150, 0.26);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-outline:hover{ transform: translateY(-2px) scale(1.03); }
.btn-outline:active{ transform: translateY(0) scale(0.98); }
.btn-outline:focus-visible{ outline: none; box-shadow: 0 0 0 4px rgba(233,49,150,.25), 0 12px 28px rgba(233,49,150,.26); }

main.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 10px 20px 60px;
    text-align: center;
}

.laser-title {
    font-family: "Merriweather", Georgia, serif;
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 42px);
    margin: 26px 0 10px;
}

.laser-subtitle {
    max-width: 980px;
    margin: 0 auto 34px;
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--muted);
    line-height: 1.9;
}

.laser-pricing {
    display: flex;
    justify-content: center;
}

.laser-table-wrapper {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.laser-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 18px;
}

col.laser-col-zone {
    width: 60%;
}

col.laser-col-price {
    width: 40%;
}

.laser-table thead th {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding: 22px 26px;
    border-right: 1px solid rgba(255, 255, 255, .35);
}

.laser-table thead th:last-child {
    border-right: none;
}

.laser-table thead tr {
    border-bottom: 1px solid #9e7b70;
}

.laser-table tbody td {
    padding: 22px 26px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.laser-table tbody tr:nth-child(odd) {
    background: #fff;
}

.laser-table tbody tr:nth-child(even) {
    background: var(--zebra);
}

.laser-table .right {
    text-align: right;
}

@media (max-width:700px) {
    .laser-table {
        font-size: 16px;
    }

    .laser-table thead th,
    .laser-table tbody td {
        padding: 18px 16px;
    }

    col.laser-col-zone {
        width: 58%;
    }

    col.laser-col-price {
        width: 42%;
    }
}

/* Expand/collapse for laser page */
.laser-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.laser-expand {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: var(--accent);
    cursor: pointer;
    position: relative;
    transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}

.laser-expand:hover {
    transform: translateY(-1px);
    border-color: var(--accent-dark);
    color: var(--accent-dark);
}

.laser-expand:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 49, 150, .25);
}

.laser-expand::before,
.laser-expand::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    transform: translate(-50%, -50%);
}

.laser-expand::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.laser-expand[aria-expanded="true"]::after {
    opacity: 0;
}

.laser-detail {
    display: none;
}

.laser-detail td {
    padding: 0;
    border-bottom: none;
    background: #fbf9f8;
}

.laser-detail .laser-detail-content {
    padding: 18px 26px 22px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: #4a403d;
    line-height: 1.75;
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 1, 1);
    white-space: nowrap;
    border: 0;
}

.laser-detail.is-open {
    display: table-row;
}

/* Ensure expand "+" buttons match this laser style even if markup uses shared 'wax-expand' */
.wax-table .wax-expand {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: var(--accent);
    cursor: pointer;
    position: relative;
    transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}
.wax-table .wax-expand:hover { transform: translateY(-1px); border-color: var(--accent-dark); color: var(--accent-dark); }
.wax-table .wax-expand:focus { outline: none; box-shadow: 0 0 0 3px rgba(233, 49, 150, .25); }
.wax-table .wax-expand::before,
.wax-table .wax-expand::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    transform: translate(-50%, -50%);
}
.wax-table .wax-expand::after { transform: translate(-50%, -50%) rotate(90deg); }
.wax-table .wax-expand[aria-expanded="true"]::after { opacity: 0; }
/* Prevent gradient/solid overrides when expanded from advanced sheet */
.wax-table .wax-expand[aria-expanded="true"] { background: #fff; border-color: var(--accent); box-shadow: none; color: var(--accent); }