/* pricing elements */
.custom-pricing {
    font-family: "Segoe UI", sans-serif;
    text-align: center;
}

.custom-row {
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    font-size: 1.2rem;
}

.custom-heading {
    margin-bottom: 1.5rem;
    color: #1e1e2f;
    font-family: athena;
}

.custom-subheading {
    font-size: 1.15rem;
    color: #555;
}

.custom-scroll {
    position: relative;
}

.custom-grid {
    padding: 20px 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.custom-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.07);
    border: var(--gray-2) solid 1px;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(6px);
    position: relative;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.highlighted {
    border: 2px solid #4f46e5;
    background: linear-gradient(to right, #4f46e5, #6d28d9);
    color: #fff;
}

.highlighted .btn-filled {
    background: #fff;
    color: #4f46e5;
}

.custom-icon {
    margin-bottom: 1.2rem;
    color: #4f46e5;
}

.highlighted .custom-icon {
    color: #fff;
}

.custom-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    font-family: garamond;
    font-size: 2rem;
    margin: 1rem 0;
    color: #333;
}

.highlighted .price {
    color: #fff;
}

.price span {
    font-family: sans-serif;
    font-size: 1rem;
    color: #888;
}

.highlighted .price span {
    color: #e0e0e0;
}

.supplements {
    padding-top: 20px !important;
}

.supplements,
.features {
    list-style: none;
    margin: 0;
    padding: 1rem 0 1rem;
}

.supplements li,
.features li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.list-checked,
.list-unchecked {
    list-style: none;
}

.list-checked {
    li:before {
        content: '✓';
        margin-right: 10px;
        color: green;
    }
}

.list-unchecked {
    li:before {
        content: 'X';
        margin-right: 10px;
        color: red;
    }
}

.highlighted .supplements li,
.highlighted .features li {
    color: #eaeaea;
}

.price .ttc {
    font-size: 0.3em;
    vertical-align: super;
    margin-left: 4px;
}

/* Flèches */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.35);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2;
    border-radius: 50px;
}

.scroll-arrow.left {
    left: 0;
}

.scroll-arrow.right {
    right: 0;
}

/* Visible */
.scroll-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile : plus discret */
@media (max-width: 768px) {
    .scroll-arrow {
        background: rgba(0, 0, 0, 0.25);
    }
}