/* Mobile Navigation Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        background: rgba(255, 128, 191, 0.95);
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 128, 191, 0.95);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.2em;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo-container {
        z-index: 1001;
    }

    .logo-text {
        font-size: 1.6em;
    }

    .hero-content {
        padding-top: 15vh;
    }

    .hero-content h2.tagline {
        font-size: 2.2em;
        padding: 0 20px;
    }

    .hero-content p {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .hero-content button.shop-now {
        font-size: 1em;
        padding: 10px 25px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h2.tagline {
        font-size: 1.8em;
    }

    .logo-text {
        font-size: 1.4em;
    }

    .loading-logo {
        width: 100px;
        height: 100px;
    }
} 