.brand-logo--header .brand-logo__icon,
.brand-logo--footer .brand-logo__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(232, 89, 12, .25);
  flex-shrink: 0;
}
.brand-logo__image {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(220px, 42vw);
  object-fit: contain;
  background: transparent;
}
.brand-logo--compact .brand-logo__image { height: 40px; max-width: min(180px, 38vw); }
.brand-logo--footer .brand-logo__image { height: 44px; max-width: 200px; }
.brand-logo--about .brand-logo__image { height: auto; width: min(280px, 100%); max-width: 100%; }

/* ─── Category Mega Nav ─── */
.category-nav {
    position: relative;
    border-top: 1px solid var(--border-light);
    background: var(--surface);
    z-index: 190;
}

.category-nav-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 52px;
}

.mega-wrap {
    position: relative;
    flex-shrink: 0;
}

.mega-trigger {
    display: flex;
    align-items: center;
    gap: .55rem;
    height: 100%;
    padding: 0 1.15rem;
    border: none;
    border-left: 1px solid var(--border-light);
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.mega-trigger i.bi-list {
    font-size: 1.15rem;
    color: var(--accent);
}

.mega-trigger:hover,
.mega-trigger.is-open {
    background: #fff7f3;
    color: var(--accent);
}

.category-nav-links {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav-links::-webkit-scrollbar { display: none; }

.category-nav-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: 0 1rem;
    color: var(--text);
    font-size: .84rem;
    font-weight: 500;
    white-space: nowrap;
    border-left: 1px solid var(--border-light);
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.category-nav-link:hover {
    color: var(--accent);
    background: #fffaf7;
}

.category-nav-link i { font-size: 1rem; color: var(--text-muted); }
.category-nav-link:hover i { color: var(--accent); }

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--danger);
    margin-right: -.15rem;
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: auto;
    min-width: 1200px;
    max-width: min(1320px, calc(100vw - 1.5rem));
    z-index: 200;
    padding-top: .35rem;
}

.mega-menu-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 440px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mega-sidebar {
    background: #fafafa;
    border-left: 1px solid var(--border-light);
    padding: .5rem 0;
    overflow-y: auto;
}

.mega-sidebar-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: 100%;
    padding: .85rem 1rem;
    border: none;
    border-right: 3px solid transparent;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: .88rem;
    font-weight: 500;
    text-align: right;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.mega-sidebar-item:hover,
.mega-sidebar-item.is-active {
    background: var(--surface);
    color: var(--accent);
    border-right-color: var(--accent);
}

.mega-sidebar-icon {
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.mega-sidebar-item.is-active .mega-sidebar-icon,
.mega-sidebar-item:hover .mega-sidebar-icon { color: var(--accent); }

.mega-sidebar-label { flex: 1; }

.mega-sidebar-arrow {
    font-size: .75rem;
    color: var(--text-muted);
    opacity: .7;
}

.mega-content {
    position: relative;
    padding: 1.35rem 1.5rem 1.5rem;
    overflow: visible;
    min-width: 0;
}

.mega-panel {
    display: none;
    animation: fadeIn .2s ease;
    min-width: 0;
}

.mega-panel.is-active { display: block; }

.mega-panel-all {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--accent);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.mega-panel-all:hover { color: var(--accent-dark); }

.mega-panel-subtitle {
    color: var(--text-muted);
    font-size: .82rem;
    margin-bottom: 1.1rem;
}

.mega-subcats {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);
    grid-auto-columns: minmax(240px, 1fr);
    gap: .45rem .9rem;
    align-content: start;
    width: 100%;
}

