/**
 * Shine & Ride - Elementor Widgets CSS
 * Version: 1.0.0
 * Methodology: BEM (Block Element Modifier)
 */

/*========================================
 * VARIABLES CSS
 *========================================*/
:root {
    --shine-orange: #F26522;
    --shine-orange-dark: #D45416;
    --shine-orange-light: #FF7A3D;
    --shine-blue: #00A8C6;
    --shine-blue-dark: #008BA3;
    --shine-dark: #1A1A2E;
    --shine-gray: #F5F5F5;
    --shine-gray-dark: #E0E0E0;
    --shine-white: #FFFFFF;
    --shine-black: #000000;
    --shine-green: #22C55E;
    --shine-purple: #8B5CF6;
    --shine-yellow: #F59E0B;
    --shine-pink: #EC4899;
    
    --shine-font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shine-space-xs: 0.5rem;
    --shine-space-sm: 1rem;
    --shine-space-md: 1.5rem;
    --shine-space-lg: 2rem;
    --shine-space-xl: 3rem;
    --shine-space-2xl: 4rem;
    --shine-space-3xl: 6rem;
    
    --shine-radius-sm: 8px;
    --shine-radius-md: 12px;
    --shine-radius-lg: 16px;
    --shine-radius-xl: 24px;
    --shine-radius-full: 9999px;
    
    --shine-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shine-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shine-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shine-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    --shine-transition: all 0.3s ease;
}

/*========================================
 * BASE & UTILITAIRES
 *========================================*/
.shine-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--shine-space-md);
}

@media (min-width: 768px) {
    .shine-container {
        padding: 0 var(--shine-space-lg);
    }
}

/*========================================
 * TYPOGRAPHIE SECTIONS
 *========================================*/
.shine-section__label {
    display: inline-block;
    color: var(--shine-orange);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--shine-space-sm);
}

.shine-section__label--light {
    color: var(--shine-orange);
}

.shine-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--shine-dark);
    margin-bottom: var(--shine-space-md);
    line-height: 1.3;
}

.shine-section__title--light {
    color: var(--shine-white);
}

.shine-section__description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: var(--shine-space-xl);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .shine-section__title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .shine-section__title {
        font-size: 3rem;
    }
}

/*========================================
 * BOUTONS
 *========================================*/
.shine-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--shine-space-xs);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--shine-radius-full);
    transition: var(--shine-transition);
    cursor: pointer;
    border: none;
}

.shine-btn i {
    font-size: 0.875rem;
}

.shine-btn--primary {
    background: linear-gradient(135deg, var(--shine-orange) 0%, var(--shine-orange-dark) 100%);
    color: var(--shine-white);
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
}

.shine-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.5);
    color: var(--shine-white);
}

.shine-btn--secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--shine-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shine-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--shine-white);
}

.shine-btn--full {
    width: 100%;
}

/*========================================
 * 1. HERO SECTION
 *========================================*/
.shine-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shine-hero__background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.shine-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.85) 0%, rgba(0, 168, 198, 0.75) 100%);
}

.shine-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--shine-space-xl) var(--shine-space-md);
    max-width: 900px;
    color: var(--shine-white);
}

.shine-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--shine-space-xs);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--shine-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--shine-space-lg);
}

.shine-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--shine-space-md);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.shine-hero__title-highlight {
    color: #FFD700;
}

.shine-hero__description {
    font-size: 1.125rem;
    margin-bottom: var(--shine-space-xl);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.shine-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--shine-space-sm);
    align-items: center;
}

@media (min-width: 640px) {
    .shine-hero__buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .shine-hero__title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .shine-hero__title {
        font-size: 4.5rem;
    }
    
    .shine-hero__description {
        font-size: 1.25rem;
    }
}

/*========================================
 * 2. INTRO SECTION
 *========================================*/
.shine-intro {
    padding: var(--shine-space-3xl) 0;
    background: var(--shine-white);
}

.shine-intro__grid {
    display: grid;
    gap: var(--shine-space-xl);
    align-items: center;
}

.shine-intro__label {
    display: block;
    color: var(--shine-orange);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--shine-space-sm);
}

