/* responsive-navbar.css */
body .rnp-navbar {
    font-family: 'Inter', system-ui, sans-serif;
    background: #1e3a8a;
    color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    user-select: none;
}
body {
    padding-top: 56px;
}
body.admin-bar {
    padding-top: 88px;
}
.rnp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.rnp-logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #60a5fa;
    text-decoration: none;
}
.rnp-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    background: #3b82f6;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}
.rnp-menu.show {
    display: flex;
}
.rnp-menu li {
    border-top: 1px solid #60a5fa;
}
.rnp-menu li:first-child {
    border-top: none;
}
.rnp-menu a {
    color: #e0e7ff;
    padding: 12px 24px;
    display: block;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.rnp-basket-icon {
    display: inline-flex;
    margin-right: 5px;
}
.rnp-menu a:hover,
.rnp-menu a:focus {
    background-color: #60a5fa;
    color: #1e3a8a;
    outline: none;
}
.rnp-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
}
.rnp-toggle:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 3px;
}
.rnp-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #60a5fa;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.rnp-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.rnp-toggle.open span:nth-child(2) {
    opacity: 0;
}
.rnp-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media (min-width: 768px) {
    .rnp-toggle {
        display: none;
    }
    .rnp-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: transparent;
        height: auto;
        border-radius: 0;
    }
    .rnp-menu li {
        border: none;
    }
    .rnp-menu a {
        padding: 0 16px;
        line-height: 56px;
        color: #e0e7ff;
    }
    .rnp-menu a:hover,
    .rnp-menu a:focus {
        background: transparent;
        color: #60a5fa;
        box-shadow: inset 0 -3px 0 #60a5fa;
        outline: none;
    }
    .rnp-basket-icon {
        margin-right: 5px;
    }
}
/* User info styling */
.rnp-menu .user-info {
    padding: 12px 24px;
    color: #a5b4fc;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #60a5fa;
    user-select: text;
}
@media (min-width: 768px) {
    .rnp-menu .user-info {
        padding: 0 16px;
        margin-left: 16px;
        border-top: none;
        color: #a5b4fc;
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
}
