/* style.css pour Manhood Plus */
.hero-container {
    background: linear-gradient(135deg, #C41E3A 0%, #971B2F 100%);
}
.action-btn {
    animation: pulse-effect 2s infinite;
}
@keyframes pulse-effect {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Navigation améliorée */
.menu-item {
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #C41E3A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item:hover::after {
    width: 70%;
}

/* Styles popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
    animation: modal-bg-pulse 3s infinite;
}

@keyframes modal-bg-pulse {
    0% { background-color: rgba(0, 0, 0, 0.85); }
    50% { background-color: rgba(196, 30, 58, 0.9); }
    100% { background-color: rgba(0, 0, 0, 0.85); }
}

.modal-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.visible .modal-content {
    opacity: 1;
    transform: translateY(0);
}

.exit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.exit-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.exit-modal {
    transform: scale(0.95);
    transition: transform 0.3s;
}

.exit-modal-overlay.visible .exit-modal {
    transform: scale(1);
}

.alert-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    z-index: 100;
}

.alert-notification.visible {
    transform: translateY(0);
    opacity: 1;
}

.mini-basket {
    position: fixed;
    top: 65px;
    right: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 99;
    max-width: 240px;
    background-color: white;
    border: 1px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mini-basket.visible {
    opacity: 1;
    transform: translateY(0);
}

.urgency-badge {
    position: fixed;
    bottom: 100px;
    right: 20px;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 0.5s, opacity 0.5s;
    z-index: 98;
}

.urgency-badge.visible {
    transform: translateX(0);
    opacity: 1;
}

.discount-tag {
    position: absolute;
    top: 25px;
    right: -60px;
    transform: rotate(45deg);
    z-index: 5;
    width: 200px;
    text-align: center;
    padding: 5px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.shake-animation {
    animation: shake-effect 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake-effect {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(233, 233, 233, 0) 0,
        rgba(233, 233, 233, 0.2) 20%,
        rgba(233, 233, 233, 0.5) 60%,
        rgba(233, 233, 233, 0)
    );
    animation: shine-animation 2s infinite;
}

@keyframes shine-animation {
    100% {
        transform: translateX(100%);
    }
}

/* Optimisation mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .discount-tag {
        top: 20px;
        right: -40px;
        font-size: 0.8rem;
        padding: 2px 25px;
    }
    
    .alert-notification {
        width: 85%;
        max-width: 300px;
        left: 10px;
    }
    
    .mini-basket {
        max-width: 270px;
        font-size: 0.9rem;
        right: 10px;
        top: 55px;
        padding: 8px 12px;
    }
    
    .urgency-badge {
        max-width: 210px;
        font-size: 0.9rem;
        bottom: 70px;
        padding: 8px 12px;
    }
    
    .nav-action-btn {
        margin-left: auto;
        z-index: 50;
        position: relative;
    }
    
    .nav-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
}

/* Bouton CTA popup */
.popup-action-btn {
    background: linear-gradient(to right, #C41E3A, #971B2F);
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.popup-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Paiement secured section styling */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.payment-methods img {
    max-width: 300px;
    height: auto;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 50px;
    margin: 0 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.security-badge svg {
    margin-right: 8px;
}