.shine-intro__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--shine-dark);
    margin-bottom: var(--shine-space-md);
    line-height: 1.3;
}

.shine-intro__title-highlight {
    color: var(--shine-blue);
}

.shine-intro__description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--shine-space-lg);
}

.shine-intro__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--shine-space-md);
    margin-top: var(--shine-space-lg);
}

.shine-intro__feature {
    display: flex;
    align-items: center;
    gap: var(--shine-space-sm);
}

.shine-intro__feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.1);
    border-radius: var(--shine-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.shine-intro__feature-text {
    font-weight: 600;
    color: var(--shine-dark);
}

.shine-intro__image-wrapper {
    position: relative;
}

.shine-intro__image {
    width: 100%;
    height: auto;
    border-radius: var(--shine-radius-xl);
    box-shadow: var(--shine-shadow-xl);
}

.shine-intro__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--shine-white);
    padding: var(--shine-space-md);
    border-radius: var(--shine-radius-lg);
    box-shadow: var(--shine-shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--shine-space-sm);
}

.shine-intro__badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--shine-orange);
}

.shine-intro__badge-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .shine-intro__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--shine-space-2xl);
    }
    
    .shine-intro__title {
        font-size: 2.5rem;
    }
}

/*========================================
 * 3. FEATURES SECTION
 *========================================*/
.shine-features {
    padding: var(--shine-space-3xl) 0;
    background: var(--shine-gray);
    text-align: center;
}

.shine-features__grid {
    display: grid;
    gap: var(--shine-space-lg);
    margin-top: var(--shine-space-xl);
}

.shine-feature {
    background: var(--shine-white);
    padding: var(--shine-space-xl);
    border-radius: var(--shine-radius-xl);
    text-align: left;
    transition: var(--shine-transition);
    box-shadow: var(--shine-shadow-sm);
}

.shine-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shine-shadow-xl);
}

.shine-feature__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--shine-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--shine-white);
    margin-bottom: var(--shine-space-md);
}

.shine-feature--orange .shine-feature__icon {
    background: linear-gradient(135deg, var(--shine-orange) 0%, var(--shine-orange-dark) 100%);
}

.shine-feature--blue .shine-feature__icon {
    background: linear-gradient(135deg, var(--shine-blue) 0%, var(--shine-blue-dark) 100%);
}

.shine-feature--green .shine-feature__icon {
    background: linear-gradient(135deg, var(--shine-green) 0%, #16A34A 100%);
}

.shine-feature--purple .shine-feature__icon {
    background: linear-gradient(135deg, var(--shine-purple) 0%, #7C3AED 100%);
}

.shine-feature--yellow .shine-feature__icon {
    background: linear-gradient(135deg, var(--shine-yellow) 0%, #D97706 100%);
}

.shine-feature--pink .shine-feature__icon {
    background: linear-gradient(135deg, var(--shine-pink) 0%, #DB2777 100%);
}

.shine-feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--shine-dark);
    margin-bottom: var(--shine-space-sm);
}

.shine-feature__description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .shine-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shine-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*========================================
 * 4. ACTIVITIES SECTION
 *========================================*/
.shine-activities {
    padding: var(--shine-space-3xl) 0;
    background: var(--shine-white);
    text-align: center;
}

.shine-activities__grid {
    display: grid;
    gap: var(--shine-space-lg);
    margin-top: var(--shine-space-xl);
}

.shine-activity {
    position: relative;
    border-radius: var(--shine-radius-xl);
    overflow: hidden;
    box-shadow: var(--shine-shadow-md);
    transition: var(--shine-transition);
}

.shine-activity:hover {
    transform: translateY(-8px);
    box-shadow: var(--shine-shadow-xl);
}

.shine-activity:hover .shine-activity__image {
    transform: scale(1.1);
}

.shine-activity__image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.shine-activity__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shine-activity__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.shine-activity__badge {
    position: absolute;
    top: var(--shine-space-md);
    left: var(--shine-space-md);
    padding: 0.375rem 0.875rem;
    border-radius: var(--shine-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--shine-white);
}

.shine-activity__badge--orange {
    background: var(--shine-orange);
}

.shine-activity__badge--blue {
    background: var(--shine-blue);
}

.shine-activity__badge--purple {
    background: var(--shine-purple);
}

.shine-activity__duration {
    position: absolute;
    top: var(--shine-space-md);
    right: var(--shine-space-md);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 0.375rem 0.75rem;
    border-radius: var(--shine-radius-full);
    font-size: 0.875rem;
    color: var(--shine-white);
}

.shine-activity__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--shine-space-lg);
    color: var(--shine-white);
    text-align: left;
}

