.product-nav-widget {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--cat-border);
    overflow: hidden;
}

.product-nav-container {
    display: flex;
    align-items: stretch;
}

.product-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--cat-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    gap: 12px;
}

.product-nav-link:hover:not(.disabled) {
    background: #f8fafc;
    color: var(--cat-primary);
}

.product-nav-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-nav-label {
    font-size: 0.8rem;
    color: var(--cat-text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.product-nav-title {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.product-nav-price {
    font-size: 0.85rem;
    color: var(--cat-primary);
    font-weight: 800;
    margin-top: 2px;
}

.product-nav-link.next { justify-content: flex-end; text-align: right; }
.product-nav-link.disabled {
    color: #cbd5e1;
    cursor: default;
    pointer-events: none;
}

.product-nav-divider {
    width: 1px;
    background: var(--cat-border);
}

.product-nav-link i {
    font-size: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
}

@media (max-width: 768px){
	.product-nav-widget { margin-bottom: 5px; }
}

@media (max-width: 576px) {
    .product-nav-title, .product-nav-price { display: none; }
    .product-nav-label { font-size: 0.85rem; font-weight: 600; color: inherit; margin: 0; }
    .product-nav-link { padding: 12px 20px; justify-content: center !important; }
}
