.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0e0e0e;
    z-index: 900;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--container-padding);
}

.menu-overlay.active {
    transform: translateY(0);
}

.menu-links {
    list-style: none;
}

.menu-links li {
    overflow: hidden;
    margin-bottom: 20px;
}

.menu-links a {
    display: block;
    font-family: 'Italiana', serif;
    font-size: 6rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    transition: all 0.5s;
    transform: translateY(100%);
}

.menu-overlay.active .menu-links a {
    transform: translateY(0);
    transition-delay: 0.3s;
}

.menu-links a:hover {
    color: #fff;
    -webkit-text-stroke: 0px;
    padding-left: 20px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: #111;
    z-index: 950;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(255,255,255,0.1);
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.cart-overlay.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cart-item img {
    width: 100px;
    height: 120px;
    object-fit: cover;
}

.close-cart {
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .menu-links a { font-size: 3rem; }
    .cart-overlay { width: 100%; }
}