.shine-activity__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--shine-space-sm);
}

.shine-activity__description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--shine-space-md);
    line-height: 1.5;
}

.shine-activity__meta {
    margin-bottom: var(--shine-space-md);
}

.shine-activity__level {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.shine-activity__button {
    display: inline-flex;
    align-items: center;
    gap: var(--shine-space-xs);
    color: var(--shine-orange);
    font-weight: 600;
    text-decoration: none;
    transition: var(--shine-transition);
}

.shine-activity__button:hover {
    color: var(--shine-white);
    gap: var(--shine-space-sm);
}

@media (min-width: 768px) {
    .shine-activities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shine-activities__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*========================================
 * 5. TARGETS SECTION
 *========================================*/
.shine-targets {
    padding: var(--shine-space-3xl) 0;
    background: linear-gradient(135deg, var(--shine-dark) 0%, #2D2D44 100%);
    text-align: center;
}

.shine-targets__grid {
    display: grid;
    gap: var(--shine-space-md);
    margin-top: var(--shine-space-xl);
}

.shine-target {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--shine-space-xl);
    border-radius: var(--shine-radius-xl);
    transition: var(--shine-transition);
}

.shine-target:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.shine-target__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--shine-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--shine-white);
    margin: 0 auto var(--shine-space-md);
}

.shine-target--orange .shine-target__icon {
    background: var(--shine-orange);
}

.shine-target--blue .shine-target__icon {
    background: var(--shine-blue);
}

.shine-target--green .shine-target__icon {
    background: var(--shine-green);
}

.shine-target--purple .shine-target__icon {
    background: var(--shine-purple);
}

.shine-target--pink .shine-target__icon {
    background: var(--shine-pink);
}

.shine-target__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--shine-white);
}

@media (min-width: 640px) {
    .shine-targets__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shine-targets__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/*========================================
 * 6. ORGANIZATION SECTION
 *========================================*/
.shine-organization {
    padding: var(--shine-space-3xl) 0;
    background: var(--shine-gray);
}

.shine-organization__grid {
    display: grid;
    gap: var(--shine-space-xl);
    align-items: center;
}

.shine-organization__items {
    display: flex;
    flex-direction: column;
    gap: var(--shine-space-lg);
    margin-top: var(--shine-space-xl);
}

.shine-org-item {
    display: flex;
    align-items: flex-start;
    gap: var(--shine-space-md);
}

.shine-org-item__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--shine-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--shine-white);
    flex-shrink: 0;
}

.shine-org-item--orange .shine-org-item__icon {
    background: var(--shine-orange);
}

.shine-org-item--blue .shine-org-item__icon {
    background: var(--shine-blue);
}

.shine-org-item--green .shine-org-item__icon {
    background: var(--shine-green);
}

.shine-org-item--purple .shine-org-item__icon {
    background: var(--shine-purple);
}

.shine-org-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--shine-dark);
    margin-bottom: 0.25rem;
}

.shine-org-item__description {
    font-size: 1rem;
    color: #666;
}

.shine-organization__image-wrapper {
    position: relative;
}

.shine-organization__image {
    width: 100%;
    height: auto;
    border-radius: var(--shine-radius-xl);
    box-shadow: var(--shine-shadow-xl);
}

@media (min-width: 768px) {
    .shine-organization__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--shine-space-2xl);
    }
}

/*========================================
 * 7. TESTIMONIALS SECTION
 *========================================*/
.shine-testimonials {
    padding: var(--shine-space-3xl) 0;
    background: var(--shine-white);
    text-align: center;
}

