/* Header & Navigation */
header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.logo img {
    display: block;
    width: 182px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
}

.footer-logo img {
    width: min(220px, 100%);
    max-height: 110px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 20px;
    position: relative;
    padding: 5px;
    transition: var(--transition-fast);
}

.icon-btn:hover {
    color: var(--primary-color);
}

button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid rgba(216, 42, 98, 0.35);
    outline-offset: 3px;
}

a[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.55;
}

.icon-btn .badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    background-color: var(--bg-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 10px;
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Page Section Base */
.section {
    padding: 30px 0;
}

.section-bg {
    background-color: var(--bg-gray);
}

.section-title-wrapper {
    margin-bottom: 30px;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

