/* ===========================================
   HOMY ANNOUNCEMENT SINGLE PAGE
   Fichier: homy-plugin/assets/css/homy-announcement-single.css
   =========================================== */

/* Variables */
:root {
    --homy-primary: #2C192D;
    --homy-black: #000000;
    --homy-dark: #011F28;
    --homy-white: #FFFFFF;
    --homy-blue: #3CB4E8;
    --homy-purple: #A17DB3;
    --homy-green: #D6E5BA;
    --homy-gray: #F5F5F5;
    --homy-gray-light: #E8E8E8;
    --homy-teal: #245F71;
    --homy-orange: #F5A56F;
    --homy-border: #E5E5E5;
}

/* Reset pour la page */
#homy-announcement-page {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: var(--homy-white);
    color: var(--homy-dark);
    line-height: 1.6;
}

#homy-announcement-page *,
#homy-announcement-page *::before,
#homy-announcement-page *::after {
    box-sizing: border-box;
}

/* Container principal */
.homy-announcement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* ===========================================
   HEADER DE L'ANNONCE
   =========================================== */

.homy-announcement-header {
    margin-bottom: 30px;
}

.homy-location-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.homy-location-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.homy-location-icon img {
    width: 20px;
    height: 24px;
    object-fit: contain;
}

.homy-location-text {
    flex: 1;
}

.homy-city {
    font-family: 'Raleway', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2C192D !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
}

.homy-address {
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2C192D !important;
    margin: 4px 0 0 !important;
    line-height: 1.4 !important;
}

.homy-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.homy-stars {
    color: var(--homy-orange);
    font-size: 16px;
    letter-spacing: 2px;
}

.homy-rating-count {
    font-size: 14px;
    color: var(--homy-dark);
    opacity: 0.6;
}

.homy-quick-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--homy-dark);
}

.homy-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.homy-animal-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.homy-info-value {
    font-weight: 600;
}

.homy-info-text {
    font-weight: 400;
}

.homy-info-separator {
    color: var(--homy-purple);
    opacity: 0.5;
}

.homy-publish-date {
    margin-left: auto;
    font-family: 'Raleway', sans-serif !important;
    font-size: 13px !important;
    color: #2C192D !important;
}

/* ===========================================
   GALERIE PHOTOS
   =========================================== */

.homy-gallery-section {
    margin-bottom: 40px;
    position: relative;
}

.homy-gallery-grid {
    display: flex;
    gap: 12px;
    height: 420px;
    position: relative;
}

.homy-gallery-main {
    flex: 1.3;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--homy-gray-light);
}

.homy-gallery-secondary {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.homy-gallery-thumb {
    border-radius: 12px;
    overflow: hidden;
    background: var(--homy-gray-light);
    position: relative;
}

.homy-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.homy-gallery-image:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.homy-gallery-placeholder,
.homy-gallery-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--homy-gray-light);
}

/* Bouton Plus de photos - positionné dans la dernière image */
.homy-gallery-thumb:last-child {
    position: relative;
}

.homy-more-photos-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--homy-blue);
    border: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--homy-white);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

.homy-more-photos-btn:hover {
    background: var(--homy-teal);
}

.homy-more-photos-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ================================
   CARROUSEL PHOTOS - MOBILE
   ================================ */

.homy-photos-carousel {
    display: none !important;
    position: relative !important;
    margin-bottom: 18px !important;
}

.homy-photos-carousel-container {
    overflow: hidden !important;
    border-radius: 16px !important;
}

.homy-photos-carousel-track {
    display: flex !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.homy-photo-slide {
    min-width: 100% !important;
    position: relative !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: var(--homy-gray-light) !important;
}

.homy-photo-slide-image {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    display: block !important;
    cursor: pointer !important;
}

.homy-photo-counter {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    background: rgba(0,0,0,0.55) !important;
    color: #fff !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 12px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
}

.homy-photos-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #FFFFFF !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 50% !important;
    color: #6B7280 !important;
    cursor: pointer !important;
    z-index: 5 !important;
}

