:root {
    --primary: #39C252;
    --background: #082736;
    --background2: #0827360a;
    --accent: rgb(255, 204, 0);
    --neutre: white;
    --texte: #333333;
    --details: #3333338d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

body {
    overflow-x: hidden;
    background-color: var(--background);
    min-height: 100vh;
}

.counter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none; /* Sécurité pour bloquer tout comportement de clic */
}

/* ==========================================
   PAGE DE SÉLECTION DU TYPE DE RÉSERVATION (SPLIT)
   ========================================== */

.split_reservation_container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.split_panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
    padding: 40px;
    position: relative;
}

/* Effet d'agrandissement au survol de la souris */
.split_panel:hover {
    flex: 1.2;
    /* Le panneau survolé prend plus de place */
}

.panel_content {
    max-width: 450px;
    text-align: center;
    color: var(--neutre);
    z-index: 2;
    transition: transform 0.3s ease;
}

.split_panel:hover .panel_content {
    transform: scale(1.03);
}

.panel_icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.panel_content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.panel_subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Liste à puces pour habiller le vide */
.panel_features {
    text-align: left;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel_features li {
    font-size: 0.98rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.panel_features li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 0.9rem;
}

/* Boutons d'action */
.panel_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.btn_table {
    background: var(--primary);
    color: var(--neutre);
}

.btn_table:hover {
    background: var(--neutre);
    color: var(--background);
}

.btn_lodge {
    background: transparent;
    color: var(--neutre);
    border: 2px solid var(--neutre);
}

.btn_lodge:hover {
    background: var(--neutre);
    color: var(--background);
}

/* CARROUSEL EN ARRIÈRE-PLAN BLINDÉ */
.bg-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 39, 54, 0.4) 0%, rgba(8, 39, 54, 0.7) 100%);
}

/* CONTAINER PRINCIPAL EN GRID FLEXIBLE */
.main-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    align-items: end;
    padding: 60px;
    min-height: 100vh;
    gap: 40px;
}

/* FORMULAIRE FLOTTANT (STYLE GLASSMORPHISM TRÈS PREMIUM) */
.booking-card {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    /* Centre le formulaire verticalement */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.booking-card h2 {
    color: var(--background);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.booking-card .subtitle {
    color: var(--texte);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--background);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(8, 39, 54, 0.15);
    background-color: var(--neutre);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--texte);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(57, 194, 82, 0.2);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--neutre);
    border: none;
    padding: 16px;
    font-size: 0.8em;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--background);
    /* Légèrement plus foncé */
}

