/* mobile-product-actions.css */
/* Affiche uniquement les boutons sur mobile */

.mobile-product-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9997;
    border-top: 1px solid #e5e7eb;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-product-actions.show {
    transform: translateY(0);
}

.actions-container {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

/* Bouton Ajouter au panier */
.add-to-cart-mobile {
    flex: 1;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.add-to-cart-mobile:active {
    transform: scale(0.98);
}

.add-to-cart-mobile i {
    font-size: 18px;
}

/* Bouton Cœur */
.wishlist-btn-mobile {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.wishlist-btn-mobile:active {
    transform: scale(0.95);
}

.wishlist-btn-mobile i {
    font-size: 22px;
    color: #6b7280;
}

/* Mode sombre */
[data-theme="dark"] .mobile-product-actions {
    background: #1f2937;
    border-top-color: #374151;
}

[data-theme="dark"] .wishlist-btn-mobile {
    background: #374151;
    border-color: #4b5563;
}

[data-theme="dark"] .wishlist-btn-mobile i {
    color: #9ca3af;
}

/* Afficher uniquement sur mobile/tablette */
@media (max-width: 1024px) {
    .mobile-product-actions {
        display: block;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-product-actions {
        padding: 10px 14px;
    }
    
    .actions-container {
        gap: 10px;
    }
    
    .add-to-cart-mobile {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .wishlist-btn-mobile {
        width: 52px;
        height: 52px;
    }
    
    .wishlist-btn-mobile i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-product-actions {
        padding: 8px 12px;
    }
    
    .add-to-cart-mobile {
        padding: 12px 14px;
        font-size: 14px;
        gap: 6px;
    }
    
    .add-to-cart-mobile i {
        font-size: 16px;
    }
    
    .wishlist-btn-mobile {
        width: 48px;
        height: 48px;
    }
    
    .wishlist-btn-mobile i {
        font-size: 18px;
    }
}