/* Overrides mobiles spécifiques à l’accueil pour aligner les boutons prix sur le style du menu */
@media (max-width: 768px) {
  .popular-pizzas .price-row {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .popular-pizzas .price-row .price {
    width: 100% !important;
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
  }
  .popular-pizzas .price-row .price:hover {
    background: #b8312a !important;
    transform: scale(1.05) !important;
  }
  .popular-pizzas .price-row .price[data-size="petite"]::after,
  .popular-pizzas .price-row .price[data-size="grande"]::after,
  .popular-pizzas .price-row .price[data-size="xl"]::after {
    display: block !important;
    font-size: 0.65rem !important;
    font-weight: 300 !important;
    opacity: 0.85 !important;
    margin-top: 3px !important;
    line-height: 1.2 !important;
    color: #fff !important;
    text-transform: none !important;
  }
}