.product-list {
    margin: 0;
    padding: 0;
}

.product-list-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.product-list-header .header-info {
    flex: 1;
    display: flex;
    gap: 20px;
}

.product-list-header .header-pricing {
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.header-item {
    font-size: 13px;
    color: #666;
}

.product-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card .card-body {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    gap: 20px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-header .product-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.product-header .product-stock {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
    margin: 0;
    padding: 4px 8px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 12px;
}

.product-description {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
    display: flex;
    gap: 8px;
    padding: 4px 0;
}

.product-description > i {
    color: #007bff;
    font-size: 14px;
    margin-top: 3px;
}

.description-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.description-line {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 2px 0;
}

.description-line i {
    color: #28a745;
    font-size: 12px;
    margin-top: 4px;
}

.description-line span {
    flex: 1;
    line-height: 1.4;
}

.product-pricing {
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.price-wrapper {
    text-align: center;
    min-width: 100px;
}

.price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.price-period {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.setup-fee {
    font-size: 12px;
    color: #888;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.order-button {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 100px;
}

.order-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-list-header {
        display: none;
    }

    .product-card .card-body {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }
    
    .product-pricing {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        min-width: auto;
    }
    
    .price-wrapper {
        text-align: left;
        min-width: auto;
    }
    
    .setup-fee {
        text-align: left;
        min-width: auto;
    }
    
    .order-button {
        width: 100%;
        min-width: auto;
    }

    .product-description {
        padding: 8px 0;
    }

    .description-line {
        padding: 3px 0;
    }
} 