:root {
    --primary: #000000;
    --accent: #2563eb;
    --accent-soft: #eff6ff;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --border: #e5e7eb;
    --bg-light: #fcfcfc;
    --radius-lg: 32px;
    --radius-md: 20px;
    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

li {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.top-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
}

.top-bar a {
    color: var(--accent);
    margin-left: 8px;
}

.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: #000;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

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

.login-btn {
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: #000;
}

.cart-pill {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.cart-pill .count {
    background: var(--accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}


.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.menu-links a {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-burger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #000;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-black {
    background: #000;
    color: #fff;
}

.btn-black:hover {
    opacity: 0.8;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: #000;
}

.btn-outline:hover {
    background: #fff;
    border-color: #000;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.breadcrumbs {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: #000;
}

.page-header p {
    font-size: 17px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.main-footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 100px 0 50px;
    margin-top: 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.f-about .logo {
    margin-bottom: 25px;
    display: inline-block;
    font-size: 28px;
}

.f-about p {
    color: var(--muted);
    max-width: 320px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.f-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.f-socials a {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: var(--text);
    transition: var(--transition);
}

.f-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg);
}

.f-links h5 {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.f-links a {
    display: block;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

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

.f-links p {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.f-bottom {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .floating-burger { display: flex; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (min-width: 1025px) {
    .mobile-sidebar, .sidebar-overlay, .floating-burger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .f-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

body.menu-open {
    overflow: hidden;
}

.search-box { display: none !important; }