.homy-photos-prev {
    left: 10px !important;
}

.homy-photos-next {
    right: 10px !important;
}

.homy-photos-arrow:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* Fix SVG arrows size (WP/theme resets) */
.homy-photos-arrow svg {
    width: 12px !important;
    height: 18px !important;
    min-width: 12px !important;
    min-height: 18px !important;
    display: block !important;
    flex: 0 0 auto !important;
}

.homy-photos-arrow svg path {
    stroke: currentColor !important;
}

.homy-photos-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 10px !important;
}

.homy-photos-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #E5E7EB !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
}

.homy-photos-dot.is-active {
    background: #3CB4E8 !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* Mobile: on cache la grid, on montre le carrousel */
@media (max-width: 768px) {
    .homy-gallery-grid {
        display: none !important;
    }
    .homy-photos-carousel {
        display: block !important;
    }
}

/* ===========================================
   CONTENU PRINCIPAL + SIDEBAR
   =========================================== */

.homy-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.homy-main-content {
    min-width: 0;
}

/* ===========================================
   SÉPARATEUR FULL WIDTH
   =========================================== */

.homy-separator-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.homy-separator-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================================
   SECTIONS
   =========================================== */

.homy-section {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.homy-section-title {
    font-family: 'Raleway', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2C192D !important;
    margin: 0 0 16px !important;
}

.homy-description {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--homy-dark);
    opacity: 0.85;
    margin: 0 0 20px;
}

/* Tags */
.homy-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.homy-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1.5px solid var(--homy-purple);
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: var(--homy-dark);
    transition: all 0.2s ease;
}

.homy-tag i {
    font-size: 16px;
    color: var(--homy-blue);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.homy-tag:hover {
    border-color: var(--homy-blue);
    background: var(--homy-blue);
    color: var(--homy-white);
}

.homy-tag:hover i {
    color: var(--homy-white);
}

/* Équipements */
.homy-equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.homy-equipment-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.homy-equipment-item {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: var(--homy-dark);
    padding-left: 0;
    line-height: 1.5;
}

/* Animaux */
.homy-animals-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.homy-animal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.homy-animal-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--homy-gray);
}

.homy-animal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homy-animal-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--homy-purple) 0%, var(--homy-blue) 100%);
    opacity: 0.3;
}

.homy-animal-info {
    text-align: center;
}

.homy-animal-name {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--homy-dark);
}

.homy-animal-age {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: var(--homy-dark);
    opacity: 0.6;
}

/* Map */
.homy-map-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--homy-gray);
}

.homy-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--homy-dark);
    opacity: 0.3;
}

/* ===========================================
   SIDEBAR - CARTE PROPRIÉTAIRE
   =========================================== */

.homy-sidebar {
    position: sticky;
    top: 100px;
}

.homy-owner-card {
    background: var(--homy-white);
    border: 1px solid var(--homy-border);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.homy-owner-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--homy-blue);
}

.homy-owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homy-owner-name {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--homy-blue);
    margin: 0 0 20px;
}

.homy-dates-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.homy-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homy-date-day {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--homy-dark);
    line-height: 1;
}

.homy-date-month {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: var(--homy-dark);
    opacity: 0.6;
    text-transform: lowercase;
}

.homy-date-separator {
    font-size: 20px;
    color: var(--homy-purple);
    opacity: 0.5;
}

.homy-application-status {
    margin-bottom: 20px;
}

.homy-status-text {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--homy-teal);
    margin-bottom: 4px;
}

.homy-status-count {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: var(--homy-dark);
    opacity: 0.6;
}

.homy-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--homy-blue);
    color: var(--homy-white);
    border: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.homy-contact-btn:hover {
    background: var(--homy-teal);
    color: var(--homy-white);
}

.homy-share-text {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: var(--homy-dark);
    opacity: 0.7;
    margin: 0 0 12px;
}

