/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #010080;
    --primary-yellow: #c0a533;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section Slider */
.hero-section {
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.hero-section .carousel {
    height: 100%;
}

.hero-section .carousel-inner {
    height: 100%;
}

.hero-section .carousel-item {
    height: 92vh;
}

.hero-section .min-vh-100 {
    min-height: 92vh !important;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 0, 128, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-yellow);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    gap: 10px;
}

.carousel-indicators button {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    border-radius: 50% !important;
    background-color: var(--white) !important;
    opacity: 0.5;
    border: 2px solid var(--white) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    flex: none !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    transform: none !important;
}

.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-yellow);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 165, 51, 0.3);
}

/* Categories Section */
.categories-section {
    background-color: var(--bg-light);
}

/* Nouveautés Section */
.nouveautes-section {
    background-color: var(--white);
}

.section-title-wrapper {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-wrapper.text-center {
    align-items: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: block;
    padding: 0 20px;
    width: fit-content;
    text-align: center;
}

.section-title.text-start {
    text-align: left;
    align-self: flex-start;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    align-self: center;
}

.section-title-wrapper:not(.text-center) {
    display: flex;
    flex-direction: column;
}

.section-title-wrapper:not(.text-center) .section-title {
    align-self: flex-start;
}

.histoire-wrapper {
    position: relative;
    text-align: center;
}

.histoire-wrapper .section-title {
    display: inline-block;
    width: auto;
    text-align: left;
    position: relative;
}

.histoire-wrapper .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -19px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
    box-shadow: -20px 0 0 0 var(--primary-yellow), 20px 0 0 0 var(--primary-yellow);
}

.histoire-wrapper .section-title::before {
    content: '';
    position: absolute;
    left: calc(50% - 44px);
    bottom: -23px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    z-index: 1;
}

.histoire-underline {
    display: none;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    transform: translateY(-50%);
}

.title-underline::before {
    left: -20px;
}

.title-underline::after {
    right: -20px;
}

.category-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.category-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Large Category Card (Optique) */
.category-card-large {
    padding: 60px 40px;
    min-height: 500px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
}

.category-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(1, 0, 128, 0.3);
}

.category-card-large h3 {
    color: var(--white) !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: block;
}

.category-card-large p {
    color: var(--white) !important;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.category-card-large .category-link {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 600;
}

.category-card-large .category-link:hover {
    color: var(--white);
}

.category-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.category-icon-large {
    font-size: 6rem;
    color: var(--primary-yellow);
    margin-bottom: 30px;
    opacity: 0.9;
}

.category-card:not(.category-card-large) h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card:not(.category-card-large) p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.category-link {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    transform: translateX(5px);
}

/* Products Section */
.products-section {
    background-color: var(--white);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-filter {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.btn-add-cart {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-add-cart i {
    font-size: 1.2rem;
}

.btn-add-cart:hover {
    background-color: var(--primary-yellow);
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    background-color: var(--bg-light);
}

/* Notre Histoire Section */
.histoire-section {
    background-color: var(--white);
}

.histoire-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.histoire-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.histoire-image {
    padding: 20px;
}

.histoire-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-light);
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary-yellow);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-link:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--primary-blue);
    color: var(--white);
}

.newsletter-content {
    padding: 40px 20px;
}

.newsletter-icon {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    height: 50px;
    font-size: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 0 20px;
    flex: 1;
    min-width: 0;
}

.newsletter-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(192, 165, 51, 0.25);
}

.btn-newsletter {
    height: 50px;
    background-color: var(--primary-yellow);
    color: var(--white);
    border: none;
    padding: 0 30px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: scale(1.05);
}

.newsletter-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    margin-bottom: 0;
}

