/* ============================================
   GARDE-CORPS.CSS - Styles spécifiques Allo Vitres
   ============================================ */

:root {
    --primary-color: #0056b3;
    /* Bleu Allo Vitres */
    --secondary-color: #00a8ff;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
input,
textarea,
button,
.btn-submit {
    font-family: 'Montserrat', sans-serif !important;
}

/* Hero Section */
.hero-section {
    background-image: url("https://www.allovitres.com/img/p/pack_garde_corps_rail_verre_trempe.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Overlay sombre pour lisibilité */
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-text-column h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-column .slogan {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Features Grid */
.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Product Details */
.product-details {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .detail-row {
        grid-template-columns: 1fr 1fr;
    }
}

.detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.detail-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.detail-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* --- Carousel Section --- */
.carousel-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.carousel-section .swiper-container {
    width: 100%;
    padding-bottom: 50px;
}

.carousel-section .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 750px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-section .swiper-slide:hover {
    transform: scale(1.02);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color, #0056b3) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #383838 !important;
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}


/* --- Reviews Section --- */
.reviews-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    /* Center vertically to avoid stretching issues */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.video-column {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 20px;
    position: relative;
    overflow: hidden;
}

.reviews-column {
    flex: 0 0 40%;
    max-width: 40%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    /* Remove height: 100% to let aspect-ratio drive the height */
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #000;
    position: relative;
}

.video-container video {
    position: absolute;
    /* Absolute positioning to guarantee fill */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.reviewsSwiper {
    width: 100%;
    height: 100%;
    padding: 10px;
    /* Add padding for shadows */
}

.reviewsSwiper .swiper-slide {
    height: auto;
    /* Let content dictate height */
    width: auto;
    /* Let Swiper calculate width based on slidesPerView */
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
    flex: 1;
    /* Distribute height equally */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 992px) {

    .video-column,
    .reviews-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .video-column {
        margin-bottom: 30px;
        height: 400px;
    }

    .reviews-column {
        padding-left: 0;
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-body {
    margin-bottom: 20px;
    position: relative;
}

.quote-icon {
    font-size: 1.5rem;
    color: #ddd;
    margin-right: 10px;
}

.review-text {
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
    display: inline;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-author {
    font-weight: bold;
    color: #333;
}

.verified-badge {
    font-size: 0.75rem;
    color: #28a745;
    background: #e8f5e9;
    padding: 3px 8px;
    border-radius: 12px;
}

.reviewsSwiper .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    text-align: left;
}


/* Hero Section */
.hero-form-title {
    color: #000;
}

.mobile-form-section {
    display: none;
}

@media (max-width: 991px) {
    .mobile-form-section {
        display: block;
    }

    .hero-form-column {
        display: none !important;
    }
}

.privacy-policy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.privacy-policy input {
    margin: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    cursor: pointer;
}

.privacy-policy label {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.2;
    cursor: pointer;
}

.reassurance-bar {
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: #000;
}

.reassurance-icons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.section-title strong {
    color: var(--secondary-color);
}

.made-in-france {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.made-in-france span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
        display: block;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-text-column {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .hero-text-column h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-text-column .slogan {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .made-in-france {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .made-in-france span {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        font-size: 0.8rem;
        padding: 8px 5px;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Technical Sheet Section */
.technical-sheet-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.technical-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.technical-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.technical-list li {
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.technical-list i {
    color: var(--primary-color, #0056b3);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .technical-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .technical-list li {
        min-width: 0;
        /* Allow shrinking */
        font-size: 0.9rem;
    }
}

.technical-intro {
    text-align: center;
    font-weight: 500;
    margin-bottom: 30px;
}

.technical-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.technical-image-card {
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
}

.technical-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Carousel Section */
.carousel-section {
    padding: 60px 0;
}

.swiper-slide {
    width: 750px;
    height: 450px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 300px !important;
        height: 300px !important;
        max-width: 85vw;
        /* Ensure it fits on small screens */
    }

    /* Adjust navigation buttons for mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.video-column,
.config-column {
    flex: 1;
    min-width: 300px;
}

.video-content {
    text-align: left;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .config-card {
        max-height: none;
        overflow-y: visible;
    }
}

.video-content p {
    margin-bottom: 15px;
}

.video-content p:last-of-type {
    margin-bottom: 40px;
    font-weight: bold;
}

/* Configurator / Wizard Styles */
.config-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-height: 85vh;
    overflow-y: auto;
}

.wizard-header {
    margin-bottom: 24px;
}

.wizard-title {
    margin: 0 0 4px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.wizard-subtitle {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: #777;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e6e8f0;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color, #0056b3), #004494);
    border-radius: 999px;
    transition: width 0.3s ease;
}

.progress-label {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #777;
}

.form-step {
    display: none;
    animation: fadeIn 0.25s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.field-group {
    margin-bottom: 24px;
}

.field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}

.field-help {
    font-size: 0.8rem;
    color: #777;
    margin-top: 6px;
    line-height: 1.4;
}

.input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.number-input,
.text-input,
.textarea-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d5d7de;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.number-input:focus,
.text-input:focus,
.textarea-input:focus {
    border-color: var(--primary-color, #0056b3);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.input-unit {
    font-size: 0.9rem;
    color: #777;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f0f1f6;
    white-space: nowrap;
}

/* Pose Grid - 4 Columns Layout */
.pose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pose-option {
    position: relative;
    cursor: pointer;
}

.pose-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Pose Card - Vertical Layout */
.pose-card {
    border-radius: 14px;
    border: 1px solid #d5d7de;
    background: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    height: 100%;
    text-align: center;
}

.pose-card:hover {
    border-color: var(--primary-color, #0056b3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pose-input:checked+.pose-card {
    border-color: var(--primary-color, #0056b3);
    background: rgba(0, 86, 179, 0.05);
    box-shadow: 0 0 0 1px var(--primary-color, #0056b3);
}

.pose-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.pose-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pose-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

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

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d5d7de;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.radio-option:hover {
    border-color: var(--primary-color, #0056b3);
    background: #f8f9ff;
}

.radio-option input {
    accent-color: var(--primary-color, #0056b3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 500px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.textarea-input {
    min-height: 80px;
    resize: vertical;
}

.wizard-footer {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    background: transparent;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary-color, #0056b3);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
}

.btn-primary:hover {
    background: #004494;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #d5d7de;
}

.btn-secondary:hover {
    background: #f8f9fa;
    color: #000;
    border-color: #ccc;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: #f3f4f8;
    color: #999;
    border-color: #eee;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: bold;
    color: #333;
}

.review-date {
    font-size: 0.9rem;
    color: #777;
}

.review-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-footer {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 15px 15px;
    color: #555;
    line-height: 1.6;
    display: none;
}

/* Footer Section */
footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footerLink h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footerLink ul {
    list-style: none;
    padding: 0;
}

.footerLink a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.footerLink a:hover {
    color: #fff;
}

.footer-contact-list {
    margin-bottom: 15px;
}

.footer-social-list {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social-list a {
    color: #fff;
    font-size: 1.5rem;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-social-list {
        justify-content: center;
    }
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 10px;
    box-sizing: border-box;
}

.btn-sticky-quote {
    flex: 0 0 calc(30% - 5px);
    background: #e0e0e0;
    color: #333;
    text-align: center;
    padding: 8px 5px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    transition: background 0.2s;
}

.btn-sticky-quote:hover {
    background: #d0d0d0;
    color: #333;
}

.btn-sticky-call {
    flex: 0 0 calc(70% - 5px);
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 8px 5px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-sticky-call:hover {
    background: #008ecc;
    /* Darker shade of secondary color */
    color: white;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }

    /* Add padding to body to prevent content from being hidden behind the bar */
    body {
        padding-bottom: 70px;
    }

    /* Sticky Phone Button - Mobile Only Icon */
    .sticky-phone {
        /* Cercle parfait sur mobile */
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        gap: 0;
    }

    .sticky-phone a {
        /* Cacher le texte du numéro sur mobile */
        font-size: 0;
        width: 0;
        height: 0;
        overflow: hidden;
        display: none;
    }

    .sticky-phone-icon {
        /* Icône plus grande et centrée dans le cercle */
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
}