@import url('https://fonts.googleapis.com/css?family=Nunito:400,700|Work+Sans:400,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-green: #9ED478;
    --text-dark: #333;
    --text-white: #fff;
    --hover-green: #8ac266;
    --body-font: "Work Sans", "Helvetica", "sans-serif";
    --headers-font: "Nunito", "Helvetica", "sans-serif";
    --title-font: "Righteous", sans-serif;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: #f5f5f5;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headers-font);
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem; /* Increased padding for better look with background */
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-green);
    transition: height 0.3s ease;
    z-index: -1;
}

.nav-item:hover,
.nav-item:active,
.nav-item:focus {
    color: var(--text-white);
}

.nav-item:hover::before,
.nav-item:active::before,
.nav-item:focus::before {
    height: 100%;
}

.home-icon {
    color: var(--primary-green);
    display: flex;
    align-items: center;
}

.join-us-btn {
    background-color: var(--primary-green);
    color: var(--text-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.join-us-btn:hover {
    background-color: var(--hover-green);
}

.facebook-icon {
    fill: currentColor;
}

/* Banner Styles */
.banner {
    position: relative;
    height: 400px;
    background-color: var(--primary-green);
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(158, 212, 120, 1) 90%, rgba(158, 212, 120, 1) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 15px solid white;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.pharmacy-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    z-index: 10;
}

.pharmacy-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-white-mask {
    width: 100%;
    height: 100%;
    background-color: white;
    -webkit-mask: url("../images/logo_salengro-X7u5Mvr.png") no-repeat center;
    mask: url("../images/logo_salengro-X7u5Mvr.png") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}




.pharmacy-name {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.pharmacy-name span {
    background-color: white;
    color: var(--primary-green);
    padding: 6px 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: var(--headers-font);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: inline-block;
    width: fit-content;
}

.pharmacy-name span:last-child {
    font-size: 1.1rem;
    padding: 4px 10px;
    margin-top: -5px; /* Pull it closer */
}

/* Weather Widget Styles */
.pharmacy-weather {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    margin-left: auto; /* Push to the right on desktop */
    transition: opacity 0.5s ease, transform 0.3s ease;
    opacity: 0; /* Hidden until loaded to prevent layout shift */
    transform: translateY(10px);
}

.pharmacy-weather.loaded {
    opacity: 1;
    transform: translateY(0);
}

.pharmacy-weather span {
    background-color: white;
    color: var(--primary-green);
    padding: 6px 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-family: var(--headers-font);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: inline-block;
    width: fit-content;
    transition: background-color 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.pharmacy-weather:hover span {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.pharmacy-weather .weather-details {
    font-size: 0.95rem;
    padding: 4px 10px;
    margin-top: -5px; /* Pull it closer */
    display: flex;
    align-items: center;
    gap: 6px;
}

.pharmacy-weather .weather-icon {
    background: transparent;
    padding: 0;
    box-shadow: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pharmacy-weather .weather-temp {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.pharmacy-weather .weather-desc {
    font-weight: 600;
    text-transform: none;
    font-size: 0.85rem;
    opacity: 0.9;
    background: transparent;
    padding: 0;
    box-shadow: none;
    color: inherit;
}




.slider-container {
    max-width: 550px;
    color: white;
    margin-top: 30px; /* Space between pharmacy-info and slider content */
}



.slide {
    display: none;
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

.slide-title {
    background-color: white;
    color: var(--primary-green);
    display: inline-block;
    padding: 5px 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.slide-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    max-width: 500px;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-green);
    font-weight: bold;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: white;
}

.slider-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Promotions Section */
.promotions-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.promo-badge {
    background-color: var(--primary-green);
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.promo-badge::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--hover-green);
    transform: rotate(45deg);
    z-index: -1;
    border-radius: 5px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.products-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.product-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    position: relative;
}

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

.promo-badge-card {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #e11d48, #fb7185);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(225, 29, 72, 0.3);
    letter-spacing: 0.05em;
    pointer-events: none;
}

.product-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.product-brand {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

.product-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 5px 0;
    color: #000;
}

.product-body {
    padding: 15px;
    display: flex;
    gap: 10px;
    flex-grow: 1;
}

.product-image {
    width: 80px;
    height: 120px;
    object-fit: contain;
}

.product-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.product-footer {
    background-color: var(--primary-green);
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.price-label {
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.carousel-btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* --- NOUS / LOCATION SECTION --- */
.nous {
    position: relative;
    z-index: 1;
    background-color: #fdfafb; /* Default soft light background */
}

/* Green header band at the top of location section */
.nous-green {
    position: relative;
    background-color: var(--primary-green);
    height: 250px;
    margin-bottom: 32px;
    z-index: 1;
    overflow: visible; /* Let overlap elements bleed out */
    transition: background-color 0.4s ease;
}

.nous-green::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 250px;
    background: url("../images/hexagone-nous-S12p1KC.png");
    background-size: 50%;
    filter: invert(1);
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.nous-green .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.padding-top {
    padding-top: 32px;
}

/* White box skewed header title "Où sommes-nous?" */
.title-effects {
    margin-bottom: 30px;
}

.title-effects h3 {
    margin: 0;
    transform: rotate(-1deg);
    display: inline-block;
}

.title-green {
    position: relative;
    font-size: 36px;
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 8px 24px;
    background-color: white;
    color: var(--primary-green);
    z-index: 2;
    line-height: 45px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: color 0.4s ease;
}

/* Features section inside the green banner (icon + text) */
.nous-features {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between;
    bottom: 0;
    transform: translateY(30px);
    z-index: 2;
}

.nous-trouver {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nous-trouver p {
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.hex-container {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-container:hover {
    transform: scale(1.05);
}

.hex-outer {
    width: 120px;
    height: 120px;
    background-color: var(--primary-green);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease;
}

.hex-inner {
    width: calc(100% - 10px); /* 5px border thickness */
    height: calc(100% - 10px);
    background-color: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nos-horaires {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.nos-horaires p {
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Main location content below header band */
.nous-content {
    display: flex;
    justify-content: space-between;
    padding: 64px 2rem 48px 2rem;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Map section on the left */
.nous-container-content-map {
    width: 50%;
    position: relative;
    z-index: 1;
}

.nous-content-map {
    width: 100%;
    height: 450px;
    position: relative;
    z-index: 1;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nous-content-map::before {
    position: absolute;
    content: "";
    background-color: var(--primary-green);
    width: 100%;
    height: 100%;
    top: -20px;
    right: -20px;
    z-index: -2;
    transition: background-color 0.4s ease;
}

.nous-content-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Address Box */
.nous-content-adress {
    margin-top: 32px;
    background-color: var(--primary-green);
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: background-color 0.4s ease;
}

.nous-content-adress p {
    font-size: 18px;
    font-weight: 400;
    margin: 0.3rem 0;
}

.nous-content-adress p strong {
    font-size: 22px;
    font-weight: 700;
}

/* Calendar section on the right */
.nous-content-calendrier {
    width: 40%;
    min-width: 400px;
}

/* Hidden by default on desktop, shown on mobile */
.nous-content-calendrier h2 span {
    display: none;
}

.calendrier {
    width: 100%;
    position: relative;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calendrier::before {
    position: absolute;
    content: "";
    background-color: var(--primary-green);
    width: 100%;
    height: 100%;
    top: -20px;
    right: -20px;
    z-index: -2;
    transition: background-color 0.4s ease;
}

/* Calendar table styling */
.ligne, .first-ligne {
    display: grid;
    column-gap: 16px;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
}

.ligne {
    border-bottom: 1px solid #f1f5f9;
}

.ligne:last-child {
    border-bottom: none;
}

.first-ligne p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    padding: 12px 6px;
}

.ligne p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 12px 6px;
    color: var(--text-dark);
}

.line-green {
    background-color: var(--primary-green);
    color: white !important;
    text-align: center;
    border-radius: 4px;
    padding: 6px 12px !important;
    transition: background-color 0.4s ease;
}

.ligne p.line-green {
    font-weight: 700;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .nous-content {
        flex-direction: column;
        align-items: center;
        gap: 64px;
        padding: 64px 1.5rem 48px 1.5rem;
    }

    .nous-container-content-map {
        width: 90% !important;
    }

    .nous-content-calendrier {
        width: 90% !important;
        min-width: 0 !important;
    }

    .nous-content-calendrier h2 {
        text-align: center;
        margin-bottom: 40px;
    }

    .nous-content-calendrier h2 span {
        display: inline-block !important;
        background-color: white;
        color: var(--primary-green);
        font-family: "Righteous", sans-serif;
        font-size: 28px;
        font-weight: bold;
        padding: 8px 24px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: rotate(-1deg);
        transition: color 0.4s ease;
    }
}

@media (max-width: 800px) {
    .nous-features {
        display: none !important;
    }

    .nous-green {
        height: 150px !important;
    }
    
    .nous-green .container {
        justify-content: center;
        align-items: center;
    }
    
    .title-effects {
        margin-bottom: 0;
    }
}

/* Pharmacy Photo Section */
.pharmacy-photo-section {
    padding: 3rem 0;
    background-color: #a3d95b; /* Green background from design */
}

.pharmacy-photo-section .section-title {
    color: #a3d95b;
    transform: rotate(-2deg);
}

.photo-card {
    flex: 0 0 300px;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s;
}

.photo-card:hover {
    transform: scale(1.02);
}

.pharmacy-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Product Page Layout */
.page-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    position: relative;
    display: inline-block;
    color: white;
    background-color: var(--primary-green);
    padding: 8px 24px;
    margin-bottom: 3rem;
    font-size: 32px;
    font-weight: 400;
    font-family: var(--title-font);
}

.page-title::after {
    position: absolute;
    content: "";
    right: -80px;
    top: -10px;
    width: 100px;
    height: 70px;
    background-image: url("../images/pharma_6-_ZETzSq.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(10deg);
}

.products-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 2rem;
    z-index: 1;
}

.products-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/pharma_7-B3FOVy0.png");
    background-repeat: repeat;
    background-size: 65%;
    opacity: 0.15;
    z-index: -1;
}

/* Univers Presentation */
.univers-presentation {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.presentation-content {
    flex: 1;
    min-width: 300px;
    background-color: #9ED478;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presentation-content h2 {
    background-color: white;
    color: #9ED478;
    margin-top: 0;
    padding: 10px 20px;
    display: inline-block;
    align-self: flex-start;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.presentation-content p {
    line-height: 1.6;
    color: white;
    font-weight: 500;
}

.presentation-images {
    flex: 1;
    min-width: 300px;
    background-color: #9ED478;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.presentation-images.grid-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.presentation-images img {
    border: 2px solid white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 200px;
    width: 200px;
}

.presentation-images.grid-2 img:nth-child(1),
.presentation-images.grid-2 img:nth-child(2) {
    width: 300px;
}

.presentation-images img.vitrine {
    height: 300px;
    width: 200px;
}

.presentation-images img.local {
    height: 300px;
    width: 400px;
}

.presentation-para-image {
    flex: 1;
    min-width: 300px;
    background-image: url("../images/aromathérapie-iCDQDeX.png");
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Brands Section */
.brands-section {
    margin-top: 3rem;
    background-color: #9ED478;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.brands-section h2 {
    color: white;
    margin-top: 0;
    font-weight: bold;
    text-align: left;
}

.brands-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 2rem;
    align-items: center;
}

.brands-flex img {
    max-height: 80px;
    object-fit: contain;
    border: 2px solid white;
    border-radius: 4px;
    background-color: white;
}

/* Contact Form */
.contact-container {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-submit {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}

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

.no-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    width: 100%;
    color: #999;
}

/* Main Footer */
.main-footer {
    background-color: white;
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    padding: 0 2rem;
}

.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-social {
    display: inline-block;
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    transition: transform 0.2s;
}

.footer-social:hover {
    transform: scale(1.1);
}

.footer-social svg {
    width: 100%;
    height: 100%;
}

.footer-divider {
    width: 1px;
    height: 150px;
    background-color: rgba(158, 212, 120, 0.3); /* Light green divider */
    align-self: center;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-divider {
        width: 50%;
        height: 1px;
    }
    
    .footer-column {
        padding: 0;
    }
}

/* ==========================================
   SEASONAL THEMES SYSTEM
   ========================================== */

/* --- WINTER THEME --- */
body.theme-hiver {
    --primary-green: #3a86c8;
    --hover-green: #2a6ca7;
    background-color: #f0f4f8;
}

body.theme-hiver .banner {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(58, 134, 200, 0.95) 90%, rgba(58, 134, 200, 1) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    border-bottom-color: #f0f4f8;
}

body.theme-hiver .promotions-section {
    background-color: #e5edf5;
    background-image: radial-gradient(#cbdbe5 1px, transparent 1px);
}

body.theme-hiver .location-section, body.theme-hiver .nous {
    background-color: #e5edf5;
}

body.theme-hiver .hours-container::before {
    background-color: #65a1d6;
}

body.theme-hiver .hours-table td:first-child {
    color: #3a86c8;
}

body.theme-hiver .pharmacy-photo-section {
    background-color: #65a1d6;
}

body.theme-hiver .pharmacy-photo-section .section-title {
    color: #65a1d6;
}

body.theme-hiver .presentation-content,
body.theme-hiver .presentation-images,
body.theme-hiver .brands-section {
    background-color: #3a86c8;
}

body.theme-hiver .presentation-content h2 {
    color: #3a86c8;
}

/* Snowflake floating keyframe */
@keyframes snowfall {
    0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 105%;
        transform: translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.snowflake {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    animation: snowfall linear infinite;
}


/* --- EASTER THEME --- */
body.theme-paques {
    --primary-green: #e5b63c;
    --hover-green: #cba031;
    background-color: #faf7f0;
}

body.theme-paques .banner {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(229, 182, 60, 0.95) 90%, rgba(229, 182, 60, 1) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    border-bottom-color: #faf7f0;
}

body.theme-paques .promotions-section {
    background-color: #f7f2e5;
    background-image: radial-gradient(#e5dcbe 1px, transparent 1px);
}

body.theme-paques .location-section, body.theme-paques .nous {
    background-color: #f7f2e5;
}

body.theme-paques .hours-container::before {
    background-color: #e5c365;
}

body.theme-paques .hours-table td:first-child {
    color: #e5b63c;
}

body.theme-paques .pharmacy-photo-section {
    background-color: #e5c365;
}

body.theme-paques .pharmacy-photo-section .section-title {
    color: #e5c365;
}

body.theme-paques .presentation-content,
body.theme-paques .presentation-images,
body.theme-paques .brands-section {
    background-color: #e5b63c;
}

body.theme-paques .presentation-content h2 {
    color: #e5b63c;
}

/* Easter rabbit animation */
@keyframes bunny-peek {
    0%, 100% {
        transform: translateY(100%);
    }
    3%, 12% {
        transform: translateY(10px) rotate(3deg);
    }
    6% {
        transform: translateY(0) rotate(-3deg);
    }
    15%, 97% {
        transform: translateY(100%);
    }
}

.easter-bunny {
    position: fixed;
    bottom: -10px;
    left: 40px;
    width: 90px;
    height: 110px;
    z-index: 9998;
    pointer-events: none;
    animation: bunny-peek 20s infinite ease-in-out;
}

@keyframes egg-float {
    0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        top: 105%;
        transform: translateX(-30px) rotate(180deg);
        opacity: 0;
    }
}

.easter-egg {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    animation: egg-float linear infinite;
}


/* --- SPRING THEME --- */
body.theme-printemps {
    --primary-green: #e27598;
    --hover-green: #cb6183;
    background-color: #fdfafb;
}

body.theme-printemps .banner {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(226, 117, 152, 0.95) 90%, rgba(226, 117, 152, 1) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    border-bottom-color: #fdfafb;
}

body.theme-printemps .promotions-section {
    background-color: #faedf0;
    background-image: radial-gradient(#ebcbd2 1px, transparent 1px);
}

body.theme-printemps .location-section, body.theme-printemps .nous {
    background-color: #faedf0;
}

body.theme-printemps .hours-container::before {
    background-color: #ec94b1;
}

body.theme-printemps .hours-table td:first-child {
    color: #e27598;
}

body.theme-printemps .pharmacy-photo-section {
    background-color: #ec94b1;
}

body.theme-printemps .pharmacy-photo-section .section-title {
    color: #ec94b1;
}

body.theme-printemps .presentation-content,
body.theme-printemps .presentation-images,
body.theme-printemps .brands-section {
    background-color: #e27598;
}

body.theme-printemps .presentation-content h2 {
    color: #e27598;
}

/* Cherry blossom petals keyframes */
@keyframes petal-drift {
    0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 105%;
        transform: translateX(80px) rotate(540deg);
        opacity: 0;
    }
}

.spring-petal {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    animation: petal-drift linear infinite;
}

/* --- SUMMER THEME --- */
body.theme-ete {
    --primary-green: #e67e22; /* Warm Golden Orange */
    --hover-green: #d35400;
    background-color: #fffaf0; /* Warm sand/sun background */
}

body.theme-ete .banner {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(230, 126, 34, 0.95) 90%, rgba(230, 126, 34, 1) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    border-bottom-color: #fffaf0;
}

body.theme-ete .promotions-section {
    background-color: #fdf2e2;
    background-image: radial-gradient(#f5d6a7 1px, transparent 1px);
}

body.theme-ete .location-section, body.theme-ete .nous {
    background-color: #fdf2e2;
}

body.theme-ete .hours-container::before {
    background-color: #f39c12;
}

body.theme-ete .hours-table td:first-child {
    color: #e67e22;
}

body.theme-ete .pharmacy-photo-section {
    background-color: #f39c12;
}

body.theme-ete .pharmacy-photo-section .section-title {
    color: #f39c12;
}

body.theme-ete .presentation-content,
body.theme-ete .presentation-images,
body.theme-ete .brands-section {
    background-color: #e67e22;
}

body.theme-ete .presentation-content h2 {
    color: #e67e22;
}

/* Summer float keyframes */
@keyframes summer-float {
    0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 105%;
        transform: translateX(-40px) rotate(360deg);
        opacity: 0;
    }
}

.summer-item {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    animation: summer-float linear infinite;
}


/* --- OCTOBER ROSE THEME --- */
body.theme-octobre_rose {
    --primary-green: #e91e63; /* Breast cancer awareness hot pink */
    --hover-green: #c2185b;
    background-color: #fff5f8;
}

body.theme-octobre_rose .banner {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(233, 30, 99, 0.95) 90%, rgba(233, 30, 99, 1) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    border-bottom-color: #fff5f8;
}

body.theme-octobre_rose .promotions-section {
    background-color: #fce4ec;
    background-image: radial-gradient(#f8bbd0 1px, transparent 1px);
}

body.theme-octobre_rose .location-section, body.theme-octobre_rose .nous {
    background-color: #fce4ec;
}

body.theme-octobre_rose .hours-container::before {
    background-color: #f06292;
}

body.theme-octobre_rose .hours-table td:first-child {
    color: #e91e63;
}

body.theme-octobre_rose .pharmacy-photo-section {
    background-color: #f06292;
}

body.theme-octobre_rose .pharmacy-photo-section .section-title {
    color: #f06292;
}

body.theme-octobre_rose .presentation-content,
body.theme-octobre_rose .presentation-images,
body.theme-octobre_rose .brands-section {
    background-color: #e91e63;
}

body.theme-octobre_rose .presentation-content h2 {
    color: #e91e63;
}

/* Pink ribbon / heart drift keyframes */
@keyframes rose-drift {
    0% {
        top: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 105%;
        transform: translateX(60px) rotate(270deg);
        opacity: 0;
    }
}

.rose-item {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    animation: rose-drift linear infinite;
}

/* ==========================================
   RESPONSIVE DESIGN & MOBILE INTERACTIVITY
   ========================================== */

/* Brand & Header Layout Adjustments */
.header-brand-container {
    display: flex;
    align-items: center;
}

.header-brand-title {
    font-family: var(--title-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-brand-title:hover {
    color: var(--hover-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-green);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary-green);
}

.desktop-only-join {
    display: flex;
}

.mobile-only-join {
    display: none;
}

/* Base tablet/mobile breakpoint for main navigation (992px) */
@media (max-width: 992px) {
    .main-header {
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-only-join {
        display: none;
    }
    
    .mobile-only-join {
        display: flex;
        margin-top: 1.5rem;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 2rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #f1f5f9;
        box-sizing: border-box;
    }
    
    .nav-item::before {
        display: none !important;
    }
    
    .nav-item:hover,
    .nav-item:focus {
        color: var(--primary-green) !important;
        background-color: #f8fafc;
        border-radius: 6px;
    }
    
    .home-icon {
        display: none !important;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Mobile & general small screens overrides (768px) */
@media (max-width: 768px) {
    /* Banner/Hero section */
    .banner {
        height: auto;
        min-height: 350px;
        padding: 3rem 0;
        background-image: linear-gradient(to bottom, rgba(158, 212, 120, 0.95) 0%, rgba(158, 212, 120, 0.8) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
        border-bottom-width: 8px;
    }
    
    .banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .pharmacy-info {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .pharmacy-logo {
        width: 65px;
        height: 65px;
    }
    
    .pharmacy-name span {
        font-size: 1.25rem;
        padding: 4px 10px;
    }
    
    .pharmacy-name span:last-child {
        font-size: 0.95rem;
        margin-top: -3px;
    }

    .pharmacy-weather {
        margin-left: 0;
        align-items: center;
    }

    
    .slider-container {
        margin-top: 15px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .slide-title {
        font-size: 1.25rem;
        padding: 4px 10px;
        margin-bottom: 0.8rem;
    }
    
    .slide-text {
        font-size: 0.95rem;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .slider-controls {
        justify-content: center;
    }
    
    /* Promotions and Carousels */
    .carousel-wrapper {
        padding: 0 20px;
    }
    
    .products-carousel {
        gap: 15px;
        padding: 15px 0;
    }
    
    .product-card {
        flex: 0 0 240px;
    }
    
    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: -8px;
    }
    
    .carousel-btn.next {
        right: -8px;
    }
    
    /* Category/Product Pages */
    .page-container {
        padding: 1.5rem 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 6px 16px;
    }
    
    .page-title::after {
        display: none !important; /* Hide overlay image on small screens to prevent title overlap */
    }
    
    .products-grid {
        padding: 1rem 0;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 15px;
    }
    
    /* Univers Presentation Blocks */
    .univers-presentation {
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .presentation-content {
        padding: 1.5rem;
    }
    
    .presentation-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .presentation-images {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .presentation-images img,
    .presentation-images.grid-2 img:nth-child(1),
    .presentation-images.grid-2 img:nth-child(2),
    .presentation-images img.vitrine,
    .presentation-images img.local {
        width: 100% !important;
        height: auto !important;
        max-height: 240px;
    }
    
    .presentation-para-image {
        height: 180px;
        min-height: 180px;
    }
    
    /* Brands Section */
    .brands-section {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .brands-section h2 {
        font-size: 1.3rem;
    }
    
    .brands-flex {
        gap: 10px;
        margin-top: 1.2rem;
    }
    
    .brands-flex img {
        max-height: 45px;
    }
}

/* Extra small mobile screens (480px) */
@media (max-width: 480px) {
    .header-brand-title {
        font-size: 1.15rem;
    }
    
    .main-header {
        padding: 0.8rem 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    /* Location details and hours table */
    .col-header h3 {
        font-size: 1.25rem;
    }
    
    .hex-icon {
        width: 40px;
        height: 40px;
    }
    
    .hours-container {
        padding: 1rem;
    }
    
    .hours-table th, 
    .hours-table td {
        padding: 8px 4px;
        font-size: 0.8rem;
    }
    
    .address-box {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Form grids stacking */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-container {
        padding: 1rem 0.5rem;
    }
    
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}

/* --- PHARMACY PHOTO CAROUSEL --- */
.photo-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Keep buttons static on the sides on desktop */
.photo-carousel .carousel-btn {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.photo-carousel .carousel-btn:hover {
    background-color: var(--primary-green);
    color: white;
}

.photo-carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 15px 0;
}

.photo-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

/* Default on Desktop (>= 1200px): 4 photos/products visible */
.photo-carousel-track .photo-card,
.photo-carousel-track .product-card {
    flex: 0 0 calc(25% - 15px) !important;
    min-width: calc(25% - 15px) !important;
    transition: transform 0.3s ease;
}

.photo-carousel-track .photo-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.photo-carousel-track .photo-card:hover,
.photo-carousel-track .product-card:hover {
    transform: scale(1.03);
}

.photo-carousel-track .pharmacy-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-sizing: border-box;
}

/* Large tablets & small desktops (992px to 1199px): 3 photos/products visible */
@media (max-width: 1199px) {
    .photo-carousel-track .photo-card,
    .photo-carousel-track .product-card {
        flex: 0 0 calc(33.333% - 13.333px) !important;
        min-width: calc(33.333% - 13.333px) !important;
    }
    
    .photo-carousel-track .pharmacy-photo {
        height: 260px;
    }
}

/* Tablets (768px to 991px): 2 photos/products visible */
@media (max-width: 991px) {
    .photo-carousel-track .photo-card,
    .photo-carousel-track .product-card {
        flex: 0 0 calc(50% - 10px) !important;
        min-width: calc(50% - 10px) !important;
    }
    
    .photo-carousel-track .pharmacy-photo {
        height: 240px;
    }
}

/* Mobile & Small screens (up to 767px): 1 photo/product visible & overlay buttons */
@media (max-width: 767px) {
    .photo-carousel {
        display: block !important;
        padding: 0 45px !important;
    }
    
    .photo-carousel .carousel-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10;
    }
    
    .photo-carousel .carousel-btn.prev {
        left: 0 !important;
    }
    
    .photo-carousel .carousel-btn.next {
        right: 0 !important;
    }
    
    .photo-carousel-track .photo-card,
    .photo-carousel-track .product-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
    
    .photo-carousel-track .pharmacy-photo {
        height: 220px;
        border-width: 4px;
    }
}

/* Mobile seasonal theme background-image gradient overrides */
@media (max-width: 768px) {
    body.theme-hiver .banner {
        background-image: linear-gradient(to bottom, rgba(58, 134, 200, 0.95) 0%, rgba(58, 134, 200, 0.8) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    }
    
    body.theme-paques .banner {
        background-image: linear-gradient(to bottom, rgba(229, 182, 60, 0.95) 0%, rgba(229, 182, 60, 0.8) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    }
    
    body.theme-printemps .banner {
        background-image: linear-gradient(to bottom, rgba(226, 117, 152, 0.95) 0%, rgba(226, 117, 152, 0.8) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    }
    
    body.theme-ete .banner {
        background-image: linear-gradient(to bottom, rgba(230, 126, 34, 0.95) 0%, rgba(230, 126, 34, 0.8) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    }
    
    body.theme-octobre_rose .banner {
        background-image: linear-gradient(to bottom, rgba(233, 30, 99, 0.95) 0%, rgba(233, 30, 99, 0.8) 100%), url("../images/header_pharma_plantes-4PtI4Xy.webp");
    }
}

/* Homepage Teleconsultation Promo Banner */
.teleconsultation-banner-home {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: var(--primary-green);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: background-color 0.4s ease;
}

.teleconsultation-banner-home::before {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    content: "";
    background: url("../images/hexagone-nous-S12p1KC.png") no-repeat center;
    background-size: contain;
    opacity: 0.15;
    filter: invert(1);
    pointer-events: none;
    z-index: 1;
}

.tele-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.tele-banner-text {
    flex: 1.3;
}

.tele-banner-image {
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tele-banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    max-height: 280px;
    background-color: white;
    padding: 10px;
    border: 4px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.tele-banner-image img:hover {
    transform: scale(1.03);
}

.tele-badge {
    background-color: white;
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: color 0.4s ease;
}

.tele-title {
    font-family: 'Righteous', sans-serif;
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tele-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    color: rgba(255,255,255,0.95);
}

.tele-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.tele-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tele-btn-white {
    background-color: white;
    color: var(--primary-green);
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.4s ease;
    display: inline-block;
    text-decoration: none;
}

.tele-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.tele-btn-trans {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.tele-btn-trans:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .tele-banner-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .tele-banner-text {
        text-align: center;
    }
    
    .tele-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .tele-buttons {
        justify-content: center;
    }
    
    .teleconsultation-banner-home {
        margin: 3rem 1.5rem;
        padding: 2.5rem 1.5rem;
    }
}
