:root {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
    --accent: #39e6a3;
    --dark: #0b1418;
    --panel: rgba(15, 25, 30, 0.85);
    --text: #eaf7f4;
    --muted: #9bb3ae;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--dark);
}


/* TOP BAR */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    height: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    font-size: 13px;
    background: rgba(6, 13, 16, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.top-bar a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 16px;
    font-weight: 600;
}

.top-bar a:hover {
    color: var(--accent);
}

/* NAVBAR */
.navbar {
    position: absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    height: 70px;
    background: var(--panel);
    border-radius: 16px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.nav-link:hover {
    color: var(--accent);
    opacity: 1;
}

.home-icon {
    font-size: 18px;
}

.shop-btn {
    padding: 12px 26px;
    background: linear-gradient(135deg, #39e6a3, #2bbf89);
    border-radius: 14px;
    color: #052018;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 8px 30px rgba(57, 230, 163, 0.45);
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(57, 230, 163, 0.6);
}



/* FOOTER */
.site-footer {
    width: 100%;
    background: rgba(15, 25, 30, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
}

.site-footer .footer-links {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.site-footer .footer-links a:hover {
    color: var(--accent);
}