/* ==========================================================================
   Mobile Home & Shared Responsive Styles
   ========================================================================== */

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-element {
        display: none;
    }

    .main-card {
        transform: none;
    }
}

@media (max-width: 600px) {
    .hero .title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .price-val {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    .product-details-container {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
}
