.fp-recommendations {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 14px 16px 10px;
    background: #fafafa;
}

.fp-recommendations-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 10px;
}

.fp-recommendations-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fp-rec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.fp-rec-item:hover {
    background: #f5f5f5;
    border-color: rgba(0,0,0,0.13);
}

.fp-rec-item:active {
    transform: scale(0.98);
}

.fp-rec-image {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 7px;
    overflow: hidden;
    background: #f0f0f0;
}

.fp-rec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-rec-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fp-rec-name {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1a1a1a;
}

.fp-rec-price {
    font-size: 12px;
    color: #666;
}

.fp-rec-price del {
    color: #aaa;
    margin-right: 3px;
}

.fp-rec-price ins {
    text-decoration: none;
}

.fp-rec-action {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: background 0.15s, transform 0.1s;
}

.fp-rec-item:hover .fp-rec-action {
    background: #333;
}

.fp-rec-item:active .fp-rec-action {
    transform: scale(0.88);
}

.fp-rec-skeleton {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
}

.fp-rec-skeleton-img,
.fp-rec-skeleton-line {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: fp-shimmer 1.2s infinite;
    border-radius: 6px;
}

.fp-rec-skeleton-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 7px;
}

.fp-rec-skeleton-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fp-rec-skeleton-line {
    height: 10px;
}

.fp-rec-skeleton-line.short {
    width: 55%;
}

@keyframes fp-shimmer {
    0%   { background-position:  200% 0; }
    100% { background-position: -200% 0; }
}