/* ATP - Slinky Menu */
.atp-slinky-menu {
    overflow: hidden;
    transform: translateZ(0);
}
.atp-slinky-menu > ul {
    left: 0;
    position: relative;
    transform: translateZ(0);
    padding: 0;
}
.atp-slinky-menu ul,
.atp-slinky-menu li {
    list-style: none;
    margin: 0 !important;
    padding: 0;
}
.atp-slinky-menu ul {
    width: 100%;
}
.atp-slinky-menu a {
    align-items: center;
    display: flex;
    padding: 12px 16px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    line-height: 1.4;
    gap: 10px;
}
.atp-slinky-menu a span {
    flex: 1;
    line-height: 1.4;
}
.atp-slinky-menu li ul {
    display: none;
    left: 100%;
    position: absolute;
    top: 0;
    padding: 0;
}
/* Icon */
.atp-sm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Arrow indicator → */
.atp-slinky-menu .next::after {
    content: '\2192';
    transition: 200ms;
    line-height: 1.4;
    margin-left: auto;
    flex-shrink: 0;
    font-weight: 600;
}
.atp-slinky-menu .next:hover::after {
    transform: translateX(3px);
}
/* Back ← */
.atp-slinky-menu .header {
    display: flex;
    align-items: center;
}
.atp-slinky-menu .header a.back {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none !important;
    flex-shrink: 0;
}
.atp-slinky-menu .header a.back::before {
    content: '\2192';
    transform: scaleX(-1);
    line-height: 1.4;
    font-weight: 600;
    transition: 200ms;
}
.atp-slinky-menu .header a.back:hover::before {
    transform: scaleX(-1) translateX(3px);
}
.atp-slinky-menu .header .title {
    flex: 1;
    line-height: 1.4;
    margin: 0;
    padding: 12px 16px 12px 0;
    font-weight: 600;
    font-size: 14px;
    order: 1;
}
/* Border between items */
.atp-slinky-menu li {
    border-bottom: 1px solid #f0f0f0;
}
.atp-slinky-menu li:last-child {
    border-bottom: none;
}
/* Header border */
.atp-slinky-menu .header {
    border-bottom: 2px solid #f0f0f0;
}

/* Hide menu icons in slinky menu */
.atp-slinky-menu .atp-sm-icon {
    display: none !important;
}