.feature-item {
    padding: 30px 20px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-section .carousel-item {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-section .min-vh-100 {
        min-height: 90vh !important;
    }
    
    .hero-slide {
        padding: 20px 0;
    }
    
    .hero-section .container {
        padding: 0 20px;
    }
    
    .hero-section .row {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-section .col-12.text-center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section .col-12.text-center .hero-title,
    .hero-section .col-12.text-center .hero-subtitle,
    .hero-section .col-12.text-center .hero-description {
        text-align: center;
    }
    
    .hero-overlay {
        background-color: rgba(1, 0, 128, 0.6);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-section .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }
    
    .carousel-control-prev {
        display: none !important;
    }
    
    .carousel-control-next {
        display: none !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .carousel-indicators button {
        width: 12px !important;
        height: 12px !important;
        min-width: 12px !important;
        min-height: 12px !important;
        max-width: 12px !important;
        max-height: 12px !important;
    }
    
    .carousel-indicators button.active {
        width: 12px !important;
        height: 12px !important;
        min-width: 12px !important;
        min-height: 12px !important;
        max-width: 12px !important;
        max-height: 12px !important;
    }
    
    /* Categories Section Mobile */
    .category-card-large {
        padding: 40px 25px;
        min-height: 350px;
    }
    
    .category-card-large h3 {
        font-size: 2rem;
    }
    
    .category-card-large p {
        font-size: 1rem;
    }
    
    .category-icon-large {
        font-size: 4.5rem;
    }
    
    .category-card {
        min-height: 220px;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
    }
    
    .title-underline::before,
    .title-underline::after {
        width: 6px;
        height: 6px;
    }
    
    .title-underline::before {
        left: -15px;
    }
    
    .title-underline::after {
        right: -15px;
    }
    
    .filter-buttons {
        margin-top: 20px;
        width: 100%;
    }
    
    .btn-filter {
        flex: 1;
        min-width: calc(50% - 5px);
    }
    
    /* Histoire Section Mobile */
    .histoire-section .section-title-wrapper {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .histoire-section .histoire-wrapper {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .histoire-section .section-title {
        text-align: center !important;
        align-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .histoire-section .title-underline {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .histoire-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .histoire-image {
        padding: 10px;
        margin-top: 30px;
    }
    
    /* Blog Section Mobile */
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    /* Newsletter Section Mobile */
    .newsletter-icon {
        font-size: 3rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-input,
    .btn-newsletter {
        height: 65px !important;
        font-size: 1.15rem !important;
        padding: 0 25px !important;
    }
    
    .newsletter-section .input-group {
        flex-direction: column !important;
        display: flex !important;
        width: 100%;
        gap: 15px;
    }
    
    .newsletter-section .input-group .form-control {
        width: 100% !important;
        flex: 1 1 100% !important;
        margin-bottom: 0 !important;
        display: block !important;
    }
    
    .newsletter-input {
        border-radius: 5px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        display: block !important;
        font-size: 1.15rem !important;
        padding: 0 25px !important;
        height: 65px !important;
        line-height: 65px !important;
    }
    
    .btn-newsletter {
        border-radius: 5px !important;
        width: 100% !important;
        margin-top: 0 !important;
        flex: 1 1 100% !important;
        font-size: 1.15rem !important;
        padding: 0 30px !important;
        font-weight: 600 !important;
        height: 65px !important;
        line-height: 65px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-section .btn-primary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease-out;
}

/* Nouveautés Section Mobile - 2 products per row */
@media (max-width: 768px) {
    .nouveautes-section .col-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .nouveautes-section .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    /* Product Card Mobile Styles */
    .nouveautes-section .product-card {
        border-radius: 8px;
    }
    
    .nouveautes-section .product-info {
        padding: 12px;
    }
    
    .nouveautes-section .product-category {
        font-size: 0.7rem;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }
    
    .nouveautes-section .product-name {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .nouveautes-section .product-price {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
    
    .nouveautes-section .product-footer {
        margin-top: 8px;
    }
    
    .nouveautes-section .btn-add-cart {
        padding: 8px;
        min-width: 36px;
        height: 36px;
    }
    
    .nouveautes-section .btn-add-cart i {
        font-size: 0.9rem;
    }
    
    .nouveautes-section .product-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
        top: 8px;
        right: 8px;
    }
    
    /* Products Section Mobile - Same styles for popular products */
    .products-section .col-6 {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .products-section .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .products-section .product-card {
        border-radius: 8px;
    }
    
    .products-section .product-info {
        padding: 12px;
    }
    
    .products-section .product-category {
        font-size: 0.7rem;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }
    
    .products-section .product-name {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .products-section .product-price {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
    
    .products-section .product-footer {
        margin-top: 8px;
    }
    
    .products-section .btn-add-cart {
        padding: 8px;
        min-width: 36px;
        height: 36px;
    }
    
    .products-section .btn-add-cart i {
        font-size: 0.9rem;
    }
    
    .products-section .product-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
        top: 8px;
        right: 8px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2s ease-in-out infinite;
    overflow: visible;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 8px 30px rgba(37, 211, 102, 0.6),
        0 0 0 8px rgba(37, 211, 102, 0.1);
    text-decoration: none;
}

.whatsapp-icon {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappRipple 2s ease-out infinite;
    z-index: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-icon {
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        right: 70px;
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .whatsapp-pulse {
        display: none;
    }
}