/* CARROUSEL DES AVIS CLENTS (BAS GAUCHE) */
.reviews-container {
    grid-column: 1;
    background: rgba(8, 39, 54, 0.65);
    backdrop-filter: blur(8px);
    border-left: 5px solid var(--primary);
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.reviews-wrapper {
    position: relative;
    flex-grow: 1;
    min-height: 85px;
    /* Évite les sauts de hauteur entre les textes */
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.review-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.stars {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.review-text {
    color: var(--neutre);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 6px;
}

.review-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.reviews-controls {
    display: flex;
    gap: 10px;
}

.reviews-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neutre);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reviews-controls button:hover {
    background: var(--primary);
    border-color: var(--primary);
}


/* --- EXTENSION POUR L'ÉTAPE 2 --- */

/* Le bouton Retour en haut de la carte */
.btn-back {
    display: inline-block;
    color: var(--details);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: var(--background);
}

/* Le badge vert qui indique les places dispos */
.availability-badge {
    background-color: rgba(57, 194, 82, 0.12);
    color: #2ea343;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Le design du Compteur Customisé */
.guest-counter {
    display: flex;
    align-items: center;
    background-color: var(--neutre);
    border: 1px solid rgba(8, 39, 54, 0.15);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-top: 5px;
}

.counter-btn {
    background: var(--background2);
    border: none;
    color: var(--background);
    font-size: 1.5rem;
    font-weight: bold;
    width: 60px;
    height: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.counter-btn:hover {
    background-color: rgba(8, 39, 54, 0.1);
}

.guest-counter input {
    flex-grow: 1;
    border: none !important;
    /* Annule la bordure standard */
    box-shadow: none !important;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--background);
    background: transparent;
}

/* Message d'erreur personnalisé pour le compteur */
.counter-error-msg {
    display: none;
    color: #d32f2f;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.counter-error-msg.visible {
    display: block;
}

/* Textarea pour les notes */
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(8, 39, 54, 0.15);
    background-color: var(--neutre);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--texte);
    outline: none;
    resize: none;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(57, 194, 82, 0.2);
}



/* ==========================================
   EXTENSION PAGE DE SUCCÈS
   ========================================== */

.success-card {
    text-align: center;
}

/* L'icône de succès verte */
.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 15px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Le design effet "Ticket de Caisse / Reçu" */
.ticket-receipt {
    background: var(--neutre);
    border: 1px dashed rgba(8, 39, 54, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(8, 39, 54, 0.15);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.receipt-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--details);
    font-weight: 700;
}

.ticket-id {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--background);
    background: var(--background2);
    padding: 3px 8px;
    border-radius: 5px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.receipt-row:last-child {
    margin-bottom: 0;
}

.receipt-row span {
    color: var(--texte);
}

.receipt-row span i {
    color: var(--primary);
    margin-right: 5px;
    width: 15px;
}

.receipt-row strong {
    color: var(--background);
    font-weight: 600;
}

/* La boîte d'information WhatsApp */
.next-steps-box {
    background: rgba(8, 39, 54, 0.04);
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    margin-bottom: 25px;
    border-left: 4px solid var(--background);
}

.next-steps-box h4 {
    color: var(--background);
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.next-steps-box h4 i {
    color: #25D366;
    /* Vert officiel de WhatsApp */
    font-size: 1.1rem;
}

.next-steps-box p {
    font-size: 0.88rem;
    color: var(--texte);
    line-height: 1.4;
}

/* Boutons d'action côte à côte */
.success-actions {
    display: flex;
    gap: 15px;
}

.success-actions .btn-submit {
    margin-top: 0;
    flex: 1;
    font-size: 0.8em;
}

.btn-secondary {
    flex: 1;
    background-color: transparent;
    color: var(--background);
    border: 1px solid rgba(8, 39, 54, 0.2);
    padding: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--background2);
    border-color: var(--background);
}

/* ==========================================\
   CATALOGUE DES LODGES & CARROUSELS
   ========================================== */

.lodges_container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.catalog_title {
    color: var(--neutre);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.catalog_subtitle {
    color: var(--neutre);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Grille des cartes */
.lodges_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.lodge_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.lodge_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(57, 194, 82, 0.3);
}

/* Zone du Carrousel */
.lodge_carousel_wrapper {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.carousel_track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel_slide {
    min-width: 100%;
    height: 100%;
}

.carousel_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Boutons de navigation du carrousel */
.carousel_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 39, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neutre);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
    opacity: 0; /* Cachés par défaut, apparaissent au survol de la carte */
}

.lodge_card:hover .carousel_btn {
    opacity: 1;
}

.carousel_btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel_btn.prev { left: 15px; }
.carousel_btn.next { right: 15px; }

/* Badge de statut / prix */
.lodge_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(8, 39, 54, 0.85);
    backdrop-filter: blur(4px);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 4;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

/* Contenu textuel de la carte */
.lodge_card_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lodge_card_title {
    color: var(--neutre);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lodge_card_desc {
    color: var(--neutre);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Équipements en puces miniatures */
.lodge_card_amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    margin-top: auto; /* Pousse vers le bas */
}

.mini_amenity_tag {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini_amenity_tag i {
    color: var(--primary);
}

/* Pied de carte avec prix et action */
.lodge_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.lodge_card_price {
    color: var(--neutre);
    font-size: 1.2rem;
    font-weight: 800;
}

.lodge_card_price span {
    font-size: 0.8rem;
    color: var(--neutre);
    font-weight: 400;
}

.btn_discover {
    background: var(--primary);
    color: var(--neutre);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn_discover:hover {
    background: #2eb046;
}

/* ==========================================\
   PAGE DÉTAILS DU LODGE & FLUX RÉSERVATION
   ========================================== */

.details_wrapper {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
}

/* Zone gauche : Contenu du Lodge */
.details_content_panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.big_carousel_wrapper {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lodge_title_main {
    color: var(--neutre);
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 10px;
}

.lodge_capacity_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    background: rgba(255, 204, 0, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    width: fit-content;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.lodge_full_desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
}

.amenities_section h3 {
    color: var(--neutre);
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

.amenities_full_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.full_amenity_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px;
    border-radius: 12px;
    color: var(--neutre);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.full_amenity_card i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Zone droite : Formulaire dynamique de réservation */
.booking_sticky_panel {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.booking_card_box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.booking_box_price {
    color: var(--neutre);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.booking_box_price span {
    font-size: 0.9rem;
    color: var(--neutre);
    font-weight: 400;
}

.form_group_details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form_group_details label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form_group_details input {
    background: rgba(8, 39, 54, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px;
    border-radius: 10px;
    color: var(--neutre);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form_group_details input:focus {
    border-color: var(--primary);
}

/* Zone du prix calculé */
.price_summary_box {
    background: rgba(57, 194, 82, 0.08);
    border: 1px dashed var(--primary);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none; /* Apparaît en JS */
    justify-content: space-between;
    align-items: center;
    color: var(--neutre);
    font-size: 0.95rem;
}

.price_summary_box .total_highlight {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Messages d'API */
.booking_alert {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}
.booking_alert.error {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

/* Champs masqués pour l'étape 2 */
.step2_fields {
    display: none; /* Apparaît quand checkRoom valide la dispo */
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    margin-top: 20px;
}

.btn_booking_action {
    width: 100%;
    background: var(--primary);
    color: var(--neutre);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn_booking_action:hover {
    background: var(--primary-hover);
}

/* Version responsive adaptative */
@media (max-width: 992px) {
    .details_wrapper {
        grid-template-columns: 1fr;
    }
    .booking_sticky_panel {
        position: static;
    }
    .big_carousel_wrapper {
        height: 300px;
    }
}


/* ==========================================
   RESPONSIVE MOBILE
   ========================================== */

/* Ajustement Mobile pour les boutons empilés */
@media (max-width: 480px) {
    .success-actions {
        flex-direction: column;
    }
}


@media (max-width: 768px) {
    .split_reservation_container {
        flex-direction: column;
        /* On passe l'un au dessus de l'autre sur mobile */
        height: auto;
        min-height: calc(100vh - 70px);
    }

    .split_panel {
        width: 100%;
        min-height: 45vh;
        padding: 30px 20px;
    }

    .split_panel:hover {
        flex: 1;
        /* Désactivation de l'effet d'extension sur mobile */
    }

    .panel_content h2 {
        font-size: 1.8rem;
    }

    .panel_features {
        margin-bottom: 25px;
    }
}

/* RESPONSIVE DESIGN (MOBILE-FIRST LOGIQUE SUR PETITS ÉCRANS) */
@media (max-width: 900px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 20px;
        align-items: start;
    }

    .booking-card {
        grid-column: 1;
        margin-top: 80px;
        /* Espace pour la future navbar */
        padding: 25px;
    }

    .reviews-container {
        grid-column: 1;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
 .lodges_grid {

    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

}   
}