.homy-share-btn {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--homy-blue);
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.homy-share-btn:hover {
    color: var(--homy-teal);
}

/* ===========================================
   LIGHTBOX
   =========================================== */

.homy-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.homy-lightbox.active {
    display: flex;
}

.homy-lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homy-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.homy-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.2s;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.homy-lightbox-close:hover {
    opacity: 0.7;
}

.homy-lightbox-prev,
.homy-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.homy-lightbox-prev:hover,
.homy-lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.homy-lightbox-prev {
    left: 20px;
}

.homy-lightbox-next {
    right: 20px;
}

.homy-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    opacity: 0.8;
}

/* ===========================================
   TOAST NOTIFICATION
   =========================================== */

.homy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: #2C192D;
    color: #FFFFFF;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s ease;
}

.homy-toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.homy-toast i {
    color: var(--homy-blue);
    font-size: 18px;
}

.homy-contact-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.homy-contact-btn.is-disabled:hover {
    opacity: 0.5;
}

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

@media (max-width: 1024px) {
    .homy-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .homy-sidebar {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .homy-announcement-container {
        padding: 20px 16px 40px;
    }

    .homy-city {
        font-size: 16px;
    }

    .homy-address {
        font-size: 13px;
    }

    .homy-gallery-grid {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .homy-gallery-main {
        flex: none;
        height: 250px;
    }

    .homy-gallery-secondary {
        flex: none;
        height: 125px;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        gap: 8px;
    }

    .homy-more-photos-btn {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        border-radius: 50px;
    }

    .homy-quick-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .homy-info-separator {
        display: none;
    }

    .homy-publish-date {
        margin-left: 0;
        margin-top: 8px;
    }

    .homy-equipment-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .homy-tags-grid {
        gap: 8px;
    }

    .homy-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .homy-owner-card {
        padding: 24px 20px;
    }

    .homy-lightbox-prev,
    .homy-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .homy-lightbox-prev {
        left: 10px;
    }

    .homy-lightbox-next {
        right: 10px;
    }

    .homy-separator-fullwidth {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .homy-gallery-secondary {
        display: grid;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .homy-dates-display {
        gap: 12px;
    }

    .homy-date-day {
        font-size: 24px;
    }

    .homy-animals-grid {
        justify-content: center;
    }

    .homy-section-title {
        font-size: 16px;
    }
}


/* ================================
   CARROUSEL DE SÉJOURS - SIDEBAR
   À ajouter dans homy-announcement-single.css
   ================================ */

/* Remplacer toute la section .homy-stays-list par ce code */

.homy-stays-carousel {
    margin-bottom: 20px !important;
}

.homy-stays-title {
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2C192D !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

/* Wrapper du carrousel */
.homy-stays-carousel-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Container des slides */
.homy-stays-carousel-container {
    flex: 1 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}

.homy-stays-carousel-track {
    display: flex !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Slide individuel */
.homy-stay-slide {
    min-width: 100% !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 12px !important;
    padding: 16px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
}

/* États des séjours */
.homy-stay-slide {
    border-color: var(--homy-purple) !important;
}

.homy-stay-slide.closed, .homy-stay-slide.applied, .homy-stay-slide.full {
    border-color: #9CA3AF !important;
    background: rgba(156, 163, 175, 0.05) !important;
    opacity: 0.6 !important;
}

/* Numéro du séjour */
.homy-stay-number {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6B7280 !important;
    text-align: center !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Dates du séjour */
.homy-stay-dates {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.homy-stay-date-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    min-width: 65px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.homy-stay-day {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #2C192D !important;
    line-height: 1 !important;
}

.homy-stay-month {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #6B7280 !important;
    text-transform: uppercase !important;
    margin-top: 3px !important;
    letter-spacing: 0.3px !important;
}

.homy-stay-separator {
    font-size: 18px !important;
    color: #9CA3AF !important;
    font-weight: 300 !important;
}

/* Statut */
.homy-stay-status {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.homy-stay-status-badge {
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

.homy-stay-slide.available .homy-stay-status-badge {
    background: #10B981 !important;
    color: #FFFFFF !important;
}

.homy-stay-slide.full .homy-stay-status-badge {
    background: #F59E0B !important;
    color: #FFFFFF !important;
}

.homy-stay-slide.applied .homy-stay-status-badge {
    background: #3CB4E8 !important;
    color: #FFFFFF !important;
}

.homy-stay-slide.closed .homy-stay-status-badge {
    background: #9CA3AF !important;
    color: #FFFFFF !important;
}

.homy-stay-applications {
    font-size: 11px !important;
    color: #6B7280 !important;
    font-weight: 500 !important;
}

/* Flèches de navigation */
.homy-carousel-arrow {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #FFFFFF !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 50% !important;
    color: #6B7280 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    outline: none !important;
}

.homy-carousel-arrow:hover {
    background: #3CB4E8 !important;
    border-color: #3CB4E8 !important;
    color: #FFFFFF !important;
    transform: scale(1.05) !important;
}

.homy-carousel-arrow:active {
    transform: scale(0.95) !important;
}

.homy-carousel-arrow:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.homy-carousel-arrow svg {
    width: 10px !important;
    height: 16px !important;
}

/* Dots de pagination */
.homy-carousel-dots {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
}

.homy-carousel-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #E5E7EB !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.homy-carousel-dot:hover {
    background: #9CA3AF !important;
    transform: scale(1.2) !important;
}

.homy-carousel-dot.is-active {
    background: #3CB4E8 !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* Animation de transition */
.homy-stays-carousel-track.is-transitioning {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .homy-stays-carousel-wrapper {
        gap: 6px !important;
    }

    .homy-carousel-arrow {
        width: 28px !important;
        height: 28px !important;
    }

    .homy-stay-date-box {
        min-width: 55px !important;
        padding: 8px 12px !important;
    }

    .homy-stay-day {
        font-size: 20px !important;
    }

    .homy-stay-month {
        font-size: 10px !important;
    }

    .homy-stay-number {
        font-size: 10px !important;
    }
}

/* Animation d'entrée */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.homy-stay-slide.is-active {
    animation: slideIn 0.4s ease-out !important;
}

/* ================================
   SÉLECTEUR DE SÉJOUR - MODAL
   ================================ */

.homy-modal-stay-selector {
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.homy-modal-stay-selector-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2C192D !important;
    margin-bottom: 12px !important;
}

.homy-modal-stay-option {
    display: block !important;
    position: relative !important;
    cursor: pointer !important;
    margin-bottom: 10px !important;
}

.homy-modal-stay-option input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.homy-modal-stay-option-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 15px !important;
    background: #F9FAFB !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.homy-modal-stay-option:hover .homy-modal-stay-option-content {
    border-color: #3CB4E8 !important;
    background: rgba(60, 180, 232, 0.05) !important;
}

.homy-modal-stay-option input[type="radio"]:checked + .homy-modal-stay-option-content {
    border-color: #3CB4E8 !important;
    background: rgba(60, 180, 232, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(60, 180, 232, 0.1) !important;
}

.homy-modal-stay-dates-inline {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2C192D !important;
}

.homy-modal-stay-dates-inline span:nth-child(2) {
    color: #9CA3AF !important;
    font-weight: 300 !important;
}

.homy-modal-stay-option-status {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #6B7280 !important;
    padding: 3px 8px !important;
    background: #FFFFFF !important;
    border-radius: 6px !important;
}

/* État disabled si pas de séjour sélectionné */
.homy-modal-submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .homy-stay-dates {
        flex-wrap: wrap !important;
    }

    .homy-stay-date-box {
        min-width: 50px !important;
        padding: 6px 10px !important;
    }

    .homy-modal-stay-dates-inline {
        font-size: 13px !important;
    }
}