.elementor-23163 .elementor-element.elementor-element-350e158{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-5713526 */.pool-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 20px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
 
.pool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: #ffd700;
}
 
/* Header de la carte */
.pool-card-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
 
.pool-card-header h3 {
    color: #d4af37;
    margin: 0;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
 
.pool-card-icon {
    font-size: 2em;
    opacity: 0.8;
}
 
/* Contenu de la carte */
.pool-card-content {
    padding: 20px;
    flex: 1;
}
 
.pool-info {
    margin-bottom: 20px;
}
 
.pool-info p {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
 
.info-label {
    color: #d4af37;
    font-weight: 600;
}
 
/* Galerie de photos en aperçu */
.pool-gallery-preview {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}
 
.pool-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}
 
.pool-thumbnail:hover {
    border-color: #ffd700;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}
 
.more-photos {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid #d4af37;
}
 
/* État "aucune photo" */
.no-photos {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
 
.no-photos-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
    opacity: 0.6;
}
 
/* Footer de la carte */
.pool-card-footer {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}
 
.view-details-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    color: #1a1a1a;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}
 
.view-details-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    color: #1a1a1a;
}
 
.arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}
 
.view-details-btn:hover .arrow {
    transform: translateX(5px);
}
 
/* Responsive pour mobile */
@media (max-width: 768px) {
    .pool-card-header {
        padding: 15px;
    }
 
    .pool-card-header h3 {
        font-size: 1.1em;
    }
 
    .pool-card-content {
        padding: 15px;
    }
 
    .pool-card-footer {
        padding: 15px;
    }
 
    .pool-thumbnail {
        width: 50px;
        height: 50px;
    }
 
    .more-photos {
        width: 50px;
        height: 50px;
        font-size: 1em;
    }
}/* End custom CSS */