.product-list {
    background-color: var(--card-bg-color);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow-color);
    overflow: hidden;
}

.product-list-item {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--separator-color);
    transition: background-color 0.2s;
}

.product-list-item:last-child {
    border-bottom: none;
}

.product-list-item:hover {
    background-color: #f8f9fa;
}

.product-list-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.product-list-info {
    flex-grow: 1;
}

.product-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-text-color);
    margin: 0;
}

.product-description {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    margin: 4px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-list-arrow {
    font-size: 1rem;
    color: var(--secondary-text-color);
    margin-left: 15px;
}
.fab-add {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #8f10c5ff, #000cb9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
    transition: transform 0.2s;
    z-index: 100;
}

.fab-add:hover {
    transform: scale(1.1);
    color: white;
}