/* Mobile Navigation Styles */
@media screen and (max-width: 991px) {
    /* NAVBAR */
    .topnav {
        padding: 15px 20px;
        width: calc(100% - 40px);
    }

    .nav-container {
        position: relative;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #FFFBF5 0%, #FFF5E6 100%);
        border: 2px solid #000;
        border-radius: 15px;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 
            0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -2px rgba(0, 0, 0, 0.05);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .nav-actions {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .button-buy {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* HERO */
    /* HERO */
    .hero {
        min-height: 80vh;
        padding: 140px 15px 80px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        min-width: 100px;
        padding: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-social-media {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-social-media {
        width: 50%;
        margin-bottom: 70px;
    }
}
  
@media only screen and (max-width: 767px) {
    .topnav {
        padding: 10px 15px;
    }
    
    .logo-text {
        font-size: 1rem;
    }

    .hero {
        min-height: 70vh;
        padding: 120px 10px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .hero-social-media {
        padding: 10px 15px;
        gap: 10px;
    }

    .social-item {
        width: 40px;
        height: 40px;
    }

    .social-item img {
        width: 20px;
        height: 20px;
    }
    
    .floating-social-media {
        width: 80%;
        margin-bottom: 10px;
    }
}

