/* Standard CSS fixes first */

/* Remove blur from header to clear up top area */
.glass-header {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 30px 0;
}

/* Ensure Nav Items allow clicking through if transparent? No, links are clickable. */

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .glass-header {
        padding: 20px 0;
    }

    .nav-container {
        padding: 0 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo-en {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .logo-ar {
        font-size: 14px;
        margin-top: -2px;
    }

    /* Hide desktop nav links on mobile for simplicity, or stack them */
    .nav-left {
        display: none;
    }

    .nav-right {
        gap: 20px;
        display: flex;
        align-items: center;
    }

    .icon-link svg {
        width: 22px;
        height: 22px;
    }

    .hero-title {
        font-size: 60px;
        /* Smaller title */
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero {
        align-items: center;
        /* Center content vertically on mobile? or bottom? */
        justify-content: center;
        padding-bottom: 0;
    }

    .hero-image {
        object-position: center top;
        /* Focus on face */
    }

    .product-grid {
        grid-template-columns: 1fr;
        /* Stack products */
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        width: 100%;
    }
}