:root {
    --bg: #06070b;
    --panel: rgba(16, 18, 26, 0.72);
    --ink: #e4eaf2;
    --ink-strong: #ffffff;
    --line: rgba(255, 255, 255, 0.07);
    --dark: #0e1018;
    --muted: #8a9cb8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
}

header {
    background: rgba(6, 7, 11, 0.75); backdrop-filter: saturate(150%) blur(14px);
    color: #ffffff;
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0;
}

.logo-wrap img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    font-size: 14px;
    font-weight: 600;
}

nav a {
    text-decoration: none;
    color: #f5f5f5;
    padding: 10px 4px;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #ffffff;
    border-color: #ffffff;
}
nav a.active {
    color: #ffffff;
    border-color: #ffffff;
}

.nav-shop-link {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 0;
    padding: 6px 12px;
    line-height: 1;
}

.nav-shop-link:hover {
    border-bottom: 0;
    opacity: 0.85;
}

.nav-icons {
    display: flex;
    gap: 12px;
    font-size: 14px;
    opacity: 0.98;
    align-items: center;
    flex-shrink: 0;
}

.nav-contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    padding: 6px 8px;
}

.nav-contact-link:hover {
    opacity: 1;
}

.nav-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-icon:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.nav-menu-toggle {
    display: none;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.nav-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.nav-menu-panel {
    display: none;
}

.contact-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 24px 48px;
}

.contact-hero {
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-strong);
    margin-bottom: 8px;
}

.contact-hero p {
    font-size: 14px;
    color: var(--muted);
    max-width: 700px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.contact-card h2 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--ink-strong);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--ink-strong);
    letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--ink);
    background: rgba(14, 16, 24, 0.8);
}

.btn {
    border: 1px solid #3f3f3f;
    background: #3f3f3f;
    color: #ffffff;
    border-radius: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 10px 16px;
    cursor: pointer;
}

.info-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--muted);
}

.fb-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer { background: #06070b;
    color: #f1f1f1;
    padding: 28px 20px 18px;
    margin-top: 24px;
}

.site-footer .footer-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.site-footer .footer-col h3,
.site-footer .footer-col h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.site-footer .footer-col h3 {
    font-size: 16px;
}

.site-footer .footer-col h4 {
    font-size: 12px;
}

.site-footer .footer-col p {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.5;
    color: #b0bfd4;
}

.site-footer .footer-note {
    color: #7a8ca6;
}

.site-footer a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer a:hover {
    color: #d6d6d6;
}

.site-footer .footer-bottom {
    max-width: 1180px;
    margin: 14px auto 0;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 16px;
    font-size: 11px;
    color: #7a8ca6;
}

@media (max-width: 900px) {
    nav ul {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    header {
        padding: 12px 16px;
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        position: relative;
    }

    .logo-wrap {
        font-size: 15px;
        letter-spacing: 1px;
        flex: 1 1 auto;
        min-width: 0;
    }

    .logo-wrap img {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .logo-wrap span {
        display: inline !important;
        white-space: nowrap;
        font-size: 14px;
        letter-spacing: 1px;
    }

    nav,
    .nav-icons,
    .nav-login-btn-link,
    .nav-contact-link,
    .nav-account-link,
    .nav-order-link {
        display: none !important;
    }

    .nav-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nav-menu-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(260px, calc(100vw - 24px));
        display: grid;
        gap: 8px;
        padding: 12px;
        border-radius: 16px;
        background: rgba(10, 12, 18, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
        z-index: 20;
    }

    .nav-menu-panel a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .contact-page {
        padding: 18px 12px 36px;
    }

    .contact-hero {
        margin-bottom: 14px;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .contact-hero p {
        font-size: 12px;
        line-height: 1.55;
        max-width: none;
    }

    .contact-layout {
        gap: 12px;
    }

    .contact-card {
        padding: 14px;
        border-radius: 12px;
    }

    .contact-card h2 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .form-group {
        margin-bottom: 10px;
        gap: 5px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px;
        padding: 10px;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 110px;
    }

    .btn {
        width: 100%;
        min-height: 42px;
        font-size: 11px;
        border-radius: 10px;
    }

    .info-list {
        gap: 6px;
        font-size: 12px;
    }

    .fb-link {
        display: inline-flex;
        margin-top: 4px;
        font-size: 12px;
    }

    .site-footer .footer-wrap {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 12px;
    }

    .logo-wrap {
        gap: 8px;
    }

    .logo-wrap img {
        width: 44px;
        height: 44px;
    }

    .logo-wrap span {
        font-size: 12px;
        letter-spacing: 0.6px;
    }

    .nav-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .contact-page {
        padding: 14px 10px 30px;
    }

    .contact-card {
        padding: 12px;
    }

    .contact-card h2 {
        font-size: 12px;
    }
}


.nav-login-btn-link { display: inline-flex; align-items: center; justify-content: center; padding: 8px 16px; border: 1px solid rgba(230, 57, 70,0.5); border-radius: 10px; color: #ff6b6b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-login-btn-link:hover { background: var(--brand, #e63946); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.is-hidden {
    display: none !important;
}
