/* Liens du menu sidebar */
#sidebar > a:not(:first-child) {
    position: relative;
    padding: 10px 0;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

/* Voile qui slide de gauche à droite */
#sidebar > a:not(:first-child)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* Liseré blanc à gauche */
#sidebar > a:not(:first-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Hover */
#sidebar > a:not(:first-child):hover::before {
    transform: translateX(0);
}

#sidebar > a:not(:first-child):hover::after {
    opacity: 1;
}

/* Active - toujours visible */
#sidebar > a:not(:first-child).active::before {
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.22);
}

#sidebar > a:not(:first-child).active::after {
    opacity: 1;
}

.svg-wrapper {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg-green-svg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3000' height='2000' preserveAspectRatio='none'%3E%3Cg fill='none' mask='url(&quot;%23a&quot;)'%3E%3Cpath fill='rgba(69, 196, 160, 1)' d='M0 0h3000v2000H0z'/%3E%3Cpath fill='%2333a182' d='M0 1117.121c236.8 24.93 493.129 90.139 699.256-29.057 207.985-120.271 270.817-381.178 380.139-595.121 114.686-224.44 288.63-436.035 275.384-687.731-13.624-258.879-137.776-525.529-347.272-678.222-200.317-146.003-485.208-26.124-721.567-100.812-244.099-77.134-418.561-378.604-671.537-339.401-249.411 38.651-357.639 335.258-524.373 524.73-168.213 191.152-398.281 344.299-458.156 591.786-61.839 255.605-14.262 542.397 130.672 761.833 137.936 208.84 398.25 283.078 626.821 385.037C-413.937 1037.904-214.194 1094.571 0 1117.121'/%3E%3Cpath fill='%236dd1b5' d='M3000 3217.311c262.795 35.771 572.352 161.244 779.528-4.342 210.846-168.519 73.331-526.795 189.716-770.33 119.728-250.529 528.939-377.523 490.244-652.482-38.654-274.665-456.346-293.131-651.112-490.618-176.114-178.575-189.799-517.414-426.057-601.599-235.147-83.789-472.748 110.404-706.487 198.045-215.658 80.862-465.026 115.636-609.176 295.268-142.695 177.818-100.413 430.581-151.591 652.757-56.988 247.397-253.809 489.095-166.336 727.426 87.398 238.125 371.754 330.042 597.155 446.388 206.747 106.718 423.577 168.107 654.116 199.487'/%3E%3C/g%3E%3Cdefs%3E%3Cmask id='a'%3E%3Cpath fill='%23fff' d='M0 0h3000v2000H0z'/%3E%3C/mask%3E%3C/defs%3E%3C/svg%3E");
    background-color: #45c4a0;
}

.swiper .item-inner {
    padding: 1rem 0 !important;
}
