.map-placeholder {
                position: relative;
                width: 100%;
                height: 500px;
                background-image: url('<?php echo get_template_directory_uri(); ?>/assets/img/map-placeholder.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                border-radius: 8px;
                cursor: pointer;
                overflow: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
              }

              /* Overlay de flou pour l'effet "carte masquée" */
              .map-placeholder::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.4);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                transition: all 0.3s ease;
              }

              .map-placeholder:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
              }

              .map-placeholder:hover::before {
                backdrop-filter: blur(3px);
                -webkit-backdrop-filter: blur(3px);
                background: rgba(255, 255, 255, 0.3);
              }

              .map-placeholder-content {
                position: relative;
                z-index: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 100%;
                color: #555;
                text-align: center;
                padding: 20px;
              }

              .map-placeholder-content svg {
                margin-bottom: 20px;
                opacity: 0.7;
              }

              .map-placeholder-content h3 {
                margin: 10px 0;
                font-size: 1.5rem;
                font-weight: 600;
                color: #333;
              }

              .map-placeholder-content p {
                margin: 5px 0;
                font-size: 0.95rem;
                color: #666;
              }

              .map-placeholder:hover .map-placeholder-content svg {
                opacity: 1;
                transform: scale(1.1);
                transition: all 0.3s ease;
              }

              #google-map-container {
                height: 400px;
                border-radius: 8px;
                overflow: hidden;
              }