.mega-subcat-link {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: .5rem .9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.mega-subcat-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #fff7f3;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Messages ─── */
.messages-wrap { padding: 1rem 0 0; }

.alert {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: .5rem;
    font-size: .9rem;
    animation: slideDown .3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success { background: var(--success-soft); color: #065f46; }
.alert-danger, .alert-error { background: var(--danger-soft); color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }
.alert-info { background: #dbeafe; color: #1e40af; }

/* ─── Breadcrumb ─── */
.breadcrumb {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: .75rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    list-style: none;
    font-size: .85rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-right: .5rem;
    color: var(--text-muted);
}

.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .active { color: var(--text); font-weight: 600; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
.page-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fffdfb 0%, #faf6f1 45%, #f3ede6 100%);
    color: var(--text);
    padding: 3.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-banner--compact {
    padding: 2.25rem 0;
}

.page-banner-scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-banner-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
}

.page-banner-glow--warm {
    width: 280px;
    height: 280px;
    top: -80px;
    left: 8%;
    background: rgba(234, 88, 12, .14);
}

.page-banner-glow--cool {
    width: 240px;
    height: 240px;
    bottom: -70px;
    right: 10%;
    background: rgba(148, 163, 184, .18);
}

.page-banner-float {
    position: absolute;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: rgba(120, 113, 108, .1);
    animation: bannerFloat 8s ease-in-out infinite;
}

.page-banner-float--1 { top: 12%; right: 6%; animation-delay: 0s; }
.page-banner-float--2 { top: 18%; left: 10%; animation-delay: -1.5s; }
.page-banner-float--3 { bottom: 14%; right: 18%; animation-delay: -3s; }
.page-banner-float--4 { bottom: 20%; left: 6%; animation-delay: -2s; }
.page-banner-float--5 { top: 28%; left: 28%; animation-delay: -4s; font-size: clamp(2rem, 4vw, 3.5rem); }
.page-banner-float--6 { top: 8%; right: 32%; animation-delay: -5s; font-size: clamp(2rem, 4vw, 3.2rem); }

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner-content--right {
    text-align: right;
}

.page-banner h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
    color: var(--text);
}

.page-banner--compact h1 {
    font-size: 1.5rem;
}

.page-banner h1 i {
    color: var(--accent);
    margin-left: .35rem;
}

.page-banner p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.page-banner-content--right p {
    margin: 0;
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

/* ─── Layout Sidebar ─── */
.page-content { padding: 2.5rem 0 4rem; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.sidebar {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.sidebar h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--primary-soft);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sidebar h3 i { color: var(--primary); }

.filter-list { list-style: none; margin-bottom: 1.75rem; }
.filter-list li { margin-bottom: .25rem; }
.site-footer,
.footer {
    margin-top: auto;
    color: #cbd5e1;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(232, 89, 12, .18) 0%, transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(59, 130, 246, .12) 0%, transparent 30%);
    pointer-events: none;
}

.footer-features {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem 2.5rem;
    padding: 1.35rem 0;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .5rem .75rem;
}

.footer-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 89, 12, .2), rgba(232, 89, 12, .08));
    border: 1px solid rgba(232, 89, 12, .25);
    color: #fdba74;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-feature strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    margin-bottom: .1rem;
}

.footer-feature span {
    font-size: .76rem;
    color: #94a3b8;
}

.footer-newsletter {
    position: relative;
    z-index: 1;
    padding: 2.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(232, 89, 12, .16), rgba(30, 41, 59, .4));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 2rem 2.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.footer-newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .76rem;
    color: #fdba74;
    margin-bottom: .75rem;
}

.footer-newsletter-copy h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: .45rem;
    line-height: 1.5;
}

.footer-newsletter-copy p {
    color: #94a3b8;
    font-size: .88rem;
    max-width: 460px;
    line-height: 1.8;
}

.footer-newsletter-form {
    display: flex;
    gap: .65rem;
    flex: 1;
    min-width: 280px;
    max-width: 460px;
}

.footer-newsletter-form input {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(15, 23, 42, .65);
    color: #fff;
    border-radius: 999px;
    padding: .85rem 1.2rem;
    font-family: inherit;
    font-size: .9rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.footer-newsletter-form input::placeholder { color: #64748b; }

.footer-newsletter-form input:focus {
    border-color: rgba(232, 89, 12, .5);
    box-shadow: 0 0 0 3px rgba(232, 89, 12, .15);
}

.footer-newsletter-form .btn {
    border-radius: 999px;
    white-space: nowrap;
    padding-inline: 1.35rem;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2.5rem;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand-logo:hover { color: #fff; }

.footer-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(232, 89, 12, .3);
}

.footer-brand-logo strong {
.footer-features {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem 2.5rem;
    padding: 1.35rem 0;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .5rem .75rem;
}

.footer-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 89, 12, .2), rgba(232, 89, 12, .08));
    border: 1px solid rgba(232, 89, 12, .25);
    color: #fdba74;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-feature strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    margin-bottom: .1rem;
}

.footer-feature span {
    font-size: .76rem;
    color: #94a3b8;
}

.footer-newsletter {
    position: relative;
    z-index: 1;
    padding: 2.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(232, 89, 12, .16), rgba(30, 41, 59, .4));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 2rem 2.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.footer-newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .76rem;
    color: #fdba74;
    margin-bottom: .75rem;
}

.footer-newsletter-copy h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