.shine-testimonials__grid {
    display: grid;
    gap: var(--shine-space-lg);
    margin-top: var(--shine-space-xl);
}

.shine-testimonial {
    background: var(--shine-gray);
    padding: var(--shine-space-xl);
    border-radius: var(--shine-radius-xl);
    text-align: left;
}

.shine-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--shine-space-md);
}

.shine-star {
    font-size: 1.25rem;
}

.shine-star--filled {
    color: var(--shine-orange);
}

.shine-star--empty {
    color: var(--shine-gray-dark);
}

.shine-testimonial__text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--shine-space-lg);
    font-style: italic;
}

.shine-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--shine-space-md);
}

.shine-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--shine-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--shine-white);
}

.shine-testimonial__avatar--orange {
    background: var(--shine-orange);
}

.shine-testimonial__avatar--blue {
    background: var(--shine-blue);
}

.shine-testimonial__avatar--green {
    background: var(--shine-green);
}

.shine-testimonial__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--shine-dark);
}

.shine-testimonial__role {
    font-size: 0.875rem;
    color: #666;
}

@media (min-width: 768px) {
    .shine-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shine-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*========================================
 * 8. QUOTE FORM SECTION
 *========================================*/
.shine-quote-form {
    padding: var(--shine-space-3xl) 0;
    background: linear-gradient(135deg, var(--shine-orange) 0%, var(--shine-orange-dark) 100%);
}

.shine-quote-form__header {
    text-align: center;
    margin-bottom: var(--shine-space-xl);
    color: var(--shine-white);
}

.shine-quote-form__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--shine-space-sm);
}

.shine-quote-form__title-highlight {
    color: #FFD700;
}

.shine-quote-form__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.shine-quote-form__wrapper {
    background: var(--shine-white);
    padding: var(--shine-space-xl);
    border-radius: var(--shine-radius-xl);
    box-shadow: var(--shine-shadow-xl);
    max-width: 800px;
    margin: 0 auto;
}

/* Formulaire */
.shine-form__grid {
    display: grid;
    gap: var(--shine-space-md);
}

.shine-form__group {
    margin-bottom: var(--shine-space-md);
}

.shine-form__group--full {
    grid-column: 1 / -1;
}

.shine-form__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--shine-dark);
    margin-bottom: 0.5rem;
}

.shine-form__label i {
    color: var(--shine-orange);
}

.shine-form__input,
.shine-form__select,
.shine-form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--shine-gray-dark);
    border-radius: var(--shine-radius-md);
    background: var(--shine-white);
    transition: var(--shine-transition);
    font-family: inherit;
}

.shine-form__input:focus,
.shine-form__select:focus,
.shine-form__textarea:focus {
    outline: none;
    border-color: var(--shine-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.shine-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.shine-form__privacy {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: var(--shine-space-md);
}

.shine-form__privacy i {
    color: var(--shine-orange);
    margin-right: 0.25rem;
}

@media (min-width: 768px) {
    .shine-form__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shine-quote-form__title {
        font-size: 2.5rem;
    }
    
    .shine-quote-form__wrapper {
        padding: var(--shine-space-2xl);
    }
}

/*========================================
 * CTA SECTION
 *========================================*/
.shine-cta {
    padding: var(--shine-space-2xl) 0;
    background: var(--shine-dark);
    text-align: center;
}

.shine-cta__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shine-white);
    margin-bottom: var(--shine-space-md);
}

.shine-cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--shine-space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shine-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--shine-space-md);
    align-items: center;
}

@media (min-width: 640px) {
    .shine-cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .shine-cta__title {
        font-size: 2rem;
    }
}

/*========================================
 * ANIMATIONS
 *========================================*/
@keyframes shine-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shine-fade-in {
    animation: shine-fade-in 0.6s ease forwards;
}

/*========================================
 * ACCESSIBILITÉ
 *========================================*/
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible */
.shine-btn:focus-visible,
.shine-form__input:focus-visible,
.shine-activity__button:focus-visible {
    outline: 2px solid var(--shine-orange);
    outline-offset: 2px;
}
