.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: transparent;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.75rem 3rem;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--dark-brown);
    text-decoration: none;
    flex: 0 0 auto;
}

.nav-logo-image {
    display: block;
    width: 60px;
    height: auto;
    max-width: none;
    min-width: 60px;
    flex: 0 0 auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-image {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    padding: 0.25rem 0;
    color: var(--dark-brown);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.mobile-menu a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    color: var(--text-light);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.nav-cart {
    position: relative;
    color: var(--dark-brown);
    transition: color 0.3s ease;
}

.nav-cart .fi {
    font-size: 1.35rem;
}

.nav-cart:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    background: none;
    padding: 5px;
    cursor: pointer;
    color: var(--dark-brown);
}

.mobile-toggle .fi {
    font-size: 1.6rem;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    background: none;
    color: var(--dark-brown);
    cursor: pointer;
}

.mobile-close .fi {
    font-size: 1.4rem;
}

.footer {
    margin-top: auto;
    background: #1a1210;
    padding: 3.5rem 3rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-content {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-divider {
    width: 60px;
    height: 1px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-attribution {
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-attribution a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.footer-social a .fi {
    font-size: 1rem;
}

.footer-social a:hover {
    border-color: var(--accent);
    background: rgba(196, 149, 106, 0.1);
    color: var(--accent);
}

@media (max-width: 768px) {
    .navbar,
    .navbar.scrolled {
        padding: 1rem 1.5rem;
    }

    .nav-links,
    .nav-contact {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
