/* Salon Theme Custom Styles */

/* Header nav menu items */
header nav .menu-item {
    list-style: none;
}
header nav .menu-item a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}
header nav .menu-item a:hover {
    color: #e11d48;
}

/* Mobile menu items */
#mobile-menu .menu-item {
    list-style: none;
}
#mobile-menu .menu-item a {
    display: block;
    color: #4b5563;
    font-weight: 500;
}

/* Footer menu items */
footer .menu-item a {
    color: #9ca3af;
    transition: color 0.2s;
}
footer .menu-item a:hover {
    color: #fff;
}
footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 768px) {
    footer .footer-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }
    footer .footer-menu .menu-item {
        width: 50%;
    }
}
footer .footer-menu .menu-item {
    padding-bottom: 0.75rem;
}

/* Scrollbar hide for mobile slider */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Pagination */
.nav-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    transition: all 0.2s;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background-color: #e11d48;
    color: white;
    border-color: #e11d48;
}
.nav-links .prev,
.nav-links .next {
    width: auto;
    padding: 0 16px;
}

/* Line clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Lightbox: admin bar + sticky header üstüne tam ekran */
#salon-lightbox {
    z-index: 9999999 !important;
    margin-top: 0 !important;
    top: 0 !important;
}
body.admin-bar #salon-lightbox {
    position: fixed;
    top: 0 !important;
}

/* Smooth transitions */
* {
    scroll-behavior: smooth;
}

/* Hide admin bar for non-admins */
body.logged-in.admin-bar header.sticky {
    top: 32px;
}

/* Prose inside salon content */
.prose p {
    margin-bottom: 1rem;
}
.prose h2, .prose h3 {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.prose ul, .prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.prose li {
    margin-bottom: 0.25rem;